/* ==========================================================================
   Vietnam Travel Hack — Modernized Direction A Design System & Repairs
   ========================================================================== */

:root {
  --bg: #f6f6f1;
  --card: #ffffff;
  --ink: #12211c;
  --muted: #4d5c56; /* WCAG AA > 4.5:1 Contrast Ratio */
  --jade: #087a62;
  --jade-soft: #e4f2ed;
  --red: #d94832;
  --line: #dce3df;
  --yellow: #f3c84b;
  --shadow: 0 26px 80px rgba(18, 33, 28, 0.12);
  --shadow-sm: 0 4px 16px rgba(18, 33, 28, 0.06);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-pill: 999px;
  --font-sans: "Hanken Grotesk", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: "IBM Plex Mono", monospace;
  --font-serif: "Newsreader", Georgia, serif;
}

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

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

body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

button, input, select, textarea, a {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  min-height: 44px; /* Strict 44px touch target */
}

a {
  color: var(--jade);
  text-decoration: none;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

a:hover { text-decoration: underline; }

:focus {
  outline: none;
}

:focus-visible {
  outline: none !important;
  box-shadow: 0 0 0 3px rgba(8, 122, 98, 0.22) !important;
  border-color: var(--jade) !important;
}

.mono {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.04em;
}

/* ==========================================================================
   MOTION & ACCESSIBILITY (RESTRAINED ENTRANCES + REDUCED MOTION SUPPORT)
   ========================================================================== */

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes listRowFade {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-airport-pills,
.hero-content h1 {
  animation: heroFadeUp 400ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-content p,
.hero-actions,
.hero-price-statement,
.hero-confirmation-note {
  animation: heroFadeUp 400ms cubic-bezier(0.22, 1, 0.36, 1) 100ms forwards;
}

.arrival-assurance__eyebrow {
  animation: listRowFade 360ms cubic-bezier(0.22, 1, 0.36, 1) 150ms forwards;
}

.arrival-assurance__list li:nth-child(1) {
  animation: listRowFade 360ms cubic-bezier(0.22, 1, 0.36, 1) 220ms forwards;
}

.arrival-assurance__list li:nth-child(2) {
  animation: listRowFade 360ms cubic-bezier(0.22, 1, 0.36, 1) 290ms forwards;
}

.arrival-assurance__list li:nth-child(3) {
  animation: listRowFade 360ms cubic-bezier(0.22, 1, 0.36, 1) 360ms forwards;
}

/* Strict Reduced-Motion Override */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-delay: 0ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .hero-airport-pills,
  .hero-content h1,
  .hero-content p,
  .hero-actions,
  .hero-price-statement,
  .hero-confirmation-note,
  .arrival-assurance__eyebrow,
  .arrival-assurance__list li {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
}

/* ==========================================================================
   GLOBAL STICKY WEBSITE HEADER & SIMPLIFIED NAV
   ========================================================================== */
.site-header {
  height: 64px;
  min-height: 60px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  max-width: 1240px;
  margin: 0 auto;
  height: 100%;
  padding: 0 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.site-logo {
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.025em;
  color: var(--ink);
  white-space: nowrap;
  display: flex;
  align-items: center;
}

.site-logo:hover { text-decoration: none; }

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.desktop-nav a {
  color: var(--ink);
  font-size: 15px;
  font-weight: 600;
  min-height: 44px;
  position: relative;
  transition: color 150ms ease;
}

.desktop-nav a:hover,
.desktop-nav a.active {
  color: var(--jade);
  text-decoration: none;
  font-weight: 700;
}

.btn-help-link {
  background: transparent;
  border: none;
  color: var(--ink);
  font-size: 15px;
  font-weight: 600;
  min-height: 44px;
  padding: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  transition: color 150ms ease;
}

.btn-help-link:hover {
  color: var(--jade);
}

.header-ctas { display: flex; align-items: center; gap: 10px; }

.btn-book-now {
  background: var(--jade);
  color: #ffffff !important;
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 14px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  transition: background-color 150ms ease, transform 150ms ease;
}

.btn-book-now:hover { background: #066652; transform: translateY(-1px); text-decoration: none; }
.btn-book-now:active { transform: translateY(0); }

.btn-help {
  border: 0;
  background: var(--jade-soft);
  color: var(--jade);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 14px;
  min-height: 44px;
  transition: background-color 150ms ease;
}

.btn-help-mobile {
  background: var(--jade-soft);
  color: var(--jade);
  border: none;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 15px;
  min-height: 44px;
  width: 100%;
  margin-top: 8px;
  text-align: center;
  cursor: pointer;
}

.mobile-nav-controls { display: none; align-items: center; gap: 8px; }

.mobile-menu-btn {
  border: 1px solid var(--line);
  background: var(--card);
  color: var(--ink);
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  display: grid;
  place-items: center;
  font-size: 18px;
}

.mobile-menu-drawer {
  display: none;
  background: var(--card);
  border-bottom: 1px solid var(--line);
  padding: 20px;
  position: absolute;
  top: 64px;
  left: 0;
  right: 0;
  z-index: 99;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.mobile-menu-drawer.open { display: block; }
.mobile-menu-drawer nav { display: flex; flex-direction: column; gap: 12px; }
.mobile-menu-drawer nav a {
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}
.mobile-menu-drawer nav a.active {
  color: var(--jade);
  font-weight: 700;
}

/* ==========================================================================
   ACCESSIBLE CONCIERGE SUPPORT MODAL
   ========================================================================== */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(18, 33, 28, 0.65);
  backdrop-filter: blur(6px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.concierge-modal-dialog {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 480px;
  padding: 24px;
  box-shadow: var(--shadow);
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  border-bottom: 1px solid var(--line);
  padding-bottom: 14px;
}

.modal-close-btn {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  font-size: 16px;
  color: var(--muted);
  cursor: pointer;
  min-height: 40px;
  transition: background-color 150ms ease;
}

.modal-close-btn:hover {
  background: var(--line);
  color: var(--ink);
}

.support-option-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  color: var(--ink);
  text-decoration: none;
  transition: border-color 150ms ease, transform 150ms ease;
  min-height: 44px;
}

.support-option-card:hover {
  border-color: var(--jade);
  transform: translateY(-1px);
  text-decoration: none;
}

.support-icon {
  width: 42px;
  height: 42px;
  background: var(--jade-soft);
  color: var(--jade);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 18px;
  flex-shrink: 0;
}

/* ==========================================================================
   SIMPLIFIED BOOKING HEADER & FOOTER
   ========================================================================== */
.booking-header {
  height: 64px;
  background: var(--card);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 100;
}

.booking-header-inner {
  max-width: 1240px;
  margin: 0 auto;
  height: 100%;
  padding: 0 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.booking-header .site-logo {
  min-width: 0;
}

#view-book:has(#book-subview-launcher:not([style*="display: none"])) .booking-stepper-wrapper,
#view-book:has(#book-subview-launcher:not([style*="display: none"])) .mobile-stepper-compact,
#view-book:has(#book-subview-launcher:not([style*="display: none"])) .mobile-sticky-summary-bar,
#view-book.is-launcher .booking-stepper-wrapper,
#view-book.is-launcher .mobile-stepper-compact,
#view-book.is-launcher .mobile-sticky-summary-bar,
.is-launcher-active .mobile-sticky-summary-bar {
  display: none !important;
}

#view-book.is-complete .booking-stepper-wrapper,
#view-book.is-complete .mobile-stepper-compact,
#view-book.is-complete .mobile-sticky-summary-bar,
#view-book.is-receipt .booking-stepper-wrapper,
#view-book.is-receipt .mobile-stepper-compact,
#view-book.is-receipt .mobile-sticky-summary-bar,
#view-book:has(#book-subview-contact[style*="display: block"]) .mobile-sticky-summary-bar,
#view-book:has(#book-subview-review[style*="display: block"]) .mobile-sticky-summary-bar,
#view-book:has(#book-subview-receipt[style*="display: block"]) .booking-stepper-wrapper,
#view-book:has(#book-subview-receipt[style*="display: block"]) .mobile-stepper-compact,
#view-book:has(#book-subview-receipt[style*="display: block"]) .mobile-sticky-summary-bar {
  display: none !important;
}

/* Receipt: drop the 2-col workspace so the demo card can sit alone */
#view-book.is-complete .summary-side-col,
#view-book.is-receipt .summary-side-col,
#view-book:has(#book-subview-receipt[style*="display: block"]) .summary-side-col {
  display: none !important;
}

#view-book.is-complete #booking-workspace-layout,
#view-book.is-receipt #booking-workspace-layout,
#view-book:has(#book-subview-receipt[style*="display: block"]) #booking-workspace-layout {
  display: flex !important;
  justify-content: center;
  width: 100%;
  max-width: none;
  grid-template-columns: none;
}

#view-book.is-complete .workspace-form-col,
#view-book.is-receipt .workspace-form-col,
#view-book:has(#book-subview-receipt[style*="display: block"]) .workspace-form-col {
  max-width: 680px;
  width: 100%;
  margin: 0 auto;
}

#view-book.is-complete .receipt-box,
#view-book.is-receipt .receipt-box,
#view-book:has(#book-subview-receipt[style*="display: block"]) .receipt-box {
  max-width: 680px;
}

/* Laptop: pin the demo receipt in the middle of the remaining viewport */
@media (min-width: 900px) {
  #view-book.active.is-complete,
  #view-book.active.is-receipt,
  #view-book.active:has(#book-subview-receipt[style*="display: block"]) {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100dvh - 64px - 84px);
  }

  #view-book.active.is-complete > .container-wide,
  #view-book.active.is-receipt > .container-wide,
  #view-book.active:has(#book-subview-receipt[style*="display: block"]) > .container-wide {
    width: 100%;
    max-width: 720px;
    margin: 0 auto;
    padding-top: 24px;
    padding-bottom: 24px;
  }

  #view-book.active.is-complete .receipt-box h2,
  #view-book.active.is-receipt .receipt-box h2,
  #view-book.active:has(#book-subview-receipt[style*="display: block"]) .receipt-box h2 {
    white-space: nowrap;
  }

  body:has(#view-book.is-complete.active) .booking-footer,
  body:has(#view-book.is-receipt.active) .booking-footer,
  body:has(#book-subview-receipt[style*="display: block"]) .booking-footer {
    margin-top: 0;
  }
}

@media (max-width: 480px) {
  .booking-header-inner {
    padding: 0 12px;
    gap: 6px;
  }
  .booking-header .site-logo span {
    font-size: 13px;
  }
  .booking-header .btn-help,
  .booking-header .btn-secondary {
    padding: 0 10px;
    font-size: 12px;
  }
}

.booking-header-nav {
  display: flex;
  align-items: center;
  gap: 14px;
}

.booking-footer {
  background: var(--card);
  border-top: 1px solid var(--line);
  padding: 20px 16px;
  margin-top: 40px;
}

.booking-footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
  color: var(--muted);
  flex-wrap: wrap;
  gap: 10px;
}

