/* ╔═══════════════════════════════════════════════════════════════╗
   ║  DRIVIGO — DESIGN SYSTEM 2026 (Template SEO)               ║
   ╠═══════════════════════════════════════════════════════════════╣
   ║                                                               ║
   ║  ARCHITECTURE:                                                ║
   ║  • Ce fichier est INDÉPENDANT et s'applique UNIQUEMENT aux   ║
   ║    nouvelles pages SEO (vtc-longue-distance.php, etc.)       ║
   ║  • main_drivigo.css reste INTACTE pour le reste du site      ║
   ║  • Classes préfixées pour éviter tout conflit                ║
   ║                                                               ║
   ║  TEMPLATE USAGE:                                              ║
   ║  Pour créer une NOUVELLE page SEO :                          ║
   ║  1. Dupliquer vtc-longue-distance.php                        ║
   ║  2. Modifier les « Page Template Variables » ci-dessous      ║
   ║  3. Adapter le contenu (H1, FAQs, pricing, destinations)    ║
   ║  4. Mettre à jour les JSON-LD schemas                        ║
   ║  → Aucun CSS à modifier, tout passe par les variables :root  ║
   ║                                                               ║
   ║  SECTIONS (ctrl+F) :                                         ║
   ║  [1] VARIABLES & TOKENS                                      ║
   ║  [2] FONT PRELOAD & DISPLAY                                  ║
   ║  [3] BODY & GLOBAL LAYOUT                                    ║
   ║  [4] SKIP-TO-CONTENT & ACCESSIBILITY                        ║
   ║  [5] BREADCRUMB                                              ║
   ║  [6] NAVBAR                                                  ║
   ║  [7] HERO BANNER                                             ║
   ║  [8] TRUST BADGES                                            ║
   ║  [9] TOC (TABLE OF CONTENTS)                                 ║
   ║  [10] VEHICLES SHOWCASE                                      ║
   ║  [11] HOW IT WORKS                                           ║
   ║  [12] FEATURE CARDS                                          ║
   ║  [13] PRICING                                                ║
   ║  [14] FLEXIBLE BOOKING                                       ║
   ║  [15] DESTINATIONS GALLERY                                   ║
   ║  [16] REVIEWS                                                ║
   ║  [17] FAQ ACCORDION                                          ║
   ║  [18] LD-SECTION (INTERNAL LINKS)                            ║
   ║  [19] ABOUT SPLIT                                            ║
   ║  [20] FINAL CTA                                              ║
   ║  [21] SEO CONTENT SECTION                                    ║
   ║  [22] E-E-A-T META                                           ║
   ║  [23] COMPARISON TABLE                                       ║
   ║  [24] STICKY MOBILE BAR                                      ║
   ║  [25] FOOTER                                                 ║
   ║  [26] LEGACY COMPAT                                          ║
   ║  [27] UTILITIES & ANIMATIONS                                 ║
   ║  [28] PERFORMANCE (content-visibility)                       ║
   ║                                                               ║
   ║  Dernière MAJ : 26 février 2026                              ║
   ║  Auteur : DRIVIGO                                             ║
   ╚═══════════════════════════════════════════════════════════════╝ */

/* ============================================================
   [1] VARIABLES & TOKENS
   ============================================================ */

/* ─── Design Tokens (global) ─── */
:root {
  --primary-gold: #ab7d3f;
  --gold-light: #f5d88a;   /* hover sur fond sombre — WCAG AA 8.5:1 */
  --gold-dark: #8a6430;
  --gold-darker: #6b4f24;
  --text-primary: #222;
  --text-dark: #333;
  --text-secondary: #666;
  --text-muted: #999;
  --bg-light: #f8fafc;
  --bg-lighter: #fafbfc;
  --border-light: #e6ebf2;
  --border-subtle: #ddd;
  --white: #ffffff;
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 6px 18px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 12px 28px rgba(171, 125, 63, 0.15);

  /* ─── Page Template Variables ───
     Modifier UNIQUEMENT ces variables pour personnaliser chaque page.
     Le design system s'adapte automatiquement. */
  --page-max-width: 1200px;
  --page-navbar-height: 75px;
  --page-navbar-height-mobile: 70px;
  --page-hero-min-height: 540px;
  --page-hero-min-height-mobile: 500px;
  --page-section-padding: 60px 20px;
  --page-section-padding-mobile: 40px 15px;
  --page-border-radius: 12px;

  /* ─── Typography Tokens ─── */
  --font-size-h1: clamp(1.55rem, 3.8vw, 2.55rem);
  --font-size-h2: clamp(1.25rem, 2.8vw, 1.75rem);
  --font-size-h3: clamp(1.05rem, 2.2vw, 1.35rem);
  --font-size-body: 0.95rem;
  --font-size-small: 0.85rem;
  --line-height-tight: 1.22;
  --line-height-normal: 1.55;
  --line-height-relaxed: 1.75;
}

/* ============================================================
   [2] FONT PRELOAD & DISPLAY — prevent FOIT
   ============================================================ */
@font-face {
  font-family: "bootstrap-icons";
  font-display: swap;
  src: url("/fonts/bootstrap-icons.woff2") format("woff2");
}

/* ============================================================
   [3] BODY & GLOBAL LAYOUT
   ============================================================ */
body {
  margin: 0;
  padding: 0;
  padding-top: var(--page-navbar-height);
  background-color: var(--white);
  color: var(--text-primary);
}

/* ============================================================
   [4] SKIP-TO-CONTENT & ACCESSIBILITY
   ============================================================ */
.skip-to-content {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 99999;
  background: var(--primary-gold);
  color: #fff !important;
  padding: 12px 24px;
  border-radius: 0 0 8px 8px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none !important;
  transition: top 0.2s ease;
}

.skip-to-content:focus {
  top: 0;
}

@media (max-width: 768px) {
  body {
    padding: 0;
    padding-top: var(--page-navbar-height-mobile);
  }
}

/* Smooth scroll — only for users who haven't set prefers-reduced-motion */
@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

/* Scroll offset for fixed navbar + anchor links */
:target {
  scroll-margin-top: 90px;
}

/* Focus-visible — accessibility + Lighthouse score */
:focus-visible {
  outline: 3px solid var(--primary-gold);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Override link colors - gold instead of blue */
a {
  color: var(--primary-gold);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--gold-dark);
  text-decoration: underline;
}

a:visited {
  color: var(--gold-dark);
}

/* Ensure blue links become gold in paragraphs */
p a,
li a,
.mc_intro a,
.mc_intro2 a,
.mc_row2 a,
.mc_row3 a,
.mc_row4 a,
.mc_row4bis a,
.mc_row5 a,
.mc_row6 a,
.mc_row7 a {
  color: var(--primary-gold) !important;
  font-weight: 600;
}

p a:hover,
li a:hover,
.mc_intro a:hover,
.mc_intro2 a:hover,
.mc_row2 a:hover,
.mc_row3 a:hover,
.mc_row4 a:hover,
.mc_row4bis a:hover,
.mc_row5 a:hover,
.mc_row6 a:hover,
.mc_row7 a:hover {
  color: var(--gold-dark) !important;
  text-decoration: underline;
}

/* ============================================================
   [5] BREADCRUMB — fil d'Ariane visible (SEO + accessibilité)
   ============================================================ */
.breadcrumb-nav {
  padding: 10px 30px;
  background: var(--bg-light);
  border-bottom: 1px solid var(--border-light);
  font-size: 0.82rem;
}

.breadcrumb-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin: 0;
  padding: 0;
  max-width: 1200px;
  margin: 0 auto;
}

.breadcrumb-item {
  display: flex;
  align-items: center;
  color: var(--text-muted);
}

