/* ===================================================================
   FOOTER 2026 - ACLG
   Composant : Footer global (4 colonnes Bootstrap 5)
   Design    : Trust Premium Navy Gold
   Depends   : navigation-vars-navy-gold.css (--nav-* variables)
   Date      : 2026-02-13
   =================================================================== */

/* === CONTAINER PRINCIPAL === */
.footer-2026 {
    position: relative;
    background: var(--nav-navy-deep, #0a1628);
    color: var(--nav-text-muted, rgba(255, 255, 255, 0.7));
    padding: 3rem 0 2rem;
    font-family: 'Poppins', var(--font-sans, sans-serif);
}

@media (min-width: 768px) {
    .footer-2026 {
        padding: 4rem 0 2.5rem;
    }
}

@media (min-width: 992px) {
    .footer-2026 {
        padding: 5rem 0 3rem;
    }
}

/* === TITRES COLONNES === */
.footer-2026-title {
    color: var(--nav-white, #ffffff);
    font-size: 1.125rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 0.75rem;
    margin-bottom: 1rem;
}

@media (min-width: 992px) {
    .footer-2026-title {
        font-size: 1.25rem;
    }
}

.footer-2026-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--nav-gold-primary, #c4a35a) 0%, var(--nav-gold-light, #d4b86a) 100%);
    border-radius: 2px;
}

/* === LISTES DE LIENS === */
.footer-2026-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-2026-links li {
    margin-bottom: 0;
}

/* === LIENS INDIVIDUELS === */
.footer-2026-link {
    color: var(--nav-text-muted, rgba(255, 255, 255, 0.7));
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-flex;
    align-items: center;
    font-size: 0.9375rem;
    padding: 6px 0;
    
}

.footer-2026-link:hover {
    color: var(--nav-gold-primary, #c4a35a);
    transform: translateX(4px);
}

/* === CONTACT GRID (icons stacked above text) === */
.footer-2026-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-2026-contact-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1rem 0.5rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    text-decoration: none;
    transition: border-color 0.3s ease, background 0.3s ease;
    min-height: 44px;
}

.footer-2026-contact-card:hover {
    border-color: var(--nav-gold-primary, #c4a35a);
    background: rgba(196, 163, 90, 0.06);
}

.footer-2026-contact-icon {
    color: var(--nav-gold-primary, #c4a35a);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.footer-2026-contact-label {
    color: var(--nav-text-muted, rgba(255, 255, 255, 0.7));
    font-size: 0.8125rem;
    line-height: 1.3;
}

.footer-2026-contact-card:hover .footer-2026-contact-label {
    color: var(--nav-white, #ffffff);
}

/* === ADDRESS === */
.footer-2026-address {
    color: var(--nav-text-muted, rgba(255, 255, 255, 0.7));
    font-size: 0.9375rem;
    margin: 0 0 0.75rem;
}

.footer-2026-address .footer-2026-icon {
    color: var(--nav-gold-primary, #c4a35a);
    margin-right: 0.5rem;
}

/* === PORTAL LINKS === */
.footer-2026-portals {
    margin-bottom: 0.5rem;
}

.footer-2026-portals .footer-2026-link {
    font-size: 0.875rem;
    padding: 4px 0;
    line-height: 40px;
}

/* === CTA CONTACT (Gold Pill) === */
.footer-2026-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--nav-gold-primary, #c4a35a) 0%, var(--nav-gold-light, #d4b86a) 100%);
    color: var(--nav-navy-deep, #0a1628);
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9375rem;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 44px;
    box-shadow: 0 4px 15px var(--nav-gold-glow, rgba(196, 163, 90, 0.3));
}

.footer-2026-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(196, 163, 90, 0.4);
    color: var(--nav-navy-deep, #0a1628);
}

/* === SEPARATEUR COPYRIGHT === */
.footer-2026-separator {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 2.5rem;
    padding-top: 1.5rem;
}

/* === COPYRIGHT & LEGAL === */
.footer-2026-copyright {
    color: var(--nav-text-muted, rgba(255, 255, 255, 0.7));
    font-size: 0.875rem;
    margin: 0;
}

.footer-2026-copyright .footer-2026-brand {
    color: var(--nav-white, #ffffff);
    font-weight: 600;
}

.footer-2026-legal-sep {
    color: rgba(255, 255, 255, 0.3);
    margin: 0 0.5rem;
}

.footer-2026-legal-link {
    color: var(--nav-text-muted, rgba(255, 255, 255, 0.7));
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-2026-legal-link:hover {
    color: var(--nav-gold-primary, #c4a35a);
}

/* === FOCUS-VISIBLE & ACTIVE STATES (Harmonisation Round 4) === */
.footer-2026-link:focus-visible {
    outline: 2px solid var(--nav-gold-primary, #c4a35a);
    outline-offset: 2px;
    border-radius: 2px;
}

.footer-2026-link:active {
    transform: translateX(2px);
}

.footer-2026-contact-card:focus-visible {
    outline: 2px solid var(--nav-gold-primary, #c4a35a);
    outline-offset: 2px;
}

.footer-2026-contact-card:active {
    background: rgba(196, 163, 90, 0.1);
}

.footer-2026-cta:focus-visible {
    outline: 3px solid var(--nav-gold-primary, #c4a35a);
    outline-offset: 3px;
}

.footer-2026-cta:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(196, 163, 90, 0.2);
}

.footer-2026-legal-link:focus-visible {
    outline: 2px solid var(--nav-gold-primary, #c4a35a);
    outline-offset: 2px;
    border-radius: 2px;
}

/* === ACCESSIBILITE === */
@media (prefers-reduced-motion: reduce) {
    .footer-2026-link,
    .footer-2026-cta,
    .footer-2026-contact-card,
    .footer-2026-legal-link {
        transition: none;
    }
}
