/* ═══ PHP Launcher — Template Voyage ═══════════════════════════════════════ */
/* --primary / --secondary / --primary-dark injectés dynamiquement dans header.php */
:root {
  --text: #0f172a;
  --text-muted: #64748b;
  --bg: #f8fafc;
  --card: #ffffff;
  --border: #e2e8f0;
  --shadow: 0 1px 3px rgba(15,23,42,.06), 0 4px 12px rgba(15,23,42,.04);
  --shadow-md: 0 4px 16px rgba(15,23,42,.1);
  --radius: 12px;
  --radius-sm: 8px;
}
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; }
h1,h2,h3,h4 { line-height: 1.25; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ═══ HEADER ═══════════════════════════════════════════════════════════════ */
.site-header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 50;
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 64px; gap: 12px; }
.brand { display: flex; align-items: center; gap: 8px; font-weight: 700; font-size: 17px; color: var(--text); text-decoration: none; }
.brand:hover { text-decoration: none; }
.brand-mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 8px;
  background: var(--primary); color: #fff; font-weight: 800; font-size: 18px;
}
.nav-links { display: flex; align-items: center; gap: 20px; }
.nav-links a { color: var(--text); font-weight: 500; font-size: 14px; }
.nav-links a:hover { color: var(--primary); text-decoration: none; }
.nav-links a.nav-cta {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff; padding: 9px 18px; border-radius: 999px; font-weight: 700; font-size: 13px;
  display: inline-flex; align-items: center; gap: 6px;
  box-shadow: 0 4px 12px rgba(0,0,0,.12);
  transition: transform .15s, box-shadow .2s;
}
.nav-links a.nav-cta:hover { color:#fff; text-decoration:none; transform:translateY(-1px); box-shadow:0 8px 18px rgba(0,0,0,.18); }

/* Lang switcher */
.lang-switcher {
  position: relative;
  padding-bottom: 8px;  /* étend la zone hover vers le bas, ferme le gap */
  margin-bottom: -8px;  /* compense le padding pour ne pas décaler le layout flex */
}
.lang-current {
  cursor: pointer; font-size: 13px; font-weight: 600; color: var(--text-muted);
  padding: 4px 8px; border-radius: 6px; border: 1px solid var(--border);
  user-select: none;
}
.lang-dropdown {
  display: none; position: absolute; top: 100%; right: 0;
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md); min-width: 90px; z-index: 100;
  flex-direction: column;
}
.lang-switcher:hover .lang-dropdown,
.lang-switcher:focus-within .lang-dropdown { display: flex; }
.lang-dropdown a { padding: 9px 14px; font-size: 13px; font-weight: 600; color: var(--text); display: flex; align-items: center; gap: 8px; }
.lang-dropdown a:hover { background: var(--bg); color: var(--primary); text-decoration: none; }
.lang-code { font-weight: 700; font-size: 12px; background: var(--bg); border: 1px solid var(--border); border-radius: 4px; padding: 1px 5px; min-width: 28px; text-align: center; }
.lang-label { font-size: 13px; color: var(--text-muted); }
.lang-dropdown a:hover .lang-code { border-color: var(--primary); color: var(--primary); }
.lang-dropdown a:hover .lang-label { color: var(--primary); }

