*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg: #fafaf9;
  --bg-white: #ffffff;
  --bg-warm: #f5f4f0;
  --bg-blue: #eef4ff;
  --bg-purple: #f3f0ff;
  --bg-amber: #fef9ee;
  --bg-green: #eefbf4;
  --border: #e4e2dd;
  --border-light: #eeede9;
  --text-primary: #1c1917;
  --text-body: #3d3832;
  --text-secondary: #78716c;
  --text-muted: #a8a29e;
  --blue: #2860e1;
  --blue-soft: #dbeafe;
  --purple: #7534d4;
  --purple-soft: #ede9fe;
  --amber: #c2760c;
  --amber-soft: #fef3c7;
  --green: #15803d;
  --green-soft: #dcfce7;
  --red: #dc2626;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'DM Sans', system-ui, -apple-system, sans-serif;
  --w-content: 720px;
  --w-wide: 820px;
  --r: 10px;
  --r-lg: 14px;
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background: var(--bg);
  color: var(--text-body);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ── LAYOUT WRAPPER ── */
.wrap { max-width: var(--w-content); margin: 0 auto; padding: 0 20px; }
.wrap-wide { max-width: var(--w-wide); margin: 0 auto; padding: 0 20px; }

/* ── AD PLACEHOLDER (global, inject via script later) ── */
.ad-placeholder {
  display: none; /* Hidden by default — ad script activates these */
}

/* ══════════════════════════════════════════════════════════
    SITE HEADER
    ══════════════════════════════════════════════════════════ */
.site-header {
  background: var(--text-primary);
  position: relative;
  z-index: 200;
}

/* Top bar — branding accent line */
.site-header-accent {
  height: 3px;
  background: linear-gradient(90deg, var(--blue) 0%, var(--purple) 40%, var(--amber) 70%, var(--green) 100%);
}

/* Main header row */
.site-header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  max-width: 1080px;
  margin: 0 auto;
  height: 56px;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  flex-shrink: 0;
}
.site-logo-icon {
  width: 30px;
  height: 30px;
  background: var(--blue);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  line-height: 1;
}
.site-logo-text {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.01em;
  line-height: 1;
}
.site-logo-text span {
  color: var(--text-muted);
  font-weight: 400;
  font-size: 15px;
}

/* Desktop nav */
.site-nav-desktop {
  display: none;
  align-items: center;
  gap: 4px;
}
.site-nav-link {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 6px;
  transition: color 0.15s, background 0.15s;
  white-space: nowrap;
}
.site-nav-link:hover {
  color: #ffffff;
  background: rgba(255,255,255,0.07);
}
.site-nav-link.active {
  color: #ffffff;
  background: rgba(255,255,255,0.1);
}

/* Desktop dropdown */
.site-nav-dropdown {
  position: relative;
}
.site-nav-dropdown-trigger {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 6px;
  transition: color 0.15s, background 0.15s;
  white-space: nowrap;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  font-family: var(--font-body);
}
.site-nav-dropdown-trigger:hover {
  color: #ffffff;
  background: rgba(255,255,255,0.07);
}
.site-nav-dropdown-trigger svg {
  width: 10px;
  height: 10px;
  fill: currentColor;
  transition: transform 0.2s;
  flex-shrink: 0;
}
.site-nav-dropdown:hover .site-nav-dropdown-trigger svg {
  transform: rotate(180deg);
}
.site-nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 4px;
  background: #1c1917;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 8px 0;
  min-width: 240px;
  max-height: 420px;
  overflow-y: auto;
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
  z-index: 500;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.1) transparent;
}
.site-nav-dropdown-menu::-webkit-scrollbar { width: 4px; }
.site-nav-dropdown-menu::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.12); border-radius: 2px; }
.site-nav-dropdown:hover .site-nav-dropdown-menu {
  display: block;
}
.site-nav-dropdown-menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 16px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.12s, background 0.12s;
}
.site-nav-dropdown-menu a:hover {
  color: #ffffff;
  background: rgba(255,255,255,0.06);
}
.site-nav-dropdown-menu a .dd-code {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.04em;
}
.site-nav-dropdown-divider {
  height: 1px;
  background: rgba(255,255,255,0.06);
  margin: 6px 0;
}

