/* ==========================================================================
   VARIABLES CSS — LA CHAUFFEUR
   ========================================================================== */

:root {
    /* Palette Looka officielle — LA CHAUFFEUR */
    --gold: #B17A50;
    --gold-2: #8E6240;
    --gold-soft: #C19573;
    --bg: #111111;
    --bg-2: #2A2A2A;
    --text: #F7FBFC;
    --text-muted: #B7BDC7;
    --card: #2A2A2A;
    --border-subtle: rgba(177, 122, 80, 0.15);
    --border-gold: rgba(177, 122, 80, 0.3);
    
    /* Alias pour compatibilité */
    --noir-cabine: #111111;
    --gris-cartes: #2A2A2A;
    --blanc-texte: #F7FBFC;
    --gris-texte: #B7BDC7;
    --gris-footer: #6B7280;
    --or-champagne: #B17A50;
    --or-doux: #C19573;
    
    /* Espacement V2 - Plus d'air */
    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 40px;
    --space-lg: 80px;
    --space-xl: 120px;
    --space-2xl: 160px;
    
    /* Typographie */
    --font-serif: 'Cormorant Garamond', serif;
    --font-sans: 'Inter', sans-serif;
    
    /* Transitions V2 - Plus subtiles */
    --transition-base: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Ombres premium */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.6);
}

/* ==========================================================================
   RESET & BASE
   ========================================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden; /* ← Empêche le scroll horizontal */
    max-width: 100vw; /* ← Limite la largeur à la viewport */
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg);
    color: var(--text-muted);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden; /* ← Empêche le scroll horizontal */
    max-width: 100vw; /* ← Limite la largeur à la viewport */
    position: relative; /* ← Crée un contexte de positionnement */
}

/* ==========================================================================
   HEADER WITH LOGO
   ========================================================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 110px;
    background: #F5F5F5;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    z-index: 999;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-link-header {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: opacity var(--transition-base);
}

.logo-link-header:hover {
    opacity: 0.8;
}

.logo-header {
    height: 80px;
    width: auto;
    max-width: 320px;
    object-fit: contain;
}

.header-nav {
    display: flex;
    gap: 8px;
    align-items: center;
}

/* Adjustement du body pour le header fixe */
body {
    padding-top: 110px;
}



.language-selector {
    position: fixed;
    top: 24px;
    right: 24px;
    z-index: 1000;
    display: flex;
    gap: 8px;
    background: rgba(11, 12, 16, 0.85);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    padding: 8px 12px;
    border-radius: 24px;
    border: 1px solid rgba(212, 175, 117, 0.15);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
}

/* Logo dans language-selector */
.logo-link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px 8px;
    border-radius: 6px;
    background: transparent;
    transition: all var(--transition-base);
    text-decoration: none;
    cursor: pointer;
    margin-right: 4px;
}

.logo-link:hover {
    background: rgba(177, 122, 80, 0.1);
    box-shadow: 0 0 8px rgba(177, 122, 80, 0.2);
}

.logo {
    height: 32px;
    width: auto;
    display: block;
    max-width: 100%;
    object-fit: contain;
    filter: brightness(1) contrast(1.05);
}

.logo-link:hover .logo {
    opacity: 1;
}

.lang-btn {
    background: transparent;
    border: 1px solid transparent;
    color: var(--gris-texte);
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 16px;
    cursor: pointer;
    transition: all var(--transition-base);
    letter-spacing: 0.05em;
    text-decoration: none;
    display: inline-block;
}

.lang-btn--pro {
    background: var(--gold);
    color: var(--bg);
    border-color: var(--gold);
    font-weight: 600;
}

.lang-btn:hover {
    color: var(--or-champagne);
    background: rgba(212, 175, 117, 0.08);
    border-color: rgba(212, 175, 117, 0.3);
}

.lang-btn.active {
    color: var(--noir-cabine);
    background: var(--or-champagne);
    border-color: var(--or-champagne);
    font-weight: 600;
}

.lang-btn:focus-visible {
    outline: 2px solid var(--or-champagne);
    outline-offset: 2px;
}

/* Google Translate widget styling */
#google_translate_element {
    display: inline-block;
}

#google_translate_element select {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

#google_translate_element select:hover {
    border-color: rgba(255, 198, 107, 0.5);
}

/* Masquer le bandeau Google Translate en haut */
.goog-te-banner-frame {
    display: none !important;
}

body {
    top: 0 !important;
}

/* ==========================================================================
   TYPOGRAPHIE
   ========================================================================== */

.heading-1 {
    font-family: var(--font-serif);
    font-size: 80px;
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: 0.03em;
    color: var(--blanc-pur);
    margin-bottom: var(--space-md);
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.8);
    text-align: center; /* ← Ajout centrage H1 */
}

.heading-2 {
    font-family: var(--font-serif);
    font-size: 48px;
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: 0.02em;
    color: var(--blanc-texte);
    margin-bottom: var(--space-lg);
    text-align: center;
}

.heading-3 {
    font-family: var(--font-sans);
    font-size: 22px;
    font-weight: 600;
    line-height: 1.35;
    letter-spacing: 0.01em;
    color: var(--or-champagne);
    margin-bottom: var(--space-sm);
}

.heading-4 {
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--gris-texte);
    margin-bottom: var(--space-sm);
}

.text-body {
    font-family: var(--font-sans);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.75;
    color: var(--gris-texte);
    margin-bottom: var(--space-sm);
}

.text-body:last-child {
    margin-bottom: 0;
}

.text-body--white {
    color: var(--blanc-texte);
    font-weight: 450;
}

.text-small {
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.65;
    color: var(--gris-texte);
}

.text-micro {
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--gris-footer);
    margin-bottom: var(--space-xs);
    letter-spacing: 0.01em;
}

.text-center {
    text-align: center;
}

/* ==========================================================================
   LAYOUT
   ========================================================================== */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%; /* ← Force le container à rester dans sa limite */
    overflow: hidden; /* ← Empêche les enfants de déborder */
}

.container--narrow {
    max-width: 800px;
}

.section {
    padding: var(--space-xl) 0;
    overflow-x: hidden; /* ← Empêche le débordement horizontal des sections */
    width: 100%; /* ← Force les sections à respecter la largeur */
}

/* Suppression ancienne définition hero redondante */

.section--dark {
    background-color: var(--bg);
}

.section--grey {
    background-color: var(--bg-2);
}

/* ==========================================================================
   HERO V2 - BACKGROUND CINÉMATIQUE AVEC IMAGE
   ========================================================================== */