.breadcrumb-item + .breadcrumb-item::before {
  content: "›";
  margin: 0 8px;
  color: var(--text-muted);
}

.breadcrumb-item a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb-item a:hover {
  color: var(--primary-gold);
  text-decoration: underline;
}

.breadcrumb-current {
  color: var(--primary-gold);
  font-weight: 600;
}

@media (max-width: 768px) {
  .breadcrumb-nav {
    padding: 8px 16px;
    font-size: 0.78rem;
  }
}

/* ============================================================
   [12] FEATURE CARDS - MODERNE 2026
   ============================================================ */
.feature-card {
  background: var(--white);
  border-radius: 12px;
  padding: 30px 24px;
  box-shadow: var(--shadow-sm);
  height: 100%;
  transition: all 0.3s ease;
  border-top: 4px solid transparent;
  position: relative;
  overflow: hidden;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-top-color: var(--primary-gold);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-gold) 0%, var(--gold-dark) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  text-align: center;
  margin-bottom: 20px;
  font-size: 2.5rem;
}

.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
  text-align: center;
}

.feature-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  text-align: center;
  margin-bottom: 16px;
}

.feature-badge {
  background: linear-gradient(135deg, rgba(171, 125, 63, 0.08) 0%, rgba(255, 215, 0, 0.04) 100%);
  padding: 10px 12px;
  border-radius: 6px;
  font-size: 0.85rem;
  color: var(--primary-gold);
  font-weight: 600;
  text-align: center;
}

@media (max-width: 768px) {
  .feature-card {
    padding: 24px 20px;
  }
  
  .feature-card h3 {
    font-size: 1rem;
  }
}

/* ============================================================
   [15] DESTINATION CARDS SECTION
   ============================================================ */
.destination-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  height: 300px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-md);
}

.destination-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.destination-card:hover img {
  transform: scale(1.08);
}

.destination-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  transition: all 0.3s ease;
}

.destination-card:hover .destination-overlay {
  background: linear-gradient(180deg, rgba(171, 125, 63, 0.4) 0%, rgba(0,0,0,0.85) 100%);
}

.destination-title {
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.destination-cta {
  background: linear-gradient(135deg, var(--primary-gold) 0%, var(--gold-dark) 100%);
  color: white !important;
  padding: 12px 18px;
  border-radius: 6px;
  text-decoration: none !important;
  font-weight: 700;
  font-size: 0.95rem;
  text-align: center;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  display: inline-block;
  box-shadow: 0 4px 12px rgba(171, 125, 63, 0.3);
}

.destination-cta:visited {
  color: white !important;
  text-decoration: none !important;
}

.destination-card:hover .destination-cta {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold-darker) 100%);
  color: white !important;
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(171, 125, 63, 0.4);
}

@media (max-width: 768px) {
  .destination-card {
    height: 240px;
  }
  
  .destination-title {
    font-size: 1.1rem;
  }
}

/* CSS GRID RESPONSIVE FOR GALLERY */
@media (max-width: 1024px) {
  /* Tablette: 2 colonnes */
  div[style*="grid-template-columns: repeat(3, 1fr)"] {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 768px) {
  /* Mobile: 1 colonne */
  div[style*="grid-template-columns: repeat(3, 1fr)"] {
    grid-template-columns: 1fr !important;
  }
  
  .destination-card {
    width: 100%;
    margin: 0 auto;
  }
}

/* FORCE 3-COLUMN LAYOUT ON DESKTOP */
.row > [class*='col-lg-4'] {
  flex: 0 0 33.333333% !important;
  max-width: 33.333333% !important;
  margin-bottom: 20px;
}

@media (max-width: 1199px) {
  .row > [class*='col-lg-4'] {
    flex: 0 0 50% !important;
    max-width: 50% !important;
  }
}

@media (max-width: 767px) {
  .row > [class*='col-lg-4'] {
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }
}

/* ============================================================
   [17] FAQ SECTION - MODERN ACCORDION
   ============================================================ */
.faq {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 20px;
}

.faq h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
}

.faq-list {
  background: var(--white);
  border-radius: 12px;
  padding: 30px;
  box-shadow: var(--shadow-md);
}

.faq-item {
  border-bottom: 1px solid var(--border-light);
  padding: 20px 0;
  transition: all 0.3s ease;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  background: none;
  border: none;
  color: var(--text-primary);
  font-weight: 600;
  font-size: 1rem;
  width: 100%;
  text-align: left;
  padding: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-question:hover {
  color: var(--primary-gold);
}

.faq-question span:nth-of-type(2) {
  margin-left: auto;
  flex-shrink: 0;
}

.faq-icon {
  font-size: 1.3rem;
  transition: transform 0.3s ease;
  margin-left: 12px;
  flex-shrink: 0;
  display: inline-block !important;
  width: 20px;
  text-align: right;
}

.faq-answer {
  display: none;
  padding-top: 15px;
  padding-left: 20px;
  color: var(--text-secondary);
  border-left: 3px solid var(--primary-gold);
  line-height: 1.7;
  animation: slideDown 0.3s ease;
  will-change: transform, opacity;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.faq-answer a {
  color: var(--primary-gold);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.faq-answer a:hover {
  text-decoration: underline;
  color: var(--gold-dark);
}

@media (max-width: 768px) {
  .faq-list {
    padding: 20px;
  }

  .faq-question {
    font-size: 0.95rem;
  }

  .faq-answer {
    font-size: 0.9rem;
    padding-left: 16px;
  }
}

/* ============================================================
   CTA BUTTON STYLES — UNIFIED (shared across sections)
   ============================================================ */

/* FIX: Override conflicting styles from legacy CSS */
.reservation_bouton a,
.reservation_bouton a:hover,
.reservation_bouton a:active,
.reservation_bouton a:visited {
  text-decoration: none;
  font-size: 1rem !important;
  background: linear-gradient(135deg, var(--primary-gold) 0%, var(--gold-dark) 100%) !important;
  color: white !important;
  border: none !important;
  border-radius: 8px;
  padding: 14px 32px !important;
  display: inline-block;
  font-weight: 600;
  transition: all 0.3s ease;
  text-align: center;
  white-space: nowrap;
}

.reservation_bouton a:hover {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold-darker) 100%) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(171, 125, 63, 0.3) !important;
  color: white !important;
}

.cta-primary,
.cta-secondary,
.reservation-btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-align: center;
}

.cta-primary {
  background: linear-gradient(135deg, var(--primary-gold) 0%, var(--gold-dark) 100%) !important;
  color: white !important;
  box-shadow: 0 4px 12px rgba(171, 125, 63, 0.3) !important;
}

.cta-primary:hover {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold-darker) 100%) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(171, 125, 63, 0.4) !important;
  color: white !important;
}

.cta-secondary {
  background: white !important;
  color: #222 !important;
  border: 2px solid var(--primary-gold) !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
}

.cta-secondary:hover {
  background: var(--primary-gold) !important;
  color: white !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(171, 125, 63, 0.3) !important;
}

/* ============================================================
   [13] PRICING SECTION
   ============================================================ */
.pricing-container {
  background: var(--white);
  padding: 24px;
  border-radius: 12px;
  border-left: 4px solid var(--primary-gold);
  box-shadow: var(--shadow-md);
}

.pricing-title {
  font-size: 1.05rem;
  margin-top: 16px;
  margin-bottom: 10px;
  color: var(--text-primary);
  font-weight: 700;
}

.pricing-subtitle {
  margin: 8px 0;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 12px 0;
  padding: 12px;
  background: var(--bg-light);
  border-radius: 8px;
}

.pricing-item {
  text-align: left;
}