.booking-footer-links {
  display: flex;
  gap: 18px;
}

.booking-footer-links a { color: var(--muted); font-size: 15px; min-height: 44px; }

/* ==========================================================================
   Page Containers & Layout Views
   ========================================================================== */
.site-view { display: none; }
.site-view.active { display: block; }
#view-book:not(.active) { display: none !important; }

.container-wide { max-width: 1240px; margin: 0 auto; padding: 20px 16px; }
.container-narrow { max-width: 760px; margin: 0 auto; padding: 20px 16px; }

.section-header { margin-bottom: 20px; }
.section-header .kicker {
  color: var(--red);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
  display: block;
}

.section-header h2 { font-family: var(--font-serif); font-size: 32px; line-height: 1.1; margin: 0 0 6px; }
.section-header p { color: var(--muted); font-size: 16px; margin: 0; max-width: 600px; line-height: 1.5; }

/* ==========================================================================
   DESKTOP HERO & SEPARATED AIRPORT PILLS
   ========================================================================== */
.website-hero { padding: 36px 0 20px; }

.hero-grid-2col {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  align-items: center;
  gap: clamp(48px, 7vw, 96px);
}

/* Separated Interactive Airport Pills */
.hero-content {
  display: flex;
  flex-direction: column;
}

.hero-airport-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 18px;
  width: 100%;
  position: relative;
  z-index: 1;
}

.hero-pill {
  white-space: nowrap;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  padding: 5px 12px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 38px;
  transition: border-color 150ms ease, color 150ms ease, transform 150ms ease;
}

.hero-pill:hover {
  border-color: var(--jade);
  color: var(--ink);
  transform: translateY(-1px);
  text-decoration: none;
}

.hero-pill:active { transform: translateY(0); }

.hero-pill .code-badge {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  background: var(--bg);
  color: var(--muted);
  border: 1px solid var(--line);
  padding: 1px 5px;
  border-radius: 4px;
}

.hero-content h1 {
  font-family: var(--font-serif);
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 0 0 14px;
  text-wrap: balance;
}

.hero-content p { font-size: 18px; color: #2f3d37; line-height: 1.5; margin-bottom: 20px; }

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; margin-bottom: 14px; }
.hero-actions .btn-primary { width: auto; padding: 12px 24px; font-size: 15px; }
.hero-actions .btn-secondary { width: auto; padding: 11px 20px; font-size: 14px; }

/* Text Statements Below Hero Buttons */
.hero-price-statement {
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  margin-top: 14px;
  line-height: 1.4;
}

.hero-confirmation-note {
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
  line-height: 1.4;
}

/* Redesigned Editorial Arrival Assurance Block */
.arrival-assurance {
  width: 100%;
  max-width: 380px;
  align-self: center;
}

.arrival-assurance__eyebrow {
  margin: 0 0 12px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.3;
  text-transform: uppercase;
  color: var(--jade);
}

.arrival-assurance__list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.arrival-assurance__list li {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.45;
}

.arrival-assurance__check {
  color: var(--jade);
  font-weight: 700;
  line-height: 1.45;
}

/* ==========================================================================
   REFINED ARRIVAL SERVICE SELECTOR (Content-Driven 3-Column Grid)
   ========================================================================== */
.bundle-panel-fullwidth {
  background: var(--ink);
  color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  min-height: 190px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 28px;
  max-width: 1240px;
  margin: 0 auto;
  box-shadow: var(--shadow-sm);
}

.bundle-left {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.bundle-price-box {
  white-space: nowrap;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  padding-left: 28px;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bundle-price-box .price-total {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

.bundle-price-box .badge-saving {
  background: rgba(243, 200, 75, 0.18);
  color: var(--yellow);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 4px;
  display: inline-block;
  width: fit-content;
  margin-top: 6px;
}

.bundle-action-box {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.bundle-action-box .btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  min-width: 190px;
  min-height: 48px;
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
}

/* "Or book one service" Centered Divider */
.or-divider-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 32px 0 24px;
}

.or-divider-row::before,
.or-divider-row::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--line);
  max-width: 180px;
}

.or-divider-row span {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* 3 Equal Single-Service Cards Grid */
.single-services-3col-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}

.single-service-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-decoration: none;
  color: var(--ink);
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
  height: 100%;
  min-height: 234px;
}

.single-service-card > div:first-child {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.single-service-card:hover {
  border-color: var(--jade);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
}

.single-service-card:active {
  transform: translateY(0);
}

.single-service-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 6px 0 4px;
  color: var(--ink);
  min-height: 28px;
}

.single-service-card p {
  font-size: 15px;
  color: var(--muted);
  margin: 0 0 16px;
  line-height: 1.45;
  min-height: 44px;
}

.service-card-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  border-top: 1px solid var(--line);
  padding-top: 14px;
  margin-top: auto;
  min-height: 44px;
}

.single-service-card .price-tag {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.35;
}

.single-service-card .action-link-text {
  font-weight: 700;
  font-size: 14px;
  color: var(--jade);
  white-space: nowrap;
}

.single-service-card:hover .action-link-text {
  color: #066652;
}

.service-code {
  width: 52px;
  height: 42px;
  background: var(--jade-soft);
  color: var(--jade);
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 12px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

/* ==========================================================================
   HOW BOOKING WORKS SECTION (Compact 3-Step Sequence)
   ========================================================================== */
.how-booking-works-section {
  padding: 36px 0;
  background: var(--card);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.steps-sequence-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  margin-bottom: 16px;
}

.step-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.step-header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.step-badge-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--jade-soft);
  color: var(--jade);
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 14px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.step-card h4 {
  font-size: 17px;
  font-weight: 700;
  margin: 0;
  color: var(--ink);
}

.step-card p {
  font-size: 15px;
  color: var(--muted);
  margin: 0;
  line-height: 1.45;
}

/* ==========================================================================
   TRUTHFUL TRUST ROW SECTION
   ========================================================================== */
.trust-row-section {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 18px 20px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  margin-top: 24px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}

.trust-item span:first-child {
  color: var(--jade);
  font-weight: 700;
  flex-shrink: 0;
}

/* ==========================================================================
   WHY ARRANGE ARRIVAL SECTION (Compact Benefits Grid)
   ========================================================================== */
.why-arrange-section {
  padding: 44px 0;
  border-bottom: 1px solid var(--line);
}

.benefits-grid-4col {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 24px;
}

.benefit-item-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: border-color 150ms ease, transform 150ms ease;
}

.benefit-item-card:hover {
  border-color: var(--jade);
  transform: translateY(-1px);
}

.benefit-icon-badge {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--jade-soft);
  color: var(--jade);
  font-size: 16px;
  display: grid;
  place-items: center;
  margin-bottom: 4px;
}

.benefit-item-card h4 {
  font-size: 16px;
  font-weight: 700;
  margin: 0;
  color: var(--ink);
}

.benefit-item-card p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
  line-height: 1.45;
}

@media (max-width: 899px) {
  .benefits-grid-4col {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
}

@media (max-width: 599px) {
  .benefits-grid-4col {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/* ==========================================================================
   LIGHT PALE-MINT FINAL CONVERSION CTA SECTION
   ========================================================================== */
.final-conversion-section {
  background: var(--jade-soft);
  border: 1px solid #c0e2d6;
  border-radius: var(--radius-lg);
  padding: 40px 24px;
  text-align: center;
  max-width: 1240px;
  margin: 50px auto 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  box-shadow: none;
}

.final-conversion-section h2 {
  font-family: var(--font-serif);
  font-size: 32px;
  margin: 0;
  color: var(--ink);
}

.final-conversion-section p {
  color: var(--muted);
  font-size: 16px;
  margin: 0 0 8px;
  max-width: 560px;
  line-height: 1.5;
}

.final-conversion-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.final-conversion-actions .btn-primary {
  width: auto;
  padding: 12px 24px;
  font-size: 15px;
}

.final-conversion-actions button.btn-question {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--jade);
  color: var(--jade);
  font-weight: 700;
  font-size: 15px;
  min-height: 44px;
  padding: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
}

.final-conversion-actions button.btn-question:hover {
  color: #066652;
  text-decoration: none;
}

/* ==========================================================================
   REFINED LANDING GUIDE CARDS (3-Column Desktop Grid)
   ========================================================================== */
.home-guides-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.home-guide-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  color: var(--ink);
  text-decoration: none;
  transition: border-color 180ms ease, transform 180ms ease;
}

.home-guide-card:hover {
  border-color: var(--jade);
  transform: translateY(-2px);
  text-decoration: none;
}

.home-guide-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  background: var(--jade-soft);
  transition: transform 200ms ease;
}

.home-guide-card:hover .home-guide-img {
  transform: scale(1.02);
}

.home-guide-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.home-guide-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 8px;
}

.home-guide-card h3 {
  font-family: var(--font-serif);
  font-size: 23px;
  line-height: 1.2;
  margin: 4px 0 8px;
  color: var(--ink);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.home-guide-card p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.5;
  margin: 0 0 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.home-guide-footer {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--muted);
}

.read-guide-link {
  font-weight: 700;
  color: var(--jade);
}

/* ==========================================================================
   REFINED AIRPORT DESTINATION CARDS (4 Columns Desktop)
   ========================================================================== */
.airport-cards-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.airport-destination-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: var(--ink);
  text-decoration: none;
  min-height: 120px;
  transition: border-color 150ms ease, transform 150ms ease;
}

.airport-destination-card:hover {
  border-color: var(--jade);
  transform: translateY(-2px);
  text-decoration: none;
}

.airport-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.airport-card-badge {
  background: var(--jade-soft);
  color: var(--jade);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
}

.airport-destination-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
  color: var(--ink);
}

