/* ===================================================
   TABCAR — Navettes Aéroport & Transferts Gare
   Design System
   =================================================== */

@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;600;700;800&family=Inter:wght@400;500;600&display=swap');

/* === TOKENS === */
:root {
  --blue-deep:    #0D1B2A;
  --blue-mid:     #1B6CA8;
  --blue-light:   #2E86C1;
  --blue-pale:    #D6E8F5;
  --orange:       #E8750A;
  --orange-hover: #C5620A;
  --white:        #F7F9FC;
  --gray-light:   #EDF2F7;
  --gray-mid:     #6B7A8D;
  --gray-dark:    #2D3748;
  --green:        #27AE60;

  --font-display: 'Sora', sans-serif;
  --font-body:    'Inter', sans-serif;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;

  --shadow-sm: 0 2px 8px rgba(13,27,42,0.08);
  --shadow-md: 0 6px 24px rgba(13,27,42,0.14);
  --shadow-lg: 0 16px 48px rgba(13,27,42,0.20);

  --max-w: 1180px;
  --nav-h: 72px;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--gray-dark);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* === UTILITIES === */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.mt-4 { margin-top: 4rem; }

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.18s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
}
.btn-primary:hover { background: var(--orange-hover); border-color: var(--orange-hover); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-secondary {
  background: transparent;
  color: var(--blue-mid);
  border-color: var(--blue-mid);
}
.btn-secondary:hover { background: var(--blue-mid); color: #fff; }
.btn-white {
  background: #fff;
  color: var(--blue-deep);
  border-color: #fff;
}
.btn-white:hover { background: var(--gray-light); }
.btn-call {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}
.btn-call:hover { background: #229954; }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.btn-sm { padding: 9px 18px; font-size: 0.88rem; }

/* === NAV === */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: var(--blue-deep);
  z-index: 1000;
  border-bottom: 2px solid rgba(255,255,255,0.07);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  color: #fff;
  letter-spacing: -0.5px;
}
.nav-logo span { color: var(--orange); }
.nav-logo-icon {
  width: 36px; height: 36px;
  background: var(--blue-mid);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: all 0.15s;
  position: relative;
}
.nav-links a:hover { color: #fff; background: rgba(255,255,255,0.08); }
.nav-links .has-dropdown { cursor: pointer; }
.dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  padding: 8px;
  z-index: 100;
}
.has-dropdown:hover .dropdown { display: block; }
.dropdown a {
  display: block;
  color: var(--gray-dark);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
}
.dropdown a:hover { background: var(--gray-light); color: var(--blue-mid); }
.nav-cta { display: flex; gap: 8px; }
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}
.nav-burger span {
  display: block;
  width: 24px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.2s;
}

/* === FLOATING CTA BAR === */
.floating-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--blue-deep);
  border-top: 2px solid var(--orange);
  padding: 12px 16px;
  z-index: 999;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.floating-cta.visible { display: flex; }
.floating-cta-text { color: rgba(255,255,255,0.8); font-size: 0.85rem; }
.floating-cta-text strong { color: #fff; }
.floating-cta-btns { display: flex; gap: 8px; flex-shrink: 0; }

/* === HERO === */
.hero {
  min-height: 100vh;
  background: var(--blue-deep);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 60% 50%, rgba(27,108,168,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(232,117,10,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 0 100px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(27,108,168,0.3);
  border: 1px solid rgba(27,108,168,0.4);
  color: var(--blue-pale);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 24px;
}
.hero-eyebrow::before { content: "✈"; }
.hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.15;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}
.hero h1 em {
  font-style: normal;
  color: var(--orange);
}
.hero-sub {
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.85);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 50px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Hero map visual */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-map-container {
  position: relative;
  width: 100%;
  max-width: 480px;
}
.hero-map-svg {
  width: 100%;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.4));
}
.hero-stat-cards {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0; left: 0;
  pointer-events: none;
}
.hero-stat {
  position: absolute;
  background: rgba(255,255,255,0.95);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  box-shadow: var(--shadow-lg);
  pointer-events: all;
}
.hero-stat-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--blue-deep);
  line-height: 1;
}
.hero-stat-label { font-size: 0.72rem; color: var(--gray-mid); font-weight: 500; margin-top: 2px; }
.hero-stat.card-1 { top: 15%; left: -10%; }
.hero-stat.card-2 { bottom: 20%; right: -5%; }
.hero-stat.card-3 { top: 55%; left: -8%; }

