/* --- MODERN FOOTER STYLES (OPDATERET) --- */
footer {
    /* 1. Samme farve som Headeren */
    background: var(--primary-gradient);
    color: white;
    
    /* 2. Den skrå kant */
    clip-path: polygon(0 100px, 100% 0, 100% 100%, 0 100%);
    
    /* 3. Justeringer */
    padding-top: 160px;
    margin-top: -80px;
    font-family: 'Inter', sans-serif;
    position: relative;
}

/* CTA Section - Nu integreret i gradienten */
.footer-cta-bar {
    background: transparent;
    padding: 0 20px 40px;
    text-align: center;
    color: white;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.footer-cta-content h3 {
    margin: 0 0 10px;
    font-size: 2rem;
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
    text-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Footer Grid */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 60px;
}

.footer-column h3 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
    font-family: 'Poppins', sans-serif;
}

/* Den lille streg under overskrifterne */
.footer-column h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: #ffffff;
    border-radius: 2px;
    opacity: 0.5;
}

.footer-column ul { 
    list-style: none; 
    padding: 0; 
    margin: 0; 
}

.footer-column li { 
    margin-bottom: 12px; 
}

.footer-column a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-column a:hover {
    color: white;
    transform: translateX(5px);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

/* Social Icons - Fjernet duplikat */
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-btn {
    width: 35px;
    height: 35px;
    background: rgba(255,255,255,0.2);
    display: flex; /* Eller du kan bruge display: inline-block; */
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.1);
    
    /* Løsning 3 som virkede */
    line-height: 35px;
    text-align: center;
}

.social-btn i {
    font-size: 16px;
    line-height: 1; /* Reset line-height for ikonet */
    vertical-align: middle; /* Yderligere sikring */
}

.social-btn:hover {
    background: white;
    color: var(--accent-color);
    transform: translateY(-3px);
}

/* Bottom Bar - Korrigeret og forenklet */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.15);
    padding: 30px 20px;
    background: rgba(0, 0, 0, 0.1);
}

.footer-bottom-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright { 
    opacity: 0.8; 
}

.payment-icons {
    display: flex;
    gap: 15px;
    font-size: 1.5rem;
    color: white;
    opacity: 0.8;
}

/* Go To Top Button */
.go-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: #ff4757;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(255, 71, 87, 0.4);
    z-index: 999;
    text-decoration: none;
}

.go-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.go-to-top:hover {
    background: #ff6b81;
    transform: translateY(-5px);
}

.go-to-top::after { 
    content: "↑"; 
    font-size: 24px; 
    font-weight: bold; 
}

@media (max-width: 768px) {
    .footer-bottom-container {
        flex-direction: column;
        text-align: center;
    }

.go-to-top {

    bottom: 60px;
   
}



}
