/* ========================================
   FOOTER — Design moderne sombre
   Chargé via includes/public-footer.php
   ======================================== */
footer.footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%) !important;
    color: rgba(255, 255, 255, 0.75) !important;
    position: relative;
    overflow: hidden;
}
footer.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00C853 20%, #00E676 50%, #00C853 80%, transparent);
}

/* Partie haute du footer */
.footer-top {
    padding: 3.5rem 0 2rem;
    background: radial-gradient(ellipse at top left, rgba(0, 200, 83, 0.08) 0%, transparent 50%),
                radial-gradient(ellipse at bottom right, rgba(0, 230, 118, 0.05) 0%, transparent 50%);
}

/* Marque + logo */
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none !important;
    color: white !important;
    margin-bottom: 1rem;
}
.footer-brand img {
    height: 48px;
    width: auto;
    mix-blend-mode: screen;
}
.footer-brand span {
    font-family: Georgia, serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: white !important;
    line-height: 1.1;
    letter-spacing: -0.3px;
}
.footer-brand span small {
    font-size: 0.7rem;
    color: #00E676 !important;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-family: inherit;
    font-weight: 500;
}
.footer-tagline {
    color: rgba(255, 255, 255, 0.65) !important;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    max-width: 320px;
}

/* Réseaux sociaux — cercles avec couleur au hover */
.footer-socials {
    display: flex;
    gap: 10px;
}
.social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    text-decoration: none !important;
    transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.social-btn i { color: white !important; }
.social-btn:hover {
    transform: translateY(-3px);
    border-color: transparent;
}
.social-btn.social-facebook:hover { background: #1877F2; box-shadow: 0 8px 20px rgba(24, 119, 242, 0.4); }
.social-btn.social-snapchat:hover { background: #FFFC00; color: #111 !important; box-shadow: 0 8px 20px rgba(255, 252, 0, 0.4); }
.social-btn.social-snapchat:hover i { color: #111 !important; }
.social-btn.social-tiktok:hover { background: linear-gradient(135deg, #25F4EE 0%, #FE2C55 100%); box-shadow: 0 8px 20px rgba(254, 44, 85, 0.4); }
.social-btn.social-instagram:hover { background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); box-shadow: 0 8px 20px rgba(220, 39, 67, 0.4); }
.social-btn.social-whatsapp:hover { background: #25D366; box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4); }

/* Titres des colonnes */
.footer-title {
    color: white !important;
    font-size: 0.95rem;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 1.2rem;
    position: relative;
    padding-bottom: 0.75rem;
}
.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 32px;
    height: 2px;
    background: linear-gradient(90deg, #00C853, #00E676);
    border-radius: 2px;
}

/* Listes de liens */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li { margin-bottom: 0.55rem; }
.footer-links a {
    color: rgba(255, 255, 255, 0.65) !important;
    text-decoration: none !important;
    font-size: 0.9rem;
    transition: color 0.2s ease, padding-left 0.25s ease;
    position: relative;
    padding-left: 0;
    display: inline-block;
}
.footer-links a::before {
    content: '›';
    position: absolute;
    left: -8px;
    opacity: 0;
    color: #00E676 !important;
    transition: all 0.25s ease;
    font-weight: 700;
}
.footer-links a:hover {
    color: #00E676 !important;
    padding-left: 14px;
}
.footer-links a:hover::before { opacity: 1; left: 0; }

/* Contact — icônes dans cercles verts */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-contact li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 0.9rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75) !important;
}
/* Le texte simple (sans lien) de l'adresse — !important pour battre theme-global.css `body * { color:#000 !important }` */
.footer-contact li > span:not(.contact-icon) {
    color: rgba(255, 255, 255, 0.75) !important;
}
.footer-contact a {
    color: rgba(255, 255, 255, 0.75) !important;
    text-decoration: none !important;
    transition: color 0.2s ease;
}
.footer-contact a:hover { color: #00E676 !important; }
.contact-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 200, 83, 0.15) 0%, rgba(0, 230, 118, 0.1) 100%);
    border: 1px solid rgba(0, 200, 83, 0.3);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #00E676 !important;
    font-size: 0.9rem;
}
.contact-icon i { color: #00E676 !important; }

/* Partie basse du footer */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.25rem 0;
    background: rgba(0, 0, 0, 0.3);
}
.footer-bottom-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}
.footer-copyright {
    margin: 0;
    color: rgba(255, 255, 255, 0.5) !important;
    font-size: 0.82rem;
}
.footer-copyright strong {
    color: rgba(255, 255, 255, 0.75) !important;
    font-weight: 600;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.82rem;
}
.footer-legal a {
    color: rgba(255, 255, 255, 0.6) !important;
    text-decoration: none !important;
    transition: color 0.2s ease;
}
.footer-legal a:hover { color: #00E676 !important; }
.footer-legal .sep { color: rgba(255, 255, 255, 0.3); }

/* Paiements */
.footer-payments {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.5) !important;
    flex-wrap: wrap;
}
.payments-label { color: rgba(255, 255, 255, 0.5) !important; }
.footer-payments i {
    font-size: 1.7rem;
    color: rgba(255, 255, 255, 0.7) !important;
    transition: color 0.2s ease;
}
.footer-payments i:hover { color: white !important; }
.payment-badge {
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.3px;
}
.payment-badge.payment-wave {
    background: #1DC7F9;
    color: white !important;
    box-shadow: 0 2px 8px rgba(29, 199, 249, 0.3);
}
.payment-badge.payment-orange {
    background: #FF7900;
    color: white !important;
    box-shadow: 0 2px 8px rgba(255, 121, 0, 0.3);
}

@media (max-width: 768px) {
    .footer-bottom-grid { justify-content: center; text-align: center; }
    .footer-payments { justify-content: center; }
}
