/* 
   TaxiVtcParis - Main Stylesheet
   Global resets, common components (Header, Footer), buttons and micro-animations
*/

@import url('variables.css');

/* ==========================================================================
   1. Reset & Global Styles
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-body);
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    line-height: 1.6;
    background-color: var(--bg-primary);
    color: var(--text-primary);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

input, select, textarea, button {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    background: none;
    border: none;
    outline: none;
}

button {
    cursor: pointer;
}

/* ==========================================================================
   2. Layout & Containers
   ========================================================================== */
.container {
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

section {
    padding: var(--spacing-xl) 0;
    position: relative;
}

@media (min-width: 768px) {
    section {
        padding: var(--spacing-xxl) 0;
    }
}

/* ==========================================================================
   3. Typography & Titles
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-title);
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.text-gold {
    color: var(--accent-gold);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--spacing-xl) auto;
}

.section-subtitle {
    font-family: var(--font-body);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    color: var(--accent-gold);
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
    display: block;
}

.section-title {
    font-size: 2.2rem;
    margin-bottom: var(--spacing-sm);
}

.section-desc {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 3rem;
    }
}

/* ==========================================================================
   4. Buttons & CTAs
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0.9rem 2rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background-color: var(--accent-gold);
    color: var(--bg-primary);
    box-shadow: var(--shadow-gold-glow);
}

.btn-primary:hover {
    background-color: var(--accent-gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(197, 168, 128, 0.35);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: var(--accent-gold);
    transform: translateY(-2px);
}

.btn-outline-gold {
    background-color: transparent;
    color: var(--accent-gold);
    border: var(--border-gold-subtle);
}

.btn-outline-gold:hover {
    background-color: var(--accent-gold-light);
    border-color: var(--accent-gold);
    transform: translateY(-2px);
}

.btn-phone {
    background-color: var(--bg-tertiary);
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.btn-phone i {
    color: var(--accent-gold);
}

.btn-phone:hover {
    background-color: var(--accent-gold-light);
    border-color: var(--accent-gold);
    transform: translateY(-2px);
}

/* ==========================================================================
   5. Header & Navigation (Premium Glassmorphism)
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 1000;
    transition: var(--transition-normal);
    border-bottom: 1px solid transparent;
}

.header.scrolled {
    background-color: rgba(7, 8, 23, 0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(212, 178, 117, 0.15);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.35);
}

.header .container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 100% !important;
    padding: 0 40px !important;
}

.logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
    flex-shrink: 0;
}

.logo-main {
    font-family: var(--font-title);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--text-primary);
    white-space: nowrap;
}

.logo-sub {
    font-size: 0.65rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-top: 2px;
    white-space: nowrap;
}

.nav-menu {
    display: none;
}

.nav-cta {
    display: none;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.header-actions .theme-toggle,
.header-actions .luxury-lang-dropdown {
    margin: 0 !important;
}

@media (min-width: 1024px) {
    :root {
        --header-height: 115px;
    }

    .header {
        height: var(--header-height) !important;
        display: flex;
        align-items: center;
        padding: 10px 0;
    }

    .header .container {
        display: grid !important;
        grid-template-columns: 1fr auto;
        grid-template-rows: auto auto;
        gap: 12px;
        max-width: 100% !important;
        padding: 0 40px !important;
        width: 100%;
    }

    .logo {
        grid-column: 1;
        grid-row: 1;
        justify-self: start;
        align-self: center;
    }

    .header-actions {
        grid-column: 2;
        grid-row: 1;
        justify-self: end;
        align-self: center;
        margin: 0 !important;
    }

    .nav-menu {
        grid-column: 1 / span 2;
        grid-row: 2;
        display: flex !important;
        justify-content: flex-start;
        width: 100%;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        padding-top: 8px;
        gap: 16px !important;
        list-style: none;
        align-items: center;
    }

    .nav-link {
        font-size: 0.8rem !important;
        font-weight: 600;
        letter-spacing: 0.03em;
        text-transform: uppercase;
        color: var(--text-secondary);
        position: relative;
        padding: 4px 0 !important;
        white-space: nowrap;
        transition: var(--transition-fast);
    }
}

@media (min-width: 1440px) {
    .nav-menu {
        gap: 28px !important;
    }

    .nav-link {
        font-size: 0.85rem !important;
        letter-spacing: 0.05em;
    }
}

@media (min-width: 1024px) {

    .nav-link:hover, .nav-link.active {
        color: var(--accent-gold);
    }

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: 5px;
        left: 0;
        width: 0;
        height: 1px;
        background-color: var(--accent-gold);
        transition: var(--transition-normal);
    }

    .nav-link:hover::after, .nav-link.active::after {
        width: 100%;
    }

    /* Luxury Dropdown Navigation */
    .nav-item-dropdown {
        position: relative;
    }

    .nav-dropdown-menu {
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%) translateY(15px);
        background-color: var(--bg-secondary);
        border: var(--border-thin);
        box-shadow: var(--shadow-lg);
        border-radius: 8px;
        padding: 12px 0;
        min-width: 250px;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s;
        z-index: 1000;
        backdrop-filter: blur(10px);
    }

    .nav-item-dropdown:hover .nav-dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0);
    }

    .nav-dropdown-item {
        display: block;
        padding: 10px 20px;
        font-size: 0.85rem;
        font-weight: 500;
        color: var(--text-secondary);
        transition: var(--transition-normal);
        text-decoration: none;
    }

    .nav-dropdown-item:hover {
        color: var(--accent-gold);
        background-color: rgba(197, 168, 128, 0.05);
        padding-left: 25px;
    }

    .nav-cta {
        display: flex;
        align-items: center;
        gap: var(--spacing-xs);
    }
    
    .nav-cta .btn {
        padding: 0.5rem 1rem;
        font-size: 0.78rem;
    }
}

