/* =========================================================
   TCS Group — styles.css
   All CSS: design tokens, layout, components, pages.
   Mobile-first. Minimum supported width: 320px.
   Weights: 200 / 300 / 400 only. Never 600+.
   ========================================================= */

/* =========================================================
   Reset & base
   ========================================================= */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --navy:    #1a3a5c;
  --accent:  #c8a66b;
  --cream:   #fbfaf7;
  --paper:   #ffffff;
  --border:  #e5e7eb;
  --text:    #374151;
  --muted:   #6b7280;
  --error:   #991b1b;
  --success: #065f46;
  --radius:  3px;
  --ease:    0.18s ease;

  --header-h: 68px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--text);
  font-family: 'Inter Tight', system-ui, sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
}

img, svg {
  display: block;
}

.hidden { display: none !important; }

/* =========================================================
   Preview banner
   ========================================================= */
.preview-banner {
  background: var(--navy);
  color: rgba(251,250,247,0.75);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.04em;
  padding: 8px 24px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  line-height: 1.4;
}

.banner-bold {
  color: var(--accent);
  font-weight: 400;
}

.banner-sep {
  color: rgba(200,166,107,0.4);
}

/* =========================================================
   Site header
   ========================================================= */
.site-header {
  background: var(--paper);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 40;
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 32px;
}

/* Logo */
.site-logo {
  display: flex;
  flex-direction: column;
  gap: 1px;
  flex-shrink: 0;
  text-decoration: none;
}

.logo-serif {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 22px;
  font-weight: 300;
  color: var(--navy);
  letter-spacing: 0.02em;
  line-height: 1;
}

.logo-tag {
  font-size: 9px;
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1;
}

/* Nav */
.site-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
}

.nav-link {
  font-size: 13px;
  font-weight: 300;
  color: var(--text);
  padding: 6px 12px;
  border-radius: var(--radius);
  transition: color var(--ease), background var(--ease);
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--navy);
  background: var(--cream);
}

/* Header auth area */
.header-auth {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  margin-left: auto;
}

.btn-header-ghost {
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-size: 13px;
  font-weight: 300;
  padding: 7px 16px;
  cursor: pointer;
  transition: all var(--ease);
  white-space: nowrap;
}

.btn-header-ghost:hover {
  border-color: var(--navy);
  color: var(--navy);
}

.btn-header-accent {
  background: var(--navy);
  border: 1px solid var(--navy);
  border-radius: var(--radius);
  color: var(--accent);
  font-size: 13px;
  font-weight: 300;
  padding: 7px 16px;
  cursor: pointer;
  transition: opacity var(--ease);
  white-space: nowrap;
}

.btn-header-accent:hover { opacity: 0.88; }

/* User chip (logged-in state) */
.user-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 12px 5px 5px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--cream);
}