/* === BREADCRUMB === */
.breadcrumb {
  background: var(--gray-light);
  padding: 10px 0;
  font-size: 0.82rem;
  color: var(--gray-mid);
}
.breadcrumb ol { display: flex; gap: 6px; align-items: center; }
.breadcrumb li + li::before { content: "›"; margin-right: 6px; }
.breadcrumb a { color: var(--blue-mid); }
.breadcrumb a:hover { text-decoration: underline; }

/* === SECTION HEADERS === */
.section-header { text-align: center; max-width: 680px; margin: 0 auto 56px; }
.section-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-mid);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--blue-deep);
  line-height: 1.2;
  letter-spacing: -0.3px;
  margin-bottom: 16px;
}
.section-sub {
  color: var(--gray-mid);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* === DESTINATIONS === */
.destinations { padding: 96px 0; background: #fff; }
.dest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.dest-card {
  background: var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: all 0.22s ease;
  border: 2px solid transparent;
  text-decoration: none;
  display: block;
}
.dest-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--blue-mid);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}
.dest-card:hover { border-color: var(--blue-pale); transform: translateY(-3px); box-shadow: var(--shadow-md); background: #fff; }
.dest-card:hover::before { transform: scaleX(1); }
.dest-icon { font-size: 2.2rem; margin-bottom: 16px; }
.dest-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--blue-deep);
  margin-bottom: 8px;
}
.dest-card p { font-size: 0.88rem; color: var(--gray-mid); line-height: 1.5; margin-bottom: 16px; }
.dest-cities { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 20px; }
.dest-city-tag {
  font-size: 0.72rem;
  background: var(--blue-pale);
  color: var(--blue-mid);
  padding: 3px 8px;
  border-radius: 4px;
  font-weight: 500;
}
.dest-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--blue-mid);
  display: flex;
  align-items: center;
  gap: 4px;
}
.dest-link::after { content: "→"; }

/* === TWO WAYS TO TRAVEL === */
.two-ways { padding: 96px 0; background: var(--blue-deep); }
.two-ways .section-title { color: #fff; }
.two-ways .section-eyebrow { color: var(--blue-pale); }
.two-ways .section-sub { color: rgba(255,255,255,0.65); }
.ways-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 56px;
}
.way-card {
  background: rgba(255,255,255,0.06);
  border: 2px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  text-align: center;
  transition: all 0.22s;
  position: relative;
  overflow: hidden;
}
.way-card.featured {
  border-color: var(--orange);
  background: rgba(232,117,10,0.08);
}
.way-card.featured .way-badge {
  position: absolute;
  top: 18px; right: 18px;
  background: var(--orange);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.way-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}
.way-card h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 12px;
}
.way-card > p { color: rgba(255,255,255,0.7); font-size: 0.95rem; margin-bottom: 28px; }
.way-features { text-align: left; margin-bottom: 32px; }
.way-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.way-feature:last-child { border-bottom: none; }
.way-feature-icon { color: var(--green); font-size: 1rem; flex-shrink: 0; }
.way-price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--orange);
  margin-bottom: 20px;
}

/* === ARGUMENTS === */
.arguments { padding: 96px 0; background: var(--gray-light); }
.args-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.arg-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 28px 22px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.arg-icon { font-size: 2rem; margin-bottom: 12px; }
.arg-card h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--blue-deep);
  margin-bottom: 6px;
}
.arg-card p { font-size: 0.82rem; color: var(--gray-mid); }

/* === HOW IT WORKS === */
.how-it-works { padding: 96px 0; background: #fff; }
.steps-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.steps-row::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: var(--blue-pale);
  z-index: 0;
}
.step {
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}
.step-num {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--blue-deep);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  border: 4px solid var(--white);
  box-shadow: var(--shadow-sm);
}
.step-num::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid var(--blue-pale);
}
.step h4 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--blue-deep);
  margin-bottom: 8px;
  font-size: 1rem;
}
.step p { font-size: 0.85rem; color: var(--gray-mid); }

