/* ════════════════════════════════════════════════════════════════════════════
   FOOTER MINIMALISTE PRO - O'FITNESS
   Design harmonisé, orienté conversion, responsive
   ════════════════════════════════════════════════════════════════════════════ */

/* ─────────────────────────────────────────────────────────────────────────────
   1. FOOTER CONTAINER
   ───────────────────────────────────────────────────────────────────────────── */

.footer-pro {
    background-color: #1A1A2E !important;
    /* Force le fond bleu nuit sombre */
    color: #FFFFFF !important;
    /* Force le texte en blanc */
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 10;
}

/* ─────────────────────────────────────────────────────────────────────────────
   2. TOP SECTION - 3 COLONNES
   ───────────────────────────────────────────────────────────────────────────── */

.footer-top-pro {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* ─────────────────────────────────────────────────────────────────────────────
   3. COLONNE BRAND (Logo + Slogan)
   ───────────────────────────────────────────────────────────────────────────── */

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 8px;
}

.footer-logo img {
    height: auto;
    filter: brightness(1.1);
    transition: transform 0.3s ease;
}

.footer-logo:hover img {
    transform: scale(1.05);
}

.footer-slogan {
    font-size: 18px;
    font-weight: 600;
    color: var(--he-accent, #0066B3);
    margin: 0;
}

.footer-tagline {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    max-width: 280px;
    margin: 0;
}

/* ─────────────────────────────────────────────────────────────────────────────
   4. COLONNE CONTACT
   ───────────────────────────────────────────────────────────────────────────── */

.footer-contact {
    display: flex;
    flex-direction: column;
}

.footer-section-title {
    font-size: 16px;
    font-weight: 700;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 20px 0;
}

.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-contact-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    line-height: 1.5;
}

.footer-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--he-accent, #0066B3);
}

.footer-contact-list a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-list a:hover {
    color: var(--he-accent-light-optimized, #00D4FF);
}

.footer-contact-list span {
    color: rgba(255, 255, 255, 0.7);
}

/* ─────────────────────────────────────────────────────────────────────────────
   5. COLONNE SOCIAL (Réseaux Sociaux)
   ───────────────────────────────────────────────────────────────────────────── */

.footer-social-section {
    display: flex;
    flex-direction: column;
}

.footer-social {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}

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

.footer-social .social-link:hover {
    background: var(--he-accent, #0066B3);
    color: #FFFFFF;
    transform: translateY(-3px);
}

.footer-social .social-link svg {
    width: 20px;
    height: 20px;
}

.footer-cta-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    font-style: italic;
}

/* ─────────────────────────────────────────────────────────────────────────────
   6. BOTTOM SECTION - Navigation + Copyright + Légal
   ───────────────────────────────────────────────────────────────────────────── */

.footer-bottom-pro {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.footer-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

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

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--he-accent, #0066B3);
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: #FFFFFF;
}

.footer-links a:hover::after {
    width: 100%;
}

/* Footer Legal (Copyright + Mentions) */
.footer-legal {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}

.footer-copy {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.footer-legal-links {
    display: flex;
    gap: 12px;
    align-items: center;
    font-size: 13px;
}

.footer-legal-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal-links a:hover {
    color: var(--he-accent-light-optimized, #00D4FF);
}

.footer-legal-links .separator {
    color: rgba(255, 255, 255, 0.3);
}

/* ─────────────────────────────────────────────────────────────────────────────
   7. RESPONSIVE - MOBILE & TABLETTE
   ───────────────────────────────────────────────────────────────────────────── */

/* Tablette (768px - 1024px) */
@media (max-width: 1024px) {
    .footer-top-pro {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-brand {
        grid-column: 1 / -1;
        text-align: center;
        align-items: center;
    }

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

/* Mobile (< 768px) */
@media (max-width: 768px) {
    .footer-pro {
        padding: 40px 0 20px;
    }

    .footer-top-pro {
        grid-template-columns: 1fr;
        gap: 32px;
        margin-bottom: 32px;
        padding-bottom: 32px;
    }

    .footer-brand {
        text-align: center;
        align-items: center;
    }

    .footer-contact,
    .footer-social-section {
        text-align: center;
        align-items: center;
    }

    .footer-contact-list {
        align-items: flex-start;
    }

    .footer-section-title {
        font-size: 15px;
        margin-bottom: 16px;
    }

    .footer-bottom-pro {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .footer-links {
        justify-content: center;
        gap: 16px;
    }

    .footer-legal {
        align-items: center;
        text-align: center;
    }

    .footer-legal-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Très petit mobile (< 375px) */
@media (max-width: 375px) {
    .footer-contact-list li {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        text-align: left;
    }

    .footer-links {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .footer-social {
        gap: 12px;
    }

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