.airport-destination-card p {
  font-size: 15px;
  color: var(--muted);
  margin: 0;
  line-height: 1.45;
}

/* ==========================================================================
   GUIDES INDEX VIEW & RESPONSIVE BREAKPOINT GRID SYSTEM
   ========================================================================== */
.guides-toolbar {
  display: flex;
  gap: 16px;
  margin-bottom: 14px;
  align-items: flex-end;
  flex-wrap: wrap;
}

.search-input-wrap { flex: 7; min-width: 260px; }
.destination-select-wrap { flex: 3; min-width: 180px; }

.topic-filter-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.filter-pill {
  border: 1px solid var(--line);
  background: var(--card);
  color: var(--ink);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 600;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  transition: background-color 150ms ease, border-color 150ms ease, color 150ms ease;
}

.filter-pill:hover { border-color: var(--jade); color: var(--jade); text-decoration: none; }
.filter-pill.active { background: var(--jade); color: #ffffff; border-color: var(--jade); }

.guides-index-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.guides-results-count {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
}

.guides-index-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

@media (max-width: 1279px) {
  .guides-index-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 767px) {
  .guides-index-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.guide-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  color: var(--ink);
  text-decoration: none;
  transition: transform 150ms ease, border-color 150ms ease, box-shadow 150ms ease;
  height: 100%;
}

.guide-card:hover {
  transform: translateY(-2px);
  border-color: var(--jade);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
}

.guide-card:active { transform: translateY(0); }

.guide-card-img {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: var(--jade-soft);
  display: block;
}

.guide-card-body {
  padding: 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.guide-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--muted);
  font-size: 12px;
  margin-bottom: 8px;
}

.guide-card h3 {
  font-family: var(--font-serif);
  font-size: 21px;
  line-height: 1.25;
  margin: 6px 0 8px;
  color: var(--ink);
}

.guide-card p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.5;
  margin: 0 0 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.guide-card-footer {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--muted);
}

/* ==========================================================================
   MOBILE STICKY BOTTOM SUMMARY BAR
   ========================================================================== */
.mobile-sticky-summary-bar {
  display: none;
}

@media (max-width: 900px) {
  .mobile-sticky-summary-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 95;
    height: 64px;
    background: var(--ink);
    color: #ffffff;
    padding: 10px 16px;
    border-top: 1px solid #283a34;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
  }

  .mobile-sticky-summary-bar .summary-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }

  .mobile-sticky-summary-bar .summary-text b {
    font-size: 16px;
    color: var(--yellow);
  }

  .mobile-sticky-summary-bar .summary-text small {
    font-size: 12px;
    color: #a4b8af;
  }

  .mobile-sticky-summary-bar .btn-primary {
    width: auto;
    min-height: 44px;
    padding: 0 18px;
    font-size: 14px;
  }
}

/* ==========================================================================
   MOBILE STEPPER & COMPACT CHOOSER STYLES
   ========================================================================== */
.service-starting-price {
  font-size: 14px;
  color: var(--muted);
  font-weight: 600;
  margin: 2px 0 16px;
  display: block;
}

.mobile-stepper-compact {
  display: none;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  margin: 0 0 20px;
}

.mobile-step-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  font-family: var(--font-mono);
}

.mobile-stepper-segments {
  display: flex;
  gap: 6px;
  width: 100%;
  margin-top: 8px;
}

.mobile-stepper-segments .seg {
  height: 4px;
  flex: 1;
  background: var(--line);
  border-radius: 2px;
  transition: background-color 180ms ease;
}

.mobile-stepper-segments .seg.active {
  background: var(--jade);
}

.change-service-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--jade);
  text-decoration: none;
  padding: 5px 10px;
  border-radius: var(--radius-sm);
  background: var(--jade-soft);
  transition: background-color 150ms ease;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
}
.change-service-link:hover {
  background: #c6e6dc;
}

.compatibility-checkbox-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  margin-bottom: 18px;
}

.checkbox-row-label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  min-height: 48px;
  font-size: 14px;
  color: var(--ink);
  font-weight: 500;
}

.checkbox-row-label input[type="checkbox"] {
  width: 24px;
  height: 24px;
  min-width: 24px;
  min-height: 24px;
  flex-shrink: 0;
  margin: 0;
  cursor: pointer;
  accent-color: var(--jade);
}

.service-action-btn {
  font-size: 13px;
  font-weight: 700;
  color: var(--jade);
  white-space: nowrap;
  align-self: center;
}

@media (max-width: 899px) {
  .booking-stepper { display: none !important; }
  .mobile-stepper-compact { display: block !important; }
  
  .form-row {
    flex-direction: column !important;
    display: flex !important;
    gap: 0 !important;
  }

  .chooser-h1 {
    font-size: 32px !important;
  }
}

#book-subview-contact .booking-shell {
  max-width: 680px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .launcher-2col-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .bundle-card.mobile-compressed-bundle {
    padding: 18px 16px !important;
  }

  .bundle-card.mobile-compressed-bundle .desktop-only-desc,
  .bundle-card.mobile-compressed-bundle .desktop-only-included {
    display: none !important;
  }

  .bundle-card.mobile-compressed-bundle .price-rule-box {
    margin-bottom: 14px !important;
    padding: 10px 12px !important;
    font-size: 13px !important;
  }
}

/* Mobile Sticky Checkout Bar: ONLY Below 600px */
@media (max-width: 599px) {
  /* Only the long configure form uses the sticky bar. Keep traveler + review buttons on the page. */
  #cfg-continue-btn.in-form-continue-btn {
    display: none !important;
  }
  #contact-continue-review-btn,
  #submit-final-review-btn {
    display: flex !important;
    width: 100%;
  }

  #view-book {
    padding-bottom: calc(24px + env(safe-area-inset-bottom)) !important;
    scroll-padding-top: 72px;
    scroll-padding-bottom: calc(120px + env(safe-area-inset-bottom));
  }
  #view-book:has(#book-subview-configure[style*="display: block"]) {
    padding-bottom: calc(120px + env(safe-area-inset-bottom)) !important;
  }

  .form-group,
  .checkbox-row-label {
    scroll-margin-bottom: calc(130px + env(safe-area-inset-bottom));
  }

  .mobile-sticky-summary-bar {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--ink);
    color: #ffffff;
    padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
  }

  .mobile-sticky-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
  }

  .mobile-price-toggle-btn {
    background: transparent;
    border: none;
    color: #ffffff;
    padding: 0;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 44px;
  }

  .mobile-bar-label {
    font-size: 10px;
    font-family: var(--font-mono);
    text-transform: uppercase;
    color: #a4b8af;
    display: block;
  }

  .mobile-sticky-summary-bar .summary-text b {
    font-size: 17px;
    color: var(--yellow);
    line-height: 1.2;
  }

  .mobile-sticky-summary-bar .summary-text small {
    font-size: 12px;
    color: #c5d0cb;
    display: block;
  }

  .price-toggle-chip {
    font-size: 11px;
    font-family: var(--font-mono);
    color: var(--jade-light);
    background: rgba(8, 122, 98, 0.25);
    padding: 4px 8px;
    border-radius: 4px;
    white-space: nowrap;
  }

  .mobile-sticky-cta {
    min-height: 48px;
    padding: 0 20px;
    font-size: 15px;
    font-weight: 700;
    width: auto !important;
  }

  .mobile-drawer-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    z-index: 10000;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }

  .mobile-price-drawer {
    background: #183328;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 18px 18px 0 0;
    padding: 18px 20px calc(18px + env(safe-area-inset-bottom));
    color: #ffffff;
    max-height: 82vh;
    overflow-y: auto;
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.35);
    animation: slideUpModalDrawer 0.24s cubic-bezier(0.16, 1, 0.3, 1);
  }

  @keyframes slideUpModalDrawer {
    from { transform: translateY(100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
  }

  .mobile-drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .mobile-drawer-header strong {
    font-size: 17px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.01em;
  }

  .mobile-drawer-close {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #e2ece7;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    min-width: 44px;
    min-height: 44px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    transition: background 0.15s, color 0.15s;
  }
  .mobile-drawer-close:hover,
  .mobile-drawer-close:active {
    background: rgba(255, 255, 255, 0.18);
    color: #ffffff;
  }

  .mobile-price-drawer .drawer-bundle-title {
    font-size: 13px;
    font-weight: 600;
    color: #a4b8af;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 10px;
    font-family: var(--font-mono, monospace);
  }

  .mobile-price-drawer .drawer-items-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }

  .mobile-price-drawer .summary-item {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 10px 0 !important;
    font-size: 14.5px !important;
    color: #e2ece7 !important;
    border: none !important;
    text-align: left !important;
    width: 100% !important;
  }

  .mobile-price-drawer .summary-item .item-label,
  .mobile-price-drawer .summary-item span:first-child {
    color: #e2ece7 !important;
    font-weight: 500 !important;
    line-height: 1.35 !important;
    text-align: left !important;
    flex: 1 1 auto !important;
    max-width: none !important;
    width: auto !important;
    display: block !important;
  }

  .mobile-price-drawer .summary-item .item-val,
  .mobile-price-drawer .summary-item span:last-child {
    font-family: var(--font-mono, monospace) !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    font-size: 14.5px !important;
    white-space: nowrap !important;
    margin-left: 16px !important;
    text-align: right !important;
    flex: 0 0 auto !important;
    width: auto !important;
    display: block !important;
  }

  .mobile-price-drawer .summary-item.is-discount,
  .mobile-price-drawer .summary-item.is-discount .item-label,
  .mobile-price-drawer .summary-item.is-discount .item-val,
  .mobile-price-drawer .summary-item.is-discount span {
    color: #4ade80 !important;
    font-weight: 600 !important;
  }

  .mobile-price-drawer .summary-total {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding-top: 16px !important;
    margin-top: 14px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.16) !important;
    text-align: left !important;
    width: 100% !important;
  }

  .mobile-price-drawer .summary-total .total-label,
  .mobile-price-drawer .summary-total span:first-child {
    font-size: 16px !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    text-align: left !important;
    width: auto !important;
  }

  .mobile-price-drawer .summary-total .total-val,
  .mobile-price-drawer .summary-total span:last-child {
    font-size: 20px !important;
    font-weight: 700 !important;
    color: var(--yellow) !important;
    font-family: var(--font-mono, monospace) !important;
    text-align: right !important;
    width: auto !important;
  }

  .mobile-price-drawer .drawer-footer {
    margin-top: 18px;
    padding-top: 4px;
  }

  .mobile-price-drawer .drawer-footer .btn-primary {
    width: 100%;
    min-height: 44px;
    font-size: 14.5px;
    font-weight: 700;
    border-radius: var(--radius-sm);
  }

  /* Progressive Section Accordion on Mobile */
  .bundle-progressive-section {
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    margin-bottom: 16px;
    background: var(--card);
    overflow: hidden;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .bundle-progressive-section.is-active {
    border-color: var(--jade);
    box-shadow: 0 2px 10px rgba(8, 122, 98, 0.08);
  }

  .bundle-progressive-section.is-active .bundle-progressive-header {
    background: #ffffff;
    border-bottom: 1px solid var(--line);
  }
}