/* Mobile Menu Button */
.menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--text-primary);
    transition: var(--transition-normal);
    border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    background-color: var(--accent-gold);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    background-color: var(--accent-gold);
}

@media (min-width: 1024px) {
    .menu-toggle {
        display: none;
    }
}

/* Mobile Nav Overlay */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background-color: var(--bg-secondary);
    z-index: 999;
    padding: 100px var(--spacing-lg) var(--spacing-lg) var(--spacing-lg);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    transition: var(--transition-normal);
    border-left: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.mobile-nav-link {
    font-size: 1.3rem;
    font-family: var(--font-title);
    font-weight: 500;
    color: var(--text-primary);
    display: block;
    padding: var(--spacing-xs) 0;
}

.mobile-nav-link:hover, .mobile-nav-link.active {
    color: var(--accent-gold);
    padding-left: 8px;
}

/* Mobile Sub-menu Destinations styling */
.mobile-sub-menu {
    list-style: none;
    padding-left: var(--spacing-md);
    margin-top: var(--spacing-xs);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
    border-left: 1px solid rgba(197, 168, 128, 0.15);
}

.mobile-sub-link {
    font-size: 0.95rem;
    font-family: var(--font-body);
    font-weight: 500;
    color: var(--text-secondary);
    display: block;
    padding: var(--spacing-xs) 0;
    transition: var(--transition-normal);
}

.mobile-sub-link:hover, .mobile-sub-link.active {
    color: var(--accent-gold);
    padding-left: 5px;
}

.mobile-cta {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-normal);
    backdrop-filter: blur(4px);
}

.mobile-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

/* ==========================================================================
   6. Footer (SEO Local Friendly)
   ========================================================================== */
.footer {
    background-color: var(--bg-primary);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: var(--spacing-xl) 0 var(--spacing-md) 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
    }
}

.footer-col h4 {
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: var(--spacing-md);
    position: relative;
    padding-bottom: 8px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--accent-gold);
}

.footer-text {
    margin-bottom: var(--spacing-md);
    line-height: 1.7;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.footer-links a:hover {
    color: var(--accent-gold);
    padding-left: 4px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: var(--spacing-sm);
}

.footer-contact-item i {
    color: var(--accent-gold);
    margin-top: 4px;
}

.footer-cities {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.city-tag {
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--text-secondary);
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    transition: var(--transition-fast);
}

.city-tag:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
    background-color: var(--accent-gold-light);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: var(--spacing-md);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    align-items: center;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--text-muted);
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
    }
}

.footer-bottom-links {
    display: flex;
    gap: var(--spacing-md);
}

.footer-bottom-links a:hover {
    color: var(--text-secondary);
}