.section--hero {
    min-height: 100vh;
    min-height: 100svh; /* Safari mobile fix */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    
    /* Image background (si disponible) */
    background-image: url('images/hero-tesla-night.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll; /* Force scroll (pas fixed) pour mobile */
    
    /* Fallback gradient si image non chargée */
    background-color: var(--noir-profond);
}

/* Overlay sombre 75% pour lisibilité texte */
.section--hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        165deg,
        rgba(6, 7, 8, 0.85) 0%,
        rgba(11, 12, 16, 0.75) 35%,
        rgba(20, 22, 28, 0.70) 100%
    );
    z-index: 1;
}

/* Halo lumineux central subtil (par-dessus overlay) */
.section--hero::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(
        circle,
        rgba(212, 175, 117, 0.12) 0%,
        rgba(212, 175, 117, 0.05) 35%,
        transparent 70%
    );
    pointer-events: none;
    z-index: 2;
    mix-blend-mode: screen;
}

.hero-wrapper {
    text-align: center;
    position: relative;
    z-index: 3;
    max-width: 900px;
    padding: clamp(20px, 5vh, 48px) var(--space-md); /* Padding vertical adaptatif */
    margin: 0 auto; /* ← Centrage horizontal */
    display: flex; /* ← Ajout flex */
    flex-direction: column; /* ← Direction colonne */
    align-items: center; /* ← Alignement centré */
    justify-content: center; /* ← Centrage vertical */
}

.hero-baseline {
    font-family: var(--font-sans);
    font-size: clamp(18px, 4vw, 26px); /* Responsive fluid */
    font-weight: 400;
    line-height: 1.45;
    color: var(--text);
    margin-bottom: var(--space-md);
    letter-spacing: 0.01em;
    text-align: center; /* ← Centrage explicite */
    width: 100%; /* ← Prend toute la largeur */
}

.hero-subtitle {
    color: var(--gold-soft);
    margin-bottom: var(--space-lg);
    font-size: clamp(15px, 3vw, 17px); /* Responsive fluid */
    font-weight: 400;
    text-align: center; /* ← Centrage explicite */
    width: 100%; /* ← Prend toute la largeur */
}

.hero-services {
    margin-top: var(--space-md);
    color: var(--gris-texte);
    letter-spacing: 0.05em;
    text-align: center; /* ← Centrage explicite */
    width: 100%; /* ← Prend toute la largeur */
}

/* ==========================================================================
   BOUTONS V2 - LUXE DISCRET
   ========================================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    padding: 18px 40px;
    border-radius: 2px;
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.03em;
    text-decoration: none;
    transition: all var(--transition-base);
    cursor: pointer;
    border: none;
    min-height: 48px;
    position: relative;
    overflow: hidden;
}

/* Bouton Primary - Gold rempli (Looka) */
.btn--primary {
    background: var(--gold);
    color: var(--bg);
    border: 1px solid var(--gold);
    box-shadow: var(--shadow-sm);
}

.btn--primary:hover {
    background: var(--gold-2);
    border-color: var(--gold-2);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(177, 122, 80, 0.35);
}

.btn--primary:active {
    transform: translateY(0);
    box-shadow: var(--shadow-sm);
}

/* Bouton Secondary - Outline gold */
.btn--secondary {
    background: transparent;
    color: var(--gold);
    border: 1.5px solid var(--gold);
    box-shadow: none;
}

.btn--secondary:hover {
    background: rgba(177, 122, 80, 0.08);
    border-color: var(--gold-soft);
    color: var(--gold-soft);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(177, 122, 80, 0.15);
}

.btn--secondary:active {
    transform: translateY(0);
    background: rgba(177, 122, 80, 0.12);
}

/* Bouton Tertiary - Minimal (email) */
.btn--tertiary {
    background: transparent;
    color: var(--text-muted);
    border: 1px solid var(--border-subtle);
    font-size: 14px;
    padding: 16px 32px;
}

.btn--tertiary:hover {
    border-color: var(--border-gold);
    color: var(--text);
    background: rgba(177, 122, 80, 0.05);
}

/* Suppression icône emoji */
.btn-icon {
    display: none;
}

.cta-group {
    display: flex;
    gap: var(--space-sm);
    justify-content: center;
    flex-wrap: wrap;
}

/* ==========================================================================
   GRILLES
   ========================================================================== */

.grid-services {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
}

.grid-three {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

/* ==========================================================================
   CARTES V2 - PLUS D'AIR + ICÔNES
   ========================================================================== */

.card {
    background: var(--card);
    padding: 48px 40px;
    border-radius: 2px;
    border-top: 2px solid var(--border-subtle);
    transition: all var(--transition-slow);
    position: relative;
}

.card:hover {
    background: rgba(42, 42, 42, 0.8);
    border-top-color: var(--gold);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.card:hover .card-icon svg {
    transform: scale(1.08);
    stroke: var(--gold);
}

.card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    margin: 0 auto var(--space-md);
    background: rgba(177, 122, 80, 0.08);
    border-radius: 50%;
    transition: all var(--transition-base);
}

.card-icon svg {
    stroke: var(--gold-soft);
    transition: all var(--transition-base);
}

.bloc {
    padding: var(--space-md) 0;
}

/* ==========================================================================
   FAQ V3 - ACCESSIBLE & PREMIUM
   ========================================================================== */

/* Classes originales .faq-* utilisées dans le HTML */
.faq-wrapper {
    margin-bottom: var(--space-xl);
}

.faq-item {
    background: var(--card);
    border-left: 2px solid transparent;
    margin-bottom: 14px;
    border-radius: 2px;
    cursor: pointer;
    transition: all var(--transition-base);
    overflow: hidden;
}

.faq-item:hover {
    background: rgba(42, 42, 42, 0.8);
    border-left-color: var(--gold-soft);
}

.faq-item.active {
    background: rgba(42, 42, 42, 0.9);
    border-left-color: var(--gold);
}

.faq-trigger {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 32px;
    -webkit-user-select: none;
    user-select: none;
}

.faq-question {
    font-family: var(--font-sans);
    font-size: 17px;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 0;
    letter-spacing: 0.01em;
}

.faq-icon {
    font-size: 22px;
    color: var(--gold);
    font-weight: 300;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    line-height: 1;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    padding: 0;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.3s ease,
                padding 0.3s ease;
}

/* IMPORTANT : Annuler les margins quand fermé */
.faq-content > * {
    margin: 0;
}

.faq-item.active .faq-content {
    max-height: 500px;
    opacity: 1;
    padding: 0 32px 28px 32px;
}

/* Restaurer les margins quand ouvert */
.faq-item.active .faq-content .text-body {
    margin-bottom: 8px;
}

.faq-content .text-body:last-child {
    margin-bottom: 0;
}

/* Classes BEM .faq__* pour compatibilité future */
.faq {
    margin-bottom: var(--space-xl);
}

.faq__item {
    background: var(--card);
    border-left: 2px solid transparent;
    margin-bottom: 14px;
    border-radius: 2px;
    transition: all var(--transition-base);
    overflow: hidden;
}

.faq__item:hover {
    background: rgba(42, 42, 42, 0.8);
    border-left-color: var(--gold-soft);
}

.faq__item:has(.faq__question[aria-expanded="true"]) {
    background: rgba(42, 42, 42, 0.9);
    border-left-color: var(--gold);
}

.faq__question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 32px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    -webkit-user-select: none;
    user-select: none;
    transition: all var(--transition-base);
}

