/* ============================================
   FOOTER - COMMUN À TOUTES LES PAGES
   ============================================ */

.footer-section {
    background: #000000;
    color: #ffffff;
    position: relative;
    margin-top: 20px;
}

.flags-row {
    background: rgba(0, 0, 0, 0.2);
    padding: 25px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
}

.flag-icon {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.1);
}

.flag-icon:hover {
    transform: scale(1.15) translateY(-2px);
    border-color: #1AA45A;
    box-shadow: 0 4px 12px rgba(26, 164, 90, 0.4);
}

.footer-main {
    padding: 60px 40px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo-img {
    height: 80px;
    width: auto;
    object-fit: contain;
    filter: none;
}

.footer-tagline {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 30px;
}

.social-icons {
    display: flex;
    gap: 12px;
    margin-bottom: 30px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.social-icon:hover {
    background: #1AA45A;
    transform: translateY(-3px);
    color: #ffffff;
}

.footer-location-wrapper {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-location {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.95);
    font-size: 15px;
    font-weight: 500;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
    width: fit-content;
}

.footer-location:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.footer-location .location-icon {
    width: 18px;
    height: 18px;
    fill: #1AA45A;
    flex-shrink: 0;
}

.footer-location .location-text {
    line-height: 1.4;
    white-space: nowrap;
}

.footer-heading {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid #1AA45A;
    display: inline-block;
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease, padding-left 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #1AA45A;
    padding-left: 5px;
}

.footer-contacts {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

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

.footer-contacts a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
    display: inline-block;
}

.footer-contacts a:hover {
    color: #1AA45A;
}

.footer-legal {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 20px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #1AA45A;
}

.footer-copyright {
    background: rgba(0, 0, 0, 0.3);
    padding: 20px 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin: 0;
}

.ravvox-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.ravvox-link:hover {
    color: #1AA45A;
    text-decoration: underline;
}

/* Responsive adjustments for footer */
@media (max-width: 1024px) {
    .footer-main {
        padding: 50px 30px;
    }

    .footer-logo-img {
        height: 70px;
    }
}

@media (max-width: 768px) {
    .footer-section {
        margin-top: -20px;
    }

    .footer-main {
        padding: 40px 20px;
    }

    .footer-logo-img {
        height: 60px;
    }

    .footer-tagline {
        font-size: 13px;
    }

    .footer-heading {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .footer-links a,
    .footer-contacts a {
        font-size: 15px;
    }

    .footer-location-wrapper {
        margin-top: 20px;
        padding-top: 20px;
    }

    .footer-location {
        font-size: 14px;
        padding: 10px 14px;
        width: 100%;
        justify-content: center;
    }

    .footer-location .location-icon {
        width: 16px;
        height: 16px;
    }

    .footer-location .location-text {
        white-space: normal;
        text-align: center;
    }

    .footer-copyright {
        padding: 15px 20px;
    }

    .copyright-text {
        font-size: 12px;
    }
}