.pricing-price {
  color: var(--primary-gold);
  font-size: 1.1rem;
  font-weight: 700;
}

.pricing-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.pricing-footer {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 16px;
  font-style: italic;
}

/* ============================================================
   [8] TRUST BADGES - GRILLE 6 ITEMS
   ============================================================ */
.trust-badges {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin: 40px 0;
}

.trust-badge {
  background: var(--white);
  padding: 20px 16px;
  border-radius: 12px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  border-top: 3px solid transparent;
}

.trust-badge:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-top-color: var(--primary-gold);
}

.trust-badge-icon {
  font-size: 1.8rem;
  margin-bottom: 10px;
  display: block;
}

.trust-badge-title {
  color: var(--text-primary);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 6px;
}

.trust-badge-text {
  color: var(--text-secondary);
  font-size: 0.8rem;
  line-height: 1.4;
}

.trust-link {
  color: var(--primary-gold) !important;
  font-weight: 600;
}

@media (max-width: 1200px) {
  .trust-badges {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .trust-badges {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin: 24px 0;
  }

  .trust-badge {
    padding: 16px 12px;
  }

  .trust-badge-icon {
    font-size: 1.5rem;
  }

  .trust-badge-title {
    font-size: 0.82rem;
  }
}

/* ============================================================
   [11] HOW IT WORKS - 3 ÉTAPES
   ============================================================ */
.how-it-works {
  background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-lighter) 100%);
  border-radius: 16px;
  padding: 50px 40px;
  margin: 40px 0;
  text-align: center;
}

.how-it-works__title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 40px;
}

.how-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin-bottom: 36px;
  flex-wrap: nowrap;
}

.how-step {
  flex: 1;
  max-width: 220px;
  padding: 0 16px;
}

.how-step__number {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary-gold) 0%, var(--gold-dark) 100%);
  color: white;
  border-radius: 50%;
  font-size: 1.3rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  box-shadow: 0 4px 12px rgba(171, 125, 63, 0.35);
}

.how-step__icon {
  font-size: 2rem;
  margin-bottom: 12px;
  display: block;
}

.how-step__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.how-step__text {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
}

.how-step__arrow {
  font-size: 1.8rem;
  color: var(--primary-gold);
  padding-top: 22px;
  flex-shrink: 0;
  opacity: 0.6;
}

.how-cta {
  text-align: center;
  margin-top: 8px;
}

@media (max-width: 768px) {
  .how-it-works {
    padding: 32px 20px;
  }

  .how-it-works__title {
    font-size: 1.4rem;
    margin-bottom: 28px;
  }

  .how-steps {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .how-step {
    max-width: 280px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    text-align: left;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light);
    width: 100%;
  }

  .how-step:last-child {
    border-bottom: none;
  }

  .how-step__number {
    flex-shrink: 0;
    margin: 0;
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }

  .how-step__icon {
    display: none;
  }

  .how-step__arrow {
    display: none;
  }
}

/* ============================================================
   [18] LD-SECTION — TRAJETS LONGUE DISTANCE CARDS
   ============================================================ */
.ld-section {
  padding: 40px 0 20px;
}

.ld-section h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
  text-align: center;
}

.ld-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 16px;
}

.ld-grid--expanded {
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}

.ld-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 2px solid var(--border-light);
  border-radius: 12px;
  padding: 24px 16px;
  text-decoration: none !important;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.ld-card:hover {
  border-color: var(--primary-gold);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.ld-card__icon {
  font-size: 1.8rem;
}

.ld-card__city {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
  text-align: center;
}

.ld-card__label {
  font-size: 0.82rem;
  color: var(--primary-gold);
  font-weight: 600;
}

@media (max-width: 768px) {
  .ld-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .ld-card {
    flex-direction: row;
    justify-content: flex-start;
    padding: 16px 20px;
    gap: 14px;
  }

  .ld-card__icon {
    font-size: 1.5rem;
    flex-shrink: 0;
  }
}

/* ============================================================
   [24] STICKY BOTTOM BAR — MOBILE ONLY
   ============================================================ */
.sticky-mobile-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #000010;
  padding: 10px 12px;
  gap: 10px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  border-top: 2px solid var(--primary-gold);
}

.sticky-mobile-bar__call {
  flex: 1;
  background: rgba(255, 255, 255, 0.1);
  color: white !important;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  padding: 12px 10px;
  text-align: center;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none !important;
  transition: background 0.3s;
}

.sticky-mobile-bar__call:hover {
  background: rgba(255, 255, 255, 0.2);
}

.sticky-mobile-bar__reserve {
  flex: 2;
  background: linear-gradient(135deg, var(--primary-gold) 0%, var(--gold-dark) 100%);
  color: white !important;
  border-radius: 8px;
  padding: 12px 14px;
  text-align: center;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none !important;
  transition: all 0.3s;
  box-shadow: 0 4px 12px rgba(171, 125, 63, 0.4);
}

.sticky-mobile-bar__reserve:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(171, 125, 63, 0.5);
}

@media (max-width: 991px) {
  .sticky-mobile-bar {
    display: flex;
  }

  /* Éviter que le contenu soit masqué derrière la barre */
  body {
    padding-bottom: 70px;
  }
}

/* ============================================================
   PRICING COL — CLASSE MANQUANTE
   ============================================================ */
.pricing-col {
  min-width: 0;
}

/* ============================================================
   SOCIAL PROOF CALLOUT
   ============================================================ */
.social-proof-box {
  background: linear-gradient(135deg, rgba(171, 125, 63, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%);
  border-left: 4px solid var(--primary-gold);
  padding: 20px;
  border-radius: 8px;
  margin: 20px 0;
  display: inline-block;
}

.social-proof-rating {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-gold);
  margin-bottom: 6px;
}

.social-proof-text {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin: 0;
}

/* ============================================================
   REVIEW SECTION ENHANCEMENTS
   ============================================================ */

/* Aucune surcharge Swiper ici — avis/index.php gère tout,
   identique à la page d'accueil. */

/* ============================================================
   [7] HERO VTC — Bannière avec H1 + CTAs intégrés
   ============================================================ */
.hero-vtc {
  position: relative;
  width: 100%;
  min-height: var(--page-hero-min-height);
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: 0; /* body padding-top handles navbar offset */
}

.hero-vtc__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
}

.hero-vtc__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-vtc__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    140deg,
    rgba(8, 8, 18, 0.82) 0%,
    rgba(8, 8, 18, 0.60) 55%,
    rgba(8, 8, 18, 0.35) 100%
  );
}

.hero-vtc__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
  padding: 64px 24px;
  text-align: center;
  color: #fff;
}

.hero-vtc__h1 {
  font-size: clamp(1.55rem, 3.8vw, 2.55rem);
  font-weight: 800;
  line-height: 1.22;
  color: #fff;
  margin-bottom: 18px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.55);
}

.hero-vtc__proof {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px 10px;
  font-size: 0.92rem;
  color: #f5dd8a;
  font-weight: 600;
  margin-bottom: 14px;
  letter-spacing: 0.01em;
}

.hero-vtc__sep {
  opacity: 0.5;
}

.hero-vtc__tagline {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.80);
  margin-bottom: 30px;
  letter-spacing: 0.02em;
}

.hero-vtc__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  align-items: stretch;
  margin-bottom: 18px;
}

.hero-vtc__cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #ab7d3f 0%, #8a6430 100%);
  color: #fff !important;
  font-weight: 700;
  font-size: 1rem;
  padding: 15px 28px;
  border-radius: 8px;
  text-decoration: none !important;
  box-shadow: 0 4px 22px rgba(171,125,63,0.50);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}

.hero-vtc__cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(171,125,63,0.65);
  color: #fff !important;
}

