.site-footer {
        background: linear-gradient(180deg, #2c2c2c 0%, #252525 100%);
        color: #e0e0e0;
        margin-top: auto;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    }

    .footer-content {
        max-width: 1400px;
        margin: 0 auto;
        padding: 60px 30px 40px;
    }

    .footer-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 50px;
    }

    /* Section commune */
    .footer-section {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .footer-title {
        font-size: 1.3rem;
        font-weight: 600;
        color: #ffffff;
        margin: 0;
        padding-bottom: 12px;
        border-bottom: 2px solid #d946ef;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .footer-title svg {
        color: #d946ef;
        flex-shrink: 0;
    }

    /* Section À propos */
    .footer-about {
        max-width: 350px;
    }

    .footer-description {
        font-size: 0.95rem;
        line-height: 1.7;
        color: #b0b0b0;
        margin: 0;
    }

    .footer-social {
        display: flex;
        gap: 15px;
        margin-top: 8px;
    }

    .social-link {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.05);
        display: flex;
        align-items: center;
        justify-content: center;
        color: #e0e0e0;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .social-link:hover {
        background: #d946ef;
        color: #ffffff;
        transform: translateY(-3px) scale(1.05);
        border-color: #d946ef;
        box-shadow: 0 6px 20px rgba(217, 70, 239, 0.4);
    }

    /* Menu de navigation */
    .footer-menu {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .footer-menu li a {
        color: #b0b0b0;
        text-decoration: none;
        font-size: 0.95rem;
        transition: all 0.3s ease;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 4px 0;
    }

    .footer-menu li a:hover {
        color: #d946ef;
        transform: translateX(5px);
    }

    /* Section Pays */
    .countries-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .country-item {
        font-size: 0.9rem;
        color: #b0b0b0;
        padding: 8px 12px;
        background: rgba(255, 255, 255, 0.03);
        border-radius: 8px;
        border: 1px solid rgba(255, 255, 255, 0.05);
        transition: all 0.3s ease;
        cursor: default;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
    }

    .country-item:hover {
        background: rgba(217, 70, 239, 0.1);
        border-color: rgba(217, 70, 239, 0.3);
        color: #d946ef;
        transform: translateY(-2px);
    }

    /* Footer Bottom */
    .footer-bottom {
        background: rgba(0, 0, 0, 0.3);
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        margin-top: 40px;
    }

    .footer-bottom-content {
        max-width: 1400px;
        margin: 0 auto;
        padding: 25px 30px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 15px;
    }

    .copyright,
    .disclaimer {
        font-size: 0.9rem;
        color: #909090;
        margin: 0;
    }

    .disclaimer {
        font-weight: 500;
        color: #d946ef;
    }

    /* ==================== RESPONSIVE ==================== */
    @media (max-width: 1024px) {
        .footer-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
        }

        .footer-about {
            max-width: 100%;
        }
    }

    @media (max-width: 768px) {
        .footer-content {
            padding: 40px 20px 30px;
        }

        .footer-grid {
            grid-template-columns: 1fr;
            gap: 35px;
        }

        .footer-bottom-content {
            flex-direction: column;
            text-align: center;
            padding: 20px;
        }

        .countries-grid {
            /* On force 2 colonnes au lieu de 1 */
            grid-template-columns: repeat(3, 1fr); 
            gap: 10px; /* On réduit un peu l'écart pour gagner de la place */
        }
    }

    @media (max-width: 480px) {
        .footer-title {
            font-size: 1.1rem;
        }

        .footer-description,
        .footer-menu li a {
            font-size: 0.9rem;
        }

        .social-link {
            width: 40px;
            height: 40px;
        }

        .footer-social {
            gap: 12px;
        }
    }

    /* ==================== ANIMATIONS ==================== */
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .footer-section {
        animation: fadeInUp 0.6s ease-out backwards;
    }

    .footer-section:nth-child(1) {
        animation-delay: 0.1s;
    }

    .footer-section:nth-child(2) {
        animation-delay: 0.2s;
    }

    .footer-section:nth-child(3) {
        animation-delay: 0.3s;
    }

    .footer-section:nth-child(4) {
        animation-delay: 0.4s;
    }