/* Mobile menu button */
.site-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: none;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  cursor: pointer;
  color: rgba(255,255,255,0.7);
  transition: background 0.15s;
}
.site-menu-btn:hover {
  background: rgba(255,255,255,0.07);
}
.site-menu-btn svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
}

/* Mobile nav overlay */
.site-nav-mobile {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(28,25,23,0.97);
  z-index: 300;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  flex-direction: column;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.site-nav-mobile.open {
  display: flex;
}
.site-nav-mobile-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  height: 56px;
  flex-shrink: 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.site-nav-mobile-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  cursor: pointer;
  color: rgba(255,255,255,0.7);
}
.site-nav-mobile-close svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 2.5;
  fill: none;
  stroke-linecap: round;
}

/* Mobile nav links */
.site-nav-mobile-links {
  padding: 8px 20px 20px;
  flex: 1;
}
.mobile-nav-group-label {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 16px 0 8px;
}
.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 0;
  text-decoration: none;
  color: rgba(255,255,255,0.7);
  font-size: 16px;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: color 0.15s;
}
.mobile-nav-link:hover { color: #ffffff; }
.mobile-nav-link.active { color: #ffffff; font-weight: 700; }
.mobile-nav-link-icon {
  font-size: 16px;
  width: 24px;
  text-align: center;
  flex-shrink: 0;
}
.mobile-nav-link-arrow {
  margin-left: auto;
  color: rgba(255,255,255,0.15);
  font-size: 14px;
}

/* Popular airports row in mobile nav */
.mobile-popular {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  padding: 12px 0 0;
}
.mobile-popular-tag {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  padding: 5px 10px;
  text-decoration: none;
  transition: color 0.15s, background 0.15s;
}
.mobile-popular-tag:hover {
  color: #ffffff;
  background: rgba(255,255,255,0.1);
}

@media (min-width: 768px) {
  .site-header-main { height: 60px; padding: 0 28px; }
  .site-nav-desktop { display: flex; }
  .site-menu-btn { display: none; }
}

@media (min-width: 960px) {
  .site-header-main { padding: 0 40px; }
}


/* ── HERO ── */
.hero {
  background: var(--bg-white);
  border-bottom: 1px solid var(--border);
  padding: 32px 0 28px;
}
.hero-breadcrumb {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 20px;
  font-weight: 500;
}
.hero-breadcrumb a { color: var(--blue); text-decoration: none; }
.hero-breadcrumb a:hover { text-decoration: underline; }
.hero-breadcrumb span { margin: 0 6px; color: var(--border); }

.hero-codes {
  display: inline-flex;
  gap: 6px;
  margin-bottom: 16px;
}
.hero-code {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: 6px;
  background: var(--bg-blue);
  color: var(--blue);
  border: 1px solid var(--blue-soft);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(28px, 6vw, 42px);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.hero-desc {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 560px;
  margin-bottom: 24px;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border-light);
  border: 1px solid var(--border-light);
  border-radius: var(--r);
  overflow: hidden;
}
.hero-stat {
  background: var(--bg-white);
  padding: 14px 16px;
  text-align: center;
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
}
.hero-stat-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}
.hero-date {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 16px;
  font-weight: 500;
}

/* ── STICKY NAV ── */
.quicknav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.quicknav-scroll {
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  gap: 0;
}
.quicknav-scroll::-webkit-scrollbar { display: none; }
.quicknav-link {
  flex-shrink: 0;
  padding: 13px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: color 0.15s, border-color 0.15s;
}
.quicknav-link:hover {
  color: var(--blue);
  border-bottom-color: var(--blue);
}

/* ── NOTICE ── */
.notice {
  background: var(--bg-amber);
  border: 1px solid #fde68a;
  border-left: 4px solid var(--amber);
  border-radius: var(--r);
  padding: 16px 18px;
  margin-bottom: 40px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.notice-icon { font-size: 18px; flex-shrink: 0; margin-top: 1px; }
.notice-title { font-weight: 700; font-size: 14px; color: #92400e; margin-bottom: 4px; }
.notice-text { font-size: 14px; color: #78350f; line-height: 1.6; margin: 0; }

/* ── SECTIONS ── */
.content-area { padding: 36px 0 60px; }

section { margin-bottom: 52px; }

.section-head {
  margin-bottom: 20px;
  scroll-margin-top: 64px;
}
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(22px, 4vw, 30px);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
  letter-spacing: -0.015em;
  margin-bottom: 4px;
}
.section-head p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* ── MAP ── */
.map-container { margin-bottom: 48px; }
.map-legend {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 14px;
  font-size: 12px;
  font-weight: 600;
}
.map-legend-item {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--text-secondary);
}
.map-legend-dot {
  width: 9px;
  height: 9px;
  border-radius: 3px;
}
.map-frame {
  background: #eef1f5;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.map-frame svg {
  display: block;
  min-width: 580px;
  width: 100%;
  height: auto;
}
.map-hint {
  text-align: center;
  padding: 8px 0 2px;
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 500;
}
.map-area-t2 { transition: fill 0.2s; }
.map-area-t2:hover { fill: rgba(40,96,225,0.12); stroke: rgba(40,96,225,0.5); }
.map-area-t3 { transition: fill 0.2s; }
.map-area-t3:hover { fill: rgba(117,52,212,0.12); stroke: rgba(117,52,212,0.5); }
.map-area-station { transition: fill 0.2s; }
.map-area-station:hover { fill: rgba(194,118,12,0.12); stroke: rgba(194,118,12,0.5); }
.map-area-rental { transition: fill 0.2s; }
.map-area-rental:hover { fill: rgba(21,128,61,0.12); stroke: rgba(21,128,61,0.5); }

/* ── DETAILS/SUMMARY RESET ── */
details { border: none; }
details summary { list-style: none; }
details summary::-webkit-details-marker { display: none; }
details summary::marker { display: none; content: ''; }

/* ── TERMINAL CARDS ── */
.terminal-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-bottom: 12px;
}
.terminal-card summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 18px;
  cursor: pointer;
  transition: background 0.15s;
  gap: 12px;
}
.terminal-card summary:hover { background: var(--bg-warm); }
.tc-left { display: flex; align-items: center; gap: 12px; min-width: 0; }
.tc-badge {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}
.tc-badge.t2 { background: var(--blue); }
.tc-badge.t3 { background: var(--purple); }
.tc-name { font-weight: 700; font-size: 16px; color: var(--text-primary); }
.tc-meta { font-size: 13px; color: var(--text-secondary); }
.chevron {
  font-size: 14px;
  color: var(--text-muted);
  transition: transform 0.2s;
  flex-shrink: 0;
}
details[open] > summary .chevron { transform: rotate(180deg); }

