/* ============================================================
   MY VTC GO — index.css
   Styles spécifiques aux pages index (FR/EN/DE/LU/PT + racine)
   NE PAS charger sur les pages VTC, bienveillance, alternative, réservation
   
   Dépendances globales chargées séparément :
   → css/global/footer.css
   → css/global/faq.css
   → css/global/icons.css
   → css/global/scroll-arrows.css
   → css/global/city-bar-index.css
   → css/reservation.css  (formulaire B)
   ============================================================ */

/* ===== FONTS ===== */
@font-face {
  font-family: 'Outfit'; font-style: normal; font-weight: 300; font-display: swap;
  src: url('/css/fonts/outfit-v15-latin-300.woff2') format('woff2');
}
@font-face {
  font-family: 'Outfit'; font-style: normal; font-weight: 400; font-display: swap;
  src: url('/css/fonts/outfit-v15-latin-regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Outfit'; font-style: normal; font-weight: 500; font-display: swap;
  src: url('/css/fonts/outfit-v15-latin-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Outfit'; font-style: normal; font-weight: 600; font-display: swap;
  src: url('/css/fonts/outfit-v15-latin-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Outfit'; font-style: normal; font-weight: 700; font-display: swap;
  src: url('/css/fonts/outfit-v15-latin-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Outfit'; font-style: normal; font-weight: 800; font-display: swap;
  src: url('/css/fonts/outfit-v15-latin-800.woff2') format('woff2');
}

/* ===== VARIABLES ===== */
:root {
  --font: 'Outfit', system-ui, sans-serif;
  --ice:        #D4D4D4;
  --blue:       #C0C0C0;
  --blue-dim:   rgba(192,192,192,0.10);
  --blue-glow:  rgba(192,192,192,0.20);
  --cyan:       #D4D4D4;
  --white:      #D4D4D4;
  --bg:         #1C1C1C;
  --bg2:        #181818;
  --text:       rgba(255,255,255,0.85);
  --muted:      rgba(255,255,255,0.70);
  --label:      #A6A6A6;
  --g-bg:       rgba(255,255,255,0.008);
  --g-bg-mid:   rgba(255,255,255,0.018);
  --g-bg-hi:    rgba(255,255,255,0.035);
  --g-border:   rgba(255,255,255,0.12);
  --g-border-hi:rgba(255,255,255,0.22);
  --g-blur:     blur(32px);
  --g-blur-lg:  blur(48px);
  --cta:        #B0B0B0;
  --cta-dark:   #888888;
  --cta-text:   #1C1C1C;
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 100px;
  --t: 0.28s cubic-bezier(.4,0,.2,1);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; overflow-x: clip; -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
img { display: block; max-width: 100%; }
p { line-height: 1.7; color: rgba(255,255,255,0.85); }
body {
  font-family: var(--font); font-weight: 400;
  color: var(--text); background: #1C1C1C;
  overflow-x: clip; width: 100%; min-height: 100vh;
}
h1,h2,h3,h4 { font-family: var(--font); color: #D4D4D4; line-height: 1.2; font-weight: 700; }
h1 { font-weight: 800; }
h2 { font-weight: 700; }
:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; }

/* ===== CANVAS BLOBS ===== */
#glass-blob-canvas {
  position: fixed; inset: 0;
  width: 100vw; height: 100vh;
  z-index: 0; pointer-events: none;
  opacity: 0.7; overflow: hidden;
}

/* ===== CONTAINER ===== */
.container { max-width: 1180px; width: 100%; margin: 0 auto; padding: 0 24px; }

/* ===== GLASS BASE ===== */
.glass {
  background: var(--g-bg);
  border: 1px solid var(--g-border);
  backdrop-filter: var(--g-blur);
  -webkit-backdrop-filter: var(--g-blur);
  border-radius: var(--r-lg);
}

/* ===== SECTION TITLE ===== */
.section-title { text-align: center; margin-bottom: 52px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
  font-weight: 600; color: #C0C0C0;
  background: rgba(192,192,192,0.07);
  border: 1px solid rgba(192,192,192,0.18);
  padding: 5px 16px; border-radius: var(--r-xl); margin-bottom: 14px;
}
.section-title h2 { font-size: clamp(26px,4vw,42px); margin-bottom: 12px; }
.section-title p { color: rgba(255,255,255,0.80); font-size: 15px; max-width: 500px; margin: 0 auto; }
.gold-line, .blue-line {
  width: 40px; height: 2px;
  background: linear-gradient(90deg, #C0C0C0, transparent);
  margin: 20px auto 0; border-radius: 2px; display: block;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 13px 28px; border-radius: var(--r-xl);
  font-size: 14px; font-weight: 700; font-family: var(--font);
  letter-spacing: .02em; transition: var(--t); white-space: nowrap;
}
.btn.primary {
  background: linear-gradient(135deg, #B0B0B0, #888);
  color: #1C1C1C;
  box-shadow: 0 4px 24px rgba(192,192,192,0.25);
}
.btn.primary:hover { background: linear-gradient(135deg, #C8C8C8, #A0A0A0); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(192,192,192,0.35); }
.btn.glass-btn {
  background: var(--g-bg-mid); color: var(--white);
  border: 1px solid var(--g-border-hi); backdrop-filter: var(--g-blur);
}
.btn.glass-btn:hover { background: var(--g-bg-hi); transform: translateY(-2px); }
.btn-icon { width: 18px; height: 18px; object-fit: contain; }

/* ===== TOPBAR ===== */
.hero-topbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 99999;
  display: flex; align-items: center; justify-content: space-between;
  gap: 8px; padding: 10px 28px;
  background: rgba(28,28,28,0.95);
  backdrop-filter: blur(40px) saturate(1.8);
  -webkit-backdrop-filter: blur(40px) saturate(1.8);
  border-bottom: 2px solid rgba(255,255,255,0.16);
  box-shadow: 0 2px 30px rgba(0,0,0,0.6);
}
.topbar-left { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.logo-link { display: flex; align-items: center; }
.logo { height: 46px; width: auto; object-fit: contain; }
.topbar-resa-btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 20px; border-radius: 100px;
  background: linear-gradient(135deg, #B0B0B0, #888);
  color: #111; font-family: var(--font);
  font-size: 12px; font-weight: 800; letter-spacing: .08em;
  white-space: nowrap; text-decoration: none; flex-shrink: 0; line-height: 1;
  box-shadow: 0 3px 14px rgba(192,192,192,0.22);
  transition: background .25s ease, transform .25s ease;
}
.topbar-resa-btn span { color: #111; display: inline; }
.topbar-resa-btn img { width: 15px; height: 15px; object-fit: contain; flex-shrink: 0; }
.topbar-resa-btn:hover { background: linear-gradient(135deg, #C8C8C8, #A0A0A0); transform: translateY(-1px); }
.lang-switch {
  display: flex; align-items: center; gap: 2px; flex-shrink: 0;
  background: rgba(255,255,255,0.016);
  border: 1px solid rgba(255,255,255,0.10);
  padding: 4px 8px; border-radius: var(--r-xl); backdrop-filter: blur(20px);
}
.lang-btn {
  display: flex; align-items: center; gap: 4px;
  background: transparent; border: none; border-radius: 8px;
  padding: 3px 8px; font-size: 11px; font-weight: 600;
  font-family: var(--font); color: rgba(255,255,255,0.70); letter-spacing: .5px;
  transition: color var(--t); cursor: pointer;
}
.lang-btn.active { color: var(--white); }
.lang-btn img { border-radius: 2px; }

/* ===== HERO ===== */
.hero { position: relative; padding-top: 74px; }
#hero-canvas { display: none !important; }
.hero::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.20), transparent);
  z-index: 2;
}
.hero-content {
  position: relative; z-index: 3;
  display: flex; flex-direction: column; align-items: center;
  text-align: center; padding: 72px 24px 56px;
  max-width: 820px; margin: 0 auto;
}
.tagline-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--g-bg-mid); border: 1px solid var(--g-border-hi);
  color: var(--ice); font-size: 12px; font-weight: 500;
  padding: 7px 20px; border-radius: var(--r-xl); margin-bottom: 20px;
  backdrop-filter: var(--g-blur);
}
.live-dot {
  display: inline-block; width: 7px; height: 7px; border-radius: 50%;
  background: #34d399; flex-shrink: 0;
  box-shadow: 0 0 8px rgba(52,211,153,0.6);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:.6; transform:scale(1.4); }
}
.frontalier-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--g-bg); border: 1px solid var(--g-border);
  color: var(--white); font-size: 13px; padding: 10px 22px;
  border-radius: var(--r-xl); margin-bottom: 28px;
  backdrop-filter: var(--g-blur); transition: var(--t);
}
.frontalier-badge:hover { background: var(--g-bg-mid); border-color: var(--g-border-hi); }
.frontalier-badge strong { color: var(--cyan); }
.hero h1 {
  font-size: clamp(2rem, 5.5vw, 3.8rem);
  color: var(--white); margin-bottom: 16px; letter-spacing: -0.025em;
}
.hero h1 span {
  background: linear-gradient(135deg, #B0B0B0 0%, #D4D4D4 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero > .hero-content > p { font-size: 16px; color: var(--label); margin-bottom: 32px; line-height: 1.7; }
.hero-trust-bar {
  display: flex; align-items: center; gap: 0;
  background: rgba(255,255,255,0.004);
  border: 2px solid rgba(255,255,255,0.20);
  backdrop-filter: none; -webkit-backdrop-filter: none;
  box-shadow: 0 1px 0 rgba(255,255,255,0.10) inset;
  border-radius: var(--r-xl); padding: 12px 28px; margin-bottom: 28px;
  flex-wrap: wrap; justify-content: center; gap: 6px 0;
}
.trust-item-glass {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 500; color: var(--ice);
  padding: 0 18px; white-space: nowrap;
}
.trust-item-glass svg { width: 14px; height: 14px; flex-shrink: 0; color: var(--cyan); }
.trust-sep { color: rgba(255,255,255,0.70); font-size: 16px; user-select: none; }
.hero-buttons { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ===== NAV BARRE ===== */
.menu-wrap { display: none; }

/* ===== SECTIONS — espacements ===== */
section, .about-section, .services-section, .tarifs-section,
.vehicle-section, .destinations-section, .zone-section,
.faq-section, .contact-section, .avis-section, .seo-cities {
  padding: 80px 0; position: relative; z-index: 1;
}
.about-section, .services-section, .tarifs-section, .vehicle-section,
.destinations-section, .zone-section, .faq-section, .contact-section,
.avis-section, .seo-cities, .avis-section { background: transparent; }

/* ===== GLASS CARDS ===== */
.glass-card, .service-card, .tarif-card, .avis-card,
.feature-item, .spec-item, .zone-card,
.dest-card, .contact-method, .cta-page-link,
.route-item, .faq-item, .city-content {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: none; -webkit-backdrop-filter: none;
  border-radius: var(--r-lg);
  box-shadow: 0 1px 0 rgba(255,255,255,0.10) inset;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.35s cubic-bezier(.22,.68,0,1.2), box-shadow 0.3s ease;
}
.service-card:hover, .tarif-card:hover, .avis-card:hover,
.dest-card:hover, .contact-method:hover, .cta-page-link:hover,
.zone-card:hover, .glass-card:hover, .feature-item:hover {
  background: rgba(255,255,255,0.016);
  border-color: rgba(255,255,255,0.38);
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 1px 0 rgba(255,255,255,0.22) inset, 0 30px 80px rgba(0,0,0,0.35);
}

/* ===== macOS DOTS ===== */
.service-card, .tarif-card, .avis-card,
.city-content, .reservation-form-block { position: relative; }
.service-card::before, .tarif-card::before, .avis-card::before,
.city-content::before, .reservation-form-block::before {
  content: ''; position: absolute; top: 12px; left: 16px;
  width: 44px; height: 10px;
  background:
    radial-gradient(circle 4.5px at 4.5px 5px,  #FF5F57 100%, transparent 100%),
    radial-gradient(circle 4.5px at 19px 5px,   #FFBD2E 100%, transparent 100%),
    radial-gradient(circle 4.5px at 33.5px 5px, #28C840 100%, transparent 100%);
  z-index: 10; pointer-events: none;
}
.service-card:hover::before, .tarif-card:hover::before, .avis-card:hover::before,
.city-content:hover::before { filter: brightness(1.3); }
.feature-item, .spec-item, .zone-card, .dest-card, .cta-page-link { position: relative; }
.feature-item::before, .spec-item::before, .zone-card::before,
.dest-card::before, .cta-page-link::before {
  content: ''; position: absolute; top: 8px; left: 12px;
  width: 30px; height: 7px;
  background:
    radial-gradient(circle 3px at 3px 3.5px,  #FF5F57 100%, transparent 100%),
    radial-gradient(circle 3px at 13px 3.5px, #FFBD2E 100%, transparent 100%),
    radial-gradient(circle 3px at 23px 3.5px, #28C840 100%, transparent 100%);
  z-index: 10; pointer-events: none;
}
.service-card, .tarif-card, .avis-card,
.city-content, .reservation-form-block { padding-top: 32px; }
.feature-item, .spec-item, .zone-card, .dest-card, .cta-page-link { padding-top: 24px; }
.faq-item::before, .route-item::before, .contact-method::before,
.hero-trust-bar::before { content: none; }

/* ===== ABOUT ===== */
.about-grid { display: grid; grid-template-columns: 1fr 420px; gap: 60px; align-items: center; }
.about-text .section-title { text-align: left; }
.about-text .gold-line { margin-left: 0; }
.about-intro { color: rgba(255,255,255,0.90); font-size: 15px; line-height: 1.85; margin-bottom: 16px; }
.about-intro strong { color: #E8F4FF; font-weight: 600; }
.features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 24px 0; }
.feature-item { padding: 14px 16px; display: flex; align-items: flex-start; gap: 12px; }
.feature-check { color: #C0C0C0; font-size: 14px; font-weight: 700; margin-top: 2px; flex-shrink: 0; }
.feature-text strong { display: block; color: var(--white); font-size: 13px; font-weight: 600; }
.feature-text span { color: rgba(255,255,255,0.70); font-size: 12px; }
.about-img { width: 100%; border-radius: var(--r-lg); object-fit: cover; aspect-ratio: 4/3; border: 1px solid var(--g-border); box-shadow: 0 20px 60px rgba(0,0,0,0.6); }
.about-badge {
  position: absolute; bottom: -16px; right: -16px;
  background: linear-gradient(135deg, #888, #666); color: #1C1C1C;
  padding: 18px 20px; border-radius: var(--r-md);
  text-align: center; line-height: 1;
  box-shadow: 0 8px 32px rgba(192,192,192,0.20);
}
.about-badge .star-num { font-size: 28px; font-weight: 800; display: block; }
.about-image-block { position: relative; }
.driver-inline { margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--g-border); }
.driver-eyebrow { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,0.70); margin-bottom: 6px; font-weight: 600; }
.driver-inline h3 { font-size: 20px; margin-bottom: 10px; }
.driver-inline p { color: rgba(255,255,255,0.80); font-size: 14px; line-height: 1.8; margin-bottom: 12px; }
.driver-inline p strong { color: #E8F4FF; }
.driver-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.driver-tag {
  background: var(--g-bg); border: 1px solid var(--g-border); color: rgba(255,255,255,0.85);
  font-size: 11px; padding: 5px 14px; border-radius: var(--r-xl);
  display: inline-flex; align-items: center; gap: 6px; font-weight: 500;
  backdrop-filter: blur(8px);
}
.chauffeur-wrap { position: relative; width: 55%; margin-top: 24px; }
.chauffeur-photo { width: 100%; border-radius: var(--r-lg); object-fit: cover; object-position: center top; aspect-ratio: 3/4; display: block; border: 1px solid var(--g-border); }
.chauffeur-badge {
  position: absolute; bottom: -12px; left: 50%; transform: translateX(-50%); z-index: 3;
  background: var(--g-bg-mid); border: 1px solid var(--g-border-hi);
  backdrop-filter: var(--g-blur); border-radius: var(--r-xl);
  padding: 6px 16px; white-space: nowrap;
  display: flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 700; color: #C0C0C0; letter-spacing: .5px;
}

/* ===== SERVICES ===== */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 18px; }
.service-card { padding: 32px 24px; overflow: hidden; }
.service-card::after {
  content: ''; position: absolute; top: 0; left: 10%; right: 10%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  border-radius: 1px; opacity: 0; transition: opacity 0.3s ease;
}
.service-card:hover::after { opacity: 1; }
.service-num { font-size: 48px; font-weight: 800; color: rgba(192,192,192,0.08); line-height: 1; margin-bottom: 10px; display: block; }
.service-card img { width: 90px; height: 60px; object-fit: contain; margin-bottom: 18px; opacity: .9; }
.service-card h3 { font-size: 19px; margin-bottom: 10px; color: #F0F6FF; text-shadow: 0 1px 12px rgba(192,192,192,0.10); }
.service-card p { color: rgba(255,255,255,0.90); font-size: 13px; line-height: 1.7; margin-bottom: 16px; }
.service-card p strong { color: var(--label); }
.service-details { display: flex; flex-direction: column; gap: 5px; }
.service-detail {
  font-size: 12px; color: rgba(255,255,255,0.85);
  padding: 5px 12px; background: rgba(255,255,255,0.014);
  border-radius: var(--r-sm); border-left: 2px solid rgba(192,192,192,0.35);
}

/* ===== TARIFS ===== */
.tarifs-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 20px; }
.tarif-card { padding: 32px 26px; display: flex; flex-direction: column; }
.tarif-card.featured {
  border-color: rgba(192,192,192,0.40); background: rgba(192,192,192,0.05);
  box-shadow: 0 0 60px rgba(192,192,192,0.06), 0 12px 50px rgba(0,0,0,0.50);
}
.featured-badge {
  display: inline-block; font-size: 10.5px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: #C0C0C0;
  background: rgba(192,192,192,0.08); border: 1px solid rgba(192,192,192,0.20);
  padding: 4px 12px; border-radius: var(--r-xl); margin-bottom: 18px;
}
.tarif-icon img { width: 110px; height: 76px; object-fit: contain; opacity: .9; margin-bottom: 14px; }
.tarif-card h3 { font-size: 22px; margin-bottom: 8px; color: #F0F6FF; }
.tarif-card .desc { font-size: 13px; color: rgba(255,255,255,0.90); margin-bottom: 18px; }
.tarif-list { display: flex; flex-direction: column; gap: 7px; flex: 1; margin-bottom: 20px; }
.tarif-list li { font-size: 13px; color: rgba(255,255,255,0.90); padding-left: 16px; position: relative; }
.tarif-list li::before { content: '→'; position: absolute; left: 0; color: rgba(192,192,192,0.60); font-size: 11px; }
.tarif-price { font-size: 14px; color: rgba(255,255,255,0.70); padding-top: 18px; border-top: 1px solid var(--g-border); }
.tarif-price strong { color: #C0C0C0; font-size: 24px; font-weight: 700; }
.tarif-note { text-align: center; color: rgba(255,255,255,0.70); font-size: 12px; margin-top: 24px; }

/* ===== CITIES ===== */
.city-tabs { display: flex; gap: 8px; justify-content: center; margin-bottom: 36px; flex-wrap: wrap; }
.city-tab {
  padding: 9px 22px; border-radius: var(--r-xl); font-size: 13px; font-weight: 600;
  color: rgba(255,255,255,0.70); background: rgba(255,255,255,0.014); border: 1px solid rgba(255,255,255,0.10);
  backdrop-filter: blur(16px); cursor: pointer;
  transition: color var(--t), border-color var(--t), background var(--t);
}
.city-tab:hover { color: var(--white); border-color: rgba(255,255,255,0.20); }
.city-tab.active { color: #D4D4D4; background: rgba(192,192,192,0.20); border-color: transparent; box-shadow: 0 4px 20px rgba(192,192,192,0.15); }
.city-panel { display: none; }
.city-panel.active { display: block; }
.city-content {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px; padding: 36px;
  border-radius: var(--r-lg); background: rgba(255,255,255,0.004);
  border: 2px solid rgba(255,255,255,0.18); backdrop-filter: none;
  box-shadow: 0 1px 0 rgba(255,255,255,0.10) inset;
}
.city-content h3 { font-size: 24px; margin-bottom: 14px; color: #F0F6FF; }
.city-content > div > p { color: rgba(255,255,255,0.90); font-size: 14px; line-height: 1.8; margin-bottom: 12px; }
.city-content > div > p strong { color: #E8F4FF; }
.city-routes { display: flex; flex-direction: column; gap: 9px; }
.route-item { display: flex; justify-content: space-between; align-items: center; padding: 13px 16px; border-radius: var(--r-md); gap: 12px; border: 2px solid rgba(255,255,255,0.14); transition: border-color 0.25s ease, transform 0.3s cubic-bezier(.22,.68,0,1.2), background 0.25s ease; }
.route-item:hover { border-color: rgba(192,192,192,0.40); transform: translateX(6px); background: rgba(255,255,255,0.020); }
.route-name { font-size: 13.5px; font-weight: 700; color: #E8F4FF; margin-bottom: 2px; }
.route-time { font-size: 11px; color: rgba(255,255,255,0.75); }
.route-price { font-size: 13px; font-weight: 700; color: #7DD3FC; white-space: nowrap; }

/* ===== VEHICLE ===== */
.vehicle-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.vehicle-grid h3 { font-size: 28px; margin-bottom: 10px; color: #F0F6FF; }
.vehicle-grid > div > p { color: rgba(255,255,255,0.90); font-size: 15px; margin-bottom: 24px; }
.vehicle-specs { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 24px; }
.spec-item { padding: 14px 16px; border-radius: var(--r-md); transition: border-color 0.25s ease, transform 0.35s cubic-bezier(.22,.68,0,1.2), background 0.25s ease, box-shadow 0.25s ease; }
.spec-item:hover { border-color: rgba(192,192,192,0.40); transform: translateY(-6px) scale(1.03); background: rgba(255,255,255,0.026); box-shadow: 0 12px 40px rgba(0,0,0,0.50); }
.spec-label { font-size: 11px; color: rgba(255,255,255,0.80); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 4px; font-weight: 600; }
.spec-value { font-size: 15px; font-weight: 700; color: var(--white); }
.vehicle-perks { display: flex; flex-direction: column; gap: 8px; }
.perk { display: flex; align-items: center; gap: 9px; font-size: 13px; color: var(--label); }
.perk::before { content: '✓'; color: #C0C0C0; font-weight: 700; flex-shrink: 0; }
.car-gallery .car-image { width: 100%; border-radius: var(--r-lg); object-fit: cover; aspect-ratio: 16/10; border: 1px solid var(--g-border); box-shadow: 0 20px 60px rgba(0,0,0,0.6); transition: transform .5s ease; }
.car-gallery:hover .car-image { transform: scale(1.02); }

/* ===== DESTINATIONS ===== */
.destinations-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(165px, 1fr)); gap: 14px; }
.dest-card { padding: 26px 18px; text-align: center; }
.dest-flag { display: flex; align-items: center; justify-content: center; margin-bottom: 10px; height: 22px; }
.dest-flag img { border-radius: 3px; box-shadow: 0 1px 4px rgba(0,0,0,0.4); }
.dest-city { font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.dest-info { font-size: 11px; color: rgba(255,255,255,0.70); margin-bottom: 10px; }
.dest-time { display: inline-block; font-size: 11px; font-weight: 600; color: #C0C0C0; background: rgba(192,192,192,0.08); padding: 4px 12px; border-radius: var(--r-xl); border: 1px solid rgba(192,192,192,0.18); }

/* ===== ZONE ===== */
.zone-grid { display: grid; grid-template-columns: 1fr 380px; gap: 52px; align-items: start; }
.zone-info h3 { font-size: 22px; margin-bottom: 14px; }
.zone-info > p { color: rgba(255,255,255,0.90); font-size: 14px; line-height: 1.8; margin-bottom: 24px; }
.zone-info > p strong { color: #E8F4FF; }
.zone-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(165px, 1fr)); gap: 12px; margin-bottom: 24px; }
.zone-card { padding: 20px 16px; border-radius: var(--r-lg); }
.zone-card-icon { margin-bottom: 8px; display: block; }
.zone-card-icon svg { width: 22px; height: 22px; color: var(--blue); }
.zone-card-title { color: var(--white); font-weight: 600; font-size: 14px; margin-bottom: 4px; }
.zone-card-sub { color: rgba(255,255,255,0.80); font-size: 11px; line-height: 1.6; }
.zone-map-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(192,192,192,0.18); color: #D4D4D4;
  font-weight: 700; font-size: 13px; padding: 11px 24px; border-radius: var(--r-xl); transition: var(--t);
}
.zone-map-badge:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(192,192,192,0.20); }
.map-wrap { border-radius: var(--r-lg); overflow: hidden; border: 1px solid rgba(255,255,255,0.12); box-shadow: 0 20px 60px rgba(0,0,0,0.60); aspect-ratio: 4/5; position: sticky; top: 120px; }
.map-wrap iframe { width: 100%; height: 100%; border: none; filter: grayscale(50%) invert(1) hue-rotate(180deg) brightness(.78) contrast(.9); }

/* ===== CONTACT ===== */
.contact-section-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; margin-bottom: 50px; }
.contact-info-block h3 { font-size: 24px; margin-bottom: 10px; color: #F0F6FF; }
.contact-info-block > p { color: rgba(255,255,255,0.90); font-size: 14px; margin-bottom: 20px; }
.contact-methods { display: flex; flex-direction: column; gap: 10px; }
.contact-method { display: flex; align-items: center; gap: 14px; padding: 14px 18px; border-radius: var(--r-md); }
.contact-method:hover { transform: translateY(-5px) scale(1.02); }
.method-icon img { width: 22px; height: 22px; object-fit: contain; }
.method-text { flex: 1; }
.method-text strong { color: var(--white); font-size: 14px; font-weight: 600; display: block; }
.method-text span { color: rgba(255,255,255,0.70); font-size: 12px; }
.method-arrow { color: #C0C0C0; font-size: 14px; }
.contact-cta-block h4 { font-size: 20px; margin-bottom: 8px; }
.contact-cta-block > p { color: rgba(255,255,255,0.90); font-size: 14px; margin-bottom: 18px; }
.cta-pages-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.cta-page-link { display: flex; flex-direction: column; gap: 4px; padding: 18px; border-radius: var(--r-md); }
.cta-page-icon svg { width: 22px; height: 22px; color: var(--blue); margin-bottom: 6px; }
.cta-page-title { font-size: 14px; font-weight: 600; color: var(--white); }
.cta-page-desc { font-size: 12px; color: rgba(255,255,255,0.70); }

/* ===== RESERVATION SECTION (wrapper — styles formulaire dans reservation.css) ===== */
.reservation-section { padding: 60px 0; position: relative; z-index: 1; }

/* ===== SEO TEXT ===== */
.seo-text-block {
  background: transparent; border-top: 1px solid rgba(255,255,255,0.07);
  padding: 60px 0; position: relative; z-index: 1;
}
.seo-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.seo-col h2 { font-size: 22px; margin-bottom: 14px; }
.seo-col h3 { font-size: 14px; font-weight: 600; color: var(--label); margin: 18px 0 7px; }
.seo-col p { font-size: 14px; color: rgba(255,255,255,0.90); line-height: 1.8; margin-bottom: 8px; }
.seo-col ul { display: flex; flex-direction: column; gap: 6px; margin-top: 8px; }
.seo-col ul li { font-size: 13px; color: rgba(255,255,255,0.70); padding-left: 16px; position: relative; }
.seo-col ul li::before { content: '→'; position: absolute; left: 0; color: #C0C0C0; opacity: .6; }

/* ===== FLOAT CTA ===== */
.float-cta-wrap { position: fixed; bottom: 70px; right: 20px; z-index: 450; display: flex; flex-direction: column; align-items: flex-end; gap: 8px; }
.float-cta { display: flex; align-items: center; gap: 8px; background: linear-gradient(135deg, #25D366, #128C7E); color: #fff; font-size: 13px; font-weight: 700; font-family: var(--font); padding: 11px 20px; border-radius: var(--r-xl); box-shadow: 0 6px 22px rgba(37,211,102,0.45); transition: var(--t); }
.float-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(37,211,102,0.55); }
.float-cta img { width: 16px; height: 16px; }
.float-tooltip { background: rgba(255,255,255,0.024); border: 1px solid rgba(255,255,255,0.16); backdrop-filter: blur(24px); color: var(--cyan); font-size: 12px; font-weight: 600; padding: 6px 14px; border-radius: var(--r-xl); opacity: 0; transform: translateX(10px); transition: var(--t); pointer-events: none; display: flex; align-items: center; gap: 6px; }
.float-tooltip.visible { opacity: 1; transform: translateX(0); }

/* ===== FRONTALIER SECTION ===== */
.frontalier-section {
  padding: 28px 0; background: rgba(12,12,12,0.40);
  border-top: 1px solid rgba(255,255,255,0.07);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  position: relative; z-index: 1;
}
.frontalier-badge-large {
  position: relative; display: flex; align-items: center; gap: 16px;
  background: rgba(255,255,255,0.014); border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(28px); border-radius: 16px; padding: 32px 24px 18px;
  color: #D4D4D4; text-decoration: none; transition: background .25s, transform .25s;
}
.frontalier-badge-large::before {
  content: ''; position: absolute; top: 12px; left: 16px;
  width: 44px; height: 10px;
  background:
    radial-gradient(circle 4.5px at 4.5px 5px,  #FF5F57 100%, transparent 100%),
    radial-gradient(circle 4.5px at 19px 5px,   #FFBD2E 100%, transparent 100%),
    radial-gradient(circle 4.5px at 33.5px 5px, #28C840 100%, transparent 100%);
  z-index: 10; pointer-events: none;
}
.frontalier-badge-large:hover { background: rgba(255,255,255,0.026); transform: translateY(-2px); }
.frontalier-badge-large .flag { display: flex; align-items: center; gap: 4px; flex-shrink: 0; }
.frontalier-badge-text { flex: 1; display: flex; flex-direction: column; gap: 3px; font-size: 14px; }
.frontalier-badge-text strong { color: #D4D4D4; }
.frontalier-badge-text em { font-style: normal; font-size: 11px; color: rgba(255,255,255,0.70); }
.frontalier-arrow { font-size: 18px; color: #C0C0C0; flex-shrink: 0; transition: transform .25s; }
.frontalier-badge-large:hover .frontalier-arrow { transform: translateX(4px); }

/* ===== ÉLÉMENTS AU-DESSUS DU CANVAS ===== */
header.hero, section, .about-section, .services-section, .tarifs-section,
.vehicle-section, .destinations-section, .zone-section, .faq-section,
.contact-section, .avis-section, .seo-cities, .seo-text-block { position: relative; z-index: 1; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-image-block { max-width: 460px; }
  .zone-grid { grid-template-columns: 1fr; }
  .map-wrap { position: static; aspect-ratio: 16/9; }
  .vehicle-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  section, .about-section, .services-section, .tarifs-section,
  .vehicle-section, .destinations-section, .zone-section,
  .faq-section, .contact-section, .avis-section, .seo-cities { padding: 52px 0; }
  .section-title { margin-bottom: 36px; }
  .hero-topbar { padding: 8px 8px; gap: 0; justify-content: space-between; }
  .logo { height: 30px; }
  .topbar-left { gap: 6px; flex-shrink: 1; min-width: 0; }
  .topbar-resa-btn { padding: 6px 8px; font-size: 10px; flex-shrink: 0; }
  .topbar-resa-btn img { display: none; }
  .lang-switch { padding: 3px 4px; gap: 1px; flex-shrink: 0; }
  .lang-btn { padding: 4px 7px; gap: 5px; flex-direction: row; font-size: 12px; letter-spacing: 0; }
  .lang-btn img { width: 16px; height: 12px; border-radius: 2px; }
  .lang-btn span { font-size: 10px; color: rgba(255,255,255,0.75); letter-spacing: 0; line-height: 1; }
  .lang-btn.active span { color: #D4D4D4; }
  .about-badge { position: static; display: inline-flex; align-items: center; gap: 6px; padding: 10px 18px; margin-top: 12px; border-radius: var(--r-xl); transform: none; bottom: auto; right: auto; }
  .hero { padding-top: 64px; }
  .hero-content { padding: 36px 16px 28px; }
  .hero h1 { font-size: 1.75rem; }
  .hero-trust-bar { padding: 10px 16px; gap: 4px 0; flex-direction: column; align-items: flex-start; border-radius: var(--r-lg); }
  .trust-sep { display: none; }
  .trust-item-glass { padding: 4px 0; font-size: 12px; }
  .city-content { grid-template-columns: 1fr; gap: 24px; padding: 22px; }
  .contact-section-intro { grid-template-columns: 1fr; gap: 32px; }
  .seo-cols { grid-template-columns: 1fr; }
  .cta-pages-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .city-bar { display: none; }
  .float-cta-wrap { bottom: 20px; right: 12px; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 1.55rem; }
  .hero-buttons { flex-direction: column; align-items: stretch; }
  .btn { justify-content: center; }
  .tarifs-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .destinations-grid { grid-template-columns: repeat(2, 1fr); }
  .avis-cards { grid-template-columns: 1fr; }
  .frontalier-badge-large { flex-wrap: wrap; padding: 14px 16px; }
  .frontalier-arrow { display: none; }
}
