/* ——— Aéroport page CSS (v2) ——— */

/* === HERO === */
.hero h1 { font-size: clamp(40px, 7vw, 78px); max-width: 16ch; color: #fff; }
.hero .lede { font-size: clamp(17px, 2vw, 20px); max-width: 52ch; margin-top: 20px; opacity: 0.95; color: oklch(0.96 0.01 95); }
.hero .crumb,
.hero .crumb a,
.hero .crumb .here,
.hero .crumb .sep { color: oklch(0.92 0.01 95 / 0.85); }
.hero .crumb a:hover,
.hero .crumb .here { color: #fff; }

/* Stats avec fond pour lisibilité */
.hero-meta { margin-top: 34px; gap: 2px; background: oklch(0.1 0.02 255 / 0.35); backdrop-filter: blur(10px); border-radius: var(--radius); overflow: hidden; display: inline-flex; }
.hero-meta .m { padding: 14px 22px; background: oklch(0.1 0.02 255 / 0.25); }
.hero-meta .m b { color: #fff; font-size: 22px; }
.hero-meta .m span { color: oklch(0.90 0.02 255 / 0.85); }

/* Bouton parking plus visible */
.hero-btn2 { color: oklch(0.15 0.03 255) !important; border-color: oklch(1 0 0 / 0.5) !important; background: oklch(0.98 0.01 95 / 0.92) !important; backdrop-filter: blur(6px); font-weight: 600; }
.hero-btn2:hover { background: #fff !important; transform: translateY(-1px); }

/* Plus d'espace en bas du hero */
.hero-inner { padding-bottom: clamp(60px, 10vw, 120px) !important; }

/* SEO : bloc contenu en source après H1, affiché en bas visuellement */
.content-wrapper { display: flex; flex-direction: column; }
.seo-content { order: 99; }

/* 2 colonnes pour le bloc À propos */
.seo-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
@media (max-width: 720px) {
  .seo-cols { grid-template-columns: 1fr; gap: 24px; }
}
.hero-code {
  font-family: var(--font-mono); font-size: 14px; letter-spacing: 0.1em;
  display: inline-flex; align-items: center; gap: 12px; color: oklch(0.95 0.02 60);
  background: oklch(1 0 0 / 0.10); border: 1px solid oklch(1 0 0 / 0.18); backdrop-filter: blur(6px);
  padding: 8px 15px; border-radius: 999px; margin-bottom: 22px;
}

/* Voile sombre à gauche pour lisibilité du texte sur photo */
.hero-media::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(90deg,
    oklch(0.15 0.03 255 / 0.55) 0%,
    oklch(0.15 0.03 255 / 0.30) 35%,
    oklch(0.15 0.03 255 / 0.05) 65%,
    transparent 100%);
  pointer-events: none;
}

/* === SERVICES STRIP (redesign) === */
.services-strip {
  border-bottom: 1px solid var(--line);
  position: sticky; top: 70px; z-index: 40;
  background: linear-gradient(180deg, var(--card) 0%, var(--paper) 100%);
}
.services-row {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 2px; background: transparent;
  margin: 32px 0;
  border-radius: var(--radius-lg);
  overflow: visible;
  box-shadow: none;
}
.svc-pill {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  flex: 0 1 calc(25% - 2px);
  min-width: 130px;
  box-sizing: border-box;
  padding: 24px 16px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  text-decoration: none; color: var(--ink);
  transition: background .15s, transform .12s;
}
.svc-pill:hover {
  background: var(--primary-tint);
  transform: translateY(-1px);
}
.svc-pill-icon {
  width: 52px; height: 52px; border-radius: 16px;
  background: var(--primary-tint); color: var(--primary-deep);
  display: grid; place-items: center; flex: none;
  transition: transform .2s, box-shadow .2s;
}
.svc-pill:hover .svc-pill-icon {
  transform: scale(1.08);
  box-shadow: var(--shadow-sm);
}
.svc-pill-icon svg { width: 24px; height: 24px; }
.svc-pill span:last-child {
  font-size: 14px; font-weight: 600;
  text-align: center; line-height: 1.3;
}

@media (max-width: 640px) {
  .services-strip { position: static; }
  .services-row { margin: 20px 0; }
  .svc-pill { flex-basis: calc(50% - 2px); min-width: 0; padding: 18px 12px; }
  .svc-pill-icon { width: 42px; height: 42px; }
}

/* === BOARD (horaires) === */
.board {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm);
}
.board-top { display: flex; align-items: center; gap: 18px; padding: 18px 22px; border-bottom: 1px solid var(--line); flex-wrap: wrap; }
.board-tabs { display: inline-flex; background: var(--paper-2); border-radius: 12px; padding: 4px; gap: 4px; }
.board-tabs button {
  font-family: var(--font-body); font-weight: 600; font-size: 14.5px;
  padding: 9px 18px; border-radius: 9px; border: none; background: transparent; color: var(--ink-soft); cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px; transition: all .15s;
}
.board-tabs button svg { width: 15px; height: 15px; }
.board-tabs button[aria-selected="true"] { background: var(--card); color: var(--ink); box-shadow: var(--shadow-sm); }
.board-foot { padding: 15px 22px; display: flex; align-items: center; justify-content: space-between; color: var(--ink-faint); font-size: 13.5px; border-top: 1px solid var(--line); }

/* === DESTINATIONS (2 colonnes équilibrées) === */
.dest-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.dest-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.dest-country { }
.dest-country-name {
  font-size: 16px; font-weight: 600; color: var(--ink);
  margin: 0 0 10px; display: flex; align-items: center; gap: 10px;
  padding-bottom: 8px; border-bottom: 1px solid var(--line);
}
.dest-country-count {
  font-family: var(--font-mono); font-size: 12px; font-weight: 500;
  background: var(--primary-tint); color: var(--primary-deep);
  padding: 2px 10px; border-radius: 999px;
  margin-left: auto;
}
.dest-chips {
  display: flex; flex-wrap: wrap; gap: 6px;
}
.dest-chip {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 6px 12px; border-radius: 8px;
  background: var(--card); border: 1px solid var(--line);
  font-size: 13.5px;
  transition: transform .12s, box-shadow .15s, border-color .15s;
  text-decoration: none; color: inherit;
}
.dest-chip:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
  border-color: var(--line-strong);
}
.chip-code {
  font-family: var(--font-mono); font-size: 11.5px; font-weight: 700;
  color: var(--primary-deep);
}
.chip-city { font-weight: 500; }
.chip-km { font-size: 11.5px; color: var(--ink-faint); }

@media (max-width: 720px) {
  .dest-columns { grid-template-columns: 1fr; gap: 24px; }
}

/* === AIRLINES GRID === */
.airlines-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 12px;
}
.airline-card {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 16px; border-radius: var(--radius);
  background: var(--card); border: 1px solid var(--line);
  transition: transform .14s, box-shadow .2s, border-color .2s;
  text-decoration: none; color: inherit;
  position: relative; overflow: hidden;
}
.airline-card::before {
  content: ""; position: absolute; left: 0; top: 8px; bottom: 8px;
  width: 3px; border-radius: 0 3px 3px 0;
  background: var(--accent);
  opacity: 0;
  transition: opacity .2s;
}
.airline-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: var(--line-strong);
}
.airline-card:hover::before { opacity: 1; }
.airline-accent {
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px;
  transition: opacity .2s;
  opacity: 0.35;
}
.airline-card:hover .airline-accent { opacity: 1; }
.airline-badge {
  width: 44px; height: 44px; border-radius: 12px;
  display: grid; place-items: center; flex: none;
  font-family: var(--font-display); font-weight: 700; font-size: 16px;
  letter-spacing: -0.02em;
}
.airline-info { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.airline-name { font-weight: 600; font-size: 15px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.airline-routes { font-size: 12.5px; color: var(--ink-faint); font-family: var(--font-mono); }

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

/* === MAP === */
.map-card { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); position: relative; min-height: 340px; }
.map-card .ph { position: absolute; inset: 0; }
.map-pin { position: absolute; left: 50%; top: 46%; transform: translate(-50%, -100%); z-index: 3; }
.map-pin .dot2 { width: 18px; height: 18px; border-radius: 50%; background: var(--accent); border: 4px solid #fff; box-shadow: var(--shadow); }
.map-pin::after { content: ""; position: absolute; left: 50%; top: 9px; transform: translateX(-50%); width: 2px; height: 26px; background: var(--accent); }

/* === CTA === */
.split-cta { background: var(--primary-tint); border-radius: var(--radius-lg); padding: clamp(28px, 4vw, 44px); display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap; }
.split-cta h3 { font-size: clamp(22px, 3vw, 30px); }
.split-cta p { color: var(--ink-soft); margin: 8px 0 0; max-width: 44ch; }

/* === ACCORDÉON PAYS === */
.accordion .accordion-body { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.accordion.open .accordion-body { max-height: 2000px; }
.dest-country-name { cursor: pointer; user-select: none; }
.dest-country-name:hover { color: var(--accent-deep); }
.accordion-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; border-radius: 6px;
  background: var(--primary-tint); color: var(--primary-deep);
  font-family: var(--font-mono); font-size: 14px; font-weight: 700;
  transition: transform 0.2s, background 0.2s;
  margin-right: 4px; flex: none;
}
.accordion-toggle::after { content: '+'; }
.accordion.open > .dest-country-name .accordion-toggle {
  background: var(--primary); color: var(--on-primary);
}
.accordion.open > .dest-country-name .accordion-toggle::after { content: '−'; }


/* === COMPAGNIES GRID (même style que page destination) === */
.formal { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
@media (max-width: 820px) { .formal { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .formal { grid-template-columns: 1fr; } }
.formal .f {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 20px;
  transition: transform .14s, box-shadow .2s, border-color .2s;
  text-decoration: none; color: inherit; display: block;
}
.formal .f:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: var(--line-strong);
}
.formal .f .ic {
  width: 42px; height: 42px; border-radius: 12px;
  background: var(--accent-tint); color: var(--accent-deep);
  display: grid; place-items: center; margin-bottom: 14px;
}
.formal .f .ic svg { width: 21px; height: 21px; }
.formal .f h4 { font-size: 16px; margin: 0; }
.formal .f p { font-size: 13.5px; color: var(--ink-soft); margin: 6px 0 0; }

/* === ACCORDÉON PAYS (destinations) === */
.accordion .accordion-body { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.accordion.open .accordion-body { max-height: 2000px; }
.dest-country-name { cursor: pointer; user-select: none; }
.dest-country-name:hover { color: var(--accent-deep); }
.accordion-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; border-radius: 6px;
  background: var(--primary-tint); color: var(--primary-deep);
  font-family: var(--font-mono); font-size: 14px; font-weight: 700;
  transition: background 0.2s; margin-right: 4px; flex: none;
}
.accordion-toggle::after { content: '+'; }
.accordion.open > .dest-country-name .accordion-toggle {
  background: var(--primary); color: var(--on-primary);
}
.accordion.open > .dest-country-name .accordion-toggle::after { content: '−'; }

/* === COMPAGNIES "VOIR LA SUITE" === */
.comp-hidden { display: none; }

/* === SOUS-PAGES (parking, navettes, etc.) === */
.subpage-hero {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark, oklch(0.35 0.08 255)));
  color: #fff;
  padding: clamp(40px, 8vw, 80px) 0 clamp(30px, 6vw, 60px);
  margin-bottom: 40px;
}

/* Sous-page avec image de fond → hero plus haut */
.subpage-hero.has-bg {
  padding: clamp(100px, 14vw, 180px) 0 clamp(80px, 12vw, 140px);
  min-height: 60vh;
}

/* --- Parking hero : lede + vignettes + bouton --- */
.parking-lede {
  font-size: clamp(16px, 2vw, 19px);
  max-width: 58ch;
  margin-top: 14px;
  color: oklch(0.94 0.02 255);
  opacity: 0.92;
  line-height: 1.5;
}
.parking-meta {
  display: inline-flex;
  gap: 2px;
  margin-top: 28px;
  background: oklch(0.1 0.02 255 / 0.35);
  backdrop-filter: blur(10px);
  border-radius: var(--radius, 12px);
  overflow: hidden;
}
.parking-meta .pm {
  padding: 14px 22px;
  background: oklch(0.1 0.02 255 / 0.25);
  text-align: center;
}
.parking-meta .pm b {
  display: block;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  white-space: nowrap;
}
.parking-meta .pm span {
  display: block;
  font-size: 0.75rem;
  color: oklch(0.88 0.02 255 / 0.85);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-top: 3px;
}

/* --- Badge P parking (CSS only, pas besoin d'image spécifique) --- */

@media (max-width: 600px) {
.parking-hero-actions {
  margin-top: 24px;
}
.btn-parkvia-hero {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius, 10px);
  background: oklch(0.98 0.01 95 / 0.92);
  backdrop-filter: blur(6px);
  color: oklch(0.15 0.03 255);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.btn-parkvia-hero:hover {
  background: #fff;
  transform: translateY(-1px);
}
}
@media (max-width: 600px) {
  .parking-meta { flex-wrap: wrap; }
  .parking-meta .pm { flex: 1 1 40%; }
}
.subpage-hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: #fff;
  margin-top: 12px;
  font-family: var(--font-display, sans-serif);
  font-weight: 600;
  letter-spacing: -0.02em;
  max-width: 16ch;
}
.subpage-hero .crumb,
.subpage-hero .crumb a,
.subpage-hero .crumb .here,
.subpage-hero .crumb .sep { color: oklch(0.92 0.01 95 / 0.85); font-size: 0.9rem; }
.subpage-hero .crumb a { text-decoration: none; }
.subpage-hero .crumb a:hover,
.subpage-hero .crumb .here { color: #fff; }
.subpage-hero .crumb .sep { margin: 0 8px; }
.subpage-hero .crumb .here { font-weight: 600; }

.subpage-body {
  padding: 0 24px 60px;
  max-width: 860px;
  margin: 0 auto;
}
.subpage-body h2 {
  font-size: 1.5rem;
  margin-top: 2em;
  margin-bottom: 0.5em;
  color: var(--primary);
}
.subpage-body h3 {
  font-size: 1.15rem;
  margin-top: 1.5em;
  color: var(--ink);
}
.subpage-body p {
  line-height: 1.75;
  margin-bottom: 1em;
  color: var(--ink-light, oklch(0.3 0.02 255));
}
.subpage-body ul {
  margin: 1em 0 1.5em 1.5em;
}
.subpage-body li {
  margin-bottom: 0.4em;
  line-height: 1.6;
}

/* CTA Parking */
.parking-cta {
  text-align: center;
  margin: 40px 0;
}
.btn-parkvia {
  display: inline-block;
  background: var(--accent, oklch(0.6 0.2 25));
  color: #fff;
  padding: 14px 36px;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(200, 100, 30, 0.25);
}
.btn-parkvia:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(200, 100, 30, 0.35);
}