.hero-vtc__cta-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(255,255,255,0.10);
  border: 1.5px solid rgba(255,255,255,0.35);
  color: #fff !important;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 15px 22px;
  border-radius: 8px;
  text-decoration: none !important;
  backdrop-filter: blur(4px);
  transition: background 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}

.hero-vtc__cta-whatsapp:hover {
  background: rgba(255,255,255,0.20);
  border-color: var(--gold-light);
  color: #fff !important;
}

.hero-vtc__cta-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1.5px solid rgba(255,255,255,0.55);
  color: #fff !important;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 15px 22px;
  border-radius: 8px;
  text-decoration: none !important;
  backdrop-filter: blur(4px);
  transition: background 0.2s ease;
  white-space: nowrap;
}

.hero-vtc__cta-phone:hover {
  background: rgba(255,255,255,0.22);
  color: #fff !important;
}

.hero-vtc__reassurance {
  font-size: 0.80rem;
  color: rgba(255,255,255,0.60);
  letter-spacing: 0.04em;
}

.hero-vtc__price-hint {
  font-size: 1.05rem;
  color: var(--gold-light);
  margin-bottom: 22px;
  letter-spacing: 0.01em;
}
.hero-vtc__price-hint strong {
  font-size: 1.35rem;
  font-weight: 800;
  color: #fff;
}
.hero-vtc__price-hint span {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
}

@media (max-width: 767px) {
  .hero-vtc {
    min-height: var(--page-hero-min-height-mobile);
    margin-top: 56px;
    align-items: flex-end;
  }
  .hero-vtc__content {
    padding: 32px 16px 40px;
  }
  .hero-vtc__h1 {
    font-size: 1.40rem;
  }
  .hero-vtc__ctas {
    flex-direction: column;
    gap: 10px;
  }
  .hero-vtc__cta-primary,
  .hero-vtc__cta-whatsapp,
  .hero-vtc__cta-phone {
    width: 100%;
    padding: 14px 16px;
  }
}

/* ============================================================
   STICKY BAR — Bouton WhatsApp (Fix UX #2)
   ============================================================ */
.sticky-mobile-bar__whatsapp {
  flex: 1;
  background: var(--text-primary);
  color: var(--gold-light) !important;
  border-radius: 8px;
  padding: 12px 10px;
  text-align: center;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none !important;
  transition: background 0.3s, color 0.3s;
}

.sticky-mobile-bar__whatsapp:hover {
  background: var(--primary-gold);
  color: #fff !important;
}

/* Rééquilibrage des 3 boutons */
.sticky-mobile-bar .sticky-mobile-bar__call {
  flex: 1;
}

.sticky-mobile-bar .sticky-mobile-bar__reserve {
  flex: 1.4;
}

