.footer-section {
    background-color: var(--blu-mr);
    padding: 4rem 0 4rem;
    position: relative;
}

.footer-links {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.footer-links-group {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-link, .footer-country, .footer-copyright, .footer-phone {
    color: var(--white-mr);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 400;
}

.footer-copyright a {
    color: var(--champagne-m);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 400;
}

.footer-copyright a:hover {
    color: var(--light-blu-mr) !important; 
}

.footer-link:hover {
    color: var(--light-blu-mr);
    text-decoration: none;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom-left {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-bottom-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.language-link .current-language {
    text-decoration: underline;
    color: #2c3e50;
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .footer-section {
        padding: 2.5rem 0 1.5rem;
    }
    
    .footer-links {
        flex-direction: row;
        justify-content: space-between;
        gap: 2rem;
        margin-bottom: 2.5rem;
    }
    
    .footer-links-group,
    .footer-social {
        text-align: left;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer-bottom-right {
        justify-content: center;
        gap: 1rem;
    }
}

@media (max-width: 767.98px) {
    .footer-section {
        padding: 2rem 0 1rem;
    }
    
    .footer-links {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }
    
    .footer-links-group {
        flex-direction: column;
        gap: 1rem;
        text-align: left;
    }
    
    .footer-social {
        flex-direction: column;
        gap: 1rem;
        text-align: right;
    }
    
    .footer-link {
        font-size: 0.9rem;
    }
    
    .footer-bottom-right {
        flex-direction: column;
        gap: 0.8rem;
    }
}