/* Grille transports */
.transport-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 24px;
}
.transport-card {
  background: var(--paper, #fafafa);
  border: 1px solid var(--border-light, #e5e5e5);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  transition: transform 0.15s, box-shadow 0.15s;
}
.transport-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}
.tc-icon {
  font-size: 2.5rem;
  margin-bottom: 8px;
}
.transport-card h3 {
  font-size: 1rem;
  margin-bottom: 6px;
  color: var(--ink);
}
.tc-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent, oklch(0.6 0.2 25));
  margin-bottom: 4px;
}
.tc-duration {
  font-size: 0.9rem;
  color: var(--ink-light);
  margin-bottom: 2px;
}
.tc-note {
  font-size: 0.8rem;
  color: var(--ink-muted, oklch(0.5 0.02 255));
}

/* === MARKDOWN ENRICHÉ (tableaux, blockquotes, listes, FAQ) === */

/* --- Tableaux modernes --- */
.subpage-content .table-wrap, .wrap-narrow .table-wrap, .seo-content .table-wrap {
  overflow-x: auto;
  margin: 2em 0;
  border-radius: 10px;
  border: 1px solid oklch(0.88 0.01 255);
  box-shadow: 0 1px 3px oklch(0 0 0 / 0.04);
}
.subpage-content table, .wrap-narrow table, .seo-content table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
  line-height: 1.5;
}
.subpage-content thead th, .wrap-narrow thead th, .seo-content thead th {
  background: oklch(0.96 0.01 255);
  color: oklch(0.25 0.02 255);
  padding: 12px 16px;
  text-align: left;
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-bottom: 2px solid oklch(0.85 0.02 255);
}
.subpage-content tbody td, .wrap-narrow tbody td, .seo-content tbody td {
  padding: 11px 16px;
  border-bottom: 1px solid oklch(0.9 0.01 255);
  color: oklch(0.3 0.02 255);
}
.subpage-content tbody tr:last-child td, .wrap-narrow tbody tr:last-child td, .seo-content tbody tr:last-child td {
  border-bottom: none;
}
.subpage-content tbody tr:hover td, .wrap-narrow tbody tr:hover td, .seo-content tbody tr:hover td {
  background: oklch(0.97 0.015 255);
}

