*, *::before, *::after { box-sizing: border-box; }
:root {
  --ink: #172033;
  --muted: #657084;
  --line: #dbe2ee;
  --surface: #ffffff;
  --soft: #f6f8fb;
  --blue: #175cd3;
  --blue-dark: #123f91;
  --red: #d92d20;
  --gold: #f2b84b;
  --green: #12805c;
  --radius: 8px;
  --shadow: 0 18px 45px rgba(23, 32, 51, 0.1);
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--soft);
  line-height: 1.5;
}

a { color: inherit; }
.container { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }

.top-strip { background: #172033; color: #eef3ff; font-size: 13px; }
.top-strip .container { display: flex; justify-content: space-between; gap: 16px; padding: 8px 0; }
.top-strip a { color: #fff; font-weight: 650; text-decoration: none; }

.header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.header-row { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 68px; }
.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--ink); text-decoration: none; font-weight: 800; }
.brand-mark { display: grid; width: 38px; height: 38px; place-items: center; border-radius: 8px; background: var(--blue); color: #fff; box-shadow: 0 10px 22px rgba(23, 92, 211, 0.25); }
.nav { display: flex; align-items: center; gap: 6px; }
.nav a { border-radius: 8px; color: var(--muted); font-size: 14px; font-weight: 650; padding: 9px 12px; text-decoration: none; }
.nav a:hover, .nav a.active { background: #eef4ff; color: var(--blue); }

.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(130deg, rgba(18, 63, 145, 0.94), rgba(23, 92, 211, 0.78)),
    url("https://images.unsplash.com/photo-1553413077-190dd305871c?auto=format&fit=crop&w=1800&q=80");
  background-position: center;
  background-size: cover;
  color: #fff;
}
.hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 7px;
  background: linear-gradient(90deg, var(--red) 0 34%, var(--gold) 34% 67%, var(--blue) 67%);
  content: "";
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.8fr);
  gap: 34px;
  align-items: center;
  padding: 54px 0 62px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