/* === ZONES === */
.zones { padding: 96px 0; background: var(--blue-deep); }
.zones .section-title { color: #fff; }
.zones .section-eyebrow { color: var(--blue-pale); }
.zones .section-sub { color: rgba(255,255,255,0.65); }
.zones-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 48px;
}
.zone-tag {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.85);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 50px;
  transition: all 0.15s;
}
.zone-tag:hover { background: var(--blue-mid); border-color: var(--blue-mid); color: #fff; }
.zone-tag a { color: inherit; }

/* === BOOKING FORM === */
.booking-section { padding: 96px 0; background: var(--gray-light); }
.booking-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  box-shadow: var(--shadow-lg);
  max-width: 800px;
  margin: 0 auto;
  border-top: 5px solid var(--orange);
}
.booking-card h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.8rem;
  color: var(--blue-deep);
  margin-bottom: 8px;
}
.booking-card .sub { color: var(--gray-mid); margin-bottom: 40px; }
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group.full { grid-column: 1/-1; }
.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-dark);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 14px;
  border: 2px solid #E2E8F0;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--gray-dark);
  background: var(--white);
  transition: border-color 0.15s;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue-mid);
  background: #fff;
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-actions { margin-top: 28px; display: flex; gap: 14px; flex-wrap: wrap; }
.form-note { font-size: 0.8rem; color: var(--gray-mid); margin-top: 12px; }

/* === FAQ === */
.faq-section { padding: 96px 0; background: #fff; }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid #E2E8F0;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--blue-deep);
  padding: 22px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color 0.15s;
}
.faq-question:hover { color: var(--blue-mid); }
.faq-icon { font-size: 1.3rem; font-weight: 400; color: var(--blue-mid); flex-shrink: 0; transition: transform 0.2s; }
.faq-answer {
  display: none;
  padding-bottom: 22px;
  color: var(--gray-mid);
  font-size: 0.92rem;
  line-height: 1.8;
}
.faq-item.open .faq-answer { display: block; }
.faq-item.open .faq-icon { transform: rotate(45deg); }

/* === TESTIMONIALS === */
.testimonials { padding: 96px 0; background: var(--gray-light); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testimonial-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}
.testimonial-stars { color: #F6C90E; font-size: 1rem; margin-bottom: 12px; }
.testimonial-text { font-size: 0.9rem; color: var(--gray-dark); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 10px; }
.testimonial-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--blue-pale);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  color: var(--blue-mid);
  font-size: 0.9rem;
}
.testimonial-name { font-weight: 600; font-size: 0.88rem; color: var(--blue-deep); }
.testimonial-city { font-size: 0.78rem; color: var(--gray-mid); }

/* === CTA BAND === */
.cta-band { padding: 80px 0; background: var(--orange); }
.cta-band-inner { text-align: center; }
.cta-band h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: #fff;
  margin-bottom: 12px;
}
.cta-band p { color: rgba(255,255,255,0.85); font-size: 1.05rem; margin-bottom: 32px; }
.cta-band-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* === FOOTER === */
.footer {
  background: var(--blue-deep);
  padding: 72px 0 40px;
  color: rgba(255,255,255,0.7);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}
.footer-brand h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 14px;
}
.footer-brand h3 span { color: var(--orange); }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; margin-bottom: 20px; }
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  margin-bottom: 8px;
}
.footer-contact-item a { color: rgba(255,255,255,0.8); }
.footer-contact-item a:hover { color: #fff; }
.footer-col h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul a { font-size: 0.85rem; transition: color 0.15s; }
.footer-col ul a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.8rem; }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 0.8rem; }
.footer-legal a:hover { color: #fff; }

/* === PAGE INTERIORS === */
.page-hero {
  background: var(--blue-deep);
  padding: calc(var(--nav-h) + 56px) 0 64px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  right: 0; bottom: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(ellipse at right, rgba(27,108,168,0.2), transparent 70%);
  pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: #fff;
  margin-bottom: 14px;
  letter-spacing: -0.4px;
}
.page-hero-sub { color: rgba(255,255,255,0.7); font-size: 1.05rem; max-width: 600px; margin-bottom: 28px; }
.page-hero-badges { display: flex; flex-wrap: wrap; gap: 8px; }
.page-hero-badge {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 50px;
}

/* === CONTENT SECTIONS === */
.content-section { padding: 72px 0; }
.content-section:nth-child(even) { background: var(--gray-light); }
.content-section h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--blue-deep);
  margin-bottom: 20px;
}
.content-section p { color: var(--gray-mid); line-height: 1.8; margin-bottom: 16px; }
.content-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.info-box {
  background: var(--blue-pale);
  border-left: 4px solid var(--blue-mid);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 20px 24px;
  margin: 20px 0;
}
.info-box p { color: var(--blue-deep); margin: 0; font-size: 0.9rem; }