/* --- FAQ Accordéon --- */
.faq-list {
  margin: 2em 0;
}
.faq-item {
  border: 1px solid oklch(0.87 0.01 255);
  border-radius: 10px;
  margin-bottom: 10px;
  overflow: hidden;
  background: #fff;
  transition: box-shadow 0.2s;
}
.faq-item:hover {
  box-shadow: 0 2px 8px oklch(0 0 0 / 0.05);
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--ink, oklch(0.25 0.03 255));
  user-select: none;
  gap: 12px;
}
.faq-q:hover {
  background: oklch(0.98 0.01 255);
}
.faq-toggle {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: oklch(0.93 0.02 255);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: oklch(0.35 0.1 255);
  transition: transform 0.25s, background 0.2s;
}
.faq-toggle::before {
  content: '+';
  line-height: 1;
}
.faq-item.open .faq-toggle {
  background: var(--primary, oklch(0.35 0.1 255));
  color: #fff;
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-item.open .faq-a {
  max-height: 600px;
}
.faq-a-inner {
  padding: 0 20px 18px;
  color: oklch(0.35 0.02 255);
  line-height: 1.7;
  font-size: 0.93rem;
}
.faq-a-inner p {
  margin: 0 0 0.6em;
}
@media (max-width: 600px) {
  .parking-badge {
    top: clamp(10px, 2vw, 16px);
    right: clamp(10px, 3vw, 20px);
  }
}

/* Badge P parking */
.parking-hero { position: relative; }
.parking-badge {
  position: absolute;
  top: clamp(16px, 3vw, 28px);
  right: clamp(16px, 4vw, 40px);
  width: clamp(64px, 8vw, 100px);
  height: clamp(64px, 8vw, 100px);
  background: oklch(0.35 0.12 255 / 0.88);
  color: #fff;
  font-family: var(--font-display, sans-serif);
  font-weight: 800;
  font-size: clamp(36px, 5vw, 56px);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  z-index: 2;
  backdrop-filter: blur(4px);
}
@media (max-width: 600px) {
  .parking-badge {
    top: clamp(10px, 2vw, 16px);
    right: clamp(10px, 3vw, 20px);
  }
}


/* === FLIGHTS TABLE (inline horaires) === */
.flights-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}
.flights-table thead th {
  background: oklch(0.96 0.01 255);
  color: var(--ink-soft);
  font-weight: 600;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 10px 14px;
  text-align: left;
  border-bottom: 2px solid oklch(0.88 0.01 255);
}
.flights-table tbody td {
  padding: 10px 14px;
  border-bottom: 1px solid oklch(0.92 0.01 255);
  color: var(--ink);
}
.flights-table tbody tr:hover { background: oklch(0.97 0.015 255); }
.flights-table tbody tr:last-child td { border-bottom: none; }
.ft-time {
  font-family: var(--font-mono, monospace);
  font-weight: 600;
  white-space: nowrap;
  color: var(--ink);
}
.ft-code {
  font-family: var(--font-mono, monospace);
  font-weight: 600;
  color: var(--primary-deep, oklch(0.3 0.1 255));
}
.ft-empty {
  text-align: center;
  color: var(--ink-faint);
  padding: 24px 14px !important;
}