/* Desktop & Tablet: 600px and Above */
@media (min-width: 600px) {
  .mobile-sticky-summary-bar {
    display: none !important;
  }

  .in-form-continue-btn {
    display: block !important;
  }

  #view-book {
    padding-bottom: 0 !important;
  }

  .bundle-progressive-section {
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    margin-bottom: 16px;
    background: var(--card);
    overflow: hidden;
  }

  .bundle-progressive-header {
    padding: 14px 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--card);
    border-bottom: 1px solid var(--line);
  }

  .bundle-progressive-body {
    padding: 16px;
  }
}

@media (min-width: 1024px) {
  .desktop-workspace-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.8fr) minmax(0, 1fr);
    gap: 32px;
    align-items: start;
    max-width: 100%;
    box-sizing: border-box;
  }
}

.bundle-progressive-header {
  padding: 14px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--bg);
}

.bundle-summary-bar {
  display: none;
  padding: 12px 16px;
  background: var(--bg);
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: var(--ink);
}

.service-included-badge {
  font-size: 12px;
  font-family: var(--font-mono);
  color: var(--jade);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.btn-edit-section {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--jade);
  font-size: 13px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  min-height: 36px;
}

.btn-edit-section:hover {
  background: var(--card);
}

/* ==========================================================================
   BOOKING STEPPER & WORKSPACE
   ========================================================================== */
.booking-stepper {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 12px 20px;
  margin: 0 auto 24px;
  max-width: 600px;
  max-height: 72px;
  gap: 12px;
}

.step-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  white-space: nowrap;
}

.step-item.active { color: var(--jade); }
.step-item.completed { color: var(--ink); }

.step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--line);
  color: var(--muted);
  display: grid;
  place-items: center;
  font-size: 12px;
  font-family: var(--font-mono);
  font-weight: 700;
  flex-shrink: 0;
}

.step-item.active .step-num {
  background: var(--jade);
  border-color: var(--jade);
  color: #ffffff;
}

.step-item.completed .step-num {
  background: var(--jade-soft);
  border-color: #b3dfd1;
  color: var(--jade);
}

.step-divider {
  height: 1px;
  background: var(--line);
  flex: 1;
  max-width: 40px;
}

.desktop-workspace-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 32px;
  align-items: start;
  max-width: 1140px;
  margin: 0 auto;
}

.workspace-form-col {
  max-width: 740px;
  width: 100%;
}

.sticky-summary-sidebar {
  position: sticky;
  top: 84px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 20px;
  width: 100%;
}

.sticky-summary-sidebar h4 {
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
}

.launcher-2col-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 24px;
  align-items: start;
  max-width: 1140px;
  margin: 0 auto;
}

.bundle-service-panel {
  border-radius: var(--radius-md);
  margin-bottom: 14px;
  overflow: hidden;
  transition: border-color 180ms ease, background-color 180ms ease;
}

.bundle-service-panel.is-selected {
  border: 1px solid var(--jade);
  background: var(--card);
}

.bundle-service-panel.is-unselected {
  border: 1px solid var(--line);
  background: var(--bg);
  opacity: 0.85;
}

.bundle-service-header {
  padding: 14px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}

.bundle-service-panel.is-selected .bundle-service-header {
  background: var(--jade-soft);
}

.bundle-badge-mono {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 11px;
  color: var(--jade);
  background: rgba(8, 122, 98, 0.12);
  padding: 2px 6px;
  border-radius: 4px;
  margin-right: 8px;
}