/* ==========================================================================
   7. Common UI Components & Utilities
   ========================================================================== */
.card {
    background-color: var(--bg-secondary);
    border: var(--border-thin);
    border-radius: var(--radius-lg);
    padding: var(--spacing-md);
    transition: var(--transition-normal);
}

.card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-gold-border);
    box-shadow: var(--shadow-card);
}

/* Scroll Animation classes */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: var(--spacing-md);
    right: var(--spacing-md);
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 999;
    transition: var(--transition-normal);
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(10deg);
    background-color: #128C7E;
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 12px;
        right: 12px;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

/* ==========================================================================
   8. Luxury Language Selector (Flags only)
   ========================================================================== */
/* ==========================================================================
   8. Luxury Language Selector (Dropdown) & Theme Toggle & Light Mode
   ========================================================================== */

/* Toggle de Thème */
.theme-toggle {
    background: transparent;
    border: 1px solid var(--border-gold-subtle);
    color: var(--accent-gold);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.95rem;
    transition: var(--transition-normal);
    margin-left: var(--spacing-sm);
    z-index: 1002;
}

.theme-toggle:hover {
    background: var(--accent-gold-light);
    transform: scale(1.05);
    box-shadow: 0 0 10px rgba(197, 168, 128, 0.25);
}

/* Dropdown des langues */
.luxury-lang-dropdown {
    position: relative;
    display: inline-block;
    margin-left: var(--spacing-sm);
    z-index: 1002;
}

.lang-dropdown-btn {
    background: transparent;
    border: 1px solid var(--border-gold-subtle);
    color: var(--text-primary);
    padding: 6px 12px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    transition: var(--transition-normal);
}

.lang-dropdown-btn:hover {
    background: var(--accent-gold-light);
    border-color: var(--accent-gold);
    box-shadow: 0 0 8px rgba(197, 168, 128, 0.2);
}

.lang-dropdown-btn img {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.lang-chevron {
    font-size: 0.7rem;
    color: var(--accent-gold);
    transition: var(--transition-fast);
}

.luxury-lang-dropdown.open .lang-chevron {
    transform: rotate(180deg);
}

.lang-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: var(--bg-secondary);
    border: 1px solid var(--border-gold-subtle);
    border-radius: var(--radius-md);
    width: 130px;
    padding: 6px 0;
    box-shadow: var(--shadow-card);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity var(--transition-fast), transform var(--transition-fast), visibility var(--transition-fast);
}

.luxury-lang-dropdown.open .lang-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    color: var(--text-secondary);
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    transition: var(--transition-fast);
}

.lang-dropdown-item:hover {
    background: var(--accent-gold-light);
    color: var(--accent-gold);
}

.lang-dropdown-item.active {
    color: var(--accent-gold);
    background: rgba(197, 168, 128, 0.05);
}

.lang-dropdown-item img {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Masquer les barres et éléments par défaut de Google Translate */
.goog-te-banner-frame, .goog-te-banner, .goog-te-menu-value {
    display: none !important;
}
body {
    top: 0px !important;
}
#google_translate_element2 {
    display: none !important;
}

/* Version mobile du dropdown dans le header */
@media (max-width: 1023px) {
    .header-actions {
        margin-left: auto;
        margin-right: var(--spacing-xs);
        gap: 8px;
    }
    
    .theme-toggle {
        margin: 0 !important;
    }
    
    .luxury-lang-dropdown {
        margin: 0 !important;
    }
}

/* ==========================================================================
   9. Light Mode (Blanc & Or) Styles
   ========================================================================== */
body.light-mode {
    --bg-primary: #FFFFFF;      /* Blanc pur lumineux pour éliminer tout fond sombre */
    --bg-secondary: #F8F9FA;    /* Blanc-gris doux de prestige pour les cartes */
    --bg-tertiary: #EAECEF;     /* Gris clair pour les surbrillances et inputs */
    
    --accent-gold: #8E7143;     /* Or bronze profond hautement contrasté pour le mode clair */
    --accent-gold-hover: #735A33;
    --accent-gold-light: rgba(142, 113, 67, 0.08);
    --accent-gold-border: rgba(142, 113, 67, 0.25);
    
    --text-primary: #000000;    /* Noir absolu pour une lisibilité parfaite */
    --text-secondary: #1C1E21;  /* Gris très foncé pour le texte des paragraphes */
    --text-muted: #5C626A;      /* Gris anthracite pour les textes secondaires */
    
    --border-thin: 1px solid rgba(0, 0, 0, 0.08);
    --border-gold-subtle: 1px solid rgba(142, 113, 67, 0.2);
    
    --glass-bg: rgba(255, 255, 255, 0.9);
    --glass-border: rgba(0, 0, 0, 0.08);
    --glass-shadow: 0 8px 32px 0 rgba(142, 113, 67, 0.04);
    
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.02);
    --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.04);
    --shadow-gold-glow: 0 0 20px rgba(142, 113, 67, 0.08);
}