/* Hamburger */
.nav-hamburger {
  display: none; flex-direction: column; justify-content: center; align-items: center;
  gap: 5px; width: 40px; height: 40px; background: none; border: 1px solid var(--border);
  border-radius: 8px; cursor: pointer; padding: 0;
}
.nav-hamburger span { display: block; width: 20px; height: 2px; background: var(--text); border-radius: 2px; transition: transform .25s, opacity .2s; transform-origin: center; }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-mobile { display: none; flex-direction: column; gap: 2px; padding: 8px 16px 12px; border-top: 1px solid var(--border); background: #fff; }
.nav-mobile.open { display: flex; }
.nav-mobile a { padding: 10px 8px; font-size: 14px; font-weight: 500; color: var(--text); }
.nav-mobile a.nav-cta-mobile { color: var(--primary); font-weight: 700; }

/* ═══ BREADCRUMB ══════════════════════════════════════════════════════════ */
.breadcrumb-bar { background: #fff; border-bottom: 1px solid var(--border); }
.breadcrumb { display: flex; align-items: center; gap: 6px; padding: 10px 0; font-size: 13px; flex-wrap: wrap; }
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb .sep { color: var(--border); }
.breadcrumb span:last-child { color: var(--text); font-weight: 500; }

/* ═══ HERO TRAJET (2 colonnes) ═══════════════════════════════════════════ */
.hero-2-cols {
  background-color: var(--primary-dark);
  background-image:
    linear-gradient(160deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.30) 55%, rgba(0,0,0,.50) 100%),
    var(--hero-img, none);
  background-size: cover;
  background-position: center top;
  padding: 56px 0 64px;
  position: relative;
  overflow: hidden;
}
.hero-2-cols::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Ccircle cx='30' cy='30' r='1.5' fill='rgba(255,255,255,.05)'/%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  align-items: start;
}
.hero-info { color: #fff; }
.hero-badge {
  display: inline-block; background: rgba(255,255,255,.2); backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,.3); border-radius: 999px;
  padding: 4px 14px; font-size: 12px; font-weight: 600; letter-spacing: .05em;
  text-transform: uppercase; margin-bottom: 16px;
}
.hero-info h1 {
  font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 800; margin: 0 0 16px;
  text-shadow: 0 2px 12px rgba(0,0,0,.5); line-height: 1.2;
}
.hero-info h1 .accent { color: #00E600; text-shadow: 0 1px 4px rgba(0,0,0,.4); }
.h1-eyebrow {
  display: block; font-size: 12px; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: rgba(255,255,255,.65); margin-bottom: 8px;
  text-shadow: none;
}
.h1-cities { display: block; }
.hero-subtitle { font-size: 16px; opacity: .92; margin: 0 0 28px; max-width: 520px; }
.hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.stat-pill {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,.15); backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.25); border-radius: var(--radius);
  padding: 12px 18px;
}
.stat-icon { font-size: 22px; flex-shrink: 0; }
.stat-label { font-size: 11px; opacity: .8; text-transform: uppercase; letter-spacing: .04em; }
.stat-value { font-size: 20px; font-weight: 800; color: #fff; }

.hero-widget { position: relative; z-index: 1; display: flex; align-items: flex-start; justify-content: center; }
.widget-wrapper {
  background: #fff; border-radius: var(--radius); padding: 16px 20px;
  box-shadow: 0 12px 40px rgba(0,0,0,.3);
  width: 340px;
}

/* ═══ HERO HOMEPAGE ══════════════════════════════════════════════════════ */
.hero-home { padding: 0; }
.hero-home-bg {
  background: linear-gradient(160deg, var(--primary-dark) 0%, var(--primary) 55%, color-mix(in srgb, var(--secondary) 50%, #000) 100%);
  padding: 64px 0 72px;
}
.hero-home-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 48px;
  align-items: center;
}
.hero-home-info { color: #fff; }
.hero-home-info h1 {
  font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 800; margin: 0 0 18px;
  text-shadow: 0 2px 12px rgba(0,0,0,.25);
}
.hero-home-info h1 .accent { color: var(--secondary); }
.hero-home-subtitle { font-size: 17px; opacity: .9; margin: 0 0 32px; max-width: 480px; }
.hero-home-widget { position: relative; z-index: 1; }

/* Barre de recherche homepage */
.search-bar { background: rgba(255,255,255,.15); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,.3); border-radius: var(--radius); padding: 12px; }
.search-fields { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.search-input {
  flex: 1; min-width: 120px; padding: 12px 16px; border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,.4); background: rgba(255,255,255,.9);
  font-size: 14px; font-family: inherit; color: var(--text); outline: none;
  transition: border-color .2s;
}
.search-input::placeholder { color: var(--text-muted); }
.search-input:focus { border-color: var(--primary); background: #fff; }
.search-sep { color: rgba(255,255,255,.8); font-weight: 700; font-size: 18px; flex-shrink: 0; }
.search-btn {
  padding: 12px 24px; border-radius: var(--radius-sm); border: none; cursor: pointer;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff; font-size: 14px; font-weight: 700; font-family: inherit;
  box-shadow: 0 4px 12px rgba(0,0,0,.2); transition: transform .15s, box-shadow .2s;
}
.search-btn:hover { transform: translateY(-1px); box-shadow: 0 8px 18px rgba(0,0,0,.25); }

/* ═══ LAYOUT CONTENU + SIDEBAR ═══════════════════════════════════════════ */
.content-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  padding-top: 40px;
  padding-bottom: 60px;
  align-items: start;
}
.content-main { min-width: 0; }
.content-sidebar {
  position: sticky; top: 80px;
  max-height: calc(100vh - 100px);
  overflow-y: auto; overflow-x: hidden;
  scrollbar-width: thin; scrollbar-color: var(--border) transparent;
}

/* ═══ SECTIONS DE CONTENU ════════════════════════════════════════════════ */
.section-block {
  background: var(--card); border-radius: var(--radius); border: 1px solid var(--border);
  padding: 28px; margin-bottom: 24px; box-shadow: var(--shadow);
}
.section-block h2 {
  font-size: 1.2rem; font-weight: 700; color: var(--text); margin: 0 0 16px;
}
.section-block p { color: var(--text-muted); font-size: 15px; margin: 0 0 16px; line-height: 1.7; }
.section-block p:last-child { margin-bottom: 0; }

/* ═══ TRANSPORT CARDS ════════════════════════════════════════════════════ */
.transport-list { display: flex; flex-direction: column; gap: 12px; }
.transport-card {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px; border-radius: var(--radius); border: 2px solid var(--border);
  background: var(--card); text-decoration: none; color: var(--text);
  transition: border-color .2s, box-shadow .2s, transform .15s;
  gap: 12px;
}
.transport-card:hover {
  border-color: var(--primary); box-shadow: 0 4px 16px rgba(0,0,0,.08);
  transform: translateY(-1px); text-decoration: none;
}
.transport-card--best {
  border-color: var(--primary); background: color-mix(in srgb, var(--primary) 5%, #fff);
}
.transport-card-left { display: flex; align-items: center; gap: 12px; }
.transport-icons { display: flex; gap: 4px; color: var(--primary); }
.transport-icon { display: flex; align-items: center; }
.transport-info {}
.transport-name { font-weight: 600; font-size: 15px; }
.transport-duration { font-size: 13px; color: var(--text-muted); margin-top: 2px; }
.transport-card-right { display: flex; align-items: center; gap: 10px; margin-left: auto; }
.transport-badge {
  font-size: 10px; font-weight: 700; padding: 3px 8px; border-radius: 999px;
  letter-spacing: .04em; text-transform: uppercase; white-space: nowrap;
}
.badge--best { background: var(--primary); color: #fff; }
.badge--alt  { background: var(--bg); color: var(--text-muted); border: 1px solid var(--border); }
.badge--cheap { background: #16a34a; color: #fff; }
.badge--fast  { background: #2563eb; color: #fff; }
.transport-price { font-size: 16px; font-weight: 700; color: var(--primary); white-space: nowrap; }
.transport-card-right-inner { display: flex; flex-direction: column; align-items: flex-end; gap: 6px; }
.transport-voir {
  background: var(--primary);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 999px;
  letter-spacing: .04em;
  white-space: nowrap;
}

/* ═══ STEPS (guide étape par étape) ══════════════════════════════════════ */
.steps-list { list-style: none; padding: 0; margin: 0 0 20px; }
.step-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 12px 0; border-bottom: 1px solid var(--border);
}
.step-item:last-child { border-bottom: none; }
.step-dot {
  width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  display: flex; align-items: center; justify-content: center;
}
.steps-list .step-item:nth-child(1) .step-dot::after { content: '1'; color: #fff; font-size: 12px; font-weight: 700; }
.steps-list .step-item:nth-child(2) .step-dot::after { content: '2'; color: #fff; font-size: 12px; font-weight: 700; }
.steps-list .step-item:nth-child(3) .step-dot::after { content: '3'; color: #fff; font-size: 12px; font-weight: 700; }
.steps-list .step-item:nth-child(4) .step-dot::after { content: '4'; color: #fff; font-size: 12px; font-weight: 700; }
.steps-list .step-item:nth-child(5) .step-dot::after { content: '5'; color: #fff; font-size: 12px; font-weight: 700; }
.step-text { font-size: 15px; padding-top: 4px; }

/* ═══ CONSEILS ═══════════════════════════════════════════════════════════ */
.tips-block { background: color-mix(in srgb, var(--secondary) 12%, #fff); border-color: color-mix(in srgb, var(--secondary) 30%, var(--border)); }
.tips-content { display: flex; gap: 14px; align-items: flex-start; }
.tips-icon { font-size: 24px; flex-shrink: 0; }
.tips-content p { margin: 0; font-size: 15px; color: var(--text); }

/* ═══ FAQ ════════════════════════════════════════════════════════════════ */
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; }
.faq-question {
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  width: 100%; padding: 14px 18px; background: none; border: none; cursor: pointer;
  font-size: 15px; font-weight: 600; color: var(--text); font-family: inherit;
  text-align: left; transition: background .15s;
}
.faq-question:hover { background: var(--bg); }
.faq-arrow { font-size: 20px; color: var(--primary); font-weight: 300; flex-shrink: 0; transition: transform .2s; }
.faq-answer { padding: 4px 18px 16px; }
.faq-answer p { margin: 0; font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* ═══ TRAJETS SIMILAIRES ════════════════════════════════════════════════ */
.nearby-grid { display: flex; flex-direction: column; gap: 8px; }
.nearby-card {
  display: flex; flex-direction: column; gap: 4px;
  padding: 14px 16px; border-radius: var(--radius-sm); border: 1px solid var(--border);
  background: var(--bg); text-decoration: none; transition: border-color .2s, background .15s;
}
.nearby-card:hover { border-color: var(--primary); background: #fff; text-decoration: none; }
.nearby-route { font-size: 14px; font-weight: 600; color: var(--text); }
.nearby-meta { font-size: 12px; color: var(--text-muted); }

/* ═══ CTA ════════════════════════════════════════════════════════════════ */
.cta-inline { margin-top: 20px; }
.btn-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; border-radius: var(--radius); font-weight: 700; font-size: 15px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff; text-decoration: none;
  box-shadow: 0 4px 14px rgba(0,0,0,.15); transition: transform .15s, box-shadow .2s;
}
.btn-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,.2); color:#fff; text-decoration:none; }
.btn-cta-full { width: 100%; justify-content: center; }

/* ═══ SIDEBAR ════════════════════════════════════════════════════════════ */
.sidebar-block {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 20px; box-shadow: var(--shadow); margin-bottom: 20px;
}
.map-container { border-radius: var(--radius-sm); overflow: hidden; line-height: 0; }
.map-stats { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-muted); flex-wrap: wrap; margin-bottom: 4px; }
.map-distance { font-size: 12px; color: var(--text-muted); }
.btn-map {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin-top: 12px; padding: 12px 16px; border-radius: var(--radius-sm);
  background: var(--primary); color: #fff; font-weight: 600; font-size: 13px;
  text-align: center; transition: background .15s, color .15s;
}
.btn-map:hover { background: var(--primary-dark); color: #fff; text-decoration: none; }
.sidebar-cta { background: linear-gradient(135deg, color-mix(in srgb, var(--primary) 8%, #fff), color-mix(in srgb, var(--secondary) 12%, #fff)); border-color: color-mix(in srgb, var(--primary) 30%, var(--border)); }
.cta-title { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.cta-subtitle { font-size: 13px; color: var(--text-muted); margin-bottom: 16px; line-height: 1.6; }
.cta-footnote { text-align: center; font-size: 11px; color: var(--text-muted); margin-top: 8px; }

/* ═══ MAILLAGE VILLES (homepage + sitemap) ═══════════════════════════════ */
.section-cities { padding: 48px 0 56px; background: var(--card); border-top: 1px solid var(--border); }
.cities-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
.city-block { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 18px 20px; }
.city-title { font-size: 14px; font-weight: 600; margin: 0 0 12px; display: flex; justify-content: space-between; align-items: baseline; color: var(--text); }
.city-title strong { color: var(--primary); }
.city-count { font-size: 11px; color: var(--text-muted); font-weight: 400; background: var(--border); border-radius: 999px; padding: 1px 7px; }
.city-routes { list-style: none; padding: 0; margin: 0 0 8px; }
.city-routes li { display: flex; justify-content: space-between; align-items: center; gap: 8px; padding: 5px 0; border-bottom: 1px solid var(--border); font-size: 13px; }
.city-routes li:last-child { border-bottom: none; }
.city-routes li a { color: var(--text); font-weight: 500; }
.city-routes li a:hover { color: var(--primary); text-decoration: none; }
.city-routes li span { font-size: 11px; color: var(--text-muted); white-space: nowrap; flex-shrink: 0; }
.city-more { font-size: 12px; color: var(--primary); font-weight: 600; }
.city-more:hover { text-decoration: underline; }

/* ═══ PAGE PLAN DU SITE ══════════════════════════════════════════════════ */
.sitemap-section { padding: 40px 0 72px; }
.sitemap-toc { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 40px; padding: 18px 20px; background: var(--card); border-radius: var(--radius); border: 1px solid var(--border); }
.sitemap-toc a { font-size: 13px; font-weight: 600; color: var(--primary); padding: 4px 12px; border-radius: 999px; background: color-mix(in srgb, var(--primary) 10%, #fff); border: 1px solid color-mix(in srgb, var(--primary) 20%, transparent); text-decoration: none; }
.sitemap-toc a:hover { background: var(--primary); color: #fff; text-decoration: none; }
.sitemap-city { margin-bottom: 44px; }
.sitemap-city-title { font-size: 1.15rem; font-weight: 700; color: var(--text); margin: 0 0 16px; padding-bottom: 10px; border-bottom: 2px solid var(--primary); display: flex; align-items: baseline; gap: 12px; }
.sitemap-city-count { font-size: 12px; color: var(--text-muted); font-weight: 400; }
.sitemap-routes-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 8px; }
.sitemap-route-link { display: flex; justify-content: space-between; align-items: center; gap: 8px; padding: 9px 14px; background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-sm); text-decoration: none; transition: border-color .15s, background .15s; }
.sitemap-route-link:hover { border-color: var(--primary); background: #fff; text-decoration: none; }
.sitemap-route-name { font-size: 13px; font-weight: 500; color: var(--text); }
.sitemap-route-meta { font-size: 11px; color: var(--text-muted); white-space: nowrap; flex-shrink: 0; }
.sitemap-route-link:hover .sitemap-route-name { color: var(--primary); }

/* ═══ SECTIONS HOMEPAGE ══════════════════════════════════════════════════ */
.section-popular { padding: 56px 0; }
.section-destinations { padding: 40px 0 60px; background: var(--card); border-top: 1px solid var(--border); }
.section-title { font-size: 1.6rem; font-weight: 700; color: var(--text); margin: 0 0 28px; }
.popular-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 16px; }
.popular-card {
  display: flex; flex-direction: column; gap: 8px;
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 18px 20px; text-decoration: none;
  transition: border-color .2s, box-shadow .2s, transform .15s;
}
.popular-card:hover { border-color: var(--primary); box-shadow: var(--shadow-md); transform: translateY(-2px); text-decoration: none; }
.popular-card-top { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.popular-type-icons { font-size: 20px; line-height: 1; letter-spacing: 2px; }
.popular-price-badge {
  font-size: 12px; color: var(--primary); background: color-mix(in srgb, var(--primary) 12%, transparent);
  border-radius: 20px; padding: 3px 10px; white-space: nowrap; font-weight: 600;
}
.popular-price-badge strong { font-size: 14px; }
.popular-route { font-size: 15px; font-weight: 700; color: var(--text); line-height: 1.3; }
.popular-arrow-inline { color: var(--text-muted); font-weight: 400; }
.popular-meta { font-size: 13px; color: var(--text-muted); }
.popular-cta {
  display: inline-flex; align-items: center; gap: 4px; margin-top: 4px;
  font-size: 13px; font-weight: 600; color: var(--primary);
}
.popular-cta-arrow { font-size: 16px; transition: transform .2s; }
.popular-card:hover .popular-cta-arrow { transform: translateX(3px); }
.destinations-grid { display: flex; flex-wrap: wrap; gap: 10px; }
.dest-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--bg); border: 1px solid var(--border); border-radius: 999px;
  padding: 7px 14px; font-size: 13px; font-weight: 500; color: var(--text);
}

/* ═══ FOOTER ═════════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--text); color: rgba(255,255,255,.7);
  padding: 48px 0 28px; margin-top: 40px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 32px; }
.footer-brand .footer-logo { display: flex; align-items: center; gap: 8px; color: #fff; font-size: 18px; font-weight: 700; margin-bottom: 12px; }
.footer-brand .brand-mark { background: var(--primary); }
.footer-tagline { font-size: 14px; line-height: 1.6; margin: 0; }
.footer-links h4 { color: rgba(255,255,255,.9); font-size: 14px; font-weight: 600; margin: 0 0 14px; }
.footer-links { display: flex; flex-direction: column; gap: 4px; }
.footer-links a { color: rgba(255,255,255,.6); font-size: 14px; }
.footer-links a:hover { color: #fff; text-decoration: none; }
.footer-bottom { padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1); }
.footer-bottom p { margin: 0; font-size: 13px; }
.footer-bottom a { color: rgba(255,255,255,.7); }
.footer-bottom a:hover { color: #fff; }

.site-main { min-height: 60vh; }

/* ═══ RESPONSIVE ═════════════════════════════════════════════════════════ */
/* ═══ DESTINATION BLOCK ════════════════════════════════════════════════════ */
.destination-block {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin: 24px 0;
  box-shadow: var(--shadow);
}
.destination-block-head {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 22px 24px 18px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
}
.destination-pin { font-size: 28px; flex-shrink: 0; margin-top: 2px; }
.destination-block-title { font-size: 1.1rem; font-weight: 700; color: #fff; line-height: 1.3; }
.destination-block-sub { font-size: 13px; color: rgba(255,255,255,.75); margin-top: 4px; }
.destination-cards { display: grid; grid-template-columns: 1fr 1fr; }
.dest-card {
  display: flex; flex-direction: column; gap: 8px;
  padding: 22px 24px;
  text-decoration: none; color: var(--text);
  border-right: 1px solid var(--border);
  transition: background .15s;
}
.dest-card:last-child { border-right: none; }
.dest-card:hover { background: var(--bg); text-decoration: none; color: var(--text); }
.dest-card-top { display: flex; align-items: center; gap: 8px; margin-bottom: 4px; }
.dest-card-emoji { font-size: 22px; }
.dest-card-label {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .06em; color: var(--text-muted);
}
.dest-card-title { font-size: 15px; font-weight: 700; color: var(--text); line-height: 1.3; }
.dest-card-desc { font-size: 13px; color: var(--text-muted); line-height: 1.5; }
.dest-card-btn {
  display: inline-flex; align-items: center;
  margin-top: 12px; padding: 9px 18px;
  border-radius: 999px; font-size: 13px; font-weight: 600;
  width: fit-content; transition: opacity .15s;
}
.dest-card:hover .dest-card-btn { opacity: .85; }
.dest-card-btn--hotel { background: #fef3c7; color: #92400e; }
.dest-card-btn--activities { background: color-mix(in srgb, var(--primary) 12%, #fff); color: var(--primary-dark); }
.dest-card-partner { font-size: 11px; color: var(--text-muted); margin-top: 4px; }
.gyg-widget-wrap {
  padding: 24px;
  border-top: 1px solid var(--border);
  background: var(--bg);
}
.gyg-widget-label {
  font-size: 13px; font-weight: 600; color: var(--text-muted);
  margin-bottom: 14px; text-transform: uppercase; letter-spacing: .05em;
}

/* ═══ INFOS PRATIQUES DÉPART ═══════════════════════════════════════════════ */
.departure-info {
  margin-top: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--primary);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
}
.departure-info-title {
  font-size: 14px; font-weight: 700; color: var(--text-primary); margin: 0 0 12px;
}
.departure-info-rows { display: flex; flex-direction: column; gap: 10px; }
.departure-info-row {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13px; color: var(--text-secondary); line-height: 1.55;
}
.dep-icon { flex-shrink: 0; font-size: 15px; line-height: 1.4; }

/* ═══ EXPÉRIENCE DU VOYAGE ══════════════════════════════════════════════════ */
.journey-text {
  font-size: 14px; line-height: 1.75; color: var(--text-secondary);
  background: var(--surface);
  border-left: 3px solid var(--primary);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 16px 20px; margin: 0;
}

/* ═══ APERÇU DESTINATION ════════════════════════════════════════════════════ */
.highlights-list { list-style: none; margin: 0 0 20px; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.highlight-item { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; color: var(--text-secondary); line-height: 1.55; }
.highlight-check {
  flex-shrink: 0; width: 20px; height: 20px;
  background: var(--primary); color: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; margin-top: 1px;
}
.dest-meta-row { display: flex; gap: 12px; flex-wrap: wrap; }
.dest-meta-pill {
  display: flex; align-items: flex-start; gap: 12px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 14px 18px;
  flex: 1; min-width: 200px;
}
.dest-meta-icon { font-size: 22px; flex-shrink: 0; line-height: 1; }
.dest-meta-label { font-size: 10px; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 4px; }
.dest-meta-val { font-size: 13px; color: var(--text-primary); font-weight: 500; line-height: 1.45; }
.tp-live { font-size: .62rem; font-weight: 700; letter-spacing: .03em; text-transform: uppercase; color: var(--primary); background: color-mix(in srgb, var(--primary) 12%, white); padding: 1px 5px; border-radius: 3px; vertical-align: middle; margin-left: 3px; }

/* ═══ CALENDRIER MÉTÉO ══════════════════════════════════════════════════════ */
.weather-section { }
.weather-title { font-size: 1.35rem; font-weight: 800; margin: 0 0 4px; }
.weather-climate {
  font-size: 12px; font-weight: 700; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: .08em; margin: 0 0 10px;
}
.weather-desc {
  font-size: 14px; color: var(--text-muted); line-height: 1.65;
  border-left: 3px solid var(--primary); padding-left: 14px; margin: 0 0 22px;
}
.weather-calendar {
  display: grid; grid-template-columns: repeat(12, 1fr); gap: 6px;
}
.weather-month {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
}
.weather-month-label {
  font-size: 11px; font-weight: 700; color: var(--text);
  text-align: center; white-space: nowrap;
}
.weather-face {
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; line-height: 1;
}
.weather-face--good { background: #bbf7d0; }
.weather-face--ok   { background: #e5e7eb; }
.weather-face--bad  { background: #fed7aa; }

@media (max-width: 600px) {
  .weather-calendar { grid-template-columns: repeat(6, 1fr); gap: 5px; }
  .weather-month-label { font-size: 10px; }
  .weather-face { width: 36px; height: 36px; font-size: 17px; }
}

/* ═══ SEO — BOLD KEYWORDS & LSI ════════════════════════════════════════════ */
.journey-text strong,
.highlight-item strong { font-weight: 700; color: var(--text); }

.lsi-block { padding-top: 16px; border-top: 1px solid var(--border); }
.lsi-title {
  font-size: 10px; font-weight: 700; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: .1em; margin: 0 0 10px;
}
.lsi-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.lsi-tag {
  background: var(--bg); border: 1px solid var(--border); border-radius: 999px;
  padding: 5px 13px; font-size: 12px; color: var(--text-muted); white-space: nowrap;
}

/* ═══ QUE FAIRE À [VILLE] ? ════════════════════════════════════════════════ */
.activities-section { border-top: none; }
.activities-title { font-size: 1.35rem; font-weight: 800; margin: 0 0 6px; color: var(--text); }
.activities-intro { color: var(--text-muted); font-size: 14px; margin: 0 0 24px; }
.gyg-activities-top { margin-bottom: 28px; }

.activity-cards {
  display: flex; gap: 14px;
  overflow-x: auto; scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 6px;
}
.activity-cards::-webkit-scrollbar { height: 4px; }
.activity-cards::-webkit-scrollbar-track { background: var(--border); border-radius: 4px; }
.activity-cards::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 4px; opacity: .6; }

.activity-card {
  position: relative; flex: 0 0 200px; scroll-snap-align: start;
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 24px 16px 18px; box-shadow: var(--shadow);
  display: flex; flex-direction: column; gap: 8px;
  transition: box-shadow .2s, transform .2s;
}
.activity-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

.activity-badge {
  position: absolute; top: 0; right: 14px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff; font-size: 9px; font-weight: 700; letter-spacing: .07em;
  padding: 4px 9px; border-radius: 0 0 8px 8px; text-transform: uppercase;
}
.activity-card-emoji { font-size: 38px; line-height: 1; margin-bottom: 2px; }
.activity-card-title { font-size: 14px; font-weight: 700; color: var(--text); line-height: 1.3; }
.activity-card-desc {
  font-size: 12.5px; color: var(--text-muted); line-height: 1.6; flex: 1;
  display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden;
}
@media (min-width: 769px) {
  .activity-cards {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    overflow: visible; padding-bottom: 0;
  }
  .activity-card { flex: unset; }
}

@media (max-width: 1024px) {
  .content-layout { grid-template-columns: 1fr; }
  .content-sidebar { position: static; }
  .hero-grid, .hero-home-grid { grid-template-columns: 1fr; }
  .hero-widget, .hero-home-widget { max-width: 340px; margin: 0 auto; width: 100%; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .hero-2-cols { padding: 36px 0 44px; }
  .hero-home-bg { padding: 40px 0 48px; }
  .hero-info h1, .hero-home-info h1 { font-size: 1.6rem; overflow-wrap: break-word; word-break: break-word; }
  .hero-widget, .hero-home-widget { max-width: 320px; }
  .widget-wrapper { padding: 12px 10px; max-width: 100%; overflow: hidden; }
  /* Stat pills : 2 colonnes sur mobile */
  .hero-stats { grid-template-columns: 1fr 1fr; gap: 8px; }
  .stat-pill { padding: 9px 12px; }
  .stat-icon { font-size: 16px; }
  .stat-label { font-size: 9px; }
  .stat-value { font-size: 15px; }
  /* Menu mobile langue */
  .nav-mobile-langs {
    display: flex; flex-wrap: wrap; gap: 8px; padding: 4px 8px 8px;
    border-top: 1px solid var(--border); margin-top: 4px;
  }
  .nav-mobile-lang {
    display: flex; align-items: center; gap: 6px;
    padding: 7px 14px; border-radius: 999px; font-size: 13px; font-weight: 600;
    border: 1px solid var(--border); color: var(--text); text-decoration: none;
  }
  .nav-mobile-lang--active {
    background: var(--primary); color: #fff; border-color: var(--primary);
  }
  .nav-mobile-lang-label { font-weight: 500; }
  .search-fields { flex-direction: column; }
  .search-sep { display: none; }
  .search-input, .search-btn { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .section-block { padding: 20px; }
  .sidebar-block { padding: 16px; }
  .popular-grid { grid-template-columns: 1fr; }
  /* Cartes transport : layout ligne sur mobile */
  .transport-card { flex-direction: row; align-items: center; padding: 14px 16px; gap: 10px; }
  .transport-card-left { flex: 1; min-width: 0; }
  .transport-name { font-size: 15px; }
  .transport-duration { font-size: 12px; white-space: normal; }
  .transport-card-right { margin-left: auto; flex-shrink: 0; }
  .transport-card-right-inner { align-items: flex-end; gap: 5px; }
  .transport-price { font-size: 15px; }
  .transport-voir { font-size: 11px; padding: 4px 14px; }
  .destination-cards { grid-template-columns: 1fr; }
  .dest-card { border-right: none; border-bottom: 1px solid var(--border); }
  .dest-card:last-child { border-bottom: none; }
  .destination-block-head { padding: 18px 16px; }
  .gyg-widget-wrap { padding: 16px; }
}

/* ═══ BOOKING BANNER — budget + CTA 12go ═══════════════════════════════════ */
.booking-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border: none;
  padding: 20px 24px;
}
.booking-banner-content {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.booking-banner-budget {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 200px;
}
.booking-budget-line {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,.88);
}
.booking-budget-line strong { color: #fff; font-weight: 800; }
.booking-budget-icon { font-size: 17px; flex-shrink: 0; }
.booking-banner-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.btn-cta-booking {
  background: #fff !important;
  color: var(--primary) !important;
  font-weight: 800;
  white-space: nowrap;
  padding: 13px 30px;
  font-size: 15px;
  box-shadow: 0 2px 12px rgba(0,0,0,.15);
  text-align: center;
  justify-content: center;
}
.btn-cta-booking:hover {
  background: #f0faf8 !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 18px rgba(0,0,0,.2);
}
.booking-banner-footnote {
  font-size: 10px;
  color: rgba(255,255,255,.55);
  margin: 0;
  text-align: center;
  text-decoration: none;
  display: block;
  letter-spacing: .02em;
}
@media (max-width: 600px) {
  .booking-banner { padding: 18px 16px; }
  .booking-banner-content { flex-direction: column; align-items: stretch; gap: 16px; }
  .booking-banner-cta { align-items: stretch; }
  .btn-cta-booking { text-align: center; }
}

/* ═══ COMMENT ÇA MARCHE ════════════════════════════════════════════════════ */
.section-how { background: var(--card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 56px 0; }
.how-steps { display: flex; align-items: flex-start; gap: 0; margin-top: 36px; }
.how-step { flex: 1; display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 24px; }
.how-step-icon { font-size: 40px; line-height: 1; margin-bottom: 12px; }
.how-step-num { width: 28px; height: 28px; border-radius: 50%; background: var(--primary); color: #fff; font-size: 13px; font-weight: 800; display: flex; align-items: center; justify-content: center; margin-bottom: 12px; }
.how-step-title { font-size: 15px; font-weight: 700; color: var(--text); margin: 0 0 8px; }
.how-step-desc { font-size: 13px; color: var(--text-muted); line-height: 1.6; margin: 0; }
.how-step-sep { font-size: 24px; color: var(--border); padding-top: 40px; flex-shrink: 0; }
@media (max-width: 768px) {
  .how-steps { flex-direction: column; align-items: stretch; gap: 24px; }
  .how-step { flex-direction: row; text-align: left; gap: 16px; padding: 0; }
  .how-step-icon { font-size: 32px; flex-shrink: 0; margin-bottom: 0; }
  .how-step-num { flex-shrink: 0; margin-bottom: 0; }
  .how-step-sep { display: none; }
  .how-step > div { flex: 1; }
}

/* ═══ DESTINATIONS PHARES ═══════════════════════════════════════════════════ */
.section-destinations { padding: 56px 0; }
.dest-cards-home { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 14px; margin-top: 28px; }
.dest-card-home {
  display: flex; align-items: center; gap: 14px;
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 16px 18px; text-decoration: none; color: var(--text);
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.dest-card-home:hover { border-color: var(--primary); box-shadow: var(--shadow-md); transform: translateY(-2px); text-decoration: none; }
.dest-card-home-emoji { font-size: 32px; flex-shrink: 0; line-height: 1; }
.dest-card-home-body { flex: 1; min-width: 0; }
.dest-card-home-name { font-size: 15px; font-weight: 700; color: var(--text); }
.dest-card-home-label { font-size: 12px; color: var(--text-muted); margin-top: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.dest-card-home-count { font-size: 11px; font-weight: 700; color: var(--primary); background: color-mix(in srgb, var(--primary) 10%, transparent); border-radius: 999px; padding: 3px 8px; white-space: nowrap; flex-shrink: 0; }

/* ═══ BLOC ÉDITORIAL SEO ════════════════════════════════════════════════════ */
.section-edito { background: var(--card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 56px 0; }
.edito-inner { display: grid; grid-template-columns: 1fr 220px; gap: 48px; align-items: start; }
.edito-title { font-size: 1.25rem; font-weight: 800; margin: 0 0 14px; }
.edito-desc { font-size: 14px; color: var(--text-muted); line-height: 1.75; margin: 0 0 20px; }
.edito-desc strong { color: var(--text); font-weight: 700; }
.edito-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.edito-tag { background: var(--bg); border: 1px solid var(--border); border-radius: 999px; padding: 5px 13px; font-size: 12px; color: var(--text-muted); }
.edito-trust { display: flex; flex-direction: column; gap: 14px; background: var(--bg); border-radius: var(--radius); padding: 20px; }
.trust-item { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--text); font-weight: 500; }
.trust-icon { font-size: 18px; flex-shrink: 0; }
@media (max-width: 768px) {
  .edito-inner { grid-template-columns: 1fr; gap: 28px; }
  .edito-trust { flex-direction: row; flex-wrap: wrap; }
  .trust-item { flex: 0 0 calc(50% - 7px); }
}

/* ═══ BADGE FIX — dans right-inner ══════════════════════════════════════════ */
.transport-card-right { display: flex; align-items: center; gap: 10px; margin-left: auto; }
.transport-card-right-inner { display: flex; flex-direction: column; align-items: flex-end; gap: 6px; }