.toggle-included-btn {
  border: 1px solid var(--line);
  background: var(--card);
  color: var(--ink);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 700;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.toggle-included-btn.is-active {
  background: var(--jade);
  color: #ffffff;
  border-color: var(--jade);
}

.bundle-service-body { padding: 18px; }

.booking-shell {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  max-width: 740px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.esim-form-row {
  grid-template-columns: 1.75fr 1fr;
}

@media (max-width: 650px) {
  .esim-form-row {
    grid-template-columns: 1fr !important;
  }
}

.form-group {
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
}

.form-input, .form-select {
  width: 100%;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0 14px;
  background: var(--card);
  font-size: 16px;
  color: var(--ink);
  transition: border-color 150ms ease;
}

.form-input:focus, .form-select:focus {
  outline: none !important;
  border-color: var(--jade) !important;
  box-shadow: 0 0 0 3px rgba(8, 122, 98, 0.15) !important;
}

.form-group.has-error .form-input,
.form-group.has-error .form-select {
  border-color: var(--red);
  background: #fffdfd;
}

.field-error {
  color: var(--red);
  font-size: 12px;
  font-weight: 600;
  display: none;
}

.form-group.has-error .field-error { display: block; }

.btn-primary {
  width: 100%;
  min-height: 48px;
  background: var(--jade);
  color: #ffffff !important;
  border: 0;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background-color 150ms ease, transform 150ms ease;
}

.btn-primary:hover { background: #066652; transform: translateY(-1px); text-decoration: none; }
.btn-primary:active { transform: translateY(1px); }

.btn-secondary {
  width: 100%;
  min-height: 48px;
  background: var(--bg);
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 150ms ease, border-color 150ms ease, transform 150ms ease;
}

.btn-secondary:hover { border-color: var(--jade); color: var(--jade); transform: translateY(-1px); text-decoration: none; }
.btn-secondary:active { transform: translateY(1px); }

.cta-trust-note {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
  font-size: 13px;
  color: var(--muted);
  margin-top: 10px;
}

.callout-box {
  padding: 16px;
  border-radius: var(--radius-md);
  margin: 18px 0;
  font-size: 15px;
  line-height: 1.5;
}

.callout-info {
  background: var(--jade-soft);
  border: 1px solid #c0e2d6;
  color: var(--ink);
}

.callout-info strong { color: var(--jade); display: block; margin-bottom: 4px; }

.bundle-card {
  background: var(--ink);
  color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
}

.bundle-card h3 { font-family: var(--font-serif); font-size: 26px; margin: 8px 0; color: #ffffff; }
.bundle-card p { color: #c5d0cb; font-size: 15px; margin: 0 0 16px; }

.price-rule-box {
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.price-rule-box-light {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  font-size: 13px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
}

.included { display: flex; gap: 6px; flex-wrap: wrap; }
.included .chip {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 600;
}

.single-services { display: flex; flex-direction: column; gap: 14px; }

.service-row {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--ink);
  transition: border-color 150ms ease, transform 150ms ease;
  min-height: 44px;
}

.service-row:hover { border-color: var(--jade); transform: translateY(-2px); text-decoration: none; }

.service-info { flex: 1; display: flex; flex-direction: column; gap: 4px; }
.service-info b { font-size: 16px; font-weight: 700; }
.service-info small { color: var(--muted); font-size: 14px; line-height: 1.4; }
.service-info .price-tag { color: var(--jade); font-size: 14px; font-weight: 700; }

.summary-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 16px;
  margin-bottom: 18px;
  overflow-wrap: anywhere;
  word-break: break-word;
}

#book-subview-review .summary-card {
  padding: 14px 16px;
  margin-bottom: 12px;
}

#book-subview-review .summary-item {
  padding: 5px 0;
  font-size: 13.5px;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  padding: 6px 0;
  border-bottom: 1px solid var(--line);
}

.summary-item:last-child { border-bottom: 0; }
.summary-item span:first-child {
  color: var(--muted);
  flex: 0 1 auto;
  min-width: 7.5rem;
  max-width: 46%;
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: none;
}
.summary-item span:last-child {
  font-weight: 600;
  text-align: right;
  flex: 1 1 auto;
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.summary-edit-btn {
  font-size: 12px;
  font-weight: 700;
  color: var(--jade);
  background: none;
  border: none;
  padding: 0;
  min-height: auto;
}

.summary-edit-btn:hover { text-decoration: underline; }

.receipt-box {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px 16px;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.receipt-icon {
  width: 64px;
  height: 64px;
  background: var(--jade-soft);
  color: var(--jade);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 28px;
  margin: 0 auto 16px;
}

.receipt-box h2 { font-family: var(--font-serif); font-size: 30px; margin: 0 0 6px; }

/* ==========================================================================
   REFINED COMPACT FOOTER (Strict 15px+ Text High-Contrast)
   ========================================================================== */
.site-footer {
  background: var(--ink);
  color: #ffffff;
  padding: 40px 16px 24px;
  margin-top: 50px;
  border-top: 1px solid #2d453d;
}

.footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 24px;
}

.footer-brand h3 { font-size: 19px; font-weight: 700; margin: 0 0 8px; color: #ffffff; white-space: nowrap; }
.footer-brand p { color: #c5d6cf; font-size: 15px; line-height: 1.5; margin: 0; max-width: 300px; }

.footer-col h4 {
  font-size: 12px;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--yellow);
  margin: 0 0 12px;
}

.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 4px; }
.footer-col a { color: #c5d6cf; font-size: 15px; min-height: 44px; display: inline-flex; align-items: center; transition: color 150ms ease; }
.footer-col a:hover { color: #ffffff; text-decoration: underline; }
.footer-col a:visited { color: #a8c7bd; }

.footer-bottom {
  max-width: 1240px;
  margin: 0 auto;
  border-top: 1px solid #283a34;
  padding-top: 16px;
  display: flex;
  justify-content: space-between;
  color: #a4b8af;
  font-size: 14px;
  flex-wrap: wrap;
  gap: 10px;
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS & MOBILE HERO OVERRIDES
   ========================================================================== */
@media (max-width: 1100px) {
  .home-guides-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .airport-cards-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .trust-row-section { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .single-services-3col-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1024px) {
  .hero-grid-2col {
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
    gap: 36px;
  }
  .bundle-panel-fullwidth {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 20px;
  }
  .bundle-action-box {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }
  .bundle-action-box .btn-primary {
    width: 100%;
  }
}

@media (max-width: 900px) {
  .desktop-nav { display: none; }
  .mobile-nav-controls { display: flex; }
  .btn-help { display: none; }
  .booking-header .btn-help {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .launcher-2col-grid { grid-template-columns: 1fr; }
  .desktop-workspace-grid { grid-template-columns: 1fr; }
  .sticky-summary-sidebar { position: static; margin-top: 24px; }
  /* Review already has the full breakdown — don't repeat it under the cards on a phone */
  .desktop-workspace-grid:has(#book-subview-review[style*="display: block"]) .summary-side-col,
  .desktop-workspace-grid:has(#book-subview-receipt[style*="display: block"]) .summary-side-col {
    display: none !important;
  }
  .steps-sequence-grid { grid-template-columns: 1fr; gap: 16px; }
}

/* ==========================================================================
   STRICT MOBILE-ONLY UI/UX POLISH (<= 767px)
   ========================================================================== */
@media (max-width: 767px) {
  .container-wide { padding: 16px 20px; }
  
  .section-header h2 {
    font-size: clamp(28px, 8vw, 34px);
    line-height: 1.1;
  }

  /* Mobile Header */
  .site-header {
    height: 60px;
    min-height: 60px;
  }
  .header-inner {
    padding: 0 20px;
  }
  .btn-book-now {
    min-height: 44px;
    padding: 8px 16px;
  }
  .mobile-menu-btn {
    width: 44px;
    height: 44px;
  }

  /* Mobile Hero */
  .website-hero {
    padding: 20px 0 32px;
  }

  .hero-grid-2col {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero-content h1 {
    font-size: clamp(38px, 11vw, 46px);
    line-height: 1.05;
    margin-bottom: 14px;
  }

  .hero-content p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 18px;
  }

  .hero-content h1 { order: 1; }
  .hero-content > p { order: 2; }
  .hero-airport-pills {
    order: 3;
    display: flex;
    gap: 8px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scrollbar-width: none;
    padding-bottom: 6px;
    padding-right: 20px;
    margin-top: 4px;
    margin-bottom: 12px;
    -webkit-overflow-scrolling: touch;
  }
  .hero-price-statement { order: 5; }
  .hero-confirmation-note { order: 6; }

  .summary-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  .summary-item span:first-child {
    min-width: 0;
    max-width: 100%;
  }
  .summary-item span:last-child {
    text-align: left;
    width: 100%;
  }

  .hero-airport-pills::-webkit-scrollbar {
    display: none;
  }

  .hero-pill {
    flex-shrink: 0;
    min-height: 44px;
  }

  .hero-actions {
    order: 4;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    margin-bottom: 16px;
  }

  .hero-actions .btn-primary {
    width: 100%;
    min-height: 50px;
    font-size: 16px;
    font-weight: 700;
  }

  .hero-actions .hero-secondary-link {
    width: 100%;
    min-height: 44px;
    background: transparent;
    border: none;
    color: var(--jade);
    font-weight: 700;
    font-size: 15px;
    text-decoration: underline;
    justify-content: center;
    padding: 8px 0;
  }

  .hero-price-statement {
    font-size: 16px;
    font-weight: 600;
    margin-top: 12px;
  }

  .hero-confirmation-note {
    font-size: 13px;
    margin-top: 4px;
  }

  /* Arrival Checklist Mobile Spacing */
  .arrival-assurance {
    max-width: 100%;
    margin-top: 14px;
    margin-bottom: 48px;
  }

  .arrival-assurance__eyebrow {
    font-size: 12px;
    margin-bottom: 10px;
  }

  .arrival-assurance__list li {
    grid-template-columns: 20px minmax(0, 1fr);
    gap: 12px;
    padding: 14px 0;
    font-size: 16px;
    line-height: 1.45;
  }

  /* Mobile Bundle Panel */
  .bundle-panel-fullwidth {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 20px;
    border-radius: var(--radius-md);
  }

  .bundle-left h3 {
    font-size: 28px !important;
    margin: 4px 0 6px !important;
  }

  .bundle-desc-desktop {
    display: none;
  }

  .bundle-price-box {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 14px;
  }

  .bundle-price-box .price-total {
    font-size: 20px;
    font-weight: 700;
  }

  .bundle-action-box .btn-primary {
    width: 100%;
    min-height: 50px;
    font-size: 16px;
  }

  /* Mobile Individual Service Cards Equalization */
  .single-services-3col-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .single-service-card {
    padding: 20px;
    min-height: 234px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: var(--radius-md);
  }

  .single-service-card > div:first-child {
    display: flex;
    flex-direction: column;
    flex: 1;
  }

  .single-service-card p {
    font-size: 15px;
    line-height: 1.45;
    margin: 0 0 14px;
    min-height: 44px;
  }

  .service-card-footer {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
    padding-top: 12px;
    margin-top: auto;
    min-height: 44px;
  }

  .single-service-card .price-tag {
    font-size: 15px;
    font-weight: 700;
  }

  .single-service-card .action-link-text {
    font-size: 15px;
    font-weight: 700;
  }

  /* How Booking Works Vertical Mobile Timeline */
  .steps-sequence-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    padding-left: 6px;
    margin-bottom: 20px;
  }

  .steps-sequence-grid::before {
    content: '';
    position: absolute;
    top: 16px;
    bottom: 16px;
    left: 21px;
    width: 2px;
    background: var(--line);
    z-index: 1;
  }

  .step-card {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 14px;
    position: relative;
    z-index: 2;
  }

  .step-header {
    margin: 0;
  }

  .step-badge-num {
    width: 32px;
    height: 32px;
    font-size: 14px;
    border: 2px solid var(--card);
    flex-shrink: 0;
  }

  .step-card h4 {
    font-size: 16px;
    font-weight: 700;
    margin: 4px 0 2px;
  }

  .step-card p {
    font-size: 15px;
    line-height: 1.45;
  }

  .trust-row-section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 14px;
    padding: 16px;
  }

  .trust-item {
    font-size: 14px;
    line-height: 1.35;
    align-items: flex-start;
  }

  /* Shorten Mobile Homepage */
  .home-guides-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .home-guides-grid .home-guide-card:nth-child(n+3) {
    display: none;
  }

  /* Airport Section: Compact 2x2 Grid */
  .airport-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .airport-destination-card {
    padding: 14px 12px;
    min-height: 112px;
    justify-content: flex-start;
  }

  .airport-destination-card h3 {
    font-size: 16px;
    margin: 2px 0 0;
  }

  .airport-destination-card p {
    font-size: 13px;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  /* Final Mobile CTA */
  .final-conversion-section {
    padding: 36px 20px;
    margin-top: 36px;
    border-radius: var(--radius-md);
  }

  .final-conversion-section h2 {
    font-size: clamp(26px, 7vw, 30px);
    line-height: 1.15;
  }

  .final-conversion-section p {
    font-size: 15px;
    line-height: 1.45;
  }

  .final-conversion-actions {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .final-conversion-actions .btn-primary {
    width: 100%;
    min-height: 50px;
    font-size: 16px;
  }

  .final-conversion-actions button.btn-question {
    font-size: 15px;
    min-height: 44px;
  }

  /* Mobile Guides Toolbar & Topic Filter Scrollable Row */
  .guides-toolbar {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    margin-bottom: 12px;
  }

  .search-input-wrap,
  .destination-select-wrap {
    width: 100%;
    flex: none;
    min-width: 0;
  }

  .topic-filter-pills {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    white-space: nowrap;
    scrollbar-width: none;
    padding-bottom: 4px;
    margin-bottom: 14px;
    -webkit-overflow-scrolling: touch;
  }

  .topic-filter-pills::-webkit-scrollbar {
    display: none;
  }

  .filter-pill {
    flex-shrink: 0;
    white-space: nowrap;
    min-height: 44px;
  }

  .guides-index-header {
    margin-bottom: 12px;
  }

  /* Refined Mobile Footer Only */
  .footer-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 16px;
  }

  .footer-brand {
    grid-column: 1 / -1;
    max-width: 100%;
  }

  .footer-brand h3 {
    white-space: nowrap;
    font-size: 19px;
  }

  .footer-brand p {
    max-width: 100%;
    font-size: 15px;
  }

  .footer-col a {
    min-height: 44px;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
  }
}

/* ==========================================================================
   BOOKING TERMS & CONDITIONS PAGE STYLES
   ========================================================================== */
.terms-page-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 40px 20px 60px;
}

.terms-page-header {
  margin-bottom: 32px;
  width: 100%;
}

.terms-intro-box {
  background: var(--jade-soft);
  border: 1px solid #c0e2d6;
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin-top: 16px;
  margin-bottom: 32px;
  width: 100%;
  box-sizing: border-box;
}

.terms-intro-box p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  margin: 0;
  max-width: 100%;
}

.mobile-terms-nav {
  display: none;
  margin-bottom: 24px;
}

.terms-toc-accordion {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 12px 16px;
}

.terms-toc-list {
  margin: 12px 0 0;
  padding-left: 20px;
  font-size: 15px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.terms-toc-list a {
  color: var(--jade);
  font-weight: 600;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.terms-workspace-grid {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 48px;
  align-items: start;
}

.desktop-terms-sidebar {
  position: sticky;
  top: 84px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 18px 16px;
  max-height: calc(100vh - 100px);
  overflow-y: auto;
}

.desktop-toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.desktop-toc-list a {
  display: flex;
  align-items: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  min-height: 38px;
  line-height: 1.35;
  transition: color 150ms ease, background-color 150ms ease;
}

.desktop-toc-list a:hover {
  color: var(--jade);
  background: var(--jade-soft);
  text-decoration: none;
}

.desktop-toc-list a.active {
  color: var(--jade);
  background: var(--jade-soft);
  font-weight: 700;
}

.terms-reading-col {
  max-width: 760px;
  width: 100%;
}

.terms-section {
  scroll-margin-top: 84px;
  margin-bottom: 36px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.terms-section:last-child {
  border-bottom: none;
}

.terms-section h2 {
  font-family: var(--font-serif);
  font-size: 26px;
  line-height: 1.25;
  margin: 0 0 14px;
  color: var(--ink);
}

.terms-section p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
  margin: 0 0 16px;
  max-width: 720px;
}

.terms-section ul, .terms-section ol {
  margin: 0 0 16px;
  padding-left: 24px;
}

.terms-section li {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
  margin-bottom: 8px;
}

.terms-section a {
  color: var(--jade);
  font-weight: 600;
  text-decoration: underline;
  display: inline-block;
  min-height: 44px;
}

.terms-section a:hover {
  color: #066652;
}

/* Policy Data Safety & Owner Input Badge */
.policy-safety-box {
  margin-top: 48px;
  background: var(--card);
  border: 1px dashed var(--line);
  border-radius: var(--radius-md);
  padding: 20px 24px;
}

.policy-safety-list {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink);
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.policy-safety-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  border-bottom: 1px solid var(--line);
}

.policy-safety-list li:last-child {
  border-bottom: none;
}

.badge-owner {
  background: #fff3cd;
  color: #856404;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 0.04em;
  display: inline-block;
}

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

  .desktop-terms-sidebar {
    display: none;
  }

  .mobile-terms-nav {
    display: block;
  }

  .terms-section p, .terms-section li {
    font-size: 16px;
    line-height: 1.65;
  }

  .terms-section h2 {
    font-size: 22px;
  }
}

/* ==========================================================================
   Multi-Select Service Cards Layout & Bundle Preset Panel
   ========================================================================== */

/* Bundle Preset Panel (Complete Arrival Pass) */
.bundle-preset-panel {
  background: var(--ink);
  color: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  cursor: pointer;
  user-select: none;
  transition: all 200ms ease;
  margin-bottom: 24px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.bundle-preset-panel:hover {
  border-color: var(--jade);
  box-shadow: 0 6px 20px rgba(8, 122, 98, 0.2);
}

.bundle-preset-panel:focus-visible {
  outline: 2px solid var(--jade);
  outline-offset: 2px;
}

.bundle-panel-fullwidth.bundle-preset-panel {
  margin-bottom: 24px;
  cursor: pointer;
  transition: all 200ms ease;
  border: 1.5px solid rgba(255, 255, 255, 0.12);
}

.bundle-panel-fullwidth.bundle-preset-panel:hover {
  border-color: var(--jade);
  box-shadow: 0 6px 20px rgba(8, 122, 98, 0.2);
}

.bundle-panel-fullwidth.bundle-preset-panel.is-selected {
  background: var(--ink) !important;
  border: 2px solid var(--jade) !important;
  color: #ffffff !important;
  box-shadow: 0 0 0 1px var(--jade), 0 8px 24px rgba(8, 122, 98, 0.3) !important;
}

.bundle-panel-fullwidth.bundle-preset-panel.is-selected .bundle-preset-title,
.bundle-panel-fullwidth.bundle-preset-panel.is-selected h2,
.bundle-panel-fullwidth.bundle-preset-panel.is-selected h3 {
  color: #ffffff !important;
}

.bundle-panel-fullwidth.bundle-preset-panel.is-selected .mono,
.bundle-panel-fullwidth.bundle-preset-panel.is-selected #bundle-preset-mono {
  color: #c5d0cb !important;
}

.bundle-panel-fullwidth.bundle-preset-panel.is-selected .bundle-price-box {
  border-left-color: rgba(255, 255, 255, 0.12) !important;
}

.bundle-panel-fullwidth.bundle-preset-panel.is-selected .price-total {
  color: #ffffff !important;
}

.bundle-panel-fullwidth.bundle-preset-panel.is-selected .badge-saving {
  background: var(--yellow) !important;
  color: var(--ink) !important;
}

.bundle-panel-fullwidth.bundle-preset-panel.is-selected #bundle-preset-yellow-tag {
  color: var(--yellow) !important;
}

.bundle-preset-title {
  font-family: var(--font-serif);
  font-size: 24px;
  line-height: 1.2;
  margin: 0 0 4px;
  color: #ffffff;
}

.bundle-preset-desc {
  font-size: 14px;
  color: #c5d0cb;
  margin: 0;
}

.bundle-preset-usps {
  display: flex !important;
  flex-direction: column !important;
  gap: 6px !important;
  margin: 10px 0 6px !important;
  width: 100%;
}

.bundle-usp-item {
  color: #e4f2ed;
  font-size: 12.5px;
  display: flex !important;
  align-items: center;
  gap: 6px;
  line-height: 1.35;
  word-break: break-word;
}

.bundle-usp-item strong {
  color: #ffffff;
}

.bundle-preset-price-box {
  text-align: right;
}

@media (max-width: 600px) {
  .bundle-preset-panel {
    padding: 16px;
  }
  .bundle-usp-item {
    font-size: 11.5px;
  }
  .bundle-preset-price-box {
    text-align: left;
    margin-top: 8px;
  }
}

.bundle-price-tag {
  font-size: 16px;
  font-weight: 700;
  color: var(--yellow);
  margin-bottom: 4px;
}

.bundle-preset-panel.is-selected .bundle-price-tag {
  color: var(--jade);
}

.bundle-saving-badge {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  background: rgba(8, 122, 98, 0.4);
  color: var(--jade-light);
  padding: 3px 8px;
  border-radius: 4px;
  display: inline-block;
}

.bundle-preset-panel.is-selected .bundle-saving-badge {
  background: rgba(8, 122, 98, 0.15);
  color: var(--jade);
}

.bundle-preset-action-bar {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  justify-content: flex-end;
}

.bundle-preset-panel.is-selected .bundle-preset-action-bar {
  border-top-color: var(--line);
}

.btn-bundle-action {
  background: var(--jade) !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: var(--radius-sm);
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  min-height: 44px;
  transition: all 150ms ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 2px 8px rgba(8, 122, 98, 0.3);
}

.btn-bundle-action:hover,
.bundle-preset-panel.is-selected .btn-bundle-action:hover {
  background: var(--jade-dark) !important;
  color: #ffffff !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(8, 122, 98, 0.4);
}

/* OR BUILD YOUR OWN ARRIVAL Separator */
.selection-separator {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 24px 0 20px;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.selection-separator::before,
.selection-separator::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid var(--line);
}

.selection-separator span {
  padding: 0 16px;
}

/* Individual 3-Column Service Grid */
.service-selection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .service-selection-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

.service-select-card {
  border: 1.5px solid var(--line);
  border-radius: var(--radius-md);
  padding: 20px 18px;
  background: var(--card);
  cursor: pointer;
  user-select: none;
  transition: border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
  position: relative;
  min-height: 148px;
  box-sizing: border-box;
}

.service-select-card:hover {
  border-color: var(--jade-light);
}

.service-select-card.is-selected {
  border: 2px solid var(--jade) !important;
  background: #f0f7f4 !important; /* Pale mint background */
}

.service-select-card:focus-visible {
  outline: 2px solid var(--jade);
  outline-offset: 2px;
}

.card-select-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.service-badge-mono {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.card-checkbox-badge {
  font-size: 12px;
  font-weight: 700;
  font-family: var(--font-mono);
  padding: 5px 12px;
  border-radius: 20px;
  border: 1px solid var(--line);
  color: var(--muted);
  background: var(--bg);
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  transition: all 180ms ease;
}

.service-select-card.is-selected .card-checkbox-badge {
  background: var(--jade);
  color: #ffffff;
  border-color: var(--jade);
}

.service-select-card.is-included .card-checkbox-badge {
  background: var(--jade-soft);
  color: var(--jade);
  border-color: var(--jade);
}

.service-select-card h3 {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 6px;
  color: var(--ink);
}

.starting-price-text {
  font-size: 13px;
  color: var(--jade);
  font-weight: 700;
  margin: 0 0 6px;
}

.service-desc-text {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
  line-height: 1.4;
}

/* ==========================================================================
   Progressive Accordion & Service Removal Controls
   ========================================================================== */
.bundle-progressive-section {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  margin-bottom: 16px;
  background: var(--card);
  transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
  overflow: hidden;
}

.bundle-progressive-section.is-completed {
  border-color: #cbdcd5;
}

.bundle-progressive-section.is-needs-action {
  border-color: #fcd34d;
  background: #fffdf8;
}

.bundle-progressive-section.is-active {
  border: 1.5px solid var(--jade) !important;
  box-shadow: 0 2px 8px rgba(8, 122, 98, 0.06);
}

.bundle-progressive-section.is-collapsed {
  border: 1px solid var(--line) !important;
  box-shadow: none !important;
  margin-bottom: 12px;
}

.bundle-progressive-section.is-collapsed.is-completed {
  border-color: #cbdcd5 !important;
}

.bundle-progressive-section.has-error {
  border: 1.5px solid #f87171 !important;
  background: #fffbfb !important;
}

/* Hotel Selected Card Refinement */
.hotel-selected-card {
  background: #f8fafc;
  border: 1px solid #cbdcd5;
  border-radius: var(--radius-md);
  padding: 14px 16px;
  margin-bottom: 8px;
  transition: border-color 150ms ease;
}

.hotel-selected-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}

.hotel-selected-info {
  flex: 1;
  min-width: 0;
}

.hotel-selected-name {
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
  line-height: 1.35;
  word-break: break-word;
}

.hotel-selected-address {
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
  line-height: 1.4;
  word-break: break-word;
}

.hotel-selected-btn-change {
  flex-shrink: 0;
  padding: 5px 12px;
  font-size: 12.5px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  border-radius: 6px;
  height: auto;
  min-height: 30px;
  line-height: 1;
  border: 1px solid var(--line);
  background: #ffffff;
  color: var(--ink);
  transition: all 150ms ease;
}

.hotel-selected-btn-change:hover {
  background: #f1f5f9;
  border-color: #cbd5e1;
}

.hotel-selected-zone-status {
  margin-top: 10px;
  padding-top: 8px;
  border-top: 1px solid #e2e8f0;
  font-size: 13px;
  line-height: 1.45;
}

.bundle-progressive-header {
  padding: 14px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--line);
  background: var(--card);
}

.step-item.is-clickable {
  cursor: pointer;
}
.step-item.is-clickable:hover .step-label {
  text-decoration: underline;
}

.bundle-progressive-section.is-collapsed .bundle-progressive-header {
  display: none;
}

.bundle-summary-bar {
  display: none;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  background: #ffffff;
  cursor: pointer;
  user-select: none;
  transition: background 150ms ease;
}

.bundle-summary-bar:hover {
  background: #f8fafc;
}

.bundle-progressive-section.is-collapsed .bundle-summary-bar {
  display: flex;
}

.bundle-progressive-section.is-collapsed .bundle-progressive-body {
  display: none;
}

.bundle-summary-text-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

.badge-check-green {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--jade);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
}

.btn-edit-section {
  background: #ffffff;
  border: 1px solid var(--line);
  color: var(--ink);
  font-size: 12px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  padding: 4px 12px;
  min-height: 30px;
  cursor: pointer;
  transition: all 150ms ease;
}

.btn-edit-section:hover {
  border-color: var(--jade);
  color: var(--jade);
  background: #f0fdf4;
}

.btn-edit-section.is-required {
  background: var(--jade);
  color: #ffffff;
  border-color: var(--jade);
}
.btn-edit-section.is-required:hover {
  background: #06634f;
}

.btn-remove-service {
  background: transparent;
  border: none;
  color: var(--muted);
  font-size: 12px;
  text-decoration: underline;
  cursor: pointer;
  padding: 4px 8px;
  transition: color 150ms ease;
}

.btn-remove-service:hover {
  color: #d32f2f;
}

.btn-restore-service {
  background: transparent;
  border: 1px dashed var(--jade);
  color: var(--jade);
  font-size: 13px;
  font-weight: 700;
  border-radius: var(--radius-sm);
  padding: 6px 14px;
  cursor: pointer;
  transition: all 150ms ease;
}

.btn-restore-service:hover {
  background: rgba(8, 122, 98, 0.08);
}

.change-service-link {
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
  transition: color 150ms ease;
}

.change-service-link:hover {
  color: var(--jade);
  text-decoration: underline;
}

/* Responsive Primary Action Control (900px Breakpoint) */
@media (max-width: 899px) {
  #form-configure .in-form-continue-btn {
    display: none !important;
  }
  .summary-side-col {
    display: none !important;
  }
}

@media (min-width: 900px) {
  #mobile-sticky-summary-bar,
  #mobile-drawer-backdrop {
    display: none !important;
  }

  /* Desktop CTA hierarchy: sidebar button is solid primary, bottom in-form button is secondary convenience */
  #form-configure .in-form-continue-btn {
    display: inline-flex !important;
    width: 100% !important;
    background: #f8fafc !important;
    color: var(--jade-dark) !important;
    border: 1.5px solid #cbdcd5 !important;
    box-shadow: none !important;
    font-size: 14.5px !important;
    font-weight: 600 !important;
    min-height: 44px !important;
    justify-content: center;
    align-items: center;
    transition: all 180ms ease;
  }
  #form-configure .in-form-continue-btn:hover {
    background: #f0f7f4 !important;
    border-color: var(--jade) !important;
    color: var(--jade-dark) !important;
  }
}