.tc-body { padding: 0 18px 20px; }
.tc-desc { font-size: 15px; line-height: 1.65; margin-bottom: 18px; }

.tc-label {
  font-weight: 700;
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.airline-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 20px;
}
.airline-tag {
  font-size: 12px;
  font-weight: 500;
  background: var(--bg-warm);
  border: 1px solid var(--border-light);
  border-radius: 6px;
  padding: 4px 9px;
  color: var(--text-body);
}

.facility-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
}
.facility-item {
  font-size: 13px;
  font-weight: 500;
  background: var(--bg-warm);
  border-radius: 6px;
  padding: 9px 12px;
  color: var(--text-body);
  border: 1px solid var(--border-light);
}

/* ── TRANSFER BOX ── */
.transfer-box {
  background: var(--bg-blue);
  border: 1px solid var(--blue-soft);
  border-radius: var(--r-lg);
  padding: 20px;
  margin-top: 20px;
}
.transfer-box h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}
.transfer-cols {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 14px;
  line-height: 1.65;
}
.transfer-cols strong {
  display: block;
  color: var(--text-primary);
  font-size: 14px;
  margin-bottom: 2px;
}

/* ── AIRLINE FINDER ── */
.airline-search-wrap { margin-bottom: 14px; }
.airline-search {
  width: 100%;
  padding: 12px 14px 12px 38px;
  border: 1px solid var(--border);
  border-radius: var(--r);
  font-size: 14px;
  font-family: var(--font-body);
  background: var(--bg-white) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23a8a29e' viewBox='0 0 16 16'%3E%3Cpath d='M11.742 10.344a6.5 6.5 0 1 0-1.397 1.398h-.001l3.85 3.85a1 1 0 0 0 1.415-1.414l-3.85-3.85zm-5.242.156a5 5 0 1 1 0-10 5 5 0 0 1 0 10z'/%3E%3C/svg%3E") no-repeat 12px center;
  color: var(--text-body);
  outline: none;
  transition: border-color 0.15s;
}
.airline-search:focus { border-color: var(--blue); }
.airline-search::placeholder { color: var(--text-muted); }