/* === CITIES INDEX === */
.cities-index { padding: 80px 0; }
.cities-alpha { display: flex; flex-wrap: wrap; gap: 32px; }
.cities-alpha-group h3 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--blue-mid);
  font-size: 1.2rem;
  margin-bottom: 10px;
  border-bottom: 2px solid var(--blue-pale);
  padding-bottom: 4px;
}
.cities-alpha-group ul { display: flex; flex-direction: column; gap: 4px; }
.cities-alpha-group a {
  font-size: 0.88rem;
  color: var(--gray-mid);
  transition: color 0.15s;
}
.cities-alpha-group a:hover { color: var(--blue-mid); }

/* === SIDEBAR LAYOUT === */
.sidebar-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: start;
  padding: 72px 0;
}
.sidebar-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--orange);
  position: sticky;
  top: calc(var(--nav-h) + 20px);
}
.sidebar-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--blue-deep);
  margin-bottom: 20px;
}
.sidebar-links { display: flex; flex-direction: column; gap: 6px; margin-top: 20px; }
.sidebar-links a {
  font-size: 0.85rem;
  color: var(--gray-mid);
  padding: 6px 0;
  border-bottom: 1px solid var(--gray-light);
  transition: color 0.15s;
}
.sidebar-links a:hover { color: var(--blue-mid); }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .dest-grid { grid-template-columns: repeat(2, 1fr); }
  .args-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .sidebar-layout { grid-template-columns: 1fr; }
  .sidebar-card { position: static; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--blue-deep);
    padding: 24px;
    gap: 4px;
    border-top: 1px solid rgba(255,255,255,0.1);
    z-index: 999;
  }
  .nav-links.open .nav-cta-mobile {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.1);
  }

  .hero-grid { grid-template-columns: 1fr; gap: 40px; padding: 48px 0 60px; }
  .hero-visual { display: none; }
  .hero h1 { font-size: 1.9rem; }

  .ways-grid { grid-template-columns: 1fr; }
  .steps-row { grid-template-columns: 1fr 1fr; gap: 32px; }
  .steps-row::before { display: none; }
  .dest-grid { grid-template-columns: 1fr; }
  .args-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .content-2col { grid-template-columns: 1fr; gap: 32px; }
  .booking-card { padding: 32px 24px; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .floating-cta { flex-direction: column; padding: 16px; text-align: center; }
  .floating-cta-btns { width: 100%; }
  .floating-cta-btns .btn { flex: 1; justify-content: center; }
  .page-hero { padding: calc(var(--nav-h) + 32px) 0 40px; }
}

@media (max-width: 480px) {
  .args-grid { grid-template-columns: 1fr; }
  .steps-row { grid-template-columns: 1fr; }
  .hero-badges { flex-direction: column; align-items: flex-start; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }
}

/* === ANIMATIONS === */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.5s ease both; }
.fade-up-2 { animation: fadeUp 0.5s 0.1s ease both; }
.fade-up-3 { animation: fadeUp 0.5s 0.2s ease both; }

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.6; }
}
.pulse { animation: pulse 2s ease-in-out infinite; }