.faq__question:hover {
    color: var(--gold-soft);
}

.faq__question:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: -2px;
}

.faq__question-text {
    font-family: var(--font-sans);
    font-size: 17px;
    font-weight: 500;
    color: var(--text);
    letter-spacing: 0.01em;
    flex: 1;
}

.faq__icon {
    font-size: 22px;
    color: var(--gold);
    font-weight: 300;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    line-height: 1;
    margin-left: 16px;
}

.faq__question[aria-expanded="true"] .faq__icon {
    transform: rotate(45deg);
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                opacity 0.3s ease;
    opacity: 0;
}

.faq__question[aria-expanded="true"] + .faq__answer {
    max-height: 800px;
    opacity: 1;
}

.faq__answer-content {
    padding: 0 32px 28px 32px;
}

.faq__answer-content .text-body {
    margin-bottom: 8px;
}

.faq__answer-content .text-body:last-child {
    margin-bottom: 0;
}

.faq__cta-inline {
    display: flex;
    gap: 16px;
    margin-top: 16px;
}

.faq__link {
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 500;
    color: var(--gold);
    text-decoration: none;
    padding: 8px 16px;
    border: 1px solid var(--gold);
    border-radius: 2px;
    transition: all var(--transition-base);
    display: inline-block;
}

.faq__link:hover {
    background: var(--gold);
    color: var(--bg);
}

.faq__link:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

.faq-cta {
    text-align: center;
    padding-top: var(--space-lg);
    border-top: 1px solid var(--border-subtle);
    margin-top: var(--space-lg);
}

.faq-cta .text-body {
    margin-bottom: var(--space-md);
    font-size: 19px;
}

/* Mobile optimizations */
@media (max-width: 768px) {
    .faq__question {
        padding: 20px 24px;
    }
    
    .faq__answer-content {
        padding: 0 24px 20px 24px;
    }
    
    .faq__question-text {
        font-size: 16px;
    }
    
    .faq__cta-inline {
        flex-direction: column;
        gap: 12px;
    }
    
    .faq__link {
        text-align: center;
    }
}

/* ==========================================================================
   CONTACT
   ========================================================================== */

.contact-info {
    margin-top: var(--space-lg);
    padding: var(--space-md);
    background: rgba(28, 31, 39, 0.5);
    border-radius: 4px;
    text-align: center;
}

.contact-info strong {
    color: var(--blanc-texte);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.footer {
    padding: var(--space-xl) 0 var(--space-md);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.footer-col {
    /* Pas de style additionnel nécessaire */
}

.footer-link {
    color: var(--gris-texte);
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-color: rgba(183, 189, 199, 0.3);
    transition: all 0.2s ease;
}

.footer-link:hover {
    color: var(--blanc-texte);
    text-decoration-color: var(--blanc-texte);
}

.footer-copyright {
    text-align: center;
    padding-top: var(--space-md);
    border-top: 1px solid rgba(215, 195, 160, 0.1);
}

/* ==========================================================================
   UTILITAIRES
   ========================================================================== */

.mb-xs { margin-bottom: var(--space-xs); }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }

/* ==========================================================================
   ACCESSIBILITÉ V2
   ========================================================================== */

:focus-visible {
    outline: 2px solid var(--or-champagne);
    outline-offset: 3px;
    border-radius: 2px;
}

a:focus-visible {
    outline: 2px solid var(--or-champagne);
    outline-offset: 3px;
}

/* Skip to content (accessibilité clavier) */
.skip-to-content {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--or-champagne);
    color: var(--noir-cabine);
    padding: 12px 24px;
    text-decoration: none;
    z-index: 100;
    font-weight: 600;
}

.skip-to-content:focus {
    top: 0;
}

/* Tailles tactiles minimum 48×48px garanties */
.btn,
.faq-trigger {
    min-height: 48px;
    min-width: 48px;
}

/* ==========================================================================
   RESPONSIVE V2 — TABLET (≤ 768px)
   ========================================================================== */

@media (max-width: 768px) {
    .header {
        height: 95px;
    }
    
    .header-container {
        padding: 0 16px;
    }
    
    .logo-header {
        height: 66px;
    }
    
    .header-nav {
        gap: 4px;
    }
    
    body {
        padding-top: 95px;
    }
    
    :root {
        --space-xl: 80px;
        --space-2xl: 120px;
    }
    
    .heading-1 {
        font-size: 56px;
        letter-spacing: 0.02em;
    }
    
    .heading-2 {
        font-size: 38px;
        margin-bottom: var(--space-md);
    }
    
    .logo {
        height: 24px;
    }
    
    .heading-3 {
        font-size: 20px;
    }
    
    .text-body {
        font-size: 17px;
        line-height: 1.7;
    }
    
    .hero-baseline {
        font-size: 22px;
    }
    
    /* Hero tablette : overlay plein écran aussi */
    .section--hero::before {
        inset: 0 !important;
        width: 100% !important;
        height: 100% !important;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .section {
        padding: var(--space-lg) 0;
    }
    
    .grid-services {
        grid-template-columns: 1fr;
        gap: var(--space-sm);
    }
    
    .grid-three {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-md);
    }
    
    .cta-group--stack {
        flex-direction: column;
        width: 100%;
    }
    
    .btn--full-width {
        width: 100%;
    }
    
    .card {
        padding: var(--space-md) var(--space-sm);
    }
    
    /* Hero tablette : overlay plein écran également FORCE */
    .section--hero::before {
        inset: 0 !important;
        width: 100% !important;
        height: 100% !important;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
    }
    
    /* Packs responsive tablette */
    .packs-info-grid {
        grid-template-columns: 1fr !important;
        gap: var(--space-sm);
    }
    
    .packs-grid {
        grid-template-columns: 1fr !important;
        gap: var(--space-lg);
    }
    
    .cabin-selector-buttons {
        width: 100%;
    }
    
    .cabin-btn {
        flex: 1;
        min-width: 0;
        padding: 12px 16px;
        font-size: 14px;
    }
    
    /* Zones responsive tablette */
    .zone-communes {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    /* PRO responsive tablette */
    .pro-packs {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
    
    .pro-steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-sm);
    }
}

/* ==========================================================================
   RESPONSIVE V2 — MOBILE (≤ 480px)
   ========================================================================== */