.page-hero {
  color: #fff;
  background:
    linear-gradient(130deg, rgba(18, 63, 145, 0.95), rgba(23, 92, 211, 0.8)),
    url("https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?auto=format&fit=crop&w=1800&q=80");
  background-position: center;
  background-size: cover;
}
.page-hero.compact { background-image: linear-gradient(130deg, rgba(18, 63, 145, 0.96), rgba(23, 92, 211, 0.82)), url("https://images.unsplash.com/photo-1565891741441-64926e441838?auto=format&fit=crop&w=1800&q=80"); }
.page-hero .container { padding: 42px 0 54px; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; color: #dbeafe; font-size: 13px; font-weight: 700; }
.breadcrumbs a { color: #fff; text-decoration: none; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; margin: 0 0 12px; color: #dbeafe; font-size: 13px; font-weight: 750; text-transform: uppercase; }
.eyebrow::before { width: 28px; height: 3px; border-radius: 999px; background: var(--gold); content: ""; }
h1 { max-width: 820px; margin: 0; font-size: clamp(34px, 6vw, 58px); line-height: 1; letter-spacing: 0; }
.hero-copy { max-width: 720px; margin: 16px 0 0; color: #eaf1ff; font-size: 18px; }
.hero-tools { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 12px; margin-top: 24px; max-width: 760px; }
.search-box, .select-box {
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  font: inherit;
  padding: 0 13px;
}
.select-box { min-width: 210px; }

.rate-finder {
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
  color: var(--ink);
  padding: 18px;
}
.finder-tabs { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 16px; }
.finder-tabs button { min-height: 38px; border: 1px solid var(--line); border-radius: 8px; background: #fff; color: var(--muted); font: inherit; font-size: 14px; font-weight: 750; }
.finder-tabs button.active { border-color: var(--blue); background: #eef4ff; color: var(--blue); }
.field { margin-bottom: 12px; }
.field label { display: block; margin-bottom: 6px; color: var(--muted); font-size: 12px; font-weight: 750; text-transform: uppercase; }
.field input, .field select { width: 100%; height: 44px; border: 1px solid var(--line); border-radius: 8px; background: #fff; color: var(--ink); font: inherit; padding: 0 12px; }
.finder-submit { width: 100%; height: 46px; border: 0; border-radius: 8px; background: var(--red); color: #fff; font: inherit; font-weight: 800; cursor: pointer; }
.finder-note { margin: 12px 0 0; color: var(--muted); font-size: 13px; }

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  transform: translateY(-26px);
  box-shadow: 0 12px 26px rgba(23, 32, 51, 0.08);
}
.stat { background: #fff; padding: 18px; }
.stat strong { display: block; font-size: 27px; line-height: 1; }
.stat span { display: block; margin-top: 6px; color: var(--muted); font-size: 13px; font-weight: 650; }

.section { padding: 26px 0; }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 18px; margin-bottom: 18px; }
.section h2 { margin: 0; font-size: 28px; line-height: 1.15; }
.section-lede { max-width: 680px; margin: 8px 0 0; color: var(--muted); }
.text-link { color: var(--blue); font-size: 14px; font-weight: 800; text-decoration: none; white-space: nowrap; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0 16px;
  font-weight: 750;
  text-decoration: none;
  cursor: pointer;
}
.button.primary { background: var(--blue); color: #fff; }
.button.light { background: #fff; color: var(--blue-dark); }
.button.outline { border-color: var(--line); color: var(--ink); background: #fff; }
.button.secondary { border-color: rgba(255, 255, 255, 0.35); color: #fff; }

.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.two-col { display: grid; grid-template-columns: minmax(0, 1fr) 330px; gap: 18px; align-items: start; }
.panel, .card, .rate-panel, .side-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}
.card {
  display: flex;
  min-height: 150px;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.card:hover { border-color: #b7c7ee; box-shadow: 0 12px 28px rgba(23, 32, 51, 0.1); transform: translateY(-2px); }
.card-kicker { color: var(--blue); font-size: 12px; font-weight: 850; text-transform: uppercase; }
.card h3 { margin: 10px 0 6px; font-size: 18px; }
.card p { margin: 0; color: var(--muted); font-size: 14px; }
.card-meta { display: flex; justify-content: space-between; gap: 8px; margin-top: 18px; color: var(--green); font-size: 13px; font-weight: 800; }

.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.service-card {
  display: flex;
  min-height: 176px;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px;
  text-decoration: none;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.service-card:hover { border-color: #b7c7ee; box-shadow: 0 12px 28px rgba(23, 32, 51, 0.1); transform: translateY(-2px); }
.service-icon { display: grid; width: 42px; height: 42px; place-items: center; border-radius: 8px; background: #eef4ff; color: var(--blue); font-size: 22px; font-weight: 800; }
.service-card h3 { margin: 14px 0 6px; font-size: 18px; }
.service-card p { margin: 0; color: var(--muted); font-size: 14px; }
.service-meta { display: flex; justify-content: space-between; gap: 8px; margin-top: 18px; color: var(--green); font-size: 13px; font-weight: 800; }

.destinations { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.destination-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 76px;
  padding: 14px;
  text-decoration: none;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}
.destination-card strong { display: block; }
.destination-card span { color: var(--muted); font-size: 13px; }
.flag { display: grid; min-width: 38px; height: 38px; place-items: center; border-radius: 8px; background: #f1f4f9; font-size: 20px; }

.directory {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.link-item {
  display: flex;
  min-height: 46px;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  padding: 9px 12px;
  text-decoration: none;
}
.link-item:hover { border-color: #b7c7ee; }
.link-item small { color: var(--muted); font-weight: 700; }

.rate-panel { overflow: hidden; overflow-x: auto; }
.rate-table { width: 100%; border-collapse: collapse; background: #fff; }
.rate-table th, .rate-table td { padding: 13px 15px; border-bottom: 1px solid var(--line); text-align: left; font-size: 14px; }
.rate-table th { background: #f1f5fb; color: #41506a; font-size: 12px; font-weight: 850; text-transform: uppercase; }
.rate-table tr:last-child td { border-bottom: 0; }
.rate-table a { color: var(--blue); font-weight: 800; text-decoration: none; }
.price { font-weight: 850; color: var(--ink); }
.rate-note { margin: 0; padding: 10px 15px; font-size: 13px; color: var(--muted); border-top: 1px solid var(--line); }
.converted { color: var(--muted); font-size: 13px; }
.calc-result { margin-top: 12px; padding: 14px; border-radius: 8px; background: var(--soft); text-align: center; }
.calc-result strong { display: block; font-size: 24px; color: var(--ink); }
.calc-result span { display: block; margin-top: 4px; font-size: 14px; color: var(--muted); font-weight: 650; }
.unavailable td { color: var(--line); }
.unavailable span { color: var(--line); }
.status-icon { text-align: center; font-weight: 800; }
tr:not(.unavailable) .status-icon { color: var(--green); }
.unavailable .status-icon { color: var(--line); }
.tier-row td { font-size: 12px; font-weight: 850; text-transform: uppercase; color: var(--muted); background: var(--soft); padding: 10px 15px !important; letter-spacing: 0.5px; }
.tier-express td { color: var(--green); }
.tier-economy td { color: #926208; }
.tool-links { display: flex; gap: 10px; margin-top: 14px; }
.badge { display: inline-flex; min-height: 26px; align-items: center; border-radius: 999px; background: #eef4ff; color: var(--blue); padding: 0 10px; font-size: 12px; font-weight: 800; }
.badge.green { background: #eaf8f2; color: var(--green); }
.badge.gold { background: #fff6df; color: #926208; }

.summary-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  margin-bottom: 18px;
}
.summary-strip div { background: #fff; padding: 16px; }
.summary-strip strong { display: block; }
.summary-strip span { color: var(--muted); font-size: 13px; font-weight: 650; }

.side-panel { padding: 18px; }
.side-panel h3 { margin: 0 0 12px; font-size: 18px; }
.side-panel p { color: var(--muted); margin: 0 0 14px; }
.side-links { display: grid; gap: 8px; }

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.timeline-step {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 16px;
}
.timeline-step b { display: grid; width: 34px; height: 34px; place-items: center; border-radius: 8px; background: var(--blue); color: #fff; margin-bottom: 12px; }
.timeline-step strong { display: block; }
.timeline-step span { display: block; margin-top: 4px; color: var(--muted); font-size: 13px; }

.source-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  border: 1px solid var(--line);
  border-left: 5px solid var(--gold);
  border-radius: 8px;
  background: #fff;
  padding: 20px;
}
.source-panel h2 { margin: 0; font-size: 22px; }
.source-panel p { margin: 8px 0 0; color: var(--muted); }

/* Service Info Cards */
.svc-info-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.svc-info-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}
.svc-info-card strong { font-size: 20px; line-height: 1.2; }
.svc-info-label { font-size: 11px; font-weight: 750; text-transform: uppercase; color: var(--muted); }
.svc-info-detail { font-size: 13px; color: var(--muted); font-weight: 650; }

.zone-tabs { display: flex; gap: 6px; margin-bottom: 14px; }
.zone-tab { min-height: 38px; border: 1px solid var(--line); border-radius: 8px; background: #fff; color: var(--muted); font: inherit; font-size: 14px; font-weight: 750; padding: 0 16px; cursor: pointer; }
.zone-tab.active { border-color: var(--blue); background: #eef4ff; color: var(--blue); }
.hidden { display: none; }

.about-card { border: 1px solid var(--line); border-radius: 8px; background: #fff; padding: 20px; }
.about-card p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.7; }

/* Visual Timeline - Dot milestone style */
.visual-timeline { border: 1px solid var(--line); border-radius: 8px; background: #fff; overflow: hidden; }
.vt-header { display: grid; grid-template-columns: 160px 1fr auto; background: #f1f5fb; border-bottom: 1px solid var(--line); }
.vt-header > span { padding: 10px 15px; font-size: 12px; font-weight: 800; color: var(--muted); }
.vt-dots-head { display: flex; justify-content: space-between; padding: 10px 0; font-size: 11px; font-weight: 750; color: var(--muted); }
.vt-row { display: grid; grid-template-columns: 160px 1fr auto; align-items: center; border-top: 1px solid var(--line); }
.vt-label { padding: 13px 15px; font-size: 13px; font-weight: 700; }
.vt-dots { display: flex; align-items: center; gap: 0; padding: 10px 0; }
.vt-dot { width: 14px; height: 14px; border-radius: 50%; flex-shrink: 0; z-index: 1; }
.vt-dot.vt-inactive { background: var(--line); }
.vt-connector { flex: 1; height: 2px; background: var(--line); }
.vt-connector.vt-c-active-express { background: var(--green); }
.vt-connector.vt-c-active-standard { background: var(--blue); }
.vt-connector.vt-c-active-economy { background: #d4930a; }
.vt-express { background: var(--green); }
.vt-standard { background: var(--blue); }
.vt-economy { background: #d4930a; }
.vt-day { padding: 0 12px; font-size: 12px; font-weight: 750; color: var(--muted); white-space: nowrap; text-align: right; }

/* Price Ladder */
.price-ladder { display: grid; gap: 6px; }
.pl-row { display: grid; grid-template-columns: 180px 1fr 90px; align-items: center; gap: 12px; padding: 10px 15px; border: 1px solid var(--line); border-radius: 8px; background: #fff; text-decoration: none; transition: border-color 0.18s; }
.pl-row:hover { border-color: #b7c7ee; }
.pl-label { font-size: 13px; font-weight: 700; color: var(--ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.pl-track { height: 22px; background: var(--soft); border-radius: 4px; overflow: hidden; }
.pl-bar { height: 100%; border-radius: 4px; min-width: 4px; transition: width 0.3s ease; }
.pl-express { background: linear-gradient(90deg, #15a068, #12805c); }
.pl-standard { background: linear-gradient(90deg, #3b82f6, var(--blue)); }
.pl-economy { background: linear-gradient(90deg, #f2b84b, #d4930a); }
.pl-price { font-size: 14px; font-weight: 850; color: var(--ink); text-align: right; }

.pick-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.pick-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.pick-card:hover { border-color: #b7c7ee; box-shadow: 0 12px 28px rgba(23, 32, 51, 0.1); transform: translateY(-2px); }
.pick-card .badge { align-self: flex-start; }
.pick-value { font-size: 26px; line-height: 1.1; color: var(--ink); }
.pick-name { font-size: 14px; font-weight: 700; color: var(--ink); }
.pick-detail { font-size: 13px; color: var(--muted); }

.guide-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.guide-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  text-decoration: none;
  transition: border-color 0.18s ease;
}
.guide-item:hover { border-color: #b7c7ee; }
.guide-use { font-size: 13px; color: var(--muted); font-weight: 650; }
.guide-svc { font-size: 15px; color: var(--ink); }
.guide-meta { font-size: 13px; color: var(--green); font-weight: 800; }

.faq-list { display: grid; gap: 8px; }
.faq-item { border: 1px solid var(--line); border-radius: 8px; background: #fff; }
.faq-question { padding: 16px 18px; font-weight: 750; font-size: 15px; cursor: pointer; list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after { content: "+"; font-size: 20px; font-weight: 800; color: var(--muted); flex-shrink: 0; transition: transform 0.2s; }
.faq-item[open] .faq-question::after { content: "−"; color: var(--blue); }
.faq-item[open] { border-color: #b7c7ee; }
.faq-answer { padding: 0 18px 16px; color: var(--muted); font-size: 14px; line-height: 1.7; }

.footer { margin-top: 34px; border-top: 1px solid var(--line); background: #fff; }
.footer-row { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 22px 0; color: var(--muted); font-size: 14px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 14px; }
.footer-links a { color: var(--ink); font-weight: 700; text-decoration: none; }

@media (max-width: 920px) {
  .top-strip .container, .header-row, .section-head, .footer-row { align-items: flex-start; flex-direction: column; }
  .nav { width: 100%; overflow-x: auto; padding-bottom: 2px; }
  .hero-grid, .hero-tools, .two-col, .source-panel { grid-template-columns: 1fr; }
  .stats, .card-grid, .service-grid, .directory, .destinations, .timeline, .pick-grid, .guide-grid, .svc-info-grid { grid-template-columns: repeat(2, 1fr); }
  .tool-links { flex-wrap: wrap; }
  .vt-header, .vt-row { grid-template-columns: 130px 1fr auto; }
  .pl-row { grid-template-columns: 140px 1fr 80px; }
}

@media (max-width: 580px) {
  .container { width: min(100% - 24px, 1120px); }
  .page-hero .container { padding: 34px 0 46px; }
  .hero-grid { padding: 36px 0 48px; }
  .stats, .card-grid, .service-grid, .directory, .destinations, .summary-strip, .timeline, .pick-grid, .guide-grid, .svc-info-grid { grid-template-columns: 1fr; }
  .select-box { min-width: 0; width: 100%; }
  .rate-table.wide { min-width: 560px; }
  .visual-timeline { overflow-x: auto; }
  .vt-header, .vt-row { min-width: 420px; }
  .vt-dot { width: 12px; height: 12px; }
  .pl-row { grid-template-columns: 1fr 80px; }
  .pl-label { grid-column: 1 / -1; }
  .hero-actions .button { width: 100%; }
}