.airline-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
  max-height: 400px;
  overflow-y: auto;
}
.airline-grid::-webkit-scrollbar { width: 4px; }
.airline-grid::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }

.airline-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  transition: border-color 0.15s;
}
.airline-row:hover { border-color: var(--border); }
.airline-row-name { font-size: 14px; font-weight: 500; }
.airline-row-badge {
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 5px;
  letter-spacing: 0.02em;
}
.airline-row-badge.t2 { background: var(--blue-soft); color: var(--blue); }
.airline-row-badge.t3 { background: var(--purple-soft); color: var(--purple); }

/* ── TRANSPORT ── */
.transport-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-bottom: 8px;
}
.transport-card summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  cursor: pointer;
  transition: background 0.15s;
  gap: 10px;
}
.transport-card summary:hover { background: var(--bg-warm); }
.tr-left { display: flex; align-items: center; gap: 10px; }
.tr-icon { font-size: 20px; flex-shrink: 0; }
.tr-mode { font-weight: 700; font-size: 15px; color: var(--text-primary); }
.tr-cost {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  background: var(--bg-warm);
  padding: 4px 10px;
  border-radius: 100px;
  border: 1px solid var(--border-light);
  white-space: nowrap;
  flex-shrink: 0;
}
.tr-body { padding: 0 16px 16px 46px; }
.tr-details { font-size: 14px; line-height: 1.65; margin-bottom: 10px; }
.tr-meta { display: flex; flex-direction: column; gap: 4px; font-size: 13px; }
.tr-meta-row { display: flex; gap: 6px; flex-wrap: wrap; }
.tr-meta-label { color: var(--text-muted); font-weight: 600; }
.tr-meta-value { color: var(--text-body); font-weight: 500; }

/* ── PARKING TABLE ── */
.parking-wrap {
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--bg-white);
}

.parking-table-mobile { display: block; }
.parking-table-desktop { display: none; }

.park-card {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border-light);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 16px;
  align-items: start;
}
.park-card:last-child { border-bottom: none; }
.park-card-name { font-weight: 700; font-size: 14px; color: var(--text-primary); }
.park-card-price { font-weight: 700; font-size: 14px; color: var(--blue); text-align: right; }
.park-card-details {
  grid-column: 1 / -1;
  font-size: 13px;
  color: var(--text-secondary);
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.parking-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.parking-table thead { background: var(--bg-warm); }
.parking-table th {
  text-align: left;
  padding: 12px 16px;
  color: var(--text-secondary);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--border);
}
.parking-table td { padding: 12px 16px; }
.parking-table tbody tr { border-bottom: 1px solid var(--border-light); }
.parking-table tbody tr:last-child { border-bottom: none; }
.parking-table tbody tr:hover { background: var(--bg-warm); }
.pk-name { font-weight: 600; color: var(--text-primary); }
.pk-price { font-weight: 700; color: var(--blue); }