@media (max-width: 480px) {
    .heading-1 {
        font-size: 42px;
        line-height: 1.1;
    }
    
    .heading-2 {
        font-size: 32px;
    }
    
    .hero-baseline {
        font-size: 20px;
    }
    
    .hero-wrapper {
        padding: var(--space-md) var(--space-sm);
    }
    
    .cta-group {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }
    
    .btn {
        width: 100%;
        padding: 16px 32px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
    
    .card {
        padding: var(--space-md) var(--space-sm);
    }
    
    .faq-item {
        padding: 24px 20px;
    }
    
    /* Hero mobile : overlay plein écran FORCE (pas de carte grise) */
    .section--hero::before {
        inset: 0 !important;
        width: 100% !important;
        height: 100% !important;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
    }
    
    /* Hero mobile : halo lumineux désactivé pour meilleure visibilité */
    .section--hero::after {
        display: none;
    }
    
    /* Packs mobile optimisé */
    .packs-info-grid {
        grid-template-columns: 1fr !important;
        gap: var(--space-md);
    }
    
    .packs-grid {
        grid-template-columns: 1fr !important;
        gap: var(--space-lg);
    }
    
    .cabin-selector {
        padding: var(--space-sm);
    }
    
    .cabin-selector-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cabin-btn {
        width: 100%;
        justify-content: center;
    }
    
    .pack-card {
        padding: var(--space-md);
        width: 100%;
        max-width: 100%;
    }
    
    .pack-title {
        font-size: 20px;
        line-height: 1.4;
        word-wrap: break-word;
    }
    
    .pack-trip-label {
        font-size: 14px;
    }
    
    .pack-price.active {
        font-size: 24px;
    }
    
    /* Zones mobile */
    .zone-communes {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .zone-commune {
        font-size: 13px;
        padding: 7px 12px;
    }
    
    .zone-title {
        font-size: 20px;
    }
    
    /* PRO mobile */
    .pro-subtitle {
        font-size: 15px;
    }
    
    .pro-intro .text-body {
        font-size: 14px;
    }
}

/* ==========================================================================
   MOBILE LANDSCAPE (iPhone en mode paysage - écrans courts)
   ========================================================================== */

@media (max-width: 932px) and (max-height: 430px) {
    /* Hero paysage : réduction espacements pour tout voir */
    .hero-wrapper {
        padding: 16px var(--space-md);
        gap: 8px;
    }
    
    .hero-baseline {
        margin-bottom: 8px;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        margin-bottom: 12px;
    }
    
    .cta-group {
        gap: 8px;
        margin-top: 12px;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 15px;
    }
    
    /* Header réduit en paysage */
    .header {
        height: 70px;
    }
    
    .logo-header {
        height: 40px;
    }
}

/* Reprise des règles existantes (non modifié) */
@media (max-width: 480px) {
    
    .pro-steps-grid {
        grid-template-columns: 1fr;
        gap: var(--space-sm);
    }
    
    .pro-pack-title {
        font-size: 20px;
    }
    
    .pro-pack-price {
        font-size: 24px;
    }
}

/* ==========================================================================
   SECTION PRO
   ========================================================================== */

.pro-header {
    text-align: center;
    margin-bottom: var(--space-lg);
}

.pro-subtitle {
    font-family: var(--font-sans);
    font-size: 17px;
    color: var(--text-muted);
    font-weight: 400;
    line-height: 1.6;
    margin-top: var(--space-sm);
}

.pro-intro {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.pro-intro .text-body {
    color: var(--gold-soft);
    font-size: 15px;
    letter-spacing: 0.05em;
}

/* Packs PRO */
.pro-packs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.pro-pack {
    background: var(--card);
    border: 1px solid var(--border-subtle);
    border-radius: 2px;
    padding: var(--space-md);
    transition: all var(--transition-base);
    position: relative;
    display: flex;
    flex-direction: column;
}

.pro-pack:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.pro-pack--featured {
    border: 2px solid var(--gold);
    background: linear-gradient(135deg, rgba(177, 122, 80, 0.08) 0%, var(--card) 100%);
}

.pro-pack--featured:hover {
    box-shadow: 0 8px 32px rgba(177, 122, 80, 0.25);
}

.pro-pack-badge {
    position: absolute;
    top: -12px;
    right: var(--space-sm);
    background: var(--gold);
    color: var(--bg);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 2px;
}

.pro-pack-header {
    margin-bottom: var(--space-sm);
    padding-bottom: var(--space-sm);
    border-bottom: 1px solid var(--border-subtle);
}

.pro-pack-title {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
    line-height: 1.3;
}

.pro-pack-price {
    font-family: var(--font-sans);
    font-size: 28px;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: -0.01em;
}

.pro-pack-tagline {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: var(--space-sm);
    font-style: italic;
}

.pro-pack-list {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--space-md) 0;
    flex-grow: 1;
}

.pro-pack-list li {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.8;
    padding-left: 20px;
    position: relative;
}

.pro-pack-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 18px;
}

.pro-pack-note,
.pro-pack-promise {
    font-size: 13px;
    color: var(--text-muted);
    font-style: italic;
    padding: var(--space-sm);
    background: rgba(177, 122, 80, 0.05);
    border-radius: 2px;
    border-left: 2px solid var(--gold-soft);
}

/* Comment ça marche */
.pro-steps {
    margin-bottom: var(--space-xl);
}

.pro-steps-title {
    font-family: var(--font-sans);
    font-size: 20px;
    font-weight: 600;
    color: var(--text);
    text-align: center;
    margin-bottom: var(--space-lg);
    letter-spacing: 0.03em;
}

.pro-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
}

.pro-step {
    text-align: center;
    padding: var(--space-md);
    background: var(--card);
    border: 1px solid var(--border-subtle);
    border-radius: 2px;
    transition: all var(--transition-base);
}

.pro-step:hover {
    border-color: var(--gold);
    transform: translateY(-2px);
}

.pro-step-number {
    width: 48px;
    height: 48px;
    margin: 0 auto var(--space-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold);
    color: var(--bg);
    font-size: 22px;
    font-weight: 600;
    border-radius: 50%;
    font-family: var(--font-sans);
}