/* Tabular Numbers for Price Rows */
.price-value,
.summary-item b,
.summary-item span:last-child,
#review-grand-total,
#mobile-bar-price,
#desktop-order-summary {
  font-variant-numeric: tabular-nums;
}

@media (prefers-reduced-motion: reduce) {
  .bundle-progressive-section,
  .btn-bundle-action,
  .mobile-sticky-summary-bar {
    transition: none !important;
  }
}

/* ==========================================================================
   ARRIVAL GUIDE ARTICLE
   ========================================================================== */
.article-page {
  max-width: 1240px;
  margin: 0 auto;
  padding-bottom: 64px;
}

.article-header,
.article-facts,
.article-hero,
.article-jump,
.article-body,
.article-related {
  max-width: none;
  width: 100%;
}

.article-kicker {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--jade);
  margin: 0 0 10px;
}

.article-crumbs {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 16px;
}

.article-crumbs a { color: var(--muted); min-height: auto; }

.article-header h1 {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4.4vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin: 0 0 14px;
  text-wrap: balance;
}

.article-dek {
  font-size: 18px;
  color: #2f3d37;
  line-height: 1.55;
  margin: 0 0 20px;
  max-width: none;
}

.article-header-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.article-byline {
  font-size: 13px;
  color: var(--muted);
}