/* ── TIPS ── */
.tips-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.tip-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 18px;
  transition: box-shadow 0.2s;
}
.tip-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.06); }
.tip-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.tip-icon { font-size: 18px; }
.tip-title { font-weight: 700; font-size: 14px; color: var(--text-primary); }
.tip-text { font-size: 14px; line-height: 1.6; color: var(--text-body); margin: 0; }

/* ── FAQ ── */
.faq-item { border-bottom: 1px solid var(--border-light); }
.faq-item:last-child { border-bottom: none; }
.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 18px 0;
  cursor: pointer;
  gap: 12px;
}
.faq-item summary:hover .faq-q { color: var(--blue); }
.faq-q {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  color: var(--text-primary);
  line-height: 1.4;
  transition: color 0.15s;
}
.faq-toggle {
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--bg-warm);
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  flex-shrink: 0;
  margin-top: 2px;
  transition: transform 0.2s;
}
details[open] > summary .faq-toggle { transform: rotate(45deg); }
.faq-a {
  font-size: 15px;
  line-height: 1.7;
  margin: 0 0 18px 0;
  color: var(--text-body);
}

/* ── MORE GUIDES ── */
.more-guides {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 18px 20px;
  margin-bottom: 40px;
}
.more-guides-title {
  font-weight: 700;
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.more-guides a {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-body);
  text-decoration: none;
  padding: 8px 0;
  border-bottom: 1px solid var(--border-light);
  transition: color 0.15s;
}
.more-guides a:last-child { border-bottom: none; }
.more-guides a:hover { color: var(--blue); }


/* ══════════════════════════════════════════════════════════
    SITE FOOTER
    ══════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--text-primary);
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  line-height: 1.65;
  margin-top: 0;
}

/* Newsletter / CTA band */
.footer-cta {
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 32px 20px;
}
.footer-cta-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer-cta-text {
  flex: 1;
}
.footer-cta-text h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
  line-height: 1.3;
}
.footer-cta-text p {
  color: rgba(255,255,255,0.4);
  font-size: 14px;
  margin: 0;
}
.footer-cta-form {
  display: flex;
  gap: 8px;
  max-width: 400px;
  width: 100%;
}
.footer-cta-input {
  flex: 1;
  padding: 10px 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  color: #ffffff;
  font-size: 14px;
  font-family: var(--font-body);
  outline: none;
  min-width: 0;
  transition: border-color 0.15s;
}
.footer-cta-input:focus { border-color: rgba(255,255,255,0.25); }
.footer-cta-input::placeholder { color: rgba(255,255,255,0.25); }
.footer-cta-btn {
  padding: 10px 18px;
  background: var(--blue);
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  font-family: var(--font-body);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s;
}
.footer-cta-btn:hover { background: #1d4ed8; }

/* Footer main grid */
.footer-main {
  max-width: 1080px;
  margin: 0 auto;
  padding: 36px 20px 28px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

/* Footer brand column */
.footer-brand {
  max-width: 320px;
}
.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  margin-bottom: 14px;
}
.footer-brand-logo-icon {
  width: 28px;
  height: 28px;
  background: var(--blue);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  line-height: 1;
}
.footer-brand-logo-text {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
}
.footer-brand-logo-text span {
  color: rgba(255,255,255,0.35);
  font-weight: 400;
  font-size: 14px;
}
.footer-brand-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  line-height: 1.65;
  margin-bottom: 16px;
}
.footer-social {
  display: flex;
  gap: 6px;
}
.footer-social-link {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 7px;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.15s, background 0.15s;
}
.footer-social-link:hover {
  color: #ffffff;
  background: rgba(255,255,255,0.1);
}

