    .site-footer {
        background-color: var(--dark-blue-color);
        color: white;
        position: relative;
        padding-top: 60px;
        overflow: hidden;
        margin-top: 0;
    }

    /* Texture de fond subtile */
    .site-footer::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url('/wp-content/uploads/2025/12/trace-pneu-moto.svg');
        background-repeat: repeat;
        background-size: 150px;
        opacity: 0.03;
        pointer-events: none;
        z-index: 0;
    }

    .footer-container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 25px 60px 25px;
        display: grid;
        grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
        gap: 40px;
        position: relative;
        z-index: 1;
    }

    /* --- Typographie et Titres --- */
    .footer-title {
        font-family: 'Afacad', sans-serif;
        color: var(--yellow-site);
        font-size: 1.5rem;
        text-transform: uppercase;
        margin-bottom: 25px;
        letter-spacing: 1px;
    }

    .footer-col p {
        color: #e0e0e0;
        line-height: 1.6;
    }

    /* --- Colonne 1 : Identité --- */
    .footer-logo img {
        max-width: 200px;
        margin-bottom: 20px;
        filter: brightness(0) invert(1);
    }

    .asso-desc {
        font-size: 0.95rem;
        margin-bottom: 25px;
        max-width: 90%;
    }

    /* Réseaux Sociaux */
    .social-icons-modern {
        display: flex;
        gap: 15px;
    }

    .social-icons-modern a {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 45px;
        height: 45px;
        border: 2px solid rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        color: white;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .social-icons-modern a:hover {
        background-color: var(--yellow-site);
        border-color: var(--yellow-site);
        color: var(--dark-blue-color);
        transform: translateY(-3px);
    }

    /* --- LOGIQUE D'ANIMATION UNIFIÉE POUR TOUS LES LIENS TEXTE --- */
    .menu-list li a,
    .hover-link-animated {
        color: #e0e0e0;
        text-decoration: none;
        font-size: 1rem;
        position: relative;
        transition: color 0.3s ease;
        display: inline-block;
    }

    .menu-list li a::after,
    .hover-link-animated::after {
        content: '';
        position: absolute;
        width: 0;
        height: 2px;
        bottom: -2px;
        left: 0;
        background-color: var(--yellow-site);
        transition: width 0.3s ease;
    }

    .menu-list li a:hover,
    .hover-link-animated:hover {
        color: var(--yellow-site);
    }

    .menu-list li a:hover::after,
    .hover-link-animated:hover::after {
        width: 100%;
    }

    /* --- Listes des menus --- */
    .menu-list {
        list-style: none;
        padding: 0;
    }

    .menu-list li {
        margin-bottom: 12px;
    }

    /* --- Colonne 4 : Contact --- */
    .contact-list {
        list-style: none;
        padding: 0;
        margin-bottom: 25px;
    }

    .contact-list li {
        display: flex;
        gap: 15px;
        margin-bottom: 20px;
        align-items: flex-start;
        color: #e0e0e0;
    }

    .icon-yellow {
        color: var(--yellow-site);
        font-size: 1.2rem;
        margin-top: 5px;
    }


    /* --- Copyright Bar (Correction Contraste) --- */
    .footer-copyright {
        background-color: rgba(0, 0, 0, 0.2);
        padding: 20px 25px;
        text-align: center;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        position: relative;
        z-index: 1;
    }

    .copyright-content {
        max-width: 1400px;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 10px;
    }

    /* ICI LA CORRECTION : On force le texte en GRIS CLAIR/BLANC */
    .copyright-content p {
        color: #e0e0e0 !important;
        font-size: 0.85rem;
        margin: 0;
    }

    .copyright-content a {
        color: white !important;
        text-decoration: none;
    }

    /* --- RESPONSIVE --- */
    @media (max-width: 1024px) {
        .footer-container {
            grid-template-columns: 1fr 1fr;
            gap: 50px 30px;
        }
    }

    @media (max-width: 600px) {
        .footer-container {
            display: flex;
            flex-direction: column;
            gap: 40px;
            text-align: center;
        }

        .footer-logo img {
            margin: 0 auto 20px auto;
        }

        .social-icons-modern {
            justify-content: center;
        }

        .contact-list li {
            justify-content: center;
            text-align: center;
        }

        .copyright-content {
            flex-direction: column;
            justify-content: center;
            text-align: center;
        }
    }