.reviews-link {
  color: var(--primary-gold) !important;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.reviews-link:hover {
  color: var(--gold-dark) !important;
  text-decoration: underline;
}

/* ============================================================
   [27] SECTION SPACING & LAYOUT
   ============================================================ */
.section-padding {
  padding: var(--page-section-padding);
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
  text-align: center;
  margin-bottom: 40px;
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
  text-align: center;
  margin-bottom: 30px;
}

/* RESPONSIVE GRID UTILITIES */
@media (max-width: 768px) {
  .section-padding {
    padding: var(--page-section-padding-mobile);
  }

  .section-title {
    font-size: 1.5rem;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  /* trust-badges: keep repeat(2, 1fr) from dedicated section above */
}

/* ============================================================
   [27b] ANIMATION UTILITIES
   ============================================================ */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 0.6s ease;
  will-change: transform, opacity;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

.pulse {
  animation: pulse 2s infinite;
  will-change: opacity;
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.mt-20 {
  margin-top: 20px;
}

.mb-40 {
  margin-bottom: 40px;
}

.gap-16 {
  gap: 16px;
}

.rounded-12 {
  border-radius: 12px;
}

.shadow-md {
  box-shadow: var(--shadow-md);
}

/* ============================================================
   [20] FINAL CTA SECTION
   ============================================================ */
.cta-urgency-section {
  background: linear-gradient(135deg, var(--primary-gold) 0%, var(--gold-dark) 100%);
  text-align: center;
  padding: 60px 20px;
  margin: 40px 0;
}

.cta-urgency-section h2 {
  color: var(--white);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.cta-urgency-section p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.cta-buttons-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-white {
  background: var(--white);
  color: var(--primary-gold);
  padding: 14px 32px;
  font-size: 1.05rem;
  border: none;
}

.cta-white:hover {
  background: var(--bg-light);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.cta-outline-white {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
  padding: 14px 32px;
  font-size: 1.05rem;
  border: 2px solid var(--white);
}

.cta-outline-white:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

/* ============================================================
   [26] LEGACY COMPAT — classes from main_drivigo.css
   ============================================================ */

/* Text colors and utilities - NO DUPLICATES */
.color1 { color: red; }
.color2 { color: var(--primary-gold); }
.color3 { color: #003399; }
.color4 { color: #000010; }
.color5 { color: var(--primary-gold); }
.upper { text-transform: uppercase; }
.center { text-align: center; }

/* Legacy section styling (mc_row classes) */
.mc_row2, .mc_row3, .mc_row5, .mc_row6 {
  border-top: 1px solid #ccc;
  padding: 20px 30px;
  margin-top: 20px;
  color: #333;
}

.mc_row2 {
  border-top-style: groove;
  border-top-color: var(--primary-gold);
}

.mc_row3 {
  border-top-style: solid;
  border-top-color: #999;
}

.mc_row5 {
  border-top-style: solid;
  border-top-color: #999;
}

.mc_row6 {
  border-top-style: groove;
  border-top-color: var(--primary-gold);
}

/* Typography legacy */
.h-caption { text-align: center; }
.h-caption i { display: block; font-size: 54px; color: #382526; margin-bottom: 36px; }
.h-caption h4 { color: #382526; font-size: 16px; font-weight: bold; margin-bottom: 20px; }

/* Plan de site */
.plan_de_site {
  color: #000;
  font-size: 18px;
  text-align: left;
  margin-top: 0;      /* body padding-top compense déjà la navbar fixed */
  overflow-x: hidden;  /* évite tout débordement horizontal */
}

.plan_de_site a { color: #000; }
.plan_de_site a:hover { color: var(--gold-dark); }

/* Avis styling */
.avis {
  border: 1px solid #ab7d3f;
  padding: 15px 15px 30px;
  margin: 0 0 30px;
  background-color: white;
  color: #000010;
  border-radius: 10px;
  background-size: cover;
}

/* Widget & sidebar */
.widget { margin-bottom: 20px; }
.sidebar { padding-top: 36px; padding-bottom: 30px; }
.sidebar .widget { margin-bottom: 20px; }
.sidebar h1, .sidebar .h1, .sidebar h2, .sidebar .h2, .sidebar h3, .sidebar .h3 { margin-top: 20px; }

/* Accordion styling */
.accordion-area {
  padding: 97px 0 67px;
  background-color: #f7f7f7;
}

.accordion-toggle { margin-bottom: 15px; }

.toggle-title {
  background-color: white;
  color: #1e1e1e;
  font-size: 18px;
  font-weight: bold;
  padding: 15px;
  cursor: pointer;
  border-bottom: 1px solid rgba(233, 205, 12, 0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s;
}

.toggle-title:hover {
  background-color: #ab7d3f;
  color: white;
}

.toggle-title span {
  transition: transform 0.3s ease-in;
  float: right;
}

.toggle-title.active {
  color: #382919;
  margin-bottom: 10px;
  border-bottom: none;
  background-color: #ab7d3f;
}

.toggle-title.active span {
  transform: rotate(90deg);
}

.toggle-content {
  display: none;
  padding: 15px 15px 32px;
  background-color: #f1f1f1;
  border-bottom: 1px solid #ab7d3f;
  font-size: 18px;
}

.toggle-content p {
  line-height: 24px;
}

/* Icon utilities */
.icon-gold { color: #ab7d3f; font-size: 20px; }
.menu-large { font-size: 130%; }

/* Utility spacing */
.title, .subtitle {
  margin-top: 60px;
  text-align: center;
  display: block;
}

.subtitle { color: #000110; }

/* Mobile responsive adjustments */
@media (max-width: 768px) {
  .plan_de_site { font-size: 16px; }
  .accordion-area { padding: 60px 0 40px; }
}

/* ============================================================
   [25] FOOTER - BLACK BACKGROUND STYLING
   ============================================================ */
.footer1 {
  text-align: left;
  background: #000010;
  font-size: 18px;
  color: #FEFEFE;
  border-bottom: 15px solid var(--primary-gold);
  padding: 40px 30px;
}

.footer1 a {
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer1 a:hover {
  color: var(--primary-gold);
  text-decoration: underline;
}

.footer1 .widget-title {
  font-size: 23px;
  font-weight: bold;
  border-bottom: 2px solid #fff;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

/* Footer links section */
.footer_link {
  text-align: left;
  background: #000010;
  font-size: 12px;
  color: #FEFEFE;
  border-bottom: 1px solid white;
  padding: 20px 30px;
}

.footer_link a {
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer_link a:hover {
  color: var(--primary-gold);
  text-decoration: underline;
}

.footer_link .widget-title {
  font-size: 23px;
  font-weight: bold;
  border-bottom: 2px solid #fff;
  padding-bottom: 10px;
  margin-bottom: 15px;
}

/* Social icons in footer */
.follow-me-icons {
  font-size: 30px;
}

.follow-me-icons i {
  margin: 0 20px 10px 10px;
  color: #fff;
  transition: all 0.3s ease;
}

.follow-me-icons i:hover {
  color: var(--primary-gold);
}

/* ============================================================
   [6] NAVBAR (single source of truth)
   ============================================================ */
.navbar,
nav.navbar {
  background: var(--white) !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  padding: 12px 30px;
}

.navbar-brand {
  font-weight: 700;
  color: var(--primary-gold) !important;
}

.navbar-nav .nav-link {
  color: var(--text-primary) !important;
  font-weight: 600;
  transition: all 0.3s ease;
  padding: 8px 12px !important;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-gold) !important;
}

.navbar-nav .nav-link.active {
  color: var(--primary-gold) !important;
  border-bottom: 2px solid var(--primary-gold);
}

.navbar .navbar-brand {
  flex-shrink: 0;
  margin-right: 30px;
}

.navbar .nav-cta-wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-left: auto;
  margin-right: 0;
}

.navbar .btn-call {
  background: var(--primary-gold);
  color: white;
  border: none;
  padding: 10px 18px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  font-size: 0.95rem;
}

.navbar .btn-reserve {
  background: transparent;
  color: var(--primary-gold);
  border: 2px solid var(--primary-gold);
  padding: 8px 20px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  font-size: 0.95rem;
}

.navbar .navbar-toggler {
  border: 1px solid #ccc;
  padding: 6px 12px;
}

.navbar-nav {
  font-size: 0.95rem;
  gap: 5px;
}

.navbar-nav .nav-link-reserve {
  color: var(--primary-gold) !important;
  font-weight: 600;
  padding: 8px 12px;
}

.navbar-nav .nav-link-standard {
  color: var(--text-primary) !important;
  font-weight: 500;
  padding: 8px 12px;
}

/* ============================================================
   BANNIÈRE PRINCIPALE
   Pattern identique aux pages legacy (Strasbourg, etc.) :
   image dans le flux normal, width:100%, pas de trick -50vw.
   ============================================================ */
.banniere-principale {
  display: block;
  width: 100%;
  line-height: 0; /* supprime l'espace sous l'image */
}

.banniere-principale img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 55vh;
  object-fit: cover;
  object-position: center 30%; /* garde le sujet visible */
}

@media (max-width: 767px) {
  .banniere-principale img {
    max-height: 40vh;
    object-position: center 40%;
  }
}

/* ============================================================
   INTRO SECTION
   ============================================================ */
.intro-container {
  max-width: 900px;
  margin: 0 auto;
}

.intro-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 20px;
}

.intro-proof {
  background: linear-gradient(135deg, rgba(171, 125, 63, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%);
  padding: 16px 20px;
  border-left: 4px solid var(--primary-gold);
  border-radius: 6px;
  margin-bottom: 24px;
}

.intro-proof p {
  margin: 0;
  font-size: 1rem;
  color: #333;
}

.intro-how {
  font-size: 1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 24px;
}

.intro-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 32px;
}

.intro-secondary-cta {
  text-align: center;
  margin-top: 20px;
}

.btn-icon {
  margin-right: 6px;
}

.btn-icon-left {
  margin-right: 8px;
}

/* ============================================================
   FEATURE ICONS (dans feature-card)
   ============================================================ */
.feature-icon i,
.feature-card .bi {
  color: var(--primary-gold);
}

/* ============================================================
   SECTION AVANTAGES
   ============================================================ */
.advantages-section {
  padding: 60px 20px;
  background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-lighter) 100%);
  margin: 40px 0;
}

.advantages-section .section-h2 {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 50px;
}

.advantages-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 60px;
}

@media (max-width: 1024px) {
  .advantages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .advantages-grid {
    grid-template-columns: 1fr;
  }
}

.advantage-card {
  border: 1px solid #e0e0e0;
  padding: 30px 24px;
}

.advantage-card .adv-icon {
  text-align: center;
  margin-bottom: 16px;
  font-size: 2.5rem;
  color: var(--primary-gold);
}

.advantage-card h4 {
  text-align: center;
  color: var(--text-primary);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.advantage-card p {
  text-align: center;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ============================================================
   SECTION VÉHICULES (3 gammes)
   ============================================================ */
.vehicles-section-h2 {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 60px 0 40px;
}

.vehicles-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, 1fr);
  padding: 0 20px;
}

@media (max-width: 1024px) {
  .vehicles-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .vehicles-grid {
    grid-template-columns: 1fr;
  }
}

.vehicle-card {
  border: 2px solid var(--primary-gold);
  padding: 30px 24px;
  background: white;
  height: 100%;
}

.vehicle-card .vehicle-icon {
  text-align: center;
  margin-bottom: 16px;
  font-size: 2.5rem;
  color: var(--primary-gold);
}

.vehicle-card h4 {
  text-align: center;
  color: var(--primary-gold);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.vehicle-card .vehicle-model {
  text-align: center;
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.vehicle-card .vehicle-specs {
  list-style: none;
  padding: 0;
  margin: 0;
}

.vehicle-card .vehicle-specs li {
  padding: 8px 0;
  color: var(--text-primary);
  font-size: 0.95rem;
  border-bottom: 1px solid #f0f0f0;
}

.vehicle-card .vehicle-specs li:last-child {
  border-bottom: none;
}

.vehicle-card .vehicle-desc {
  margin-top: 16px;
  text-align: center;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* ============================================================
   [14] FLEXIBLE BOOKING SECTION
   ============================================================ */

/* Semantic wrapper (replaces legacy .mc_row4bis) */
.flexible-booking {
  border-top: 1px solid var(--border-light);
}

.flexible-booking a {
  color: var(--primary-gold) !important;
  font-weight: 600;
}

.flexible-booking a:hover {
  color: var(--gold-dark) !important;
  text-decoration: underline;
}

/* Destinations header (replaces legacy .mc_intro2) */
.destinations-header {
  padding: 40px 30px 0;
}

.destinations-header a {
  color: var(--primary-gold) !important;
  font-weight: 600;
}

.flexible-section {
  text-align: center;
  padding: 40px 20px;
}

.flexible-section h3 {
  color: var(--primary-gold);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.flexible-section p {
  font-size: 1rem;
  color: #333;
  line-height: 1.8;
}

/* ============================================================
   DESTINATIONS GALLERY
   ============================================================ */
.destinations-wrapper {
  padding: 20px;
  margin-bottom: 40px;
}

.destinations-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 40px;
}

@media (max-width: 1024px) {
  .destinations-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .destinations-grid {
    grid-template-columns: 1fr;
  }
}

.destination-card img {
  height: 250px;
  object-fit: cover;
  width: 100%;
}

/* ============================================================
   [10] VEHICLES SHOWCASE — 3 CARTES COMPACTES
   ============================================================ */
.vehicles-showcase {
  padding: 60px 30px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.vehicles-showcase__header {
  text-align: center;
  margin-bottom: 36px;
}

.vehicles-showcase__title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.vehicles-showcase__sub {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin: 0;
}

.vehicles-showcase__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Carte véhicule */
.vcard {
  background: white;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

.vcard:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-gold);
}

.vcard--featured {
  border-color: var(--primary-gold);
  box-shadow: 0 6px 24px rgba(171, 125, 63, 0.2);
}

.vcard__ribbon {
  position: absolute;
  top: 14px;
  right: -2px;
  background: linear-gradient(135deg, var(--primary-gold) 0%, var(--gold-dark) 100%);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 14px 4px 10px;
  border-radius: 4px 0 0 4px;
  z-index: 2;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.vcard__img-wrap {
  position: relative;
  height: 190px;
  overflow: hidden;
}

.vcard__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}

.vcard:hover .vcard__img {
  transform: scale(1.05);
}

.vcard__badge {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: rgba(0, 0, 0, 0.65);
  color: white;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  backdrop-filter: blur(4px);
}

.vcard__body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 14px;
}

.vcard__top {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.vcard__name {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
}

.vcard__model {
  font-size: 0.82rem;
  color: var(--primary-gold);
  font-weight: 600;
}

.vcard__specs {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 8px;
}

.vcard__specs li {
  font-size: 0.83rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 6px;
}

.vcard__specs li .bi {
  color: var(--primary-gold);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.vcard__cta {
  display: block;
  background: linear-gradient(135deg, var(--primary-gold) 0%, var(--gold-dark) 100%);
  color: white !important;
  text-align: center;
  padding: 11px 16px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none !important;
  transition: all 0.3s;
  margin-top: auto;
  box-shadow: 0 3px 10px rgba(171, 125, 63, 0.25);
}

.vcard__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(171, 125, 63, 0.4) !important;
  color: white !important;
}

.vcard__cta:visited {
  color: white !important;
}

/* Tablet paysage : 3 cartes côte à côte jusqu'à 1024px */
@media (max-width: 1024px) {
  .vehicles-showcase__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  .vcard__name {
    font-size: 1rem;
  }
  .vcard__img-wrap {
    height: 170px;
  }
}

/* Tablet portrait : 1 colonne + cartes horizontales */
@media (max-width: 768px) {
  .vehicles-showcase {
    padding: 40px 20px 32px;
  }
  .vehicles-showcase__grid {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 520px;
    margin: 0 auto;
  }
  .vcard {
    display: grid;
    grid-template-columns: 180px 1fr;
    border-radius: 12px;
  }
  .vcard__img-wrap {
    height: 100%;
    min-height: 180px;
    border-radius: 12px 0 0 12px;
  }
  .vcard__img {
    border-radius: 12px 0 0 12px;
  }
  .vcard__ribbon {
    top: 10px;
    font-size: 0.7rem;
  }
  .vcard__badge {
    bottom: 8px;
    left: 8px;
    font-size: 0.72rem;
  }
}

/* Mobile : cartes verticales pleine largeur */
@media (max-width: 480px) {
  .vehicles-showcase {
    padding: 32px 14px 24px;
  }
  .vehicles-showcase__grid {
    max-width: 100%;
    gap: 16px;
  }
  .vcard {
    display: flex;
    flex-direction: column;
  }
  .vcard__img-wrap {
    height: 180px;
    border-radius: 12px 12px 0 0;
  }
  .vcard__img {
    border-radius: 0;
  }
  .vcard__body {
    padding: 16px;
  }
  .vcard__specs {
    grid-template-columns: 1fr 1fr;
  }
}

/* ============================================================
   [19] ABOUT SPLIT — 2 COLONNES SERVICE + ÉVÉNEMENTS
   ============================================================ */
.about-split {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  padding: 60px 30px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

.about-split__divider {
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--border-light) 20%, var(--border-light) 80%, transparent);
  margin: 0 40px;
  align-self: stretch;
}

.about-split__col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-split__icon {
  font-size: 2.2rem;
  line-height: 1;
}

.about-split__title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
}

.about-split__text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin: 0;
}

.about-split__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.about-split__list li {
  font-size: 0.92rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 10px;
}

.about-split__list li .bi {
  color: var(--primary-gold);
  font-size: 0.95rem;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .about-split {
    grid-template-columns: 1fr;
    padding: 36px 16px;
    gap: 32px;
  }

  .about-split__divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--border-light) 20%, var(--border-light) 80%, transparent);
    margin: 0;
  }
}

/* ============================================================
   [20] FINAL CTA SECTION
   ============================================================ */
.final-cta-section {
  background: linear-gradient(135deg, var(--primary-gold) 0%, var(--gold-dark) 100%);
  text-align: center;
  padding: 60px 20px;
}

.final-cta-section__inner {
  max-width: 700px;
  margin: 0 auto;
}

.final-cta-section__kicker {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 12px;
}

.final-cta-section h2 {
  color: white;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.final-cta-section p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1rem;
  margin-bottom: 28px;
}

.final-cta-section .cta-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-cta-white {
  background: white;
  color: var(--gold-dark) !important;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none !important;
  display: inline-block;
  transition: all 0.3s;
  box-shadow: 0 4px 14px rgba(0,0,0,0.15);
}

.btn-cta-white:hover {
  background: #f5f5f5;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2) !important;
  color: var(--gold-dark) !important;
}

.btn-cta-white:visited {
  color: var(--gold-dark) !important;
}

.btn-cta-white-phone {
  background: rgba(255,255,255,0.15);
  color: white !important;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  border: 2px solid rgba(255,255,255,0.5);
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s;
}

.btn-cta-white-phone:hover {
  background: rgba(255,255,255,0.25) !important;
  border-color: white;
  color: white !important;
  transform: translateY(-2px);
}

.btn-cta-white-phone:visited {
  color: white !important;
}

/* ============================================================
   [25] FOOTER — MODERN DESIGN 2026
   ============================================================ */

/* BASE */
.site-footer {
  background: #05050f;
  color: white;
  padding: 0;
  font-size: 0.95rem;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.90) !important;
  text-decoration: none;
  transition: color 0.25s ease;
}

.site-footer a:visited {
  color: rgba(255, 255, 255, 0.90) !important;
}

.site-footer a:hover {
  color: #f5d88a !important; /* gold clair — ratio 8.5:1 sur #05050f */
}

/* ---- TOPBAND ---- */
.footer-topband {
  background: linear-gradient(135deg, var(--primary-gold) 0%, var(--gold-dark) 100%);
  padding: 16px 30px;
}

.footer-topband__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-topband__left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-topband__stars {
  color: #fff;
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.footer-topband__score {
  font-size: 1.15rem;
  font-weight: 700;
  color: white;
}

.footer-topband__label {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.92);
}

.footer-topband__right {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.footer-topband__call {
  background: rgba(255, 255, 255, 0.18);
  color: white !important;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 6px;
  padding: 8px 16px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background 0.3s;
}

.footer-topband__call:hover {
  background: rgba(255, 255, 255, 0.3) !important;
  color: white !important;
}

.footer-topband__reserve {
  background: #000010;
  color: white !important;
  border-radius: 6px;
  padding: 8px 20px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: all 0.3s;
  border: 1px solid rgba(0,0,0,0.2);
}

.footer-topband__reserve:hover {
  background: #1a1a2e;
  color: white !important;
  transform: translateY(-1px);
}

/* ---- MAIN GRID ---- */
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 30px 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

/* ---- COLUMN HEADERS ---- */
.footer-col h3 {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary-gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(171, 125, 63, 0.4);
}

/* ---- COL ABOUT ---- */
.footer-brand {
  margin-bottom: 16px;
}

.footer-logo {
  height: 50px;
  width: auto;
  opacity: 1;
}

/* ─── Logo navbar — contrainte hauteur ─── */
.logo-menu {
  height: auto;
  max-height: 52px;
  width: auto;
}

.footer-col-about .footer-about-text {
  font-size: 0.9rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 16px;
}

.footer-badges-mini {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}

.footer-badge-mini {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.4;
}

/* App Store badge */
.footer-appstore {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 10px 14px;
  color: white !important;
  text-decoration: none !important;
  transition: all 0.3s;
  max-width: 180px;
}

.footer-appstore:hover {
  background: rgba(255, 255, 255, 0.18) !important;
  border-color: #f5d88a;
  color: #f5d88a !important;
}

.footer-appstore i {
  font-size: 1.6rem;
  flex-shrink: 0;
}

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

.footer-appstore__sub {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.78);
}

.footer-appstore__name {
  font-size: 0.95rem;
  font-weight: 700;
  color: white;
  line-height: 1.1;
}

/* ---- COL SERVICES ---- */
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-links a {
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.85) !important;
  font-size: 0.9rem;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.25s;
}

.footer-links a:last-child {
  border-bottom: none;
}

.footer-links a i {
  color: var(--primary-gold);
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: transform 0.25s;
}

.footer-links a:hover {
  color: #f5d88a !important; /* gold clair — WCAG AA 8.5:1 */
  padding-left: 4px;
  text-decoration: underline;
}

.footer-links a:hover i {
  transform: translateX(3px);
  color: #f5d88a;
}

.footer-links a.footer-link-highlight {
  color: white !important;
  font-weight: 600;
}

.footer-links a.footer-link-highlight:hover {
  color: #f5d88a !important;
}

/* ---- COL CONTACT ---- */
.footer-contact-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-phone-link {
  display: flex !important;
  align-items: center;
  gap: 8px;
  font-size: 1.2rem !important;
  font-weight: 700 !important;
  color: white !important;
  line-height: 1.2;
}

.footer-phone-link i {
  color: var(--primary-gold);
}

.footer-phone-note {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.70);
  margin-top: -8px;
  padding-left: 26px;
}

.footer-whatsapp {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  background: rgba(171, 125, 63, 0.10);
  border: 1px solid rgba(171, 125, 63, 0.25);
  border-radius: 6px;
  padding: 8px 14px;
  font-size: 0.85rem;
  font-weight: 600;
  color: white !important;
  transition: all 0.3s;
}

.footer-whatsapp i {
  color: var(--primary-gold);
  font-size: 1rem;
}

.footer-whatsapp:hover {
  background: rgba(171, 125, 63, 0.20) !important;
  color: var(--gold-light) !important;
  border-color: var(--gold-light);
}

.footer-address {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 14px;
}

.footer-address i {
  color: var(--primary-gold);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ---- COL SOCIAL ---- */
.footer-social-icons {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-social-icons a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.20);
  border-radius: 8px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85) !important;
  transition: all 0.3s;
}

.footer-social-icons a:hover {
  background: #f5d88a !important;
  border-color: #f5d88a !important;
  color: #05050f !important; /* texte sombre sur fond clair = contraste max */
  transform: translateY(-3px);
}

.btn-google-review {
  display: block;
  background: linear-gradient(135deg, var(--primary-gold) 0%, var(--gold-dark) 100%);
  color: white !important;
  padding: 10px 16px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.88rem;
  text-align: center;
  transition: all 0.3s;
  box-shadow: 0 4px 12px rgba(171, 125, 63, 0.3);
  margin-bottom: 10px;
}

.btn-google-review:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(171, 125, 63, 0.45) !important;
  color: white !important;
}

.footer-read-reviews {
  display: block;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.72) !important;
  transition: color 0.25s;
}