.pro-step-text {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Conditions */
.pro-conditions {
    text-align: center;
    padding: var(--space-md);
    background: rgba(177, 122, 80, 0.05);
    border: 1px solid var(--border-subtle);
    border-radius: 2px;
    margin-bottom: var(--space-lg);
}

.pro-conditions .text-micro {
    color: var(--text-muted);
    font-style: italic;
}

/* CTA */
.pro-cta {
    text-align: center;
}

/* ==========================================================================
   PAGE PRO - NAVIGATION & HERO
   ========================================================================== */

.nav-pro {
    background: var(--bg);
    border-bottom: 1px solid var(--border-subtle);
    padding: var(--space-sm) 0;
    position: sticky;
    top: 0;
    z-index: 100;
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
}

.nav-pro-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-pro-logo {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 600;
    color: var(--gold);
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: all var(--transition-base);
}

.nav-pro-logo:hover {
    color: var(--gold-soft);
}

.nav-pro-link {
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    text-decoration: none;
    padding: 8px 20px;
    border: 1px solid var(--border-subtle);
    border-radius: 2px;
    transition: all var(--transition-base);
    letter-spacing: 0.03em;
}

.nav-pro-link:hover {
    color: var(--text);
    border-color: var(--gold);
    background: rgba(177, 122, 80, 0.05);
}

.section--hero-pro {
    min-height: 100vh; /* Pleine hauteur */
    display: flex;
    align-items: center; /* ⬅️ CENTRE LE CONTENU VERTICALEMENT */
    justify-content: center; /* ⬅️ CENTRE LE CONTENU HORIZONTALEMENT */
    background-image: url('images/pro.png');
    background-size: cover;
    background-position: center; /* ⬅️ CENTRE L'IMAGE DE FOND */
    background-attachment: fixed;
    position: relative;
}

.section--hero-pro::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4); /* Voile sombre pour lisibilité */
    pointer-events: none;
}

.hero-pro-wrapper {
    text-align: center; /* ⬅️ CENTRE LE TEXTE DANS LE WRAPPER */
    position: relative;
    z-index: 3;
    max-width: 900px;
    padding: var(--space-lg) var(--space-md);
    margin: 0 auto; /* ⬅️ CENTRE LE WRAPPER HORIZONTALEMENT */
    display: flex;
    flex-direction: column;
    align-items: center; /* ⬅️ ALIGNE TOUS LES ENFANTS AU CENTRE */
    justify-content: center;
}

/* Forcer TOUS les éléments texte au centre */
.hero-pro-wrapper .heading-1,
.hero-pro-wrapper .hero-baseline,
.hero-pro-wrapper .hero-subtitle,
.hero-pro-wrapper .hero-pro-tagline {
    text-align: center;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.hero-pro-wrapper .heading-1 {
    color: var(--text);
    margin-bottom: var(--space-sm);
}

.hero-pro-wrapper .hero-baseline {
    font-size: 28px;
    color: var(--gold);
    margin-bottom: var(--space-xs);
}

.hero-pro-wrapper .hero-subtitle {
    margin-bottom: var(--space-md);
}

.hero-pro-tagline {
    color: var(--text-muted);
    margin-top: var(--space-md);
    font-size: 16px;
}

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section {
    animation: fadeIn 0.6s ease-out;
}

/* ==========================================================================
   PACKS STARS SECTION
   ========================================================================== */

.packs-header {
    text-align: center;
    margin-bottom: var(--space-lg);
}

.packs-subtitle {
    font-family: var(--font-sans);
    font-size: 17px;
    color: var(--gold-soft);
    font-weight: 400;
    letter-spacing: 0.05em;
    margin-top: var(--space-sm);
}

/* Grille Inclus / Options */
.packs-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.packs-info-card {
    background: var(--card);
    padding: var(--space-md);
    border-radius: 2px;
    border-top: 1px solid var(--border-subtle);
}

.packs-info-card h3 {
    margin-bottom: var(--space-sm);
    color: var(--gold-soft);
}

.packs-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.packs-list li {
    font-size: 14px;
    color: var(--gris-texte);
    line-height: 1.8;
    padding-left: 20px;
    position: relative;
}

.packs-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 18px;
}

/* Sélecteur de cabine global */
.cabin-selector {
    background: var(--card);
    padding: var(--space-md);
    border-radius: 2px;
    border: 1px solid var(--border-gold);
    margin-bottom: var(--space-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
}

.cabin-selector-label {
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--gold-soft);
    text-transform: uppercase;
}

.cabin-selector-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.cabin-btn {
    background: transparent;
    border: 1px solid var(--border-gold);
    color: var(--text-muted);
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 500;
    padding: 12px 28px;
    border-radius: 2px;
    cursor: pointer;
    transition: all var(--transition-base);
    letter-spacing: 0.03em;
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cabin-btn:hover {
    background: rgba(177, 122, 80, 0.1);
    border-color: var(--gold);
    color: var(--text);
}

.cabin-btn.active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--bg);
    box-shadow: var(--shadow-sm);
}