/* Surcharge d'éléments spécifiques pour le Light Mode */
body.light-mode #rbs-v4-widget iframe {
    filter: none !important;
}

body.light-mode #rbs-v4-widget {
    background: #FFFFFF !important;
    border: 1px solid rgba(142, 113, 67, 0.2) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02) !important;
}

body.light-mode .coverage-map-container iframe {
    filter: none !important;
}

body.light-mode .hero-bg::after {
    background: radial-gradient(circle at 50% 40%, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.9) 70%),
                linear-gradient(to bottom, rgba(255, 255, 255, 0.1) 0%, #FFFFFF 100%) !important;
}

/* Surcharges de Cartes & Profils pour un relief prestigieux et ultra-lisible */
body.light-mode .card,
body.light-mode .fleet-card,
body.light-mode .reassurance-card,
body.light-mode .contact-card,
body.light-mode .contact-info-card,
body.light-mode .service-row,
body.light-mode .testimonial-card {
    background-color: #FFFFFF !important;
    border: 1px solid rgba(142, 113, 67, 0.15) !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.02) !important;
}

/* Textes de cartes */
body.light-mode .card *,
body.light-mode .fleet-card *,
body.light-mode .reassurance-card *,
body.light-mode .contact-card *,
body.light-mode .contact-info-card *,
body.light-mode .service-row *,
body.light-mode .testimonial-card * {
    color: var(--text-secondary);
}

body.light-mode .card h3,
body.light-mode .fleet-card h3,
body.light-mode .reassurance-card h3,
body.light-mode .contact-card h2,
body.light-mode .contact-info-card h3,
body.light-mode .service-row-title,
body.light-mode .testimonial-card h4 {
    color: var(--text-primary) !important;
}

body.light-mode .fleet-standing-badge {
    background-color: var(--accent-gold) !important;
    color: #FFFFFF !important;
}

body.light-mode .hero-tagline {
    background: rgba(142, 113, 67, 0.1);
    color: var(--accent-gold);
}

body.light-mode .header {
    background: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(142, 113, 67, 0.15);
}