.footer-read-reviews:hover {
  color: #f5d88a !important;
  text-decoration: underline;
}

/* ---- FOOTER BOTTOM ---- */
.footer-bottom {
  background: rgba(0, 0, 0, 0.5);
  padding: 16px 30px;
  border-top: 1px solid rgba(171, 125, 63, 0.2);
}

.footer-bottom-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.68); /* ratio 5.8:1 sur noir — WCAG AA ✓ */
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bottom-inner a {
  color: rgba(255, 255, 255, 0.75) !important;
  text-decoration: none;
}

.footer-bottom-inner a:visited {
  color: rgba(255, 255, 255, 0.75) !important;
}

.footer-bottom-inner a:hover {
  color: #f5d88a !important; /* gold clair — bien visible au hover */
  text-decoration: underline;
}

.footer-bottom-sep {
  color: rgba(255, 255, 255, 0.4);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .footer-topband__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-inner {
    padding: 36px 20px 16px;
  }

  .footer-topband {
    padding: 14px 20px;
  }

  .footer-topband__right {
    width: 100%;
  }

  .footer-topband__call,
  .footer-topband__reserve {
    flex: 1;
    text-align: center;
  }

  .footer-bottom-inner {
    flex-direction: column;
    gap: 4px;
  }
}

.footer-bottom-inner a:hover {
  color: #f5d88a !important;
  text-decoration: underline;
}