.cabin-btn:focus {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

.cabin-badge {
    font-size: 11px;
    font-weight: 600;
    background: var(--bg);
    color: var(--gold-soft);
    padding: 2px 8px;
    border-radius: 2px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.cabin-btn.active .cabin-badge {
    background: rgba(17, 17, 17, 0.2);
    color: var(--bg);
}

/* Guide choix cabine */
.cabin-guide {
    background: rgba(177, 122, 80, 0.05);
    border-left: 2px solid var(--gold);
    padding: var(--space-md);
    margin-bottom: var(--space-xl);
    border-radius: 2px;
}

.cabin-guide-title {
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: var(--space-xs);
    letter-spacing: 0.03em;
}

.cabin-guide-text {
    font-size: 14px;
    color: var(--gris-texte);
    line-height: 1.7;
}

.cabin-guide-text strong {
    color: var(--text);
    font-weight: 500;
}

/* Grille des packs */
.packs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

/* Carte pack individuelle */
.pack-card {
    background: var(--card);
    border: 1px solid var(--border-subtle);
    border-radius: 2px;
    padding: var(--space-md);
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
}

.pack-card:hover {
    background: rgba(42, 42, 42, 0.9);
    border-color: var(--gold);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.pack-header {
    margin-bottom: var(--space-md);
    border-bottom: 1px solid var(--border-subtle);
    padding-bottom: var(--space-sm);
}

.pack-title {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 600;
    color: var(--gold-soft);
    margin-bottom: 4px;
    line-height: 1.3;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.pack-note {
    font-size: 13px;
    color: var(--gris-texte);
    font-style: italic;
    margin-top: 6px;
}

/* Tarifs */
.pack-pricing {
    margin-bottom: var(--space-md);
}

.pack-trip {
    margin-bottom: var(--space-md);
}

.pack-trip:last-child {
    margin-bottom: 0;
}

.pack-trip-label {
    font-size: 13px;
    font-weight: 500;
    color: var(--gris-texte);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 10px;
}

.pack-price {
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 500;
    color: var(--gris-texte);
    padding: 8px 0;
    border-bottom: 1px solid var(--border-subtle);
    display: none;
}

.pack-price.active {
    display: block;
    font-size: 28px;
    font-weight: 600;
    color: var(--gold);
    border-bottom: none;
    padding: 4px 0;
}

/* Avantage client */
.pack-advantage {
    background: rgba(177, 122, 80, 0.05);
    padding: var(--space-sm);
    border-radius: 2px;
    margin-bottom: var(--space-md);
    flex-grow: 1;
}

.pack-advantage .text-small {
    color: var(--gris-texte);
    line-height: 1.7;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* CTAs pack */
.pack-cta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: auto;
}

.pack-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    border-radius: 2px;
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.03em;
    text-decoration: none;
    transition: all var(--transition-base);
    cursor: pointer;
    border: 1px solid transparent;
}

.pack-btn--call {
    background: transparent;
    border-color: var(--gold);
    color: var(--gold);
}

.pack-btn--call:hover {
    background: var(--gold);
    color: var(--bg);
}

.pack-btn--whatsapp {
    background: rgba(177, 122, 80, 0.1);
    border-color: var(--border-gold);
    color: var(--text);
}

.pack-btn--whatsapp:hover {
    background: rgba(177, 122, 80, 0.2);
    border-color: var(--gold-soft);
}

.pack-btn:focus {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

/* Note légale */
.packs-legal {
    text-align: center;
    padding-top: var(--space-md);
    border-top: 1px solid var(--border-subtle);
}

.packs-legal .text-micro {
    color: var(--gris-footer);
    font-style: italic;
}

/* ==========================================================================
   ZONES DE PRISE EN CHARGE SECTION
   ========================================================================== */

.zone-card {
    background: var(--card);
    border: 1px solid var(--border-subtle);
    border-radius: 2px;
    padding: var(--space-md);
    margin-bottom: var(--space-md);
    transition: all var(--transition-base);
}

.zone-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-sm);
}

.zone-card--large {
    border-left: 3px solid var(--gold);
}

.zone-header {
    margin-bottom: var(--space-sm);
}

.zone-title {
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 8px;
    line-height: 1.3;
}

.zone-description {
    font-size: 14px;
    color: var(--text-muted);
    font-style: italic;
}

.zone-communes {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
    margin-top: var(--space-sm);
}

.zone-commune {
    font-size: 14px;
    color: var(--text);
    padding: 8px 14px;
    background: rgba(177, 122, 80, 0.08);
    border-radius: 2px;
    border-left: 2px solid var(--gold-soft);
    transition: all var(--transition-base);
}

.zone-commune:hover {
    background: rgba(177, 122, 80, 0.15);
    border-left-color: var(--gold);
}

.zone-note {
    background: rgba(177, 122, 80, 0.05);
    border: 1px solid var(--border-gold);
    border-radius: 2px;
    padding: var(--space-sm);
    text-align: center;
    margin-top: var(--space-lg);
}

.zone-note .text-small {
    color: var(--text-muted);
    font-style: italic;
}

/* Lien vers zones depuis packs */
.zone-link-wrapper {
    margin-top: var(--space-sm);
    text-align: center;
}

.zone-link {
    font-size: 13px;
    color: var(--gold-soft);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all var(--transition-base);
    letter-spacing: 0.03em;
}

.zone-link:hover {
    color: var(--gold);
    border-bottom-color: var(--gold);
}

/* Tooltip zones */
.zone-tooltip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    font-size: 12px;
    font-weight: 600;
    color: var(--bg);
    background: var(--gold-soft);
    border-radius: 50%;
    cursor: help;
    margin-left: 6px;
    vertical-align: middle;
    transition: all var(--transition-base);
}

.zone-tooltip:hover {
    background: var(--gold);
    transform: scale(1.1);
}

/* ==========================================================================
   PRINT
   ========================================================================== */

@media print {
    body {
        background: white;
        color: black;
    }
    
    .btn {
        border: 1px solid black;
    }
    
    .section--dark,
    .section--grey {
        background: white;
    }
    
    .language-selector {
        top: 16px;
        right: 16px;
        padding: 6px 8px;
        gap: 4px;
    }
    
    .lang-btn {
        font-size: 11px;
        padding: 4px 8px;
    }
}

/* Section Avis — étoiles */
.avis-stars-display {
    display: flex;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: var(--space-sm);
}

.star-icon {
    font-size: 1.5rem;
    color: #ffc107;
    line-height: 1;
}

.star-half {
    opacity: 0.5;
}

/* ============================================
   SECTION AVIS — Minimalisme Premium
   ============================================ */

#avis {
    padding: var(--space-xl) 0;
}

#avis .heading-2 {
    margin-bottom: var(--space-xl);
    text-align: center;
}

/* Bloc central : note + étoiles + source */
.avis-center {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.avis-score {
    font-size: 3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 var(--space-sm) 0;
    line-height: 1;
}

.avis-stars {
    font-size: 1.5rem;
    color: #ffc107;
    margin-bottom: var(--space-sm);
    letter-spacing: 0.2em;
}

.avis-source {
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin: 0;
}

/* Phrase statutaire */
.avis-statement {
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-primary);
    font-weight: 400;
    font-style: italic;
    margin: 0 auto var(--space-xl);
    max-width: 600px;
    line-height: 1.7;
}

/* 3 piliers sobres */
.avis-pillars {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.avis-pillar {
    flex: 1;
    text-align: center;
    padding: var(--space-md);
}

.avis-pillar-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 var(--space-sm) 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.avis-pillar-text {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Bouton discret */
.avis-cta {
    text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
    .avis-score {
        font-size: 2.5rem;
    }

    .avis-stars {
        font-size: 1.25rem;
    }

    .avis-statement {
        font-size: 1rem;
    }

    .avis-pillars {
        flex-direction: column;
        gap: var(--space-md);
    }
}

/* ============================================
   COOKIE BANNER — RGPD Compliant
   ============================================ */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(18, 18, 18, 0.98);
    border-top: 1px solid rgba(255, 198, 107, 0.3);
    padding: var(--space-md) var(--space-lg);
    z-index: 9999;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-md);
}

.cookie-text {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.cookie-link {
    color: #ffc107;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.cookie-link:hover {
    color: #ffcd38;
}

.cookie-buttons {
    display: flex;
    gap: var(--space-sm);
    flex-shrink: 0;
}

.cookie-btn {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-btn--accept {
    background: #ffc107;
    color: #121212;
}

.cookie-btn--accept:hover {
    background: #ffcd38;
    transform: translateY(-2px);
}

.cookie-btn--refuse {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cookie-btn--refuse:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-sm);
    }

    .cookie-buttons {
        width: 100%;
    }

    .cookie-btn {
        flex: 1;
    }
}

/* ============================================
   SECTION CABINES (3 CARRÉS PREMIUM)
   ============================================ */

.cabine-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-xl) auto;
}

.text-body-large {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: var(--space-sm);
}

