/* ===================== FOOTER ===================== */
.footer-section {
    background-color: #004ee3;
    color: white;
    padding: 60px 40px 40px 40px;
    width: 100%;
    margin-top: 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1400px;
    margin: 0 auto;
    gap: 60px;
}

.footer-left {
    flex: 1;
}

.footer-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 40px;
    line-height: 1.2;
    letter-spacing: 2px;
}

.footer-contact {
    margin-bottom: 60px;
}

.footer-phone {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 15px;
    letter-spacing: 3px;
}

.footer-email {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.footer-copyright {
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-right {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 40px;
}

.footer-logo-img {
    height: 80px;
    filter: brightness(0) invert(1);
    /* Rend le logo blanc */
}

.footer-social {
    text-align: center;
}

.footer-social h3 {
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 20px;
}

.social-link {
    background-color: white;
    color: #004ee3;
    width: 50px;
    height: 50px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.social-separator {
    color: white;
    font-size: 2rem;
    font-weight: 300;
}

/* ---------------- RESPONSIVE ---------------- */
@media (max-width: 992px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .footer-right {
        align-items: center;
        /* centre logo + réseaux sociaux */
        text-align: center;
    }

    .footer-title {
        font-size: 2rem;
    }

    .footer-phone {
        font-size: 1.5rem;
    }

    .footer-email {
        font-size: 1rem;
    }

    .social-icons {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }

    .social-link {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }

    .social-separator {
        display: none;
        /* cacher le séparateur pour mobile */
    }
}

@media (max-width: 576px) {
    .footer-title {
        font-size: 1.8rem;
    }

    .footer-phone {
        font-size: 1.3rem;
    }

    .footer-email {
        font-size: 0.95rem;
    }

    .footer-copyright {
        font-size: 0.8rem;
    }

    .social-link {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}