.user-initial {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--accent);
  font-size: 12px;
  font-weight: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.user-email {
  font-size: 12px;
  font-weight: 300;
  color: var(--text);
  max-width: 160px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* =========================================================
   Pages (SPA routing)
   ========================================================= */
.page { flex: 1; }
main { display: flex; flex-direction: column; flex: 1; }

/* =========================================================
   Hero (Phase 3 shell — Phase 4 replaces with real photo)
   ========================================================= */
.hero {
  background: var(--navy);
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
}

.hero-inner {
  max-width: 640px;
  text-align: center;
}

.hero-eyebrow {
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.hero-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 200;
  color: var(--paper);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}

.hero-body {
  font-size: 16px;
  font-weight: 300;
  color: rgba(251,250,247,0.7);
  line-height: 1.65;
  max-width: 480px;
  margin: 0 auto 36px;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  min-height: 46px;
}

.btn-hero-primary {
  background: var(--accent);
  color: var(--navy);
  border: none;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.04em;
  padding: 13px 28px;
  cursor: pointer;
  transition: opacity var(--ease);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.btn-hero-primary:hover { opacity: 0.88; }

.btn-hero-ghost {
  background: transparent;
  color: rgba(251,250,247,0.8);
  border: 1px solid rgba(251,250,247,0.25);
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.04em;
  padding: 13px 28px;
  cursor: pointer;
  transition: all var(--ease);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.btn-hero-ghost:hover {
  border-color: rgba(251,250,247,0.6);
  color: var(--paper);
}

/* =========================================================
   Trust band (homepage)
   ========================================================= */
.trust-band {
  background: var(--paper);
  border-bottom: 1px solid var(--border);
  padding: 20px 24px;
}

.trust-band-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.trust-band-text {
  font-size: 13px;
  font-weight: 300;
  color: var(--muted);
}

.trustpilot-placeholder {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.tp-label {
  font-size: 12px;
  font-weight: 300;
  color: var(--muted);
}

.tp-stars {
  font-size: 13px;
  color: #00b67a; /* Trustpilot green — intentional, not a TCS token */
  letter-spacing: 1px;
}

/* =========================================================
   Auth page (password reset — full-page section)
   ========================================================= */
.auth-page-wrap {
  min-height: calc(100vh - var(--header-h) - 40px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
  background: var(--cream);
}

.auth-page-card {
  width: 100%;
  max-width: 440px;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
}

.auth-page-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 28px;
  font-weight: 300;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}

.auth-page-body {
  font-size: 14px;
  font-weight: 300;
  color: var(--muted);
  margin-bottom: 28px;
}

/* =========================================================
   Site footer
   ========================================================= */
.site-footer {
  background: var(--cream);
  border-top: 1px solid var(--border);
  margin-top: auto;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.footer-logo {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 16px;
  font-weight: 300;
  color: var(--navy);
  letter-spacing: 0.02em;
}

.footer-detail {
  font-size: 11px;
  font-weight: 300;
  color: var(--muted);
  letter-spacing: 0.03em;
}

.footer-nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-link {
  font-size: 12px;
  font-weight: 300;
  color: var(--muted);
  transition: color var(--ease);
}

.footer-link:hover { color: var(--navy); }

/* =========================================================
   Modal backdrop
   ========================================================= */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(26,58,92,0.4);
  z-index: 100;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

/* =========================================================
   Modal
   ========================================================= */
.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 200;
  width: calc(100% - 32px);
  max-width: 480px;
  max-height: calc(100vh - 64px);
  overflow-y: auto;
  overscroll-behavior: contain;
}

.modal-card {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 40px;
  position: relative;
  box-shadow: 0 8px 40px rgba(26,58,92,0.12);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  color: var(--muted);
  cursor: pointer;
  border-radius: var(--radius);
  transition: color var(--ease), background var(--ease);
}

.modal-close:hover {
  color: var(--navy);
  background: var(--cream);
}

.modal-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 26px;
  font-weight: 300;
  color: var(--navy);
  letter-spacing: 0.01em;
  margin-bottom: 6px;
}

.modal-sub {
  font-size: 14px;
  font-weight: 300;
  color: var(--muted);
  margin-bottom: 24px;
  line-height: 1.5;
}

.modal-footer {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.modal-footer-sep {
  color: var(--border);
}

.modal-footer-text {
  font-size: 13px;
  font-weight: 300;
  color: var(--muted);
}

/* Back button (inside modal, forgot password flow) */
.btn-back {
  background: transparent;
  border: none;
  font-size: 13px;
  font-weight: 300;
  color: var(--muted);
  cursor: pointer;
  padding: 0;
  margin-bottom: 20px;
  display: block;
  transition: color var(--ease);
}

.btn-back:hover { color: var(--navy); }

/* Success state (email sent confirmation) */
.success-state {
  text-align: center;
  padding: 8px 0;
}

.success-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #ecfdf5;
  color: var(--success);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.success-state .modal-title { margin-bottom: 10px; }
.success-state .modal-sub   { margin-bottom: 8px; }

/* =========================================================
   Form elements
   ========================================================= */
.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 16px;
}

.field-label {
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.field-input {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 14px;
  font-weight: 300;
  color: var(--navy);
  padding: 10px 14px;
  background: var(--paper);
  outline: none;
  width: 100%;
  transition: border-color var(--ease);
  -webkit-appearance: none;
}

.field-input:focus { border-color: var(--navy); }
.field-input::placeholder { color: var(--border); }

.field-hint {
  font-size: 11px;
  font-weight: 300;
  color: var(--muted);
  letter-spacing: 0.02em;
}

/* Turnstile container */
.turnstile-wrap {
  margin: 16px 0 4px;
  min-height: 65px; /* Turnstile widget height */
}

/* Error message */
.form-error {
  font-size: 12px;
  font-weight: 300;
  color: var(--error);
  min-height: 18px;
  margin-top: 4px;
  margin-bottom: 4px;
}

/* Buttons */
.btn-primary {
  background: var(--navy);
  color: var(--accent);
  border: none;
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.06em;
  padding: 12px 24px;
  cursor: pointer;
  transition: opacity var(--ease);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-primary:hover:not(:disabled) { opacity: 0.88; }
.btn-primary:disabled { opacity: 0.4; cursor: not-allowed; }

.btn-full { width: 100%; margin-top: 20px; }

.btn-text {
  background: transparent;
  border: none;
  color: var(--navy);
  font-family: inherit;
  font-size: 13px;
  font-weight: 300;
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(26,58,92,0.3);
  transition: text-decoration-color var(--ease);
}

.btn-text:hover { text-decoration-color: var(--navy); }

/* =========================================================
   Toast
   ========================================================= */
.toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: var(--navy);
  color: var(--cream);
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.02em;
  padding: 11px 20px;
  border-radius: var(--radius);
  opacity: 0;
  transition: all 0.2s ease;
  pointer-events: none;
  white-space: nowrap;
  z-index: 300;
  box-shadow: 0 4px 16px rgba(26,58,92,0.2);
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.toast.toast-error { background: var(--error); }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 900px) {
  .site-nav { display: none; }
}

/* =========================================================
   Search section
   ========================================================= */
.search-section {
  background: var(--cream);
  padding: 0 24px 40px;
  margin-top: -32px; /* overlap bottom of hero */
  position: relative;
  z-index: 10;
}

.search-section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.search-card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 24px 28px 20px;
  box-shadow: 0 4px 24px rgba(26,58,92,0.09);
}

/* Product tabs (Flights / Hotels / …) */
.search-tabs-row {
  display: flex;
  gap: 0;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.search-tab {
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  color: var(--muted);
  cursor: pointer;
  font-family: inherit;
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.03em;
  margin-bottom: -1px;
  padding: 8px 18px;
  transition: color var(--ease), border-color var(--ease);
  white-space: nowrap;
}

.search-tab:hover { color: var(--navy); }

.search-tab.active {
  border-bottom-color: var(--navy);
  color: var(--navy);
}

/* Panel shown/hidden per tab */
.search-panel { /* visible by default */ }

/* Sub-row: trip type toggle */
.search-sub-row {
  margin-bottom: 14px;
}

.trip-type-toggle {
  display: inline-flex;
  gap: 2px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 3px;
}

.trip-btn {
  background: transparent;
  border: none;
  border-radius: 2px;
  color: var(--muted);
  cursor: pointer;
  font-family: inherit;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.04em;
  padding: 5px 14px;
  transition: all var(--ease);
}

.trip-btn.active {
  background: var(--navy);
  color: var(--accent);
}

/* Hotels grid — 4 cols: destination · check-in · check-out · pax+rooms · submit */
.search-grid-hotels {
  grid-template-columns: 1.6fr 1fr 1fr 1.1fr auto !important;
}

/* Search grid */
.search-grid {
  display: grid;
  grid-template-columns: 1.3fr 28px 1.3fr 1fr 1fr 1.1fr auto;
  gap: 0;
  align-items: end;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: visible;
}

/* Each field cell */
.search-field {
  position: relative;
  padding: 12px 16px 12px;
  border-right: 1px solid var(--border);
  min-width: 0;
}

.search-field:last-child {
  border-right: none;
}

.sf-label {
  display: block;
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
  white-space: nowrap;
}

.sf-input {
  background: transparent;
  border: none;
  color: var(--navy);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 19px;
  font-weight: 300;
  outline: none;
  padding: 0;
  width: 100%;
  -webkit-appearance: none;
}

.sf-input::placeholder { color: var(--border); font-size: 17px; }
.sf-input:focus        { color: var(--navy); }

/* Date inputs — keep system picker but style the value */
.sf-date {
  font-family: 'Inter Tight', system-ui, sans-serif;
  font-size: 14px;
  cursor: pointer;
}

/* Swap button cell */
.swap-btn {
  background: transparent;
  border: none;
  border-right: 1px solid var(--border);
  color: var(--muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 0;
  transition: color var(--ease), background var(--ease);
  width: 28px;
}

.swap-btn:hover {
  color: var(--navy);
  background: var(--cream);
}

/* Passengers + cabin combined cell */
.pax-cabin-wrap {
  display: flex;
  gap: 8px;
  align-items: center;
}

.sf-pax {
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  font-size: 19px;
  width: 36px;
  -moz-appearance: textfield;
}
.sf-pax::-webkit-inner-spin-button,
.sf-pax::-webkit-outer-spin-button { -webkit-appearance: none; }

.sf-cabin {
  font-family: 'Inter Tight', system-ui, sans-serif !important;
  font-size: 12px;
  color: var(--muted) !important;
  cursor: pointer;
  flex: 1;
}

/* Search submit button */
.search-submit {
  background: var(--navy);
  border: none;
  border-radius: 0 var(--radius) var(--radius) 0;
  color: var(--accent);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.06em;
  padding: 0 28px;
  transition: opacity var(--ease);
  white-space: nowrap;
  min-height: 68px;
}

.search-submit:hover { opacity: 0.88; }

/* Form-level error (below search grid) */
.search-form-error {
  font-size: 12px;
  font-weight: 300;
  color: var(--error);
  min-height: 16px;
  margin-top: 8px;
}

/* Airport autocomplete suggestions */
.airport-suggestions {
  background: var(--paper);
  border: 1px solid var(--border);
  border-top: none;
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: 0 8px 24px rgba(26,58,92,0.1);
  list-style: none;
  margin: 0;
  max-height: 240px;
  overflow-y: auto;
  padding: 4px 0;
  position: absolute;
  top: 100%;
  left: -1px;
  width: calc(100% + 2px);
  z-index: 50;
}

.airport-suggestion {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  transition: background var(--ease);
}

.airport-suggestion:hover,
.airport-suggestion.highlighted {
  background: var(--cream);
}

.airport-suggestion-code {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 300;
  color: var(--accent);
  flex-shrink: 0;
  width: 32px;
}

.airport-suggestion-info {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.airport-suggestion-city {
  font-size: 13px;
  font-weight: 300;
  color: var(--navy);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.airport-suggestion-name {
  font-size: 11px;
  font-weight: 300;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* =========================================================
   Flight results page
   ========================================================= */
.results-header {
  background: var(--paper);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: var(--header-h);
  z-index: 30;
}

.results-header-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.results-route {
  font-size: 13px;
  font-weight: 300;
  color: var(--muted);
  letter-spacing: 0.02em;
}

.results-route strong {
  color: var(--navy);
  font-weight: 400;
}

.btn-edit-search {
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--muted);
  cursor: pointer;
  font-family: inherit;
  font-size: 12px;
  font-weight: 300;
  padding: 6px 14px;
  transition: all var(--ease);
  white-space: nowrap;
}

.btn-edit-search:hover {
  border-color: var(--navy);
  color: var(--navy);
}

.results-body {
  max-width: 900px;
  margin: 0 auto;
  padding: 28px 24px 60px;
}

/* Loading spinner */
.results-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
  gap: 20px;
}

.loading-spinner {
  width: 28px;
  height: 28px;
  border: 1.5px solid var(--border);
  border-top-color: var(--navy);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

.loading-text {
  font-size: 13px;
  font-weight: 300;
  color: var(--muted);
  letter-spacing: 0.04em;
}

/* Error state */
.results-error {
  padding: 60px 24px;
  text-align: center;
}

.results-error p {
  font-size: 14px;
  font-weight: 300;
  color: var(--muted);
  margin-bottom: 20px;
}

/* Results count */
.results-count {
  font-size: 12px;
  font-weight: 300;
  color: var(--muted);
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}

/* ── Flight card ─────────────────────────────────────── */
.flights-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.flight-card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 6px;
  cursor: pointer;
  display: grid;
  grid-template-columns: 130px 1fr 140px;
  align-items: center;
  padding: 18px 20px;
  column-gap: 20px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
  user-select: none;
}

.flight-card:hover {
  border-color: var(--navy);
  box-shadow: 0 4px 20px rgba(26,58,92,0.11);
  transform: translateY(-2px);
}

.flight-card:focus-visible {
  outline: 2px solid var(--navy);
  outline-offset: 2px;
}

/* Airline column */
.fc-airline {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  min-width: 0;
}

.fc-airline img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  border-radius: 4px;
}

.fc-logo-fb {
  width: 30px;
  height: 30px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1;
  flex-shrink: 0;
}

.fc-airline-name {
  font-size: 12px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.2;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 120px;
}

/* Slices column — one row per direction (outbound / return) */
.fc-slices {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}

.fc-slice {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  column-gap: 16px;
  min-width: 0;
}

/* Times — largest, dominant */
.fc-times {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 32px;
  font-weight: 400;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1;
  white-space: nowrap;
  flex-shrink: 0;
}

.fc-arrow {
  color: var(--muted);
  font-size: 15px;
  margin: 0 20px;
  font-style: normal;
}

/* Duration + stops — centre, medium */
.fc-mid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  text-align: center;
}

.fc-dur {
  font-size: 13px;
  font-weight: 400;
  color: var(--text);
  white-space: nowrap;
}

.fc-stops {
  font-size: 12px;
  font-weight: 300;
  color: var(--muted);
  white-space: nowrap;
}

.fc-stops.nonstop { color: var(--success); }

/* Route codes — right-aligned, small muted */
.fc-route {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 300;
  color: var(--muted);
  letter-spacing: 0.03em;
  text-align: right;
  white-space: nowrap;
  flex-shrink: 0;
}

/* Price column */
.fc-price-col {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 3px;
  padding-left: 20px;
  border-left: 1px solid var(--border);
  flex-shrink: 0;
}

.fc-amount {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 28px;
  font-weight: 400;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1;
  white-space: nowrap;
}

.fc-per {
  font-size: 11px;
  font-weight: 300;
  color: var(--muted);
  white-space: nowrap;
}

/* Refundable tag — shown in price panel */
.fare-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 300;
  color: var(--muted);
  letter-spacing: 0.03em;
  display: none; /* hidden on compact card; shown on detail */
}

/* ── Compact hotel card ──────────────────────────────── */
.hotel-card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  display: grid;
  grid-template-columns: 72px 1fr auto;
  overflow: hidden;
  transition: border-color var(--ease), box-shadow var(--ease);
}

.hotel-card:hover {
  border-color: var(--navy);
  box-shadow: 0 6px 20px rgba(26,58,92,0.12);
  transform: translateY(-2px);
}

.hc-deal-badge {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 7px;
  background: #c8a66b;
  color: #fff;
  font-family: 'Inter Tight', sans-serif;
  font-size: 9px;
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 2px;
  vertical-align: middle;
}

.hc-thumb {
  width: 72px;
  height: 64px;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
}

.hc-thumb-empty {
  width: 72px;
  height: 64px;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hc-thumb-empty svg { color: var(--border); }

.hc-body {
  padding: 9px 12px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.hc-name {
  font-size: 14px;
  font-weight: 300;
  color: var(--navy);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hc-stars {
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 1px;
  flex-wrap: wrap;
}

.hc-location {
  font-size: 11px;
  font-weight: 300;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hc-price {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  border-left: 1px solid var(--border);
  flex-shrink: 0;
}

.hc-amount {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 20px;
  font-weight: 300;
  color: var(--navy);
  white-space: nowrap;
  letter-spacing: -0.01em;
}

.hc-per-night {
  font-size: 10px;
  font-weight: 300;
  color: var(--muted);
  letter-spacing: 0.04em;
  display: block;
  white-space: nowrap;
}

.hc-select {
  background: var(--navy);
  border: none;
  border-radius: var(--radius);
  color: var(--accent);
  cursor: pointer;
  font-family: inherit;
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.05em;
  padding: 6px 12px;
  transition: opacity var(--ease);
  white-space: nowrap;
}

.hc-select:hover { opacity: 0.88; }

/* ── Hotel detail page ───────────────────────────────── */
.hotel-photos-strip {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 6px;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 20px;
}

.hotel-photos-strip img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}

.hotel-photos-strip img:first-child {
  grid-column: span 2;
  height: 220px;
}

.hotel-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}

.amenity-chip {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 11px;
  font-weight: 300;
  color: var(--muted);
  padding: 3px 10px;
}

/* Room option cards */
.rooms-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
}

.room-card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0;
  overflow: hidden;
}

.room-card-body {
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.room-name {
  font-size: 14px;
  font-weight: 300;
  color: var(--navy);
}

.room-meta {
  font-size: 11px;
  font-weight: 300;
  color: var(--muted);
}

.room-cancel {
  font-size: 11px;
  font-weight: 300;
  color: var(--muted);
}

.room-cancel.free { color: var(--success); }

.room-card-price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  padding: 14px 18px;
  border-left: 1px solid var(--border);
  gap: 6px;
  min-width: 140px;
}

.room-total {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 22px;
  font-weight: 300;
  color: var(--navy);
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.room-per-night {
  font-size: 10px;
  font-weight: 300;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.btn-book-room {
  background: var(--accent);
  border: none;
  border-radius: var(--radius);
  color: var(--navy);
  cursor: pointer;
  font-family: inherit;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.05em;
  padding: 8px 16px;
  transition: opacity var(--ease);
  white-space: nowrap;
}

.btn-book-room:hover { opacity: 0.88; }

/* =========================================================
   Offer detail page
   ========================================================= */
.offer-page-wrap {
  background: var(--cream);
  min-height: calc(100vh - var(--header-h));
  padding: 0 24px 60px;
}

.offer-page-inner {
  max-width: 900px;
  margin: 0 auto;
}

.offer-nav {
  padding: 20px 0 4px;
}

.btn-back-results {
  background: transparent;
  border: none;
  color: var(--muted);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 300;
  padding: 0;
  transition: color var(--ease);
}

.btn-back-results:hover { color: var(--navy); }

.offer-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Offer summary card (price + carrier + CTA) */
.offer-summary-card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0;
  overflow: hidden;
}

.offer-summary-body {
  padding: 28px 28px;
}

.offer-carrier-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.offer-carrier-logo {
  width: 36px;
  height: 36px;
  object-fit: contain;
  border-radius: 4px;
  border: 1px solid var(--border);
}

.offer-carrier-name {
  font-size: 15px;
  font-weight: 300;
  color: var(--navy);
}

.offer-route-headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 28px;
  font-weight: 300;
  color: var(--navy);
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}

.offer-meta-row {
  font-size: 12px;
  font-weight: 300;
  color: var(--muted);
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.offer-meta-row span { display: inline-flex; align-items: center; gap: 4px; }

/* CTA panel */
.offer-cta-panel {
  background: var(--cream);
  border-left: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 28px 32px;
  gap: 8px;
  text-align: center;
  min-width: 190px;
}

.offer-price-large {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 36px;
  font-weight: 300;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1;
}

.offer-price-sub {
  font-size: 11px;
  font-weight: 300;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.btn-book {
  background: var(--accent);
  border: none;
  border-radius: var(--radius);
  color: var(--navy);
  cursor: pointer;
  font-family: inherit;
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.06em;
  padding: 12px 24px;
  transition: opacity var(--ease);
  width: 100%;
  margin-top: 6px;
}

.btn-book:hover { opacity: 0.88; }

/* Itinerary card */
.itinerary-card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.itinerary-card-header {
  padding: 16px 24px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.itinerary-card-title {
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.itinerary-direction {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 18px;
  font-weight: 300;
  color: var(--navy);
}

/* Segment rows within itinerary */
.segment-row {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 16px;
  align-items: start;
}

.segment-row:last-child { border-bottom: none; }

.segment-carrier-logo {
  width: 36px;
  height: 36px;
  object-fit: contain;
  border-radius: 4px;
  border: 1px solid var(--border);
  flex-shrink: 0;
}

.segment-carrier-fallback {
  width: 36px;
  height: 36px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  font-weight: 300;
  color: var(--muted);
  text-align: center;
  line-height: 1.2;
  flex-shrink: 0;
}

.segment-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.segment-times-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
}

.segment-time-block { display: flex; flex-direction: column; gap: 2px; }

.segment-time {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 24px;
  font-weight: 300;
  color: var(--navy);
  letter-spacing: -0.01em;
  line-height: 1;
}

.segment-airport {
  font-size: 12px;
  font-weight: 300;
  color: var(--muted);
}

.segment-terminal {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--muted);
}

.segment-middle {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.segment-dur {
  font-size: 11px;
  font-weight: 300;
  color: var(--muted);
}

.segment-hr {
  width: 100%;
  height: 1px;
  background: var(--border);
}

.segment-flight-no {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 300;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.segment-cabin {
  font-size: 11px;
  font-weight: 300;
  color: var(--muted);
}

.segment-baggage-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.baggage-chip {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 11px;
  font-weight: 300;
  color: var(--muted);
  padding: 3px 9px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* Layover indicator */
.layover-row {
  padding: 10px 24px 10px 76px;
  font-size: 11px;
  font-weight: 300;
  color: var(--muted);
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Fare conditions card */
.fare-card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.fare-item { display: flex; flex-direction: column; gap: 4px; }

.fare-item-label {
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.fare-item-value {
  font-size: 14px;
  font-weight: 300;
  color: var(--navy);
}

.fare-item-value.allowed   { color: var(--success); }
.fare-item-value.not-allowed { color: var(--error); }
.fare-item-value.conditional { color: var(--accent); }

@media (max-width: 600px) {
  .header-inner { gap: 16px; }
  .logo-tag     { display: none; }

  .hero { padding: 60px 20px 56px; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .btn-hero-primary,
  .btn-hero-ghost { width: 100%; max-width: 280px; justify-content: center; }

  .trust-band-inner { flex-direction: column; align-items: flex-start; gap: 12px; }

  .modal-card { padding: 28px 24px; }

  .footer-inner { flex-direction: column; align-items: flex-start; gap: 16px; }

  .auth-page-card { padding: 28px 24px; }

  /* Search card — stack on mobile */
  .search-section { margin-top: -20px; padding: 0 16px 32px; }
  .search-card    { padding: 16px 16px 14px; }

  .search-tabs-row { overflow-x: auto; gap: 0; }
  .search-tab      { padding: 7px 12px; font-size: 12px; }

  .search-grid,
  .search-grid-hotels {
    grid-template-columns: 1fr !important;
    border: none;
    gap: 0;
  }

  .search-field {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 11px 4px;
  }

  .swap-btn { display: none; }

  .pax-cabin-wrap { gap: 12px; }

  .search-submit {
    border-radius: var(--radius);
    min-height: 46px;
    margin-top: 14px;
    width: 100%;
    justify-content: center;
  }

  /* Results */
  .results-header-inner { flex-direction: column; align-items: flex-start; gap: 8px; }

  /* Flight card on mobile — airline+slices stack, price below */
  .flight-card {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    padding: 14px 16px;
    gap: 12px;
  }

  .fc-airline {
    flex-direction: row;
    align-items: center;
    gap: 10px;
  }

  .fc-airline-name { max-width: none; }

  .fc-times { font-size: 26px; }
  .fc-arrow  { margin: 0 12px; }

  .fc-price-col {
    align-items: flex-start;
    padding-left: 0;
    border-left: none;
    border-top: 1px solid var(--border);
    padding-top: 12px;
  }

  .fc-amount { font-size: 24px; }

  /* Hotel card on mobile */
  .hotel-card {
    grid-template-columns: 60px 1fr;
    grid-template-rows: auto auto;
  }

  .hc-price {
    grid-column: 1 / -1;
    border-left: none;
    border-top: 1px solid var(--border);
    padding: 8px 12px;
    justify-content: space-between;
  }

  /* Offer detail */
  .offer-summary-card { grid-template-columns: 1fr; }
  .offer-cta-panel    { border-left: none; border-top: 1px solid var(--border); }

  .fare-card { grid-template-columns: 1fr; }

  .segment-times-row { grid-template-columns: auto 1fr auto; gap: 8px; }
  .segment-time      { font-size: 20px; }
}

/* Search grid — medium breakpoint (tablet) */
@media (min-width: 601px) and (max-width: 900px) {
  .search-grid {
    grid-template-columns: 1fr 28px 1fr 1fr 1fr !important;
    grid-template-rows: auto auto;
  }

  .search-grid-hotels {
    grid-template-columns: 1fr 1fr 1fr auto !important;
  }

  .sf-pax-field { grid-column: 1 / 3; }
  .search-submit {
    grid-column: 3 / -1;
    border-radius: 0 0 var(--radius) var(--radius);
    min-height: 52px;
    justify-content: center;
  }
}

@media (max-width: 360px) {
  .preview-banner { font-size: 10px; gap: 5px; }
  .header-inner   { padding: 0 16px; }
  .modal          { width: calc(100% - 16px); }
}

/* =========================================================
   Phase 7 — User account + nav dropdown
   ========================================================= */

/* ── User menu dropdown ──────────────────────────────── */
.user-menu {
  position: relative;
}

.user-menu-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 20px;
  cursor: pointer;
  padding: 5px 12px 5px 5px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 300;
  color: var(--text);
  transition: border-color var(--ease), background var(--ease);
  white-space: nowrap;
}

.user-menu-btn:hover {
  border-color: var(--navy);
  background: var(--cream);
}

.user-initial {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 300;
  line-height: 1;
  flex-shrink: 0;
}

.user-menu-name {
  color: var(--navy);
  font-weight: 300;
  max-width: 120px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.user-chevron {
  color: var(--muted);
  transition: transform 0.15s ease;
  flex-shrink: 0;
}

.user-menu.open .user-chevron {
  transform: rotate(180deg);
}

.user-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 6px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.11);
  min-width: 210px;
  z-index: 200;
  overflow: hidden;
  animation: dropdownIn 0.12s ease;
}

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

.user-dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 12px 16px;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 13px;
  font-weight: 300;
  color: var(--text);
  text-align: left;
  transition: background var(--ease), color var(--ease);
  text-decoration: none;
}

.user-dropdown-item:hover {
  background: var(--cream);
  color: var(--navy);
}

.user-dropdown-item svg { flex-shrink: 0; color: var(--muted); }

.user-dropdown-divider {
  height: 1px;
  background: var(--border);
  margin: 4px 0;
}

.user-dropdown-item.sign-out { color: var(--error); }
.user-dropdown-item.sign-out:hover { background: #fef2f2; color: var(--error); }

/* ── Account pages — shared layout ──────────────────── */
.account-page-wrap {
  background: var(--cream);
  min-height: calc(100vh - var(--header-h));
  padding: 0 24px 60px;
}

.account-page-inner {
  max-width: 760px;
  margin: 0 auto;
  padding-top: 28px;
}

.account-page-nav {
  margin-bottom: 20px;
}

.account-page-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 34px;
  font-weight: 300;
  color: var(--navy);
  letter-spacing: -0.01em;
  margin-bottom: 24px;
  line-height: 1.1;
}

.account-empty {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 40px 28px;
  text-align: center;
  font-size: 14px;
  font-weight: 300;
  color: var(--muted);
}

/* ── Account card (shared container) ────────────────── */
.account-card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 16px;
}

.account-card-header {
  padding: 16px 24px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.account-card-title {
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.account-card-body {
  padding: 24px;
}

/* ── Status badge ────────────────────────────────────── */
.status-badge {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  border: 1px solid currentColor;
  white-space: nowrap;
  display: inline-block;
  line-height: 1.6;
}

.status-badge.confirmed  { color: var(--success); }
.status-badge.cancelled  { color: var(--error); }
.status-badge.completed  { color: var(--navy); opacity: 0.6; }
.status-badge.checked_in { color: #0369a1; }
.status-badge.refunded   { color: var(--accent); filter: brightness(0.8); }

/* ── Booking list card ───────────────────────────────── */
.bookings-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.booking-card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 6px;
  cursor: pointer;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 18px 20px;
  column-gap: 20px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
  user-select: none;
}

.booking-card:hover {
  border-color: var(--navy);
  box-shadow: 0 4px 20px rgba(26,58,92,0.11);
  transform: translateY(-2px);
}

.booking-card:focus-visible {
  outline: 2px solid var(--navy);
  outline-offset: 2px;
}

.bk-main {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.bk-type-icon {
  width: 38px;
  height: 38px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  flex-shrink: 0;
  flex-shrink: 0;
}

.bk-body {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.bk-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 20px;
  font-weight: 300;
  color: var(--navy);
  letter-spacing: -0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bk-date {
  font-size: 12px;
  font-weight: 300;
  color: var(--muted);
}

.bk-ref {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 300;
  color: var(--muted);
  letter-spacing: 0.03em;
}

.bk-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 7px;
  flex-shrink: 0;
}

.bk-amount {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 22px;
  font-weight: 300;
  color: var(--navy);
  letter-spacing: -0.01em;
  white-space: nowrap;
}

/* ── Booking detail ──────────────────────────────────── */
.bkd-summary {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 16px;
}

.bkd-top {
  padding: 24px 28px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 16px;
  border-bottom: 1px solid var(--border);
}

.bkd-ref {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 28px;
  font-weight: 300;
  color: var(--navy);
  letter-spacing: 0.02em;
  line-height: 1.1;
}

.bkd-type-line {
  font-size: 12px;
  font-weight: 300;
  color: var(--muted);
  margin-top: 4px;
}

.bkd-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.bkd-amount {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 30px;
  font-weight: 300;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1;
}

.bkd-rows {
  padding: 20px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bkd-row {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 8px;
  align-items: baseline;
  font-size: 13px;
}

.bkd-label {
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--muted);
}

.bkd-value {
  font-weight: 300;
  color: var(--navy);
  word-break: break-word;
}

.bkd-actions {
  padding: 16px 28px 24px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-cancel-booking {
  background: transparent;
  border: 1px solid var(--error);
  border-radius: var(--radius);
  color: var(--error);
  cursor: pointer;
  font-family: inherit;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.04em;
  padding: 9px 20px;
  transition: background var(--ease), color var(--ease);
  white-space: nowrap;
}

.btn-cancel-booking:hover {
  background: var(--error);
  color: var(--paper);
}

.btn-cancel-booking:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* ── Profile form ────────────────────────────────────── */
.profile-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

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

.profile-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.profile-label {
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--muted);
}

.profile-input,
.profile-select {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--navy);
  font-family: inherit;
  font-size: 14px;
  font-weight: 300;
  padding: 10px 12px;
  transition: border-color var(--ease);
  width: 100%;
  appearance: none;
}

.profile-input:focus,
.profile-select:focus {
  border-color: var(--navy);
  outline: none;
}

.profile-input[readonly] {
  color: var(--muted);
  cursor: not-allowed;
}

.profile-save-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 4px;
  flex-wrap: wrap;
}

.profile-save-msg {
  font-size: 12px;
  font-weight: 300;
  color: var(--success);
}

/* ── Traveller cards ─────────────────────────────────── */
.travellers-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}

.traveller-card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 6px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 16px 20px;
  column-gap: 16px;
}

.tv-body {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.tv-name {
  font-size: 15px;
  font-weight: 300;
  color: var(--navy);
}

.tv-meta {
  font-size: 12px;
  font-weight: 300;
  color: var(--muted);
}

.tv-passport {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 300;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.btn-delete-traveller {
  background: transparent;
  border: none;
  color: var(--muted);
  cursor: pointer;
  padding: 6px;
  border-radius: var(--radius);
  transition: color var(--ease), background var(--ease);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.btn-delete-traveller:hover {
  color: var(--error);
  background: #fef2f2;
}

/* Add traveller form */
.add-traveller-form {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 24px;
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

/* =========================================================
   Phase 6 — Booking flow
   ========================================================= */

.booking-step-label {
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-bottom: 10px;
}

.booking-flow-wrap {
  background: var(--cream);
  min-height: calc(100vh - var(--header-h));
  padding: 0 24px 60px;
}

.booking-flow-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 296px;
  column-gap: 28px;
  padding-top: 28px;
  align-items: start;
}

.booking-main  { min-width: 0; }

.booking-sidebar {
  position: sticky;
  top: calc(var(--header-h) + 20px);
}

/* Passenger form card */
.pax-form-card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 14px;
}

.pax-form-header {
  padding: 13px 20px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
}

.pax-form-number {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  line-height: 1;
}

.pax-form-title {
  font-size: 13px;
  font-weight: 300;
  color: var(--navy);
}

.pax-form-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pax-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.pax-field-row.three { grid-template-columns: 1fr 1fr 1fr; }

.pax-field {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.pax-label {
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--muted);
}

.pax-input,
.pax-select {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--navy);
  font-family: inherit;
  font-size: 13px;
  font-weight: 300;
  padding: 9px 11px;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  transition: border-color var(--ease);
}

.pax-input:focus,
.pax-select:focus { border-color: var(--navy); outline: none; }

.pax-input.error,
.pax-select.error  { border-color: var(--error); }

/* Fare summary sidebar */
.fare-summary-card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
}

.fs-header {
  padding: 13px 18px;
  border-bottom: 1px solid var(--border);
}

.fs-title {
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.fs-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fs-route {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 22px;
  font-weight: 300;
  color: var(--navy);
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.fs-meta {
  font-size: 12px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.8;
}

.fs-total-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-top: 1px solid var(--border);
  padding-top: 14px;
  margin-top: 4px;
}

.fs-total-label {
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.fs-total-amount {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 26px;
  font-weight: 300;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1;
}

/* Passenger review card (payment page) */
.pax-review-card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 14px;
}

.pax-review-header {
  padding: 13px 20px;
  border-bottom: 1px solid var(--border);
}

.pax-review-title {
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.pax-review-body { padding: 0 20px; }

.pax-review-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 8px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
  align-items: baseline;
}

.pax-review-row:last-child { border-bottom: none; }

.pax-review-label {
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  padding-top: 2px;
}

.pax-review-value {
  font-weight: 300;
  color: var(--navy);
  line-height: 1.6;
}

/* Payment card */
.payment-card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 14px;
}

.payment-card-header {
  padding: 13px 20px;
  border-bottom: 1px solid var(--border);
}

.payment-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mock-notice {
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: var(--radius);
  padding: 13px 16px;
  font-size: 12px;
  font-weight: 300;
  color: #92400e;
  line-height: 1.6;
}

.payment-methods-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}

.payment-chip {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 4px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 300;
  color: var(--muted);
  padding: 5px 10px;
  letter-spacing: 0.04em;
}

.btn-confirm-booking {
  background: var(--navy);
  border: none;
  border-radius: var(--radius);
  color: var(--accent);
  cursor: pointer;
  font-family: inherit;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.06em;
  padding: 14px 28px;
  transition: opacity var(--ease);
  width: 100%;
  margin-top: 4px;
}

.btn-confirm-booking:hover    { opacity: 0.88; }
.btn-confirm-booking:disabled { opacity: 0.5; cursor: not-allowed; }

/* Booking confirmation */
.confirm-card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  margin-top: 32px;
}

.confirm-hero {
  background: var(--navy);
  padding: 44px 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.confirm-checkmark {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1.3px solid rgba(200,166,107,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.confirm-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 34px;
  font-weight: 300;
  color: var(--paper);
  letter-spacing: -0.01em;
  line-height: 1.1;
}

.confirm-subtitle {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  max-width: 380px;
}

.confirm-ref-block {
  padding: 24px 32px;
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  gap: 16px;
}

.confirm-ref-label {
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}

.confirm-ref {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 32px;
  font-weight: 300;
  color: var(--navy);
  letter-spacing: 0.05em;
  line-height: 1;
}

.confirm-amount {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 28px;
  font-weight: 300;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1;
}

.confirm-rows {
  padding: 20px 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.confirm-row {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 8px;
  font-size: 13px;
}

.confirm-label {
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--muted);
  padding-top: 2px;
}

.confirm-value {
  font-weight: 300;
  color: var(--navy);
}

.confirm-ctas {
  padding: 20px 32px;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

/* Mobile: account pages */
@media (max-width: 600px) {
  .booking-flow-inner {
    grid-template-columns: 1fr;
  }
  .booking-sidebar {
    position: static;
    order: -1;
  }
  .pax-field-row,
  .pax-field-row.three { grid-template-columns: 1fr; }
  .confirm-ref-block {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .confirm-rows  { padding: 16px 20px; }
  .confirm-hero  { padding: 32px 20px; }
  .confirm-ref-block { padding: 20px; }
  .confirm-ctas  { padding: 16px 20px; }
  .confirm-ref   { font-size: 24px; }
  .confirm-title { font-size: 26px; }
}

/* Mobile: account pages */
@media (max-width: 600px) {
  .account-page-wrap  { padding: 0 16px 48px; }
  .account-page-title { font-size: 26px; }

  .booking-card {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .bk-right {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--border);
    padding-top: 12px;
  }

  .bkd-top {
    grid-template-columns: 1fr;
  }
  .bkd-right {
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
  }

  .profile-form-row      { grid-template-columns: 1fr; }
  .add-traveller-form-row { grid-template-columns: 1fr; }

  .user-menu-name { display: none; }
}

/* =========================================================
   Phase 8 — Visa & Hold pages — shared service page layout
   ========================================================= */

/* ── Service hero ──────────────────────────────────────── */
.service-hero {
  background: var(--navy);
  padding: 56px 24px 52px;
}
.service-hero-inner {
  max-width: 720px;
  margin: 0 auto;
}
.service-hero-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 14px;
}
.service-hero-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 52px;
  font-weight: 300;
  line-height: 1.1;
  color: var(--paper);
  margin: 0 0 14px;
}
.service-hero-body {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(255,255,255,0.65);
  margin: 0 0 32px;
  max-width: 480px;
}

/* ── Trust bar (inside hero) ───────────────────────────── */
.trust-bar {
  display: flex;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 6px;
  overflow: hidden;
  max-width: 420px;
}
.trust-stat {
  flex: 1;
  padding: 14px 18px;
  border-right: 1px solid rgba(255,255,255,0.12);
}
.trust-stat:last-child { border-right: none; }
.trust-stat-value {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 22px;
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 4px;
}
.trust-stat-label {
  font-size: 11px;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.02em;
}

/* ── Service sections ──────────────────────────────────── */
.service-section {
  background: var(--cream);
  padding: 40px 24px;
}
.service-section + .service-section { padding-top: 0; }
.service-inner {
  max-width: 900px;
  margin: 0 auto;
}
.service-section-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 16px;
}

/* ── Visa type cards ───────────────────────────────────── */
.visa-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.visa-card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.visa-card:hover {
  border-color: var(--navy);
  box-shadow: 0 2px 12px rgba(26,58,92,0.08);
}
.visa-card-flag {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  margin-bottom: 4px;
}
.visa-card-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 19px;
  font-weight: 300;
  color: var(--navy);
}
.visa-card-price {
  font-size: 13px;
  font-weight: 400;
  color: var(--text);
}
.visa-card-time {
  font-size: 12px;
  font-weight: 300;
  color: var(--muted);
}
.visa-card-btn {
  margin-top: 10px;
  background: var(--navy);
  border: none;
  border-radius: 3px;
  color: var(--paper);
  font-family: 'Inter Tight', sans-serif;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.04em;
  padding: 9px 14px;
  cursor: pointer;
  align-self: flex-start;
  transition: opacity 0.12s;
}
.visa-card-btn:hover { opacity: 0.85; }

/* ── Enquiry card ──────────────────────────────────────── */
.enquiry-card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
}
.enquiry-card-header {
  background: var(--navy);
  color: var(--paper);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 18px;
  font-weight: 300;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.enquiry-close-btn {
  background: none;
  border: none;
  color: rgba(255,255,255,0.55);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  padding: 0 2px;
}
.enquiry-close-btn:hover { color: var(--paper); }
.enquiry-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* ── Hold upgrade chips ────────────────────────────────── */
.hold-upgrade-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.hold-upgrade-label {
  font-size: 12px;
  font-weight: 300;
  color: var(--muted);
  white-space: nowrap;
}
.hold-upgrade-chip {
  background: none;
  border: 1px solid var(--border);
  border-radius: 3px;
  color: var(--muted);
  font-family: 'Inter Tight', sans-serif;
  font-size: 12px;
  font-weight: 300;
  padding: 6px 12px;
  cursor: pointer;
  transition: border-color 0.12s, color 0.12s, background 0.12s;
}
.hold-upgrade-chip:hover {
  border-color: var(--navy);
  color: var(--navy);
}
.hold-upgrade-chip.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--paper);
}

/* ── Enquiry success card ──────────────────────────────── */
.enquiry-success-card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 52px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.enquiry-success-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1.5px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 20px;
}
.enquiry-success-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 30px;
  font-weight: 300;
  color: var(--navy);
  margin-bottom: 8px;
}
.enquiry-success-body {
  font-size: 15px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.6;
}