/* Phrase glamour mise en évidence */
.cabine-tagline {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--gold);
    letter-spacing: 0.03em;
    margin: var(--space-md) 0 0 0;
    text-shadow: 0 2px 12px rgba(199, 161, 122, 0.4);
    font-style: italic;
    line-height: 1.4;
}

.cabines-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    margin-top: var(--space-xl);
    align-items: stretch;
}

/* Cartes cabines - hauteur uniforme stricte */
.cabine-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(199, 161, 122, 0.15);
    border-radius: 12px;
    padding: var(--space-lg);
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 380px;
    display: flex;
    flex-direction: column;
}

.cabine-card:hover {
    background: rgba(255, 255, 255, 0.04);
    transform: translateY(-4px);
}

/* Icônes */
.cabine-icon {
    font-size: 2.5rem;
    margin-bottom: var(--space-sm);
    opacity: 0.4;
    transition: all 0.3s ease;
}

.cabine-card:hover .cabine-icon {
    opacity: 0.7;
    transform: scale(1.1);
}

/* CITADINE - Gris argenté noble */
.cabine-card[data-cabin="citadine"] {
    border-color: rgba(169, 169, 169, 0.25);
}

.cabine-card[data-cabin="citadine"]:hover {
    border-color: rgba(169, 169, 169, 0.45);
    box-shadow: 0 8px 30px rgba(169, 169, 169, 0.15);
}

.cabine-card[data-cabin="citadine"] .cabine-title {
    color: #b8b8b8;
}

.cabine-card[data-cabin="citadine"] .cabine-icon {
    color: rgba(184, 184, 184, 0.6);
}

/* PRIVILÈGE - Or lumineux */
.cabine-card--featured {
    border-color: rgba(199, 161, 122, 0.4);
    background: rgba(199, 161, 122, 0.04);
    box-shadow: 0 2px 20px rgba(199, 161, 122, 0.1);
}

.cabine-card--featured:hover {
    border-color: rgba(199, 161, 122, 0.6);
    box-shadow: 0 4px 30px rgba(199, 161, 122, 0.15);
}

.cabine-card--featured .cabine-icon {
    color: var(--color-gold);
    opacity: 0.5;
}

/* ÉLYSÉENNE - Or profond */
.cabine-card--premium {
    border-color: rgba(199, 161, 122, 0.5);
    background: linear-gradient(135deg, rgba(199, 161, 122, 0.03), rgba(199, 161, 122, 0.06));
}

.cabine-card--premium:hover {
    border-color: var(--color-gold);
    box-shadow: 0 12px 50px rgba(199, 161, 122, 0.3);
}

.cabine-card--premium .cabine-title {
    color: #d4af7a;
}

.cabine-card--premium .cabine-icon {
    color: #d4af7a;
    opacity: 0.6;
}

/* Badge */
.cabine-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-gold);
    color: var(--color-dark);
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
    z-index: 2;
}

/* Titres */
.cabine-title {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    color: var(--color-gold);
    margin-bottom: var(--space-xs);
    font-weight: 600;
}

.cabine-subtitle {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: var(--space-md);
    font-style: italic;
    font-weight: 300;
}

/* Points forts */
.cabine-highlights {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
}

.cabine-highlights li {
    padding: 10px 0;
    padding-left: 24px;
    position: relative;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.4;
}

.cabine-highlights li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--color-gold);
    font-weight: 600;
}

.cabine-card[data-cabin="citadine"] .cabine-highlights li::before {
    color: #b8b8b8;
}

.cabine-card--premium .cabine-highlights li::before {
    content: "★";
    font-size: 0.9rem;
}

/* CTA Comparaison */
.cabines-cta {
    margin-top: var(--space-xl);
    padding: var(--space-xl) var(--space-lg);
    text-align: center;
    background: rgba(199, 161, 122, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(199, 161, 122, 0.2);
}

.cabines-cta-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-md);
    font-weight: 500;
}

/* Note bagages */
.cabine-note {
    margin-top: var(--space-lg);
    text-align: center;
    padding: var(--space-md);
    background: rgba(199, 161, 122, 0.03);
    border-radius: 6px;
    border: 1px solid rgba(199, 161, 122, 0.1);
}

/* SUPPRIMER tous les anciens styles accordéon/modal */
.cabine-toggle,
.cabine-details,
.cabine-close,
.cabine-description,
.cabine-details-title,
.cabine-list,
.cabine-ideal,
.cabine-modal,
.cabine-modal-overlay,
.cabine-modal-content,
.cabine-modal-close,
.cabine-modal-body,
.cabine-modal-panel,
.cabine-modal-icon,
.cabine-modal-title {
    display: none !important;
}

/* Responsive */
@media (max-width: 1024px) {
    .cabines-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
        padding: var(--space-xl);
        min-height: 0; /* Firefox fix : auto n'est pas supporté */
    }
    
    .cabine-card {
        min-height: 0; /* Firefox fix : auto n'est pas supporté */
    }
}

/* ========================================
   CABINES - RECTANGLES HORIZONTAUX
   ======================================== */

/* 🔧 RÉGLAGE 1 : Largeur globale du container */
#cabines .container {
    max-width: 95%;
    width: 100%;
    overflow: hidden; /* ← Empêche le débordement */
}

/* 🔧 RÉGLAGE 2 : Dimensions du rectangle */
.cabine-rectangle {
    display: grid;
    grid-template-columns: 20% 30% 30% 20%;
    gap: var(--space-xl);
    padding: var(--space-lg) var(--space-xl);
    min-height: 240px;
    width: 100%;
    max-width: 100%; /* ← Force le rectangle à rester dans sa limite */
    overflow: hidden; /* ← Empêche les enfants de déborder */
    box-sizing: border-box; /* ← Inclut padding et border dans la largeur */
    border: 1px solid var(--border-gold);
    border-radius: 12px;
    background: var(--card);
}

.cabine-rectangle:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(199, 161, 122, 0.35);
    transform: translateY(-2px);
}

/* CITADINE - sobre */
.cabine-rectangle[data-cabin="citadine"] {
    border-color: rgba(169, 169, 169, 0.3); /* ← Bordure argentée */
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15),
                inset 0 1px 0 rgba(169, 169, 169, 0.08);
}

.cabine-rectangle[data-cabin="citadine"]:hover {
    border-color: rgba(169, 169, 169, 0.5);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2),
                inset 0 1px 0 rgba(169, 169, 169, 0.12);
}

/* PRIVILÈGE - lumineux, recommandé */
.cabine-rectangle--featured {
    border-color: rgba(199, 161, 122, 0.45); /* ← Bordure or plus marquée */
    background: rgba(199, 161, 122, 0.03);
    box-shadow: 0 3px 15px rgba(199, 161, 122, 0.15),
                0 0 30px rgba(199, 161, 122, 0.08),
                inset 0 1px 0 rgba(199, 161, 122, 0.15);
    padding: calc(var(--space-lg) + 4px) var(--space-xl);
}