/* Flight status badges */
.flight-status {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  white-space: nowrap;
}
.st-scheduled  { background: oklch(0.94 0.02 140); color: oklch(0.4 0.08 140); }
.st-active     { background: oklch(0.94 0.04 255); color: oklch(0.35 0.1 255); }
.st-landed     { background: oklch(0.95 0.01 100); color: oklch(0.45 0.02 100); }
.st-cancelled, .st-canceled { background: oklch(0.94 0.025 25); color: oklch(0.4 0.12 25); }
.st-delayed    { background: oklch(0.93 0.06 80); color: oklch(0.45 0.1 75); }
.st-unknown    { background: oklch(0.95 0.01 255); color: oklch(0.45 0.01 255); }
.st-departed   { background: oklch(0.94 0.03 210); color: oklch(0.38 0.09 210); }
.st-expected   { background: oklch(0.95 0.02 160); color: oklch(0.4 0.07 160); }
.st-arrived    { background: oklch(0.94 0.02 140); color: oklch(0.38 0.09 140); }
.st-approaching{ background: oklch(0.93 0.05 255); color: oklch(0.35 0.11 255); }

/* Tab count badge */
.tab-count {
  display: inline-block;
  background: oklch(0.9 0.02 255);
  color: var(--ink-soft);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 1px 7px;
  border-radius: 10px;
  margin-left: 4px;
  vertical-align: middle;
}