/* ── Mobile ────────────────────────────────────────────── */
@media (max-width: 700px) {
  .service-hero-title { font-size: 38px; }
  .visa-cards-grid    { grid-template-columns: 1fr 1fr; }
  .trust-bar          { max-width: 100%; }
}
@media (max-width: 440px) {
  .service-hero-title { font-size: 32px; }
  .visa-cards-grid    { grid-template-columns: 1fr; }
}

/* ================================================================
   Phase 9 — New components
   ================================================================ */

/* ── Deal banner ─────────────────────────────────────────── */
.deal-banner {
  background: #1a3a5c;
  padding: 10px 16px;
  text-align: center;
}
.deal-banner-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}
.deal-banner-text {
  color: #c8a66b;
  font-family: 'Inter Tight', sans-serif;
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.03em;
  transition: opacity 0.25s ease;
}
.deal-banner-cta {
  background: none;
  border: 1px solid #c8a66b;
  color: #c8a66b;
  font-family: 'Inter Tight', sans-serif;
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 2px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s, color 0.15s;
}
.deal-banner-cta:hover { background: #c8a66b; color: #1a3a5c; }

/* ── Nav More dropdown ───────────────────────────────────── */
.nav-more-wrap {
  position: relative;
}
.nav-more-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  font-family: 'Inter Tight', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: #1a3a5c;
  cursor: pointer;
  padding: 4px 0;
  letter-spacing: 0.01em;
}
.nav-more-btn:hover { color: #c8a66b; }
.nav-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 4px;
  box-shadow: 0 8px 24px rgba(26,58,92,0.10);
  min-width: 160px;
  z-index: 200;
  padding: 6px 0;
}
.nav-more-wrap.open .nav-dropdown { display: block; }
.nav-dropdown-item {
  display: block;
  padding: 9px 18px;
  font-family: 'Inter Tight', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: #1a3a5c;
  text-decoration: none;
  letter-spacing: 0.01em;
}
.nav-dropdown-item:hover { background: #fbfaf7; color: #c8a66b; }

/* ── Trust icons bar ─────────────────────────────────────── */
.trust-icons-bar {
  background: #fff;
  border-bottom: 1px solid #f3f4f6;
  padding: 20px 24px;
}
.trust-icons-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  max-width: 900px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.trust-icon-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #1a3a5c;
}
.trust-icon-label {
  font-family: 'Inter Tight', sans-serif;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: #4b5563;
}