.cabine-rectangle--featured:hover {
    border-color: rgba(199, 161, 122, 0.65); /* ← Bordure encore plus visible */
    box-shadow: 0 5px 25px rgba(199, 161, 122, 0.25),
                0 0 40px rgba(199, 161, 122, 0.12),
                inset 0 1px 0 rgba(199, 161, 122, 0.2);
}

/* ÉLYSÉENNE - premium, or profond */
.cabine-rectangle--premium {
    border: 1.5px solid rgba(199, 161, 122, 0.6); /* ← Bordure légèrement plus épaisse */
    background: linear-gradient(135deg, rgba(199, 161, 122, 0.04), rgba(199, 161, 122, 0.07));
    box-shadow: 0 4px 20px rgba(199, 161, 122, 0.2),
                0 0 35px rgba(199, 161, 122, 0.1),
                inset 0 1px 0 rgba(199, 161, 122, 0.2),
                inset 0 0 0 1px rgba(212, 175, 117, 0.1); /* ← Double bordure interne subtile */
    padding: calc(var(--space-lg) + 6px) var(--space-xl);
}

.cabine-rectangle--premium:hover {
    border-color: rgba(212, 175, 117, 0.8); /* ← Bordure or clair au hover */
    box-shadow: 0 6px 30px rgba(199, 161, 122, 0.35),
                0 0 50px rgba(199, 161, 122, 0.15),
                inset 0 1px 0 rgba(212, 175, 117, 0.25),
                inset 0 0 0 1px rgba(212, 175, 117, 0.15);
}

/* Badge recommandé */
.cabine-badge-rectangle {
    position: absolute;
    top: -14px;
    right: var(--space-xl);
    background: var(--color-gold);
    color: var(--color-dark);
    padding: 8px 24px;
    border-radius: 24px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    box-shadow: 0 4px 15px rgba(199, 161, 122, 0.4);
}

/* ZONE 1 - IDENTITÉ */
.cabine-zone--identity {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: var(--space-lg);
}

.cabine-name {
    font-family: var(--font-serif);
    font-size: 2.1rem;
    color: var(--color-gold);
    margin-bottom: var(--space-sm);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.cabine-rectangle[data-cabin="citadine"] .cabine-name {
    color: #b8b8b8;
}

.cabine-rectangle--premium .cabine-name {
    color: #d4af7a;
}

.cabine-signature {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.65);
    font-style: italic;
    font-weight: 300;
    line-height: 1.6;
}

/* ZONE 2 - PROMESSE & DESCRIPTION */
.cabine-zone--promise {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 var(--space-lg);
}

.cabine-promise {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
    margin-bottom: var(--space-md);
    line-height: 1.5;
}

.cabine-desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
}

/* ZONE 3 - INCLUS */
.cabine-zone--included {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 var(--space-lg);
}

.cabine-included-title {
    font-size: 0.9rem;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: var(--space-sm);
    font-weight: 600;
}

.cabine-included-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cabine-included-list li {
    padding: 7px 0;
    padding-left: 22px;
    position: relative;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

.cabine-included-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--color-gold);
    font-size: 1.2rem;
}

/* ZONE 4 - USAGE & CTA */
.cabine-zone--cta {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-left: var(--space-lg);
}

.cabine-ideal {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: var(--space-lg);
    line-height: 1.6;
}

.cabine-btn {
    display: inline-block;
    background: transparent;
    border: 1.5px solid var(--color-gold);
    color: var(--color-gold);
    padding: 15px 30px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    transition: all 0.3s ease;
    text-decoration: none;
    white-space: nowrap;
}

.cabine-btn:hover {
    background: var(--color-gold);
    color: var(--color-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(199, 161, 122, 0.4);
}

.cabine-rectangle[data-cabin="citadine"] .cabine-btn {
    border-color: #b8b8b8;
    color: #b8b8b8;
}

.cabine-rectangle[data-cabin="citadine"] .cabine-btn:hover {
    background: #b8b8b8;
    color: var(--color-dark);
}

/* Montée en gamme (sous le rectangle) */
.cabine-upsell {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
    text-align: center;
    margin-bottom: calc(var(--space-xl) + var(--space-md));
    padding: var(--space-md) 0;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

/* Note bagages */
.cabine-note {
    margin-top: var(--space-xl);
    text-align: center;
    padding: var(--space-lg);
    background: rgba(199, 161, 122, 0.03);
    border-radius: 8px;
    border: 1px solid rgba(199, 161, 122, 0.1);
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive */
@media (max-width: 1200px) {
    #cabines .container {
        max-width: 90%;
        padding: 0 2.5%; /* ← Padding proportionnel au lieu de fixe */
    }
    
    .cabine-rectangle {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
        padding: var(--space-xl);
        min-height: 0; /* Firefox fix : auto n'est pas supporté */
        width: 100%;
        max-width: 100%;
    }
    
    /* ...existing code... */
}

/* Verrouillage global tous éléments */
* {
    max-width: 100%;
}

/* Exception pour les éléments qui doivent dépasser */
.section--hero::after,
.section--hero::before {
    max-width: none;
}

/* ==========================================================================
   PACKS PRO - RESPONSIVE MOBILE OPTIMISÉ
   ========================================================================== */

/* Mobile portrait (≤ 480px) - FORCE 1 colonne */
@media (max-width: 480px) {
    .pro-packs {
        grid-template-columns: 1fr !important;
        gap: var(--space-lg);
        width: 100%;
        max-width: 100%;
    }
    
    .pro-pack {
        width: 100%;
        max-width: 100%;
        padding: var(--space-md);
        box-sizing: border-box;
    }
    
    .pro-pack-title {
        font-size: 20px;
        line-height: 1.4;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .pro-pack-price {
        font-size: 26px;
    }
    
    .pro-pack-tagline {
        font-size: 14px;
        word-wrap: break-word;
    }
    
    .pro-pack-list {
        font-size: 14px;
    }
}

/* Mobile paysage (481px - 767px) - 1 colonne aussi */
@media (min-width: 481px) and (max-width: 767px) {
    .pro-packs {
        grid-template-columns: 1fr !important;
        gap: var(--space-lg);
        max-width: 600px;
        margin: 0 auto var(--space-xl) auto;
    }
    
    .pro-pack {
        width: 100%;
        max-width: 100%;
    }
}

/* Tablette (768px - 1024px) - Renforce 1 colonne ou 2 max */
@media (min-width: 768px) and (max-width: 1024px) {
    .pro-packs {
        grid-template-columns: 1fr !important;
        gap: var(--space-lg);
        max-width: 700px;
        margin: 0 auto var(--space-xl) auto;
    }
    
    .pro-pack {
        width: 100%;
    }
}