@media (max-width: 600px) {
  .flights-table thead th,
  .flights-table tbody td { padding: 8px 8px; font-size: 0.82rem; }
}


/* === FILTERS BAR === */
.filters-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  padding: 12px 0 20px;
  border-bottom: 1px solid var(--line, oklch(0.9 0.01 255));
  margin-bottom: 12px;
}
.filter-group {
  display: flex;
  gap: 6px;
  align-items: center;
}
.fbtn {
  padding: 6px 14px;
  border: 1px solid oklch(0.88 0.01 255);
  border-radius: 20px;
  background: #fff;
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s;
  font-family: inherit;
}
.fbtn:hover { border-color: var(--primary, oklch(0.45 0.12 255)); color: var(--primary); }
.fbtn.active {
  background: var(--primary, oklch(0.45 0.12 255));
  color: #fff;
  border-color: var(--primary, oklch(0.45 0.12 255));
}
.finp {
  padding: 6px 12px;
  border: 1px solid oklch(0.88 0.01 255);
  border-radius: 8px;
  font-size: 0.82rem;
  font-family: inherit;
  width: 150px;
  background: #fff;
  color: var(--ink);
  outline: none;
  transition: border-color 0.15s;
}
.finp:focus { border-color: var(--primary, oklch(0.45 0.12 255)); }
.finp::placeholder { color: oklch(0.6 0.01 255); }