/* ── Section headings ────────────────────────────────────── */
.section-heading {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 32px;
  font-weight: 300;
  color: #1a3a5c;
  margin: 0 0 28px;
}

/* ── Destinations grid ───────────────────────────────────── */
.destinations-section,
.deals-section,
.products-section,
.why-section {
  padding: 56px 24px;
}
.destinations-inner,
.deals-inner,
.products-inner,
.why-inner {
  max-width: 1060px;
  margin: 0 auto;
}
.destinations-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.dest-card {
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  background: #e5e7eb;
  height: 240px;
}
.dest-card:hover .dest-card-img { transform: scale(1.05); }
.dest-card-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.4s ease;
}
.dest-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(26,58,92,0) 35%, rgba(26,58,92,0.78) 100%);
}
.dest-card-overlay {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 16px 18px;
  z-index: 1;
  color: #fff;
}
.dest-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 22px;
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.01em;
}
.dest-price {
  font-family: 'Inter Tight', sans-serif;
  font-size: 12px;
  font-weight: 300;
  color: #c8a66b;
  letter-spacing: 0.04em;
  margin-top: 2px;
}
.dest-search-btn {
  margin-top: 10px;
  padding: 7px 16px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.5);
  color: #fff;
  font-family: 'Inter Tight', sans-serif;
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 3px;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
}
.dest-search-btn:hover { background: #c8a66b; border-color: #c8a66b; }
.dest-card-info { display: none; }
.dest-sub { display: none; }

/* ── Deals grid (homepage) ───────────────────────────────── */
.deals-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.deal-card {
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e5e7eb;
}
.deal-card-img {
  height: 140px;
  background: #e5e7eb;
  background-size: cover;
  background-position: center;
  position: relative;
}
.deal-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #c8a66b;
  color: #fff;
  font-family: 'Inter Tight', sans-serif;
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 2px;
}
.deal-card-body {
  padding: 14px;
}
.deal-dest {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 18px;
  font-weight: 300;
  color: #1a3a5c;
  margin-bottom: 6px;
}
.deal-price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 6px;
}
.deal-was {
  font-family: 'Inter Tight', sans-serif;
  font-size: 12px;
  font-weight: 300;
  color: #9ca3af;
  text-decoration: line-through;
}
.deal-now {
  font-family: 'Inter Tight', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #c8a66b;
}
.deal-countdown {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 300;
  color: #6b7280;
  margin-bottom: 10px;
}
.deal-book-btn {
  width: 100%;
  padding: 8px;
  background: #1a3a5c;
  color: #fff;
  font-family: 'Inter Tight', sans-serif;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.05em;
  border: none;
  border-radius: 3px;
  cursor: pointer;
}
.deal-book-btn:hover { background: #c8a66b; }

/* ── Products grid ───────────────────────────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.product-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  padding: 28px 24px;
  cursor: pointer;
  transition: border-color 0.15s, box-shadow 0.15s;
  text-align: center;
}
.product-card:hover {
  border-color: #c8a66b;
  box-shadow: 0 4px 16px rgba(200,166,107,0.12);
}
.product-card-icon { color: #1a3a5c; margin-bottom: 14px; }
.product-card-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 20px;
  font-weight: 300;
  color: #1a3a5c;
  margin-bottom: 6px;
}
.product-card-sub {
  font-family: 'Inter Tight', sans-serif;
  font-size: 12px;
  font-weight: 300;
  color: #9ca3af;
}
.product-card-link {
  display: inline-block;
  margin-top: 12px;
  font-family: 'Inter Tight', sans-serif;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: #c8a66b;
  text-decoration: none;
}
.product-card-link:hover { color: #1a3a5c; }

/* ── Why section ─────────────────────────────────────────── */
.why-section { background: #fbfaf7; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.why-col { text-align: center; }
.why-col-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 20px;
  font-weight: 300;
  color: #1a3a5c;
  margin: 16px 0 10px;
}
.why-col-body {
  font-family: 'Inter Tight', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: #6b7280;
  line-height: 1.65;
}

/* ── How-it-works steps ──────────────────────────────────── */
.how-step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #c8a66b;
  color: #c8a66b;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 18px;
  font-weight: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}