body.light-mode .header.scrolled {
    background: #FFFFFF;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

body.light-mode .mobile-nav {
    background: #FFFFFF;
}

body.light-mode .menu-toggle span {
    background-color: var(--text-primary);
}

/* Formulaires Haut de Gamme ultra-lisibles */
body.light-mode input,
body.light-mode select,
body.light-mode textarea {
    background-color: #FFFFFF;
    color: var(--text-primary);
    border: 1px solid rgba(0, 0, 0, 0.15);
}

body.light-mode input:focus,
body.light-mode select:focus,
body.light-mode textarea:focus {
    border-color: var(--accent-gold);
    background-color: #FFFFFF;
    box-shadow: 0 0 0 3px rgba(142, 113, 67, 0.1);
}

/* Boutons & Liens en Mode Clair pour une lisibilité ultime */
body.light-mode .btn-primary {
    background-color: var(--accent-gold) !important;
    color: #FFFFFF !important;
    box-shadow: 0 4px 15px rgba(142, 113, 67, 0.25) !important;
}

body.light-mode .btn-primary:hover {
    background-color: var(--accent-gold-hover) !important;
    box-shadow: 0 6px 20px rgba(142, 113, 67, 0.35) !important;
}

body.light-mode .btn-secondary {
    background-color: transparent !important;
    color: var(--text-primary) !important;
    border: 1px solid rgba(0, 0, 0, 0.3) !important;
}

body.light-mode .btn-secondary:hover {
    background-color: var(--accent-gold-light) !important;
    border-color: var(--accent-gold) !important;
    color: var(--accent-gold) !important;
}

body.light-mode .btn-outline-gold {
    background-color: transparent !important;
    color: var(--accent-gold) !important;
    border: 1px solid var(--accent-gold) !important;
}

body.light-mode .btn-outline-gold:hover {
    background-color: var(--accent-gold) !important;
    color: #FFFFFF !important;
}

body.light-mode .btn-phone {
    background-color: var(--bg-secondary) !important;
    color: var(--text-primary) !important;
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
}

body.light-mode .btn-phone i {
    color: var(--accent-gold) !important;
}

body.light-mode .btn-phone:hover {
    background-color: var(--accent-gold-light) !important;
    border-color: var(--accent-gold) !important;
}

/* Élimination totale des fonds noirs/sombres en mode clair */
body.light-mode .cta-banner,
body.light-mode .about-cta {
    background: linear-gradient(135deg, #F8F9FA 0%, #FFFFFF 100%) !important;
    border-top: 1px solid rgba(142, 113, 67, 0.15) !important;
    border-bottom: 1px solid rgba(142, 113, 67, 0.15) !important;
    padding: var(--spacing-xl) 0;
}

body.light-mode .page-header,
body.light-mode #aboutHeader,
body.light-mode #contactHeader {
    background: linear-gradient(135deg, #F8F9FA 0%, #FFFFFF 100%) !important;
    border-bottom: 1px solid rgba(142, 113, 67, 0.15) !important;
}

body.light-mode .page-header h1,
body.light-mode #aboutHeader h1,
body.light-mode #contactHeader h1,
body.light-mode .cta-banner h2,
body.light-mode .about-cta h2 {
    color: #000000 !important;
    text-shadow: none !important;
}

body.light-mode .page-header p,
body.light-mode #aboutHeader p,
body.light-mode #contactHeader p,
body.light-mode .cta-banner p,
body.light-mode .about-cta p {
    color: #212529 !important;
    text-shadow: none !important;
}

body.light-mode .cta-banner .btn-secondary,
body.light-mode .about-cta .btn-outline-gold {
    border: 1px solid rgba(0, 0, 0, 0.3) !important;
    color: #212529 !important;
}

body.light-mode .cta-banner .btn-secondary:hover,
body.light-mode .about-cta .btn-outline-gold:hover {
    background-color: var(--accent-gold-light) !important;
    border-color: var(--accent-gold) !important;
    color: var(--accent-gold) !important;
}

/* Footer Clair de prestige pour le Mode Clair */
body.light-mode .footer {
    background-color: #F8F9FA !important;
    border-top: 1px solid rgba(142, 113, 67, 0.15) !important;
}

body.light-mode .footer * {
    --text-primary: #000000;
    --text-secondary: #212529;
    --text-muted: #5C626A;
    --border-thin: 1px solid rgba(0, 0, 0, 0.08);
}

body.light-mode .footer h4 {
    color: #000000 !important;
    border-bottom: 2px solid var(--accent-gold) !important;
    padding-bottom: 8px;
}

body.light-mode .footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.08) !important;
}

body.light-mode .city-tag {
    background-color: rgba(142, 113, 67, 0.06) !important;
    color: var(--accent-gold) !important;
    border: 1px solid rgba(142, 113, 67, 0.12) !important;
}

body.light-mode .city-tag:hover {
    background-color: var(--accent-gold) !important;
    color: #FFFFFF !important;
}

/* Lisibilité ultime dans les listes de couverture */
body.light-mode .coverage {
    background-color: #FFFFFF !important;
}

body.light-mode .coverage-item {
    color: #1C1E21 !important;
    font-weight: 500;
}

/* Zone d'introduction sur fond clair */
body.light-mode .about-intro,
body.light-mode .about-values,
body.light-mode .about-experience {
    background-color: #FFFFFF !important;
}

body.light-mode .about-intro *,
body.light-mode .about-values *,
body.light-mode .about-experience * {
    color: var(--text-secondary);
}

body.light-mode .about-intro h2,
body.light-mode .about-values h2,
body.light-mode .about-experience h2 {
    color: var(--text-primary) !important;
}

body.light-mode .nav-menu {
    border-top: 1px solid rgba(142, 113, 67, 0.15) !important;
}