/* ============================================================
   PRICING - styles inline PHP
   ============================================================ */
.pricing-grid-item {
  min-width: 0;
}

.pricing-divider {
  border: none;
  border-top: 1px solid var(--border-light);
  margin: 16px 0;
}

/* ============================================================
   FAQ TOGGLE BUTTON
   ============================================================ */
.faq-toggle-icon {
  color: var(--primary-gold);
  font-weight: bold;
  font-size: 1.4rem;
  margin-left: auto;
}

/* Row padding standard */
.row-padded {
  padding: 0 30px;
}

/* ── end legacy compat ── */

/* ============================================================
   [9] TABLE OF CONTENTS — sommaire avec ancres
   ============================================================ */
.toc-nav {
  max-width: 600px;
  margin: 0 auto 32px;
  padding: 0 30px;
}

.toc-details {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-left: 4px solid var(--primary-gold);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.toc-summary {
  padding: 16px 20px;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-primary);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.toc-summary::-webkit-details-marker {
  display: none;
}

.toc-summary::after {
  content: "▾";
  margin-left: auto;
  color: var(--primary-gold);
  font-size: 1.1rem;
  transition: transform 0.2s;
}

.toc-details[open] .toc-summary::after {
  transform: rotate(180deg);
}

.toc-list {
  padding: 0 20px 16px 36px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.toc-list li {
  font-size: 0.9rem;
}

.toc-list a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s, padding-left 0.2s;
  display: inline-block;
}

.toc-list a:hover {
  color: var(--primary-gold);
  padding-left: 4px;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .toc-nav {
    padding: 0 16px;
    margin-bottom: 24px;
  }
}

/* ============================================================
   [23] COMPARISON TABLE — featured snippet target
   ============================================================ */
.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 20px 0 28px;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  font-size: 0.92rem;
}