.article-header-actions .btn-primary {
  width: auto;
  min-height: 44px;
  padding: 0 18px;
  font-size: 14px;
}

.article-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
}

.article-facts[hidden] { display: none; }

.article-fact {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 12px 14px;
}

.article-fact span {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}

.article-fact strong {
  display: block;
  font-size: 16px;
  color: var(--ink);
}

.article-hero {
  width: 100%;
  margin: 20px 0 8px;
  padding: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--jade-soft);
}

.article-hero img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  max-height: 480px;
  object-fit: cover;
}

.article-hero figcaption {
  margin: 8px 2px 0;
  font-size: 13px;
  color: var(--muted);
}

.article-jump {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
  margin-bottom: 8px;
}

.article-jump a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: var(--card);
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
}

.article-jump a:hover {
  border-color: var(--jade);
  color: var(--jade);
  text-decoration: none;
}

.article-body h2 {
  font-family: var(--font-serif);
  font-size: 26px;
  line-height: 1.2;
  margin: 36px 0 10px;
  scroll-margin-top: 84px;
}

.article-body h2:first-child { margin-top: 20px; }

.article-body p {
  margin: 0 0 16px;
  line-height: 1.65;
  font-size: 17px;
  color: var(--ink);
  max-width: none;
}

.option-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 8px 0 24px;
}

.option-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 16px;
}

.option-card h3 {
  font-size: 16px;
  margin: 0 0 6px;
}

.option-card .option-time {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  color: var(--jade);
  margin: 0 0 8px;
}

.option-card p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
  max-width: none;
}

.article-body table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  margin: 8px 0 24px;
}

.article-body th,
.article-body td {
  padding: 10px 12px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.article-body th {
  font-size: 12px;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
}

.article-faq {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  margin-bottom: 10px;
  width: 100%;
  box-sizing: border-box;
}

.article-faq strong {
  display: block;
  margin-bottom: 4px;
  font-size: 15px;
}

.article-faq span {
  font-size: 15px;
  color: var(--muted);
}

.article-cta {
  background: var(--ink);
  color: #ffffff;
  border-radius: var(--radius-md);
  padding: 28px 24px;
  margin: 40px 0 8px;
  width: 100%;
  box-sizing: border-box;
}

.article-cta h3 {
  font-family: var(--font-serif);
  font-size: 26px;
  margin: 0 0 8px;
}

.article-cta p {
  color: #c5d0cb;
  font-size: 15px;
  margin: 0 0 16px;
  max-width: 52ch;
}

.article-related {
  max-width: none;
  width: 100%;
  margin: 56px 0 0;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.related-guides-grid,
.guides-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

@media (max-width: 900px) {
  .article-facts,
  .option-cards,
  .related-guides-grid,
  .guides-grid {
    grid-template-columns: 1fr;
  }
  .article-header-actions .btn-primary {
    width: 100%;
    justify-content: center;
  }
}

/* ==========================================================================
   NUMBER STEPPER CONTROL COMPONENT
   ========================================================================== */
.number-stepper-control {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-md);
  background: #ffffff;
  overflow: hidden;
  height: 46px;
  width: 100%;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.number-stepper-control:focus-within {
  border-color: #087a62;
  box-shadow: 0 0 0 3px rgba(8, 122, 98, 0.12);
}

.btn-stepper {
  width: 46px;
  min-width: 44px;
  height: 100%;
  background: #f7faf8;
  border: none;
  color: var(--ink);
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease, color 0.15s ease;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.btn-stepper:hover {
  background: #e4f2ed;
  color: #087a62;
}

.btn-stepper:active {
  background: #cce8de;
}

.stepper-input {
  flex: 1;
  height: 100%;
  border: none !important;
  box-shadow: none !important;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  font-family: var(--font-mono);
  color: var(--ink);
  padding: 0;
  -moz-appearance: textfield;
}

.stepper-input::-webkit-outer-spin-button,
.stepper-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* ==========================================================================
   Calm Hierarchy & Included Badges
   ========================================================================== */
.badge-included-tag {
  display: inline-flex;
  align-items: center;
  background: #edf7f2;
  color: #087a62;
  font-family: var(--font-mono, monospace);
  font-size: 10px;
  font-weight: 600;
  padding: 1px 6px;
  border-radius: 4px;
  letter-spacing: 0.03em;
  margin-left: 8px;
  vertical-align: middle;
  border: 1px solid #cce8de;
}

.bundle-recap-compact {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #12211c;
  color: #ffffff;
  border-radius: var(--radius-md);
  padding: 10px 16px;
  margin-bottom: 16px;
  flex-wrap: wrap;
  gap: 10px;
  border: 1px solid rgba(8, 122, 98, 0.35);
}

.bundle-recap-compact .recap-badge-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 2px;
}

.bundle-recap-compact .recap-title {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 700;
  margin: 0;
  color: #ffffff;
}

.bundle-recap-compact .recap-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
  font-size: 12px;
  color: #e4f2ed;
}

.bundle-recap-compact .btn-change-pkg {
  color: #ffffff;
  font-size: 11.5px;
  font-weight: 600;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 4px 10px;
  border-radius: 5px;
  transition: background 150ms ease;
  display: inline-block;
}

.bundle-recap-compact .btn-change-pkg:hover {
  background: rgba(255, 255, 255, 0.22);
}

.vip-addon-card {
  border: 1px solid var(--line) !important;
  background: #ffffff !important;
  border-radius: var(--radius-md);
  transition: border-color 180ms ease;
}

.vip-addon-card:hover {
  border-color: #cbd5e1 !important;
}

.vip-addon-card:has(input[type="checkbox"]:checked) {
  border-color: var(--jade) !important;
  background: #f0fdf4 !important;
}

.luggage-radio-row {
  transition: background 150ms ease;
}

.luggage-radio-row:has(input:checked) {
  background: #f0fdf4 !important;
}

.service-details-disclosure {
  margin-top: 12px;
  font-size: 12.5px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  padding-top: 10px;
}

.service-details-disclosure summary {
  font-weight: 600;
  color: var(--jade);
  cursor: pointer;
  outline: none;
  user-select: none;
}

.service-details-disclosure summary:hover {
  text-decoration: underline;
}

.service-details-disclosure .disclosure-content {
  padding-top: 8px;
  line-height: 1.55;
  color: var(--muted);
}

/* Disabled CTA State across form and sticky sidebar */
.btn-primary:disabled,
.btn-primary[disabled],
#cfg-continue-btn:disabled,
#cfg-continue-btn[disabled],
#desktop-sticky-continue-btn:disabled,
#desktop-sticky-continue-btn[disabled],
#mobile-bar-action-btn:disabled,
#mobile-bar-action-btn[disabled] {
  background: #94a3b8 !important;
  color: #ffffff !important;
  cursor: not-allowed !important;
  opacity: 0.65 !important;
  box-shadow: none !important;
  transform: none !important;
  pointer-events: none !important;
}