@media (max-width: 600px) {
  .filters-bar { flex-direction: column; align-items: flex-start; }
  .filter-group { flex-wrap: wrap; }
  .finp { width: 100%; }
}


/* === LIVE STRIP (vols en cours) === */
.live-strip {
  background: oklch(0.2 0.06 255);
  color: #fff;
  padding: 14px 0;
}
.live-strip-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.live-pulse {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: oklch(0.65 0.2 150);
  animation: livePulse 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes livePulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 oklch(0.65 0.2 150 / 0.5); }
  50% { opacity: 0.6; box-shadow: 0 0 0 8px oklch(0.65 0.2 150 / 0); }
}
.live-label {
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.live-flights {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}
.live-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: oklch(0.25 0.05 255 / 0.6);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.82rem;
  backdrop-filter: blur(4px);
}
.live-chip-icon { font-size: 0.9rem; }
.live-chip-flight { font-weight: 700; font-family: var(--font-mono, monospace); }
.live-chip-dest { opacity: 0.8; }
.live-more {
  color: oklch(0.8 0.05 255);
  font-size: 0.82rem;
  text-decoration: none;
  font-weight: 600;
  padding: 5px 12px;
  border: 1px dashed oklch(0.5 0.05 255);
  border-radius: 20px;
}
.live-more:hover { background: oklch(0.3 0.06 255); color: #fff; }

/* ─── FAQ Accordéon ─────────────────────────── */
.faq-item { border-bottom:1px solid #e0e0e0; }
.faq-q { padding:14px 0; font-weight:600; font-size:16px; cursor:pointer; display:flex; justify-content:space-between; align-items:center; color:#1a237e; }
.faq-q:hover { color:#3949ab; }
.faq-arrow::after { content:"+"; font-size:20px; font-weight:300; transition:transform .2s; }
.faq-item.open .faq-arrow::after { content:"−"; }
.faq-a { max-height:0; overflow:hidden; transition:max-height .3s ease; padding:0; color:#444; font-size:15px; line-height:1.7; }
.faq-item.open .faq-a { max-height:2000px; padding:0 0 16px 0; }

/* ─── Tableaux Markdown ─────────────────────── */
.seo-content table { width:100%; border-collapse:collapse; margin:16px 0; font-size:14px; }
.seo-content table th { text-align:left; padding:10px 14px; background:#f5f5f5; color:#555; font-weight:600; font-size:12px; text-transform:uppercase; letter-spacing:.5px; border-bottom:2px solid #e0e0e0; }
.seo-content table td { padding:10px 14px; border-bottom:1px solid #f0f0f0; }
.seo-content table tr:hover td { background:#fafafa; }

/* ─── Blockquote ────────────────────────────── */
blockquote { margin:16px 0; padding:12px 18px; background:#f5f7ff; border-left:3px solid #1a237e; border-radius:0 8px 8px 0; font-size:15px; color:#333; }
blockquote p { margin:0; }

/* ─── SEO Content ───────────────────────────── */
.seo-content h2, .wrap-narrow h2, .subpage-content h2 { font-size:22px; margin:36px 0 12px; color:#1a237e; }
.seo-content h3, .wrap-narrow h3, .subpage-content h3 { font-size:18px; margin:28px 0 8px; color:#333; }
.seo-content ul, .wrap-narrow ul, .subpage-content ul { margin:8px 0 16px 20px; }
.seo-content li, .wrap-narrow li, .subpage-content li { margin:4px 0; }

/* === RELATED NEWS === */
.related-news {
  margin-top: clamp(60px, 10vw, 100px);
  padding: clamp(40px, 8vw, 80px) 0;
  background: var(--paper-2);
  border-top: 1px solid var(--line);
}
.related-news .section-head {
  text-align: center; margin-bottom: 32px;
}
.related-news .section-head h2 {
  font-size: clamp(24px, 4vw, 36px);
  margin-bottom: 8px;
}
.related-news .section-lede {
  color: var(--ink-soft); font-size: 16px;
}
.related-news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}
.rn-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
  display: flex; flex-direction: column;
}
.rn-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.rn-img {
  height: 140px; background-size: cover; background-position: center;
  flex: none;
}
.rn-img-ph {
  background: linear-gradient(135deg, var(--primary-tint), var(--paper-2));
  display: flex; align-items: center; justify-content: center;
  font-size: 36px; color: var(--primary);
}
.rn-body {
  padding: 16px 18px 18px;
  flex: 1; display: flex; flex-direction: column;
}
.rn-body h3 {
  font-size: 15px; font-weight: 600; line-height: 1.3;
  margin: 0 0 6px;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical;
  overflow: hidden;
}
.rn-excerpt {
  font-size: 13px; color: var(--ink-soft); line-height: 1.4;
  margin: 0 0 10px;
  flex: 1;
}
.rn-date {
  font-size: 11px; font-family: var(--font-mono);
  color: var(--ink-faint);
  margin-top: auto;
}
@media (max-width: 600px) {
  .related-news-grid { grid-template-columns: 1fr; }
}

/* === EDITORIAL CARDS (pages Formalités, Bagages, Assistance, Santé) === */
.editorial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 8px;
}
.editorial-card {
  background: var(--card, #fff);
  border: 1px solid var(--line, oklch(0.9 0.01 255));
  border-radius: var(--radius, 12px);
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
  text-decoration: none;
  color: var(--ink, #1a1a2e);
  display: flex;
  flex-direction: column;
}
.editorial-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px oklch(0 0 0 / 0.10);
}
.editorial-card-img {
  width: 100%; height: 140px;
  display: flex; align-items: center; justify-content: center;
}
.editorial-card-img svg { width: 44px; height: 44px; }
.editorial-card-body { padding: 18px 22px 22px; flex: 1; display: flex; flex-direction: column; }
.editorial-card-body h3 {
  font-size: 18px; font-weight: 600;
  margin: 0 0 8px; line-height: 1.3;
  color: var(--ink, #1a1a2e);
}
.editorial-card-body p {
  font-size: 14px; color: var(--ink-soft, oklch(0.45 0.02 255));
  line-height: 1.5; margin: 0 0 12px;
}
.editorial-card-arrow {
  margin-top: auto;
  font-size: 13px; color: var(--accent, #FF6B6B);
  font-weight: 500;
}
@media (max-width: 600px) {
  .editorial-grid { grid-template-columns: 1fr; }
}