.comparison-table thead {
  background: linear-gradient(135deg, var(--primary-gold) 0%, var(--gold-dark) 100%);
}

.comparison-table thead th {
  color: #fff;
  font-weight: 700;
  padding: 14px 16px;
  text-align: left;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.comparison-table thead th:first-child {
  border-radius: 10px 0 0 0;
}

.comparison-table thead th:last-child {
  border-radius: 0 10px 0 0;
}

.comparison-table tbody td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border-light);
  color: var(--text-secondary);
  vertical-align: top;
}

.comparison-table tbody tr:last-child td {
  border-bottom: none;
}

.comparison-table tbody tr:nth-child(even) {
  background: var(--bg-light);
}

.comparison-table tbody tr:hover {
  background: rgba(171, 125, 63, 0.06);
}

.comparison-table tbody td:nth-child(2) {
  color: var(--primary-gold);
  font-weight: 600;
}

.comparison-table tbody td strong {
  color: var(--text-primary);
}

/* VTC column highlight — 2e colonne (notre service) */
.comparison-table thead th:nth-child(2) {
  background: linear-gradient(135deg, #c9973f 0%, var(--primary-gold) 100%);
  position: relative;
}
.comparison-table thead th:nth-child(2)::after {
  content: "★";
  margin-left: 6px;
  font-size: 0.75rem;
}
.comparison-table tbody td:nth-child(2) {
  background: rgba(171, 125, 63, 0.05);
}

@media (max-width: 768px) {
  .comparison-table {
    font-size: 0.78rem;
    display: block;
  }
  .table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .comparison-table thead th,
  .comparison-table tbody td {
    padding: 8px 10px;
    min-width: 110px;
  }
  .comparison-table thead th:first-child,
  .comparison-table tbody td:first-child {
    min-width: 90px;
    position: sticky;
    left: 0;
    z-index: 2;
    background: var(--white);
  }
  .comparison-table thead th:first-child {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--gold-dark) 100%);
  }
}

/* ============================================================
   [22] E-E-A-T META — date, auteur, temps de lecture
   ============================================================ */
.eeat-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 12px;
  padding: 12px 16px;
  background: rgba(171, 125, 63, 0.06);
  border-radius: 8px;
  margin-bottom: 28px;
  font-size: 0.82rem;
  color: var(--text-secondary);
}

.eeat-meta__item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.eeat-meta__item .bi {
  color: var(--primary-gold);
  font-size: 0.88rem;
}

.eeat-meta__item time {
  font-weight: 600;
  color: var(--text-primary);
}

.eeat-meta__sep {
  color: var(--text-muted);
  opacity: 0.5;
}

@media (max-width: 768px) {
  .eeat-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .eeat-meta__sep {
    display: none;
  }
}

/* ============================================================
   [21] SEO CONTENT SECTION
   ============================================================ */
.seo-section {
  background: linear-gradient(135deg, #f9f7f4 0%, #fff9f5 100%);
  padding: 40px;
  border-radius: 12px;
  border-left: 4px solid var(--primary-gold);
  line-height: 1.8;
}

.seo-section h2 {
  color: var(--primary-gold);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
}

.seo-section h3 {
  color: var(--text-dark);
  font-size: 1.3rem;
  font-weight: 600;
  margin-top: 25px;
  margin-bottom: 12px;
}

.seo-section p {
  color: var(--text-dark);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 16px;
  text-align: left;
}

.seo-section strong {
  color: var(--primary-gold);
  font-weight: 600;
}

@media (max-width: 768px) {
  .seo-section {
    padding: 25px;
  }

  .seo-section h2 {
    font-size: 1.5rem;
  }

  .seo-section h3 {
    font-size: 1.1rem;
    margin-top: 18px;
  }

  .seo-section p {
    font-size: 0.9rem;
  }
}

/* ============================================================
   [28a] CLS PREVENTION — aspect-ratio images
   ============================================================ */
.destination-card img,
.vcard__img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.hero-vtc__bg img {
  aspect-ratio: 2 / 1;
  object-fit: cover;
}

/* ============================================================
   [28b] GPU HINTS — will-change pour animations hover
   ============================================================ */
.destination-card img {
  will-change: transform;
}
.vcard {
  will-change: transform, box-shadow;
}
.feature-card {
  will-change: transform, box-shadow;
}

/* ============================================================
   [28c] PRINT STYLESHEET — impression propre
   ============================================================ */
@media print {
  .sticky-mobile-bar,
  .navbar,
  .hero-vtc__overlay,
  .hero-vtc__ctas,
  .final-cta-section,
  .footer-topband,
  .site-footer,
  .toc-nav,
  .breadcrumb-nav,
  .reservation_bouton,
  .cta-primary,
  .cta-secondary,
  .btn-cta-white,
  .btn-cta-white-phone {
    display: none !important;
  }
  body {
    padding: 0 !important;
    font-size: 11pt;
    color: #000;
  }
  .hero-vtc {
    min-height: auto;
    background: none !important;
  }
  .hero-vtc__content {
    color: #000;
    padding: 20px 0;
  }
  .hero-vtc__h1 {
    color: #000;
    text-shadow: none;
    font-size: 18pt;
  }
  .hero-vtc__proof,
  .hero-vtc__tagline,
  .hero-vtc__price-hint {
    color: #333;
  }
  .comparison-table {
    box-shadow: none;
    border: 1px solid #ccc;
  }
  a[href]::after {
    content: " (" attr(href) ")";
    font-size: 8pt;
    color: #666;
  }
  a.destination-cta::after,
  a.ld-card::after,
  a.hero-vtc__cta-primary::after {
    content: none;
  }
}

/* ============================================================
   [28d] PERFORMANCE — content-visibility: auto
   ============================================================
   Empêche le rendu des sections hors-écran (below the fold).
   Le navigateur reporte le layout/paint jusqu'au scroll.
   contain-intrinsic-size donne une estimation de hauteur
   pour éviter les sauts de scrollbar (CLS).
   ============================================================ */
.vehicles-showcase,
.how-it-works,
.destinations-wrapper,
.about-split,
.final-cta-section,
.seo-section,
.faq,
.ld-section,
.flexible-booking,
.reviews {
  content-visibility: auto;
  contain-intrinsic-size: auto 500px;
}

/* Comparison table — plus petit */
.comparison-table {
  content-visibility: auto;
  contain-intrinsic-size: auto 350px;
}

/* ╔═══════════════════════════════════════════════════════════════╗
   ║  FIN DU FICHIER — design-2026.css                           ║
   ╠═══════════════════════════════════════════════════════════════╣
   ║  Ce fichier est le DESIGN SYSTEM TEMPLATE pour toutes les   ║
   ║  pages SEO du site drivigo.fr.                               ║
   ║                                                               ║
   ║  POUR DUPLIQUER UNE PAGE :                                   ║
   ║  1. Copier vtc-longue-distance.php → nouvelle-page.php      ║
   ║  2. Modifier les variables PHP ($og_title, $trajetX, etc.)  ║
   ║  3. Adapter le H1, les FAQs, le pricing, les destinations   ║
   ║  4. Mettre à jour les JSON-LD (TaxiService, FAQPage, etc.)  ║
   ║  5. Les :root CSS variables s'adaptent automatiquement       ║
   ║                                                               ║
   ║  Aucune modification CSS nécessaire pour les nouvelles pages ║
   ╚═══════════════════════════════════════════════════════════════╝ */