/* === PRINT === */
@media print {
  .nav, .floating-cta, .hero-visual, .cta-band { display: none !important; }
  body { padding-top: 0; }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

/* ===================================================
   INTERIOR PAGES — Components (version définitive)
   =================================================== */

/* Layout sidebar */
.layout-sidebar {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3rem;
  align-items: start;
  padding: 3rem 0 4rem;
}
.main-content { min-width: 0; }

/* Hero CTA group */
.hero-cta-group { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1.5rem; }
.hero-cta-group .btn { min-width: 200px; justify-content: center; }

/* Page hero — fond garanti + texte blanc */
.page-hero { background: var(--blue-deep) !important; color: #fff; }
.page-hero h1, .page-hero .page-hero-sub,
.page-hero .hero-eyebrow, .page-hero .page-hero-badge { color: #fff !important; }
.page-hero h1 { text-shadow: 0 2px 8px rgba(0,0,0,.3); }
.page-hero .hero-eyebrow::before { content: none; }
.page-hero .hero-eyebrow {
  background: rgba(232,117,10,.25);
  border-color: rgba(232,117,10,.4);
  color: #fff;
  margin-bottom: 1.25rem;
}

/* Info grid */
.info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.25rem; margin-top: 1.5rem; }
.info-card { background: var(--gray-light); border-radius: var(--radius-md); padding: 1.5rem; text-align: center; border-top: 4px solid var(--blue-mid); }
.info-card h3 { font-size: 1rem; margin-bottom: .4rem; color: var(--blue-deep); font-family: var(--font-display); }
.info-card p { font-size: .9rem; color: var(--gray-mid); line-height: 1.6; margin: 0; }
.info-icon { font-size: 2rem; margin-bottom: .75rem; display: block; line-height: 1; }

/* Zone tags */
.zone-tags { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1rem; }
.zone-tag--more { background: var(--blue-pale) !important; color: var(--blue-mid) !important; border-color: transparent !important; font-style: italic; pointer-events: none; }

/* Compare grid */
.compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 1.5rem; }
.compare-card { border-radius: var(--radius-md); padding: 1.75rem; border: 2px solid var(--gray-light); background: #fff; }
.compare-card h3 { font-size: 1.1rem; margin-bottom: 1rem; color: var(--blue-deep); font-family: var(--font-display); font-weight: 700; }
.compare-card ul { list-style: none; padding: 0; margin: 0 0 1.25rem; }
.compare-card li { padding: .35rem 0; font-size: .95rem; border-bottom: 1px solid var(--gray-light); }
.compare-card li:last-child { border-bottom: none; }
.compare-card--privative { border-color: var(--blue-mid); }
.compare-card--collective { border-color: var(--orange); }

/* Args grid */
.args-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1rem; margin-top: 1.5rem; }
.arg-item { display: flex; gap: 1rem; align-items: flex-start; padding: 1rem 1.25rem; background: var(--gray-light); border-radius: var(--radius-md); border-left: 3px solid var(--blue-mid); }
.arg-item .arg-icon { font-size: 1.75rem; flex-shrink: 0; line-height: 1; }
.arg-item strong { display: block; color: var(--blue-deep); font-weight: 700; margin-bottom: .2rem; font-size: .95rem; }
.arg-item p { color: var(--gray-mid); font-size: .88rem; margin: 0; line-height: 1.5; }

/* CTA Banner */
.cta-banner { background: var(--blue-deep); padding: 3.5rem 0; }
.cta-banner-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.cta-banner h2 { color: #fff; font-size: clamp(1.3rem, 2.5vw, 1.8rem); margin-bottom: .4rem; font-family: var(--font-display); }
.cta-banner p { color: rgba(255,255,255,.7); margin: 0; }
.btn-white { background: #fff; color: var(--blue-deep) !important; border-color: #fff; font-weight: 700; }
.btn-white:hover { background: #f0f4f8; border-color: #f0f4f8; }

/* Feature list */
.feature-list { list-style: none; padding: 0; display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: .5rem; margin-top: 1rem; }
.feature-list li { padding: .6rem 1rem; background: var(--gray-light); border-radius: var(--radius-sm); font-size: .95rem; color: var(--gray-dark); }

/* Steps list */
.steps-list { padding: 0; list-style: none; counter-reset: steps; margin-top: 1rem; }
.steps-list li { counter-increment: steps; position: relative; padding: 1rem 1rem 1rem 4rem; margin-bottom: .75rem; background: var(--gray-light); border-radius: var(--radius-md); color: var(--gray-dark); font-size: .95rem; }
.steps-list li::before { content: counter(steps); position: absolute; left: 1rem; top: 50%; transform: translateY(-50%); width: 2rem; height: 2rem; background: var(--orange); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: .9rem; font-family: var(--font-display); }

/* Sidebar CTA */
.sidebar-card--cta { background: var(--blue-deep) !important; border-color: transparent; }
.sidebar-card--cta h3 { color: #fff !important; }
.sidebar-card--cta p { color: rgba(255,255,255,.8) !important; }
.btn-block { display: block; text-align: center; width: 100%; }

/* Highlight box */
.highlight-box { background: var(--blue-pale); border-left: 4px solid var(--blue-mid); border-radius: var(--radius-md); padding: 1.25rem 1.5rem; color: var(--gray-dark); font-size: .95rem; }
.highlight-box strong { color: var(--blue-deep); }

/* Destinations grid */
.destinations-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 1.25rem; margin-top: 1rem; }
.dest-card--highlight { border-color: var(--orange) !important; background: linear-gradient(135deg, #fff8f0 0%, #fff 100%); }

/* Content section headings */
.content-section > h2:first-child {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.6rem);
  font-weight: 700;
  color: var(--blue-deep);
  margin-bottom: 1.25rem;
  padding-bottom: .6rem;
  border-bottom: 3px solid var(--orange);
  display: inline-block;
}

/* Departure calendar table */
.departures-table { width: 100%; border-collapse: collapse; margin-top: 1.5rem; font-size: .92rem; }
.departures-table th { background: var(--blue-deep); color: #fff; padding: .75rem 1rem; text-align: left; font-family: var(--font-display); font-weight: 600; }
.departures-table td { padding: .75rem 1rem; border-bottom: 1px solid var(--gray-light); color: var(--gray-dark); vertical-align: middle; }
.departures-table tr:nth-child(even) td { background: #f9fafc; }
.departures-table tr:hover td { background: var(--blue-pale); }
.badge-places { display: inline-block; padding: .2rem .6rem; border-radius: 50px; font-size: .8rem; font-weight: 700; }
.badge-places--dispo { background: #d1fae5; color: #065f46; }
.badge-places--limite { background: #fef3c7; color: #92400e; }
.badge-places--complet { background: #fee2e2; color: #991b1b; }

/* ===================================================
   MOBILE RESPONSIVE — Interior pages (définitif)
   =================================================== */
@media (max-width: 960px) {
  .layout-sidebar { grid-template-columns: 1fr; gap: 2rem; padding: 2rem 0 3rem; }
  .sidebar { display: flex; flex-direction: column; gap: 1.5rem; }
  .sidebar-card--cta { order: -1; }
  .compare-grid { grid-template-columns: 1fr; }
  .cta-banner-inner { flex-direction: column; text-align: center; }
  .hero-cta-group { flex-direction: column; align-items: stretch; }
  .departures-table { font-size: .82rem; }
  .departures-table th, .departures-table td { padding: .6rem .75rem; }
}

@media (max-width: 640px) {
  .info-grid { grid-template-columns: 1fr; }
  .destinations-grid { grid-template-columns: 1fr 1fr; }
  .feature-list { grid-template-columns: 1fr; }
  .args-grid { grid-template-columns: 1fr; }
  .page-hero { padding: calc(var(--nav-h) + 20px) 0 28px !important; }
  .page-hero h1 { font-size: 1.45rem !important; }
  .zone-tag { font-size: .8rem; padding: .3rem .65rem; }
  .cta-banner { padding: 2.5rem 0; }
}

@media (max-width: 400px) {
  .destinations-grid { grid-template-columns: 1fr; }
  .hero-cta-group .btn { font-size: .95rem; padding: .75rem 1.25rem; }
}

/* ===================================================
   MOBILE UX — Touch & iOS fixes
   =================================================== */

/* Touch cibles min 44px (WCAG) */
.btn, .nav-links a, .faq-question, .filter-btn,
.zone-tag, .btn-reserver, .btn-appeler {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Éviter le zoom auto sur iOS au focus des inputs */
input, select, textarea {
  font-size: 16px !important;
}
@media (min-width: 640px) {
  input, select, textarea { font-size: inherit !important; }
}

/* Scroll horizontal masqué sur mobile */
body { overflow-x: hidden; }

/* Nav mobile : padding correct pour éviter le débordement */
@media (max-width: 768px) {
  .nav-inner { padding: 0 1rem; }
  .hero-cta-group { flex-direction: column; }
  .hero-cta-group .btn { width: 100%; max-width: 360px; }
  .booking-card { padding: 1.5rem 1rem; }
  .form-grid { grid-template-columns: 1fr; }
  .form-actions { flex-direction: column; gap: .75rem; }
  .form-actions .btn { width: 100%; justify-content: center; }
  .cta-band-inner { flex-direction: column; gap: 1rem; text-align: center; }
}

/* Dropdown nav : accessibilité touch */
@media (max-width: 768px) {
  .dropdown { position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; background: rgba(255,255,255,.05); border-radius: 0;
    padding: 0 0 0 1rem; display: none; }
  .has-dropdown.open .dropdown { display: block; }
}