/* Footer link columns */
.footer-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 16px;
}
.footer-col-title {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.footer-col a {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  padding: 4px 0;
  transition: color 0.15s;
}
.footer-col a:hover { color: #ffffff; }

/* Popular airports grid in footer */
.footer-airports {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.footer-airport-tag {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 5px;
  padding: 4px 8px;
  text-decoration: none;
  transition: color 0.15s, background 0.15s;
  display: inline-block;
}
.footer-airport-tag:hover {
  color: #ffffff;
  background: rgba(255,255,255,0.08);
}

/* Footer bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 18px 20px;
}
.footer-bottom-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
  line-height: 1.5;
}
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 16px;
}
.footer-legal a {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  text-decoration: none;
  transition: color 0.15s;
}
.footer-legal a:hover { color: rgba(255,255,255,0.6); }

/* Footer accent bottom line */
.footer-accent-bottom {
  height: 3px;
  background: linear-gradient(90deg, var(--blue) 0%, var(--purple) 40%, var(--amber) 70%, var(--green) 100%);
}

/* ── FOOTER DESKTOP BREAKPOINTS ── */
@media (min-width: 600px) {
  .footer-columns { grid-template-columns: repeat(3, 1fr); }
  .footer-cta-inner { flex-direction: row; align-items: center; }
}

@media (min-width: 768px) {
  .footer-main {
    grid-template-columns: 1fr 2fr;
    padding: 44px 28px 32px;
    gap: 48px;
  }
  .footer-columns { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .footer-bottom { padding: 18px 28px; }
  .footer-bottom-inner { flex-direction: row; justify-content: space-between; align-items: center; }
  .footer-cta { padding: 32px 28px; }
}

@media (min-width: 960px) {
  .footer-main { padding: 48px 40px 36px; }
  .footer-bottom { padding: 18px 40px; }
  .footer-cta { padding: 36px 40px; }
}


/* ── OLD FOOTER (page-level disclaimer — keep but restyle) ── */
.page-footer {
  border-top: 1px solid var(--border);
  padding: 24px 0 32px;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
}
.page-footer p { margin-bottom: 6px; }
.page-footer p:last-child { margin: 0; }

/* ── DESKTOP BREAKPOINTS ── */
@media (min-width: 600px) {
  .hero-stats { grid-template-columns: repeat(4, 1fr); }
  .facility-grid { grid-template-columns: repeat(3, 1fr); }
  .tips-grid { grid-template-columns: repeat(2, 1fr); }
  .airline-grid { grid-template-columns: repeat(2, 1fr); }
  .transfer-cols { flex-direction: row; }
  .tr-body { padding-left: 46px; }
  .tr-meta { flex-direction: row; gap: 20px; }
}

@media (min-width: 768px) {
  .wrap { padding: 0 28px; }
  .wrap-wide { padding: 0 28px; }
  .hero { padding: 44px 0 36px; }
  .content-area { padding: 44px 0 72px; }
  .quicknav-link { padding: 14px 20px; font-size: 14px; }
  .hero-stat-num { font-size: 26px; }

  .parking-table-mobile { display: none; }
  .parking-table-desktop { display: block; }
}

@media (min-width: 960px) {
  .facility-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ── Footer Explore Airports Section ── */
.footer-airports-section {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px 28px;
}
.footer-airports-title {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.airport-code {
  font-size: 10px;
  font-weight: 600;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.04em;
  margin-left: 4px;
}

@media (min-width: 768px) {
  .footer-airports-section { padding: 0 28px 32px; }
}
@media (min-width: 960px) {
  .footer-airports-section { padding: 0 40px 36px; }
}