/* ==========================================================================
   Mobile-Specific Polish (390px - 899px)
   ========================================================================== */
@media (max-width: 899px) {
  #view-book {
    padding-bottom: calc(85px + env(safe-area-inset-bottom)) !important;
  }

  .bundle-progressive-section {
    border: 1px solid var(--line) !important;
    border-radius: var(--radius-md) !important;
    margin-bottom: 12px !important;
    background: var(--card) !important;
    box-shadow: none !important;
    overflow: hidden;
  }

  .bundle-progressive-section.is-active {
    border: 1px solid var(--line) !important;
    border-left: 3.5px solid var(--jade) !important;
    box-shadow: 0 1px 4px rgba(0,0,0,0.03) !important;
  }

  .bundle-progressive-section.is-collapsed {
    border-left: 1px solid var(--line) !important;
  }

  .bundle-progressive-header {
    padding: 12px 14px !important;
  }

  .bundle-progressive-body {
    padding: 14px !important;
  }

  .bundle-summary-bar {
    padding: 12px 14px !important;
  }

  .bundle-recap-compact {
    padding: 8px 12px !important;
    margin-bottom: 12px !important;
    gap: 6px !important;
  }

  .bundle-recap-compact .recap-title {
    font-size: 15px !important;
  }

  .bundle-recap-compact .recap-pills {
    font-size: 11.5px !important;
    gap: 8px !important;
    margin-top: 2px !important;
  }

  .bundle-recap-compact .btn-change-pkg {
    font-size: 11px !important;
    padding: 3px 8px !important;
  }

  /* Reliable Mobile Sticky Summary Bar */
  .mobile-sticky-summary-bar {
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 9999 !important;
    background: #12211c !important;
    color: #ffffff !important;
    padding: 10px 16px calc(10px + env(safe-area-inset-bottom)) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.14) !important;
    box-shadow: 0 -4px 18px rgba(0, 0, 0, 0.25) !important;
  }

  .mobile-sticky-inner {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    gap: 12px !important;
    max-width: 600px !important;
    margin: 0 auto !important;
  }

  .mobile-price-toggle-btn {
    background: transparent !important;
    border: none !important;
    color: #ffffff !important;
    padding: 0 !important;
    text-align: left !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    user-select: none !important;
  }

  .mobile-sticky-summary-bar .summary-text {
    display: flex !important;
    flex-direction: column !important;
    gap: 1px !important;
  }

  .mobile-bar-label {
    font-size: 10px !important;
    font-family: var(--font-mono, monospace) !important;
    text-transform: uppercase !important;
    color: #a4b8af !important;
    letter-spacing: 0.04em !important;
    line-height: 1.2 !important;
    display: block !important;
  }

  .mobile-sticky-summary-bar .summary-text b {
    font-size: 17px !important;
    color: var(--yellow) !important;
    font-family: var(--font-mono, monospace) !important;
    line-height: 1.2 !important;
    display: block !important;
  }

  .mobile-bar-view-link {
    font-size: 11.5px !important;
    color: #e4f2ed !important;
    text-decoration: underline !important;
    line-height: 1.2 !important;
    display: inline-block !important;
  }

  .mobile-bar-view-link:hover {
    color: var(--yellow) !important;
  }

  .mobile-sticky-cta {
    width: auto !important;
    min-height: 42px !important;
    padding: 0 18px !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    border-radius: var(--radius-sm) !important;
    white-space: nowrap !important;
  }
}

/* ==========================================================================
   SUBTLE PREMIUM MOTION & REVEAL ANIMATION SYSTEM
   ========================================================================== */
@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-animate-1 { animation: heroFadeUp 480ms cubic-bezier(0.16, 1, 0.3, 1) 0ms both; }
.hero-animate-2 { animation: heroFadeUp 480ms cubic-bezier(0.16, 1, 0.3, 1) 70ms both; }
.hero-animate-3 { animation: heroFadeUp 480ms cubic-bezier(0.16, 1, 0.3, 1) 140ms both; }
.hero-animate-4 { animation: heroFadeUp 480ms cubic-bezier(0.16, 1, 0.3, 1) 210ms both; }
.hero-animate-5 { animation: heroFadeUp 480ms cubic-bezier(0.16, 1, 0.3, 1) 280ms both; }
.hero-animate-6 { animation: heroFadeUp 480ms cubic-bezier(0.16, 1, 0.3, 1) 350ms both; }

/* Progressive enhancement: Reveal animation only active when JS initializes */
.js-reveal .reveal-on-scroll {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms cubic-bezier(0.16, 1, 0.3, 1), transform 520ms cubic-bezier(0.16, 1, 0.3, 1);
}

.js-reveal .reveal-on-scroll.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger child items when parent section is revealed */
.js-reveal .reveal-on-scroll.is-revealed .step-card:nth-child(1) {
  animation: heroFadeUp 450ms cubic-bezier(0.16, 1, 0.3, 1) 0ms both;
}
.js-reveal .reveal-on-scroll.is-revealed .step-card:nth-child(2) {
  animation: heroFadeUp 450ms cubic-bezier(0.16, 1, 0.3, 1) 90ms both;
}
.js-reveal .reveal-on-scroll.is-revealed .step-card:nth-child(3) {
  animation: heroFadeUp 450ms cubic-bezier(0.16, 1, 0.3, 1) 180ms both;
}
.js-reveal .reveal-on-scroll.is-revealed .trust-row-section {
  animation: heroFadeUp 450ms cubic-bezier(0.16, 1, 0.3, 1) 260ms both;
}

.js-reveal .reveal-on-scroll.is-revealed .benefit-item-card:nth-child(1) {
  animation: heroFadeUp 450ms cubic-bezier(0.16, 1, 0.3, 1) 0ms both;
}
.js-reveal .reveal-on-scroll.is-revealed .benefit-item-card:nth-child(2) {
  animation: heroFadeUp 450ms cubic-bezier(0.16, 1, 0.3, 1) 70ms both;
}
.js-reveal .reveal-on-scroll.is-revealed .benefit-item-card:nth-child(3) {
  animation: heroFadeUp 450ms cubic-bezier(0.16, 1, 0.3, 1) 140ms both;
}
.js-reveal .reveal-on-scroll.is-revealed .benefit-item-card:nth-child(4) {
  animation: heroFadeUp 450ms cubic-bezier(0.16, 1, 0.3, 1) 210ms both;
}

@media (hover: hover) {
  /* Complete Arrival Pass */
  .bundle-panel-fullwidth {
    transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
  }
  .bundle-panel-fullwidth:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(10, 37, 30, 0.22);
  }
  .bundle-panel-fullwidth .btn-primary {
    transition: background-color 180ms ease, box-shadow 180ms ease;
  }
  .bundle-panel-fullwidth:hover .btn-primary {
    box-shadow: 0 4px 14px rgba(8, 122, 98, 0.25);
  }

  /* Standalone Services */
  .single-service-card {
    transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
  }
  .single-service-card:hover {
    transform: translateY(-3px);
    border-color: var(--jade);
    box-shadow: var(--shadow-sm);
  }
  .single-service-card .action-link-text {
    transition: color 180ms ease, transform 180ms ease;
    display: inline-block;
  }
  .single-service-card:hover .action-link-text {
    color: var(--jade-dark);
    transform: translateX(3px);
  }

  /* Benefit Cards */
  .benefit-item-card {
    transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
  }
  .benefit-item-card:hover {
    transform: translateY(-2px);
    border-color: var(--jade);
    box-shadow: var(--shadow-xs);
  }

  /* Airport Coverage Cards */
  .airport-destination-card {
    transition: transform 200ms ease, border-color 200ms ease, background-color 200ms ease, box-shadow 200ms ease;
  }
  .airport-destination-card:hover {
    transform: translateY(-2px);
    border-color: var(--jade);
    background-color: #ffffff;
    box-shadow: var(--shadow-xs);
  }
  .airport-destination-card .airport-card-header span:last-child {
    transition: transform 180ms ease, color 180ms ease;
    display: inline-block;
  }
  .airport-destination-card:hover .airport-card-header span:last-child {
    transform: translateX(3px);
    color: var(--jade);
  }

  /* Featured Guides */
  .home-guide-card {
    transition: border-color 200ms ease, box-shadow 200ms ease;
  }
  .home-guide-card .home-guide-img {
    transition: transform 300ms cubic-bezier(0.16, 1, 0.3, 1);
  }
  .home-guide-card:hover .home-guide-img {
    transform: scale(1.03);
  }
  .home-guide-card .read-guide-link {
    transition: color 180ms ease, transform 180ms ease;
    display: inline-block;
  }
  .home-guide-card:hover .read-guide-link {
    color: var(--jade-dark);
    transform: translateX(3px);
  }

  /* Buttons */
  .btn-primary, .btn-secondary, .btn-question {
    transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
  }
  .btn-primary:hover {
    box-shadow: 0 4px 14px rgba(8, 122, 98, 0.22);
  }
  .btn-primary:active, .btn-secondary:active, .btn-question:active {
    transform: translateY(1px);
  }
}

/* Sticky Header Scroll Enhancement */
.site-header {
  transition: box-shadow 200ms ease, border-color 200ms ease;
}
.site-header.is-scrolled {
  box-shadow: 0 2px 10px rgba(10, 37, 30, 0.06);
  border-bottom-color: rgba(218, 226, 222, 0.8);
}

@media (max-width: 599px) {
  .js-reveal .reveal-on-scroll {
    transform: translateY(10px);
    transition-duration: 380ms;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .js-reveal .reveal-on-scroll {
    opacity: 1 !important;
    transform: none !important;
  }
  .hero-animate-1,
  .hero-animate-2,
  .hero-animate-3,
  .hero-animate-4,
  .hero-animate-5,
  .hero-animate-6 {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
}