/* ── FAQ ─────────────────────────────────────────────────── */
.faq-item {
  border-bottom: 1px solid #e5e7eb;
  padding: 20px 0;
}
.faq-q {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 18px;
  font-weight: 300;
  color: #1a3a5c;
  margin-bottom: 8px;
}
.faq-a {
  font-family: 'Inter Tight', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: #6b7280;
  line-height: 1.65;
}

/* ── Hold tier cards ─────────────────────────────────────── */
.hold-tiers-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  max-width: 1060px;
  margin: 0 auto;
}
.hold-tier-card {
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  padding: 20px 16px;
  cursor: pointer;
  position: relative;
  background: #fff;
  transition: border-color 0.15s, box-shadow 0.15s;
  text-align: center;
}
.hold-tier-card:hover,
.hold-tier-card.selected {
  border-color: #1a3a5c;
  box-shadow: 0 4px 16px rgba(26,58,92,0.10);
}
.hold-tier-card.recommended {
  border-color: #c8a66b;
}
.hold-tier-card.recommended.selected,
.hold-tier-card.recommended:hover {
  border-color: #c8a66b;
  box-shadow: 0 4px 16px rgba(200,166,107,0.16);
}
.hold-tier-recommended-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: #c8a66b;
  color: #fff;
  font-family: 'Inter Tight', sans-serif;
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 2px 10px;
  border-radius: 10px;
  white-space: nowrap;
}
.hold-tier-duration {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 22px;
  font-weight: 300;
  color: #1a3a5c;
  margin-bottom: 6px;
}
.hold-tier-price {
  font-family: 'Inter Tight', sans-serif;
  font-size: 20px;
  font-weight: 300;
  color: #c8a66b;
  margin-bottom: 8px;
}
.hold-tier-label {
  font-family: 'Inter Tight', sans-serif;
  font-size: 11px;
  font-weight: 300;
  color: #9ca3af;
  line-height: 1.5;
}
.hold-benefits-section { background: #fbfaf7; }
.hold-how-section { background: #fff; }
.hold-faq-section { background: #fbfaf7; }

.hold-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 36px;
  max-width: 860px;
}
.hold-check-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.hold-check-icon { flex-shrink: 0; margin-top: 2px; }
.hold-check-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 17px;
  font-weight: 400;
  color: #1a3a5c;
  margin-bottom: 4px;
}
.hold-check-body {
  font-family: 'Inter Tight', sans-serif;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.55;
  color: #6b7280;
  margin: 0;
}
@media (max-width: 720px) {
  .hold-checklist { grid-template-columns: 1fr; }
}

/* ── Service category cards (cars, chauffeur) ────────────── */
.service-cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 860px;
  margin: 0 auto;
}
.service-cat-card {
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  padding: 22px 18px;
  cursor: pointer;
  background: #fff;
  text-align: center;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.service-cat-card:hover,
.service-cat-card.selected {
  border-color: #1a3a5c;
  box-shadow: 0 4px 16px rgba(26,58,92,0.10);
}
.scc-icon { color: #1a3a5c; margin-bottom: 12px; }
.scc-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 20px;
  font-weight: 300;
  color: #1a3a5c;
  margin-bottom: 4px;
}
.scc-price {
  font-family: 'Inter Tight', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: #c8a66b;
  margin-bottom: 10px;
}
.scc-features {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  text-align: left;
}
.scc-features li {
  font-family: 'Inter Tight', sans-serif;
  font-size: 12px;
  font-weight: 300;
  color: #6b7280;
  padding: 3px 0;
}
.scc-btn {
  width: 100%;
  padding: 8px;
  background: #1a3a5c;
  color: #fff;
  font-family: 'Inter Tight', sans-serif;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.05em;
  border: none;
  border-radius: 3px;
  cursor: pointer;
}
.scc-btn:hover { background: #c8a66b; }

/* ── eSIM plan cards ─────────────────────────────────────── */
.esim-plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 780px;
  margin: 0 auto;
}
.esim-plan-card {
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  padding: 28px 20px;
  cursor: pointer;
  background: #fff;
  text-align: center;
  position: relative;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.esim-plan-card:hover,
.esim-plan-card.selected { border-color: #1a3a5c; box-shadow: 0 4px 16px rgba(26,58,92,0.10); }
.esim-plan-card.recommended { border-color: #c8a66b; }
.plan-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: #c8a66b;
  color: #fff;
  font-family: 'Inter Tight', sans-serif;
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 2px 10px;
  border-radius: 10px;
  white-space: nowrap;
}
.esim-plan-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 22px;
  font-weight: 300;
  color: #1a3a5c;
  margin-bottom: 8px;
}
.esim-plan-price {
  font-family: 'Inter Tight', sans-serif;
  font-size: 26px;
  font-weight: 300;
  color: #c8a66b;
  margin-bottom: 6px;
}
.esim-plan-data {
  font-family: 'Inter Tight', sans-serif;
  font-size: 12px;
  font-weight: 300;
  color: #6b7280;
  margin-bottom: 16px;
}
.esim-plan-btn {
  width: 100%;
  padding: 9px;
  background: #1a3a5c;
  color: #fff;
  font-family: 'Inter Tight', sans-serif;
  font-size: 12px;
  font-weight: 300;
  border: none;
  border-radius: 3px;
  cursor: pointer;
}
.esim-plan-btn:hover { background: #c8a66b; }

/* ── Package tier cards ──────────────────────────────────── */
.package-tiers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 860px;
  margin: 0 auto;
}
.package-tier-card {
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  padding: 28px 22px;
  cursor: pointer;
  background: #fff;
  text-align: center;
  position: relative;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.package-tier-card:hover,
.package-tier-card.selected { border-color: #1a3a5c; box-shadow: 0 4px 16px rgba(26,58,92,0.10); }
.package-tier-card.recommended { border-color: #c8a66b; }
.pkg-tier-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 24px;
  font-weight: 300;
  color: #1a3a5c;
  margin-bottom: 6px;
}
.pkg-tier-tag {
  font-family: 'Inter Tight', sans-serif;
  font-size: 11px;
  font-weight: 300;
  color: #9ca3af;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.pkg-tier-features {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  text-align: left;
}
.pkg-tier-features li {
  font-family: 'Inter Tight', sans-serif;
  font-size: 12px;
  font-weight: 300;
  color: #6b7280;
  padding: 4px 0;
  border-bottom: 1px solid #f3f4f6;
}
.pkg-tier-btn {
  width: 100%;
  padding: 10px;
  background: #1a3a5c;
  color: #fff;
  font-family: 'Inter Tight', sans-serif;
  font-size: 12px;
  font-weight: 300;
  border: none;
  border-radius: 3px;
  cursor: pointer;
}
.pkg-tier-btn:hover { background: #c8a66b; }

/* ── Deals page grid ─────────────────────────────────────── */
.deals-page-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  max-width: 1060px;
  margin: 0 auto;
}

/* ── Filter bar (flight results) ─────────────────────────── */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 12px 0 20px;
  align-items: center;
}
.filter-group {
  display: flex;
  align-items: center;
  gap: 6px;
}
.filter-label {
  font-family: 'Inter Tight', sans-serif;
  font-size: 11px;
  font-weight: 300;
  color: #9ca3af;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}
.filter-btn {
  padding: 5px 12px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 2px;
  font-family: 'Inter Tight', sans-serif;
  font-size: 12px;
  font-weight: 300;
  color: #4b5563;
  cursor: pointer;
  white-space: nowrap;
}
.filter-btn:hover { border-color: #1a3a5c; color: #1a3a5c; }
.filter-btn.active { background: #1a3a5c; border-color: #1a3a5c; color: #fff; }

/* ── Flight card badges ──────────────────────────────────── */
.fc-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 6px;
}
.fc-badge {
  font-family: 'Inter Tight', sans-serif;
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 2px;
}
.fc-badge-best { background: #ecfdf5; color: #059669; border: 1px solid #a7f3d0; }
.fc-badge-fast { background: #eff6ff; color: #2563eb; border: 1px solid #bfdbfe; }
.fc-badge-refund { background: #f0fdf4; color: #16a34a; border: 1px solid #bbf7d0; }
.fc-bag-icon { display: inline-block; vertical-align: middle; }
.fc-bag-extra {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: #ef4444;
}

/* ── Hotel card amenities ────────────────────────────────── */
.hc-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}
.hc-amenity {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: 'Inter Tight', sans-serif;
  font-size: 11px;
  font-weight: 300;
  color: #6b7280;
}
.hc-amenity--na {
  color: #d1d5db;
}
.hc-total {
  font-family: 'Inter Tight', sans-serif;
  font-size: 11px;
  font-weight: 300;
  color: #9ca3af;
  margin-top: 4px;
}

/* ── Cross-sell section ──────────────────────────────────── */
.cross-sell-section {
  padding: 48px 24px;
  background: #fbfaf7;
  border-top: 1px solid #e5e7eb;
}
.cross-sell-inner {
  max-width: 860px;
  margin: 0 auto;
}
.cross-sell-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 24px;
  font-weight: 300;
  color: #1a3a5c;
  margin: 0 0 20px;
}
.cross-sell-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.cross-sell-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  padding: 20px 18px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  cursor: pointer;
  text-align: left;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.cross-sell-card:hover {
  border-color: #c8a66b;
  box-shadow: 0 4px 12px rgba(200,166,107,0.12);
}
.csc-icon { color: #1a3a5c; }
.csc-label {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 18px;
  font-weight: 300;
  color: #1a3a5c;
}
.csc-sub {
  font-family: 'Inter Tight', sans-serif;
  font-size: 12px;
  font-weight: 300;
  color: #9ca3af;
}

/* ── Mobile responsive — Phase 9 ────────────────────────── */
@media (max-width: 900px) {
  .hold-tiers-grid { grid-template-columns: repeat(3, 1fr); }
  .deals-grid { grid-template-columns: repeat(2, 1fr); }
  .deals-page-grid { grid-template-columns: repeat(2, 1fr); }
  .destinations-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; gap: 28px; }
  .cross-sell-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .hold-tiers-grid { grid-template-columns: 1fr 1fr; }
  .service-cat-grid { grid-template-columns: 1fr 1fr; }
  .esim-plans-grid { grid-template-columns: 1fr; }
  .package-tiers-grid { grid-template-columns: 1fr; }
  .deals-grid { grid-template-columns: 1fr 1fr; }
  .deals-page-grid { grid-template-columns: 1fr 1fr; }
  .destinations-grid { grid-template-columns: 1fr 1fr; }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .cross-sell-grid { grid-template-columns: 1fr; }
  .trust-icons-inner { gap: 24px; }
  .deal-banner-inner { flex-direction: column; gap: 8px; }
}
@media (max-width: 420px) {
  .hold-tiers-grid { grid-template-columns: 1fr; }
  .service-cat-grid { grid-template-columns: 1fr; }
  .deals-grid { grid-template-columns: 1fr; }
  .deals-page-grid { grid-template-columns: 1fr; }
  .destinations-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
}

/* ======================================================
   Floating chat widget
====================================================== */
.tcs-chat-fab {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #1a3a5c;
  color: #fff;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 24px rgba(26,58,92,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  transition: transform 0.15s ease;
}
.tcs-chat-fab:hover { transform: translateY(-2px); background: #13304d; }

.tcs-chat-panel {
  position: fixed;
  right: 24px;
  bottom: 92px;
  width: 340px;
  height: 480px;
  max-height: calc(100vh - 120px);
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.18);
  display: none;
  flex-direction: column;
  overflow: hidden;
  z-index: 1000;
  font-family: 'Inter Tight', sans-serif;
}
.tcs-chat-panel.open { display: flex; }

.tcs-chat-header {
  background: #1a3a5c;
  color: #fff;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.tcs-chat-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.02em;
}
.tcs-chat-close {
  background: transparent;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
}
.tcs-chat-close:hover { color: #c8a66b; }

.tcs-chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #fbfaf7;
}
.tcs-chat-bubble {
  max-width: 80%;
  padding: 9px 13px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.5;
  white-space: pre-wrap;
  word-wrap: break-word;
}
.tcs-chat-bubble.user {
  background: #c8a66b;
  color: #fff;
  align-self: flex-end;
  border-bottom-right-radius: 3px;
}
.tcs-chat-bubble.assistant {
  background: #f3f4f6;
  color: #1a3a5c;
  align-self: flex-start;
  border-bottom-left-radius: 3px;
}
.tcs-chat-bubble.typing {
  color: #9ca3af;
  font-style: italic;
}

.tcs-chat-input-row {
  display: flex;
  padding: 10px 12px;
  gap: 8px;
  border-top: 1px solid #e5e7eb;
  background: #fff;
}
.tcs-chat-input {
  flex: 1;
  padding: 9px 12px;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  font-family: 'Inter Tight', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: #1a3a5c;
  outline: none;
}
.tcs-chat-input:focus { border-color: #c8a66b; }
.tcs-chat-send {
  width: 38px;
  height: 38px;
  background: #1a3a5c;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tcs-chat-send:hover { background: #c8a66b; }
.tcs-chat-send:disabled { opacity: 0.5; cursor: not-allowed; }

.tcs-chat-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px;
  background: #1a3a5c;
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.03em;
}
.tcs-chat-wa:hover { background: #c8a66b; }

@media (max-width: 420px) {
  .tcs-chat-panel {
    right: 12px; left: 12px;
    width: auto;
    height: 70vh;
    bottom: 84px;
  }
  .tcs-chat-fab { right: 16px; bottom: 16px; }
}

/* ======================================================
   Featured deal banner (between hero and search)
====================================================== */
.featured-deal {
  background: linear-gradient(135deg, #1a3a5c 0%, #13304d 100%);
  color: #fff;
  padding: 22px 24px;
  border-top: 1px solid rgba(200,166,107,0.4);
  border-bottom: 1px solid rgba(200,166,107,0.4);
}
.featured-deal-inner {
  max-width: 1060px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}
.featured-deal-eyebrow {
  font-family: 'Inter Tight', sans-serif;
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #c8a66b;
  margin-bottom: 4px;
}
.featured-deal-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 24px;
  font-weight: 300;
  margin: 0 0 4px;
  color: #fff;
}
.featured-deal-body {
  font-family: 'Inter Tight', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: rgba(251,250,247,0.8);
  margin: 0;
}
.featured-deal-cta-wrap {
  display: flex;
  align-items: center;
  gap: 18px;
}
.featured-deal-price {
  font-family: 'Inter Tight', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: #c8a66b;
  letter-spacing: 0.04em;
}
.featured-deal-cta {
  display: inline-block;
  padding: 12px 24px;
  background: #c8a66b;
  color: #1a3a5c;
  font-family: 'Inter Tight', sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 3px;
  text-decoration: none;
  transition: background 0.15s;
}
.featured-deal-cta:hover { background: #fff; }
@media (max-width: 640px) {
  .featured-deal-inner { flex-direction: column; align-items: flex-start; }
  .featured-deal-title { font-size: 20px; }
}

/* ======================================================
   Nav dropdown — descriptive items
====================================================== */
.nav-dropdown-item {
  display: flex !important;
  flex-direction: column;
  padding: 12px 18px !important;
  gap: 2px;
}
.nav-dropdown-label {
  font-family: 'Inter Tight', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #1a3a5c;
  letter-spacing: 0.01em;
}
.nav-dropdown-sub {
  font-family: 'Inter Tight', sans-serif;
  font-size: 11px;
  font-weight: 300;
  color: #9ca3af;
  letter-spacing: 0.02em;
}
.nav-dropdown-item:hover .nav-dropdown-label { color: #c8a66b; }

/* ======================================================
   Products grid — 12-product layout with prices + CTAs
====================================================== */
.products-sub {
  font-family: 'Inter Tight', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: #6b7280;
  margin: -20px 0 28px;
  letter-spacing: 0.01em;
}
.products-grid-12 {
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.products-grid-12 .product-card {
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
}
.product-card-price {
  font-family: 'Inter Tight', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #c8a66b;
  letter-spacing: 0.04em;
  margin-top: 2px;
}
.product-card-cta {
  display: inline-block;
  margin-top: 12px;
  padding: 8px 16px;
  background: #1a3a5c;
  color: #fff;
  font-family: 'Inter Tight', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 3px;
  text-decoration: none;
  transition: background 0.15s;
}
.product-card-cta:hover { background: #c8a66b; }

@media (max-width: 960px) {
  .products-grid-12 { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 720px) {
  .products-grid-12 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 420px) {
  .products-grid-12 { grid-template-columns: 1fr; }
}

/* ======================================================
   Trip add-on strip (flight/hotel results pages)
====================================================== */
.trip-addon-strip {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  padding: 18px 20px;
  margin: 20px 0;
}
.trip-addon-title {
  font-family: 'Inter Tight', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #9ca3af;
  margin-bottom: 12px;
}
.trip-addon-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.trip-addon-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid #e5e7eb;
  border-radius: 4px;
  color: #1a3a5c;
  text-decoration: none;
  transition: border-color 0.15s, background 0.15s;
}
.trip-addon-card:hover {
  border-color: #c8a66b;
  background: #fbfaf7;
}
.trip-addon-card svg { flex-shrink: 0; color: #1a3a5c; }
.tac-label {
  font-family: 'Inter Tight', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #1a3a5c;
  line-height: 1.2;
}
.tac-sub {
  font-family: 'Inter Tight', sans-serif;
  font-size: 11px;
  font-weight: 300;
  color: #9ca3af;
  margin-top: 2px;
}
@media (max-width: 640px) {
  .trip-addon-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ======================================================
   Product help ? icon (appears on every product card and addon)
====================================================== */
.product-card,
.trip-addon-card,
.hold-tier-card,
.service-cat-card,
.esim-plan-card,
.visa-card,
.package-tier-card,
.dest-card,
.deal-card {
  position: relative;
}

/* Shared icon — works as <button> inside product-card and as <span role="button"> inside trip-addon-card anchors */
.product-help {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: transparent;
  border: none;
  color: #1a3a5c;
  cursor: pointer;
  border-radius: 50%;
  z-index: 2;
  line-height: 0;
  transition: color 0.15s, background 0.15s;
}
.product-help:hover,
.product-help:focus-visible {
  color: #c8a66b;
  background: #fbfaf7;
  outline: none;
}
.product-help svg { width: 18px; height: 18px; pointer-events: none; }

/* Slightly smaller, tighter on the compact addon strip */
.trip-addon-card .product-help {
  top: 6px;
  right: 6px;
  width: 20px;
  height: 20px;
}
.trip-addon-card .product-help svg { width: 14px; height: 14px; }

/* On image-backed cards (deal/cruise/dest) give the icon a solid
   white pill so it stays legible over photography. */
.deal-card .product-help,
.dest-card .product-help,
.cruise-card .product-help {
  background: rgba(255,255,255,0.92);
  z-index: 3;
}
.deal-card .product-help:hover,
.dest-card .product-help:hover,
.cruise-card .product-help:hover {
  background: #fff;
}

/* ======================================================
   Product tooltip — 280px floating card, JS-positioned
====================================================== */
.product-tooltip {
  position: fixed;
  width: 280px;
  max-width: calc(100vw - 20px);
  background: #ffffff;
  border: 1px solid #1a3a5c;
  border-radius: 6px;
  box-shadow: 0 12px 32px rgba(26,58,92,0.18);
  padding: 16px 18px;
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.12s ease, visibility 0.12s;
  font-family: 'Inter Tight', sans-serif;
}
.product-tooltip.open {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}
.product-tooltip-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 18px;
  font-weight: 400;
  color: #1a3a5c;
  letter-spacing: 0.01em;
  margin-bottom: 8px;
  padding-right: 22px; /* room for close button */
}
.product-tooltip-body {
  font-size: 13px;
  font-weight: 300;
  color: #374151;
  line-height: 1.55;
}
.product-tooltip-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 22px;
  height: 22px;
  background: transparent;
  border: none;
  color: #9ca3af;
  cursor: pointer;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.product-tooltip-close:hover { color: #1a3a5c; background: #fbfaf7; }

/* Arrow — positioned horizontally by JS, flipped by data-placement */
.product-tooltip-arrow {
  position: absolute;
  width: 12px;
  height: 12px;
  background: #fff;
  border: 1px solid #1a3a5c;
  transform: rotate(45deg);
  pointer-events: none;
}
.product-tooltip[data-placement="above"] .product-tooltip-arrow {
  bottom: -7px;
  border-top: 0;
  border-left: 0;
}
.product-tooltip[data-placement="below"] .product-tooltip-arrow {
  top: -7px;
  border-bottom: 0;
  border-right: 0;
}

@media (max-width: 420px) {
  .product-tooltip { width: calc(100vw - 20px); }
}
