/* ═══════════════════════════════════════════════════════════════
   ONLINE ONWARD TICKET — DESIGN SYSTEM
   Premium booking platform for flight onward tickets
   ═══════════════════════════════════════════════════════════════ */

/* ── CUSTOM PROPERTIES ── */
:root {
  /* ── Colors ── */
  --bg-primary:     #0c1220;
  --bg-secondary:   #111a2e;
  --bg-card:        #151f36;
  --bg-card-hover:  #1a2640;
  --bg-input:       #0e1628;
  --bg-surface:     #182240;
  --bg-gradient:    linear-gradient(135deg, #0c1220 0%, #111a2e 50%, #0f1728 100%);

  --accent:         #3b82f6;
  --accent-hover:   #2563eb;
  --accent-light:   #60a5fa;
  --accent-glow:    rgba(59, 130, 246, 0.15);
  --accent-border:  rgba(59, 130, 246, 0.25);
  --accent-subtle:  rgba(59, 130, 246, 0.08);

  --success:        #22c55e;
  --success-bg:     rgba(34, 197, 94, 0.08);
  --success-border: rgba(34, 197, 94, 0.2);

  --warning:        #f59e0b;
  --warning-bg:     rgba(245, 158, 11, 0.08);
  --warning-border: rgba(245, 158, 11, 0.2);

  --error:          #ef4444;
  --error-bg:       rgba(239, 68, 68, 0.08);
  --error-border:   rgba(239, 68, 68, 0.2);

  --text-primary:   #f1f5f9;
  --text-secondary: #94a3b8;
  --text-muted:     #64748b;
  --text-dim:       #475569;

  --border:         rgba(148, 163, 184, 0.1);
  --border-hover:   rgba(148, 163, 184, 0.18);
  --border-focus:   rgba(59, 130, 246, 0.5);

  /* ── Typography ── */
  --font-primary:   'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display:   'Plus Jakarta Sans', 'Inter', sans-serif;
  --font-mono:      'JetBrains Mono', 'Fira Code', monospace;

  --fs-xs:   0.75rem;
  --fs-sm:   0.8125rem;
  --fs-base: 0.9375rem;
  --fs-md:   1rem;
  --fs-lg:   1.125rem;
  --fs-xl:   1.25rem;
  --fs-2xl:  1.5rem;
  --fs-3xl:  1.875rem;
  --fs-4xl:  2.25rem;
  --fs-5xl:  3rem;
  --fs-6xl:  3.75rem;

  --fw-normal:  400;
  --fw-medium:  500;
  --fw-semi:    600;
  --fw-bold:    700;
  --fw-extra:   800;

  --lh-tight:   1.2;
  --lh-snug:    1.35;
  --lh-normal:  1.55;
  --lh-relaxed: 1.7;

  --ls-tight:   -0.025em;
  --ls-normal:  0;
  --ls-wide:    0.05em;
  --ls-wider:   0.08em;
  --ls-widest:  0.12em;

  /* ── Spacing ── */
  --sp-1:  0.25rem;
  --sp-2:  0.5rem;
  --sp-3:  0.75rem;
  --sp-4:  1rem;
  --sp-5:  1.25rem;
  --sp-6:  1.5rem;
  --sp-8:  2rem;
  --sp-10: 2.5rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5rem;
  --sp-24: 6rem;

  /* ── Radius ── */
  --r-sm:  6px;
  --r-md:  10px;
  --r-lg:  14px;
  --r-xl:  18px;
  --r-2xl: 24px;
  --r-full: 9999px;

  /* ── Shadows ── */
  --shadow-sm:    0 1px 2px rgba(0,0,0,0.3);
  --shadow-md:    0 4px 12px rgba(0,0,0,0.25);
  --shadow-lg:    0 8px 30px rgba(0,0,0,0.3);
  --shadow-xl:    0 16px 48px rgba(0,0,0,0.35);
  --shadow-glow:  0 0 20px rgba(59, 130, 246, 0.15);
  --shadow-accent: 0 8px 28px rgba(59, 130, 246, 0.3);

  /* ── Transitions ── */
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --t-fast:      150ms;
  --t-normal:    250ms;
  --t-slow:      400ms;

  /* ── Z-index ── */
  --z-dropdown:  100;
  --z-sticky:    200;
  --z-overlay:   300;
  --z-modal:     400;
  --z-toast:     500;
}

/* ── RESET & BASE ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body {
  font-family: var(--font-primary);
  font-size: var(--fs-base);
  font-weight: var(--fw-normal);
  line-height: var(--lh-normal);
  color: var(--text-primary);
  background: var(--bg-primary);
  min-height: 100vh;
  overflow-x: hidden;
}

a {
  color: var(--accent-light);
  text-decoration: none;
  transition: color var(--t-fast) var(--ease-out);
}
a:hover { color: var(--accent); }

img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: inherit; }
input, select, textarea { font-family: inherit; }

::selection {
  background: var(--accent);
  color: #fff;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--text-dim); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--text-muted); }

/* ══════════════════════════════════════
   LAYOUT
══════════════════════════════════════ */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--sp-5);
}
@media (min-width: 768px) { .container { padding: 0 var(--sp-8); } }
@media (min-width: 1024px) { .container { padding: 0 var(--sp-10); } }

/* ══════════════════════════════════════
   NAVIGATION
══════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-sticky);
  padding: var(--sp-4) 0;
  transition: all var(--t-normal) var(--ease-out);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(12, 18, 32, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--border);
  padding: var(--sp-3) 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--sp-5);
}
@media (min-width: 768px) { .nav-inner { padding: 0 var(--sp-8); } }

.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  text-decoration: none;
  margin-right: auto;
  flex-shrink: 0;
}
.nav-logo-icon {
  width: 36px;
  height: 36px;
  background: var(--accent);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--t-normal) var(--ease-spring);
}
.nav-logo:hover .nav-logo-icon { transform: scale(1.05); }
.nav-logo-icon svg { width: 18px; height: 18px; stroke: #fff; }
.nav-logo-text {
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  color: var(--text-primary);
  letter-spacing: var(--ls-tight);
}
.nav-logo-text span { color: var(--accent-light); }

.nav-links {
  display: none;
  align-items: center;
  gap: var(--sp-1);
  list-style: none;
}
@media (min-width: 768px) { .nav-links { display: flex; } }
.nav-links a {
  padding: var(--sp-2) var(--sp-3);
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--text-secondary);
  border-radius: var(--r-md);
  transition: all var(--t-fast) var(--ease-out);
}
.nav-links a:hover { color: var(--text-primary); background: var(--accent-subtle); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}
.nav-order-btn {
  display: none;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-2) var(--sp-3);
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--text-secondary);
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  text-decoration: none;
  transition: all var(--t-fast) var(--ease-out);
}
.nav-order-btn svg { width: 14px; height: 14px; stroke: currentColor; }
.nav-order-btn:hover { color: var(--text-primary); border-color: var(--border-hover); }
@media (min-width: 768px) { .nav-order-btn { display: flex; } }

.nav-cta {
  display: none;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-2) var(--sp-4);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semi);
  color: var(--bg-primary);
  background: var(--accent);
  border: none;
  border-radius: var(--r-md);
  text-decoration: none;
  transition: all var(--t-fast) var(--ease-out);
  -webkit-tap-highlight-color: transparent;
}
@media (min-width: 768px) { .nav-cta { display: inline-flex; } }
.nav-cta svg { width: 14px; height: 14px; stroke: currentColor; }
.nav-cta:hover { background: var(--accent-hover); box-shadow: var(--shadow-glow); transform: translateY(-1px); color: #fff; }
.nav-cta:active { transform: scale(0.97); }

/* Mobile menu button */
.nav-mobile-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  color: var(--text-secondary);
  transition: all var(--t-fast) var(--ease-out);
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.nav-mobile-btn svg { width: 20px; height: 20px; stroke: currentColor; transition: transform var(--t-normal) var(--ease-out); }
.nav-mobile-btn:hover { color: var(--text-primary); border-color: var(--border-hover); }
.nav-mobile-btn:active { transform: scale(0.92); }
@media (min-width: 768px) { .nav-mobile-btn { display: none; } }

/* Mobile nav panel */
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: calc(var(--z-sticky) + 10);
  background: rgba(12, 18, 32, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  padding: calc(70px + var(--sp-6)) var(--sp-6) var(--sp-8);
  transform: translateX(100%);
  transition: transform var(--t-slow) var(--ease-out);
  overflow-y: auto;
  visibility: hidden;
}
.mobile-nav.open {
  transform: translateX(0);
  visibility: visible;
}
.mobile-nav a {
  display: flex;
  align-items: center;
  padding: var(--sp-4) 0;
  font-size: var(--fs-xl);
  font-weight: var(--fw-semi);
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
  transition: color var(--t-fast) var(--ease-out), padding-left var(--t-normal) var(--ease-out);
  -webkit-tap-highlight-color: transparent;
}
.mobile-nav.open a {
  animation: mobileLinkIn 0.4s var(--ease-out) both;
}
.mobile-nav.open a:nth-child(2) { animation-delay: 0.05s; }
.mobile-nav.open a:nth-child(3) { animation-delay: 0.1s; }
.mobile-nav.open a:nth-child(4) { animation-delay: 0.15s; }
.mobile-nav.open a:nth-child(5) { animation-delay: 0.2s; }
@keyframes mobileLinkIn {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}
.mobile-nav a:hover, .mobile-nav a:active { color: var(--text-primary); padding-left: var(--sp-2); }
.mobile-nav .mobile-cta {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: var(--sp-4);
  font-size: var(--fs-base);
  font-weight: var(--fw-semi);
  color: var(--bg-primary);
  background: var(--accent);
  border-radius: var(--r-lg);
  border: none;
  -webkit-tap-highlight-color: transparent;
  transition: transform var(--t-fast) var(--ease-out), background var(--t-fast);
}
.mobile-nav .mobile-cta:active { transform: scale(0.97); }
.mobile-close {
  position: absolute;
  top: var(--sp-4);
  right: var(--sp-4);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  color: var(--text-secondary);
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  transition: transform var(--t-fast) var(--ease-out);
}
.mobile-close:active { transform: scale(0.9); }
.mobile-close svg { width: 20px; height: 20px; stroke: currentColor; }

/* ══════════════════════════════════════
   STEP PROGRESS BAR
══════════════════════════════════════ */
.steps-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-sticky);
  background: rgba(12, 18, 32, 0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: var(--sp-3) var(--sp-5);
}
.steps-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: 500px;
  margin: 0 auto;
}
.step-indicator {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  flex-shrink: 0;
}
.step-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-sm);
  font-weight: var(--fw-bold);
  border: 2px solid var(--border);
  color: var(--text-muted);
  background: var(--bg-input);
  transition: all var(--t-normal) var(--ease-out);
}
.step-circle svg { width: 14px; height: 14px; stroke: currentColor; }
.step-indicator.done .step-circle {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.step-indicator.active .step-circle {
  border-color: var(--accent);
  color: var(--accent-light);
  background: var(--accent-glow);
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}
.step-label {
  font-size: var(--fs-xs);
  font-weight: var(--fw-semi);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: var(--ls-wide);
  display: none;
}
@media (min-width: 640px) { .step-label { display: block; } }
.step-indicator.active .step-label { color: var(--accent-light); }
.step-indicator.done .step-label { color: var(--text-secondary); }

.step-line {
  flex: 1;
  height: 2px;
  background: var(--border);
  margin: 0 var(--sp-2);
  max-width: 60px;
  transition: background var(--t-normal);
}
.step-line.done { background: var(--accent); }

/* ══════════════════════════════════════
   HERO SECTION
══════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(80px + var(--sp-10)) 0 var(--sp-10);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
  animation: heroOrbFloat 20s ease-in-out infinite;
}
.hero-bg::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.05) 0%, transparent 70%);
  animation: heroOrbFloat 25s ease-in-out infinite reverse;
}
@keyframes heroOrbFloat {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(30px, -30px); }
  66% { transform: translate(-20px, 20px); }
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(59, 130, 246, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59, 130, 246, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black 20%, transparent 70%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-10);
  align-items: center;
}
@media (min-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-16);
  }
}

.hero-content { max-width: 560px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-2) var(--sp-3);
  background: var(--accent-subtle);
  border: 1px solid var(--accent-border);
  border-radius: var(--r-full);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semi);
  color: var(--accent-light);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  margin-bottom: var(--sp-6);
  opacity: 0;
  transform: translateY(10px);
  animation: fadeUp 0.6s var(--ease-out) 0.2s forwards;
}
.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(var(--fs-3xl), 5vw, var(--fs-5xl));
  font-weight: var(--fw-extra);
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-tight);
  color: var(--text-primary);
  margin-bottom: var(--sp-5);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.6s var(--ease-out) 0.35s forwards;
}
.hero-title .accent { color: var(--accent-light); }

.hero-subtitle {
  font-size: var(--fs-lg);
  color: var(--text-secondary);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--sp-8);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.6s var(--ease-out) 0.5s forwards;
}

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  margin-bottom: var(--sp-8);
  opacity: 0;
  animation: fadeUp 0.6s var(--ease-out) 0.65s forwards;
}
.hero-feature {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-2) var(--sp-3);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  font-size: var(--fs-xs);
  font-weight: var(--fw-medium);
  color: var(--text-secondary);
}
.hero-feature svg { width: 14px; height: 14px; stroke: var(--accent-light); flex-shrink: 0; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
  opacity: 0;
  animation: fadeUp 0.6s var(--ease-out) 0.8s forwards;
}
.hero-stat-value {
  font-family: var(--font-display);
  font-size: var(--fs-2xl);
  font-weight: var(--fw-bold);
  color: var(--text-primary);
  letter-spacing: var(--ls-tight);
}
.hero-stat-label {
  font-size: var(--fs-xs);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: var(--ls-wide);
  margin-top: var(--sp-1);
}

/* ══════════════════════════════════════
   BOOKING CARD
══════════════════════════════════════ */
.booking-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-2xl);
  padding: var(--sp-6);
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.7s var(--ease-out) 0.5s forwards;
}
.booking-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

/* Trip type selector */
.trip-selector {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-2);
  margin-bottom: var(--sp-5);
}
.trip-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: var(--sp-3) var(--sp-4);
  background: var(--bg-input);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semi);
  color: var(--text-muted);
  transition: all var(--t-normal) var(--ease-out);
}
.trip-btn svg { width: 16px; height: 16px; stroke: currentColor; }
.trip-btn:hover {
  border-color: var(--border-hover);
  color: var(--text-secondary);
}
.trip-btn.active {
  background: var(--accent-glow);
  border-color: var(--accent-border);
  color: var(--accent-light);
}

/* Form panel */
.form-panel { position: relative; }

.panel-header {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  padding-bottom: var(--sp-3);
  margin-bottom: var(--sp-4);
  border-bottom: 1px solid var(--border);
}
.panel-header svg { width: 16px; height: 16px; stroke: var(--accent-light); flex-shrink: 0; }
.panel-header-title {
  font-size: var(--fs-sm);
  font-weight: var(--fw-semi);
  color: var(--text-secondary);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
}

/* Field groups */
.field-group {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

/* From/To swap row */
.route-row {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  position: relative;
}
@media (min-width: 480px) {
  .route-row {
    flex-direction: row;
    align-items: flex-start;
  }
}

.route-from, .route-to { flex: 1; min-width: 0; }

/* Currency toggle */
.currency-toggle {
  display: inline-flex;
  align-items: center;
  padding: var(--sp-1) var(--sp-3);
  margin-top: var(--sp-2);
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  font-size: 10px;
  font-weight: var(--fw-semi);
  color: var(--accent-light);
  cursor: pointer;
  transition: all var(--t-fast) var(--ease-out);
  text-transform: uppercase;
  letter-spacing: var(--ls-wide);
}
.currency-toggle:hover {
  background: var(--accent-glow);
  border-color: var(--accent-border);
}
.currency-toggle:active {
  transform: scale(0.95);
}

/* Field input wrapper */
.field-wrap {
  position: relative;
  background: var(--bg-input);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  transition: all var(--t-normal) var(--ease-out);
  overflow: visible;
}
.field-wrap:hover { border-color: var(--border-hover); }
.field-wrap:focus-within {
  border-color: var(--border-focus);
  box-shadow: 0 0 0 3px var(--accent-glow);
}
.field-wrap.has-value { border-color: var(--accent-border); }

.field-wrap-label {
  position: absolute;
  top: -8px;
  left: var(--sp-3);
  font-size: 10px;
  font-weight: var(--fw-semi);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: var(--ls-wider);
  background: var(--bg-card);
  padding: 0 var(--sp-1);
  z-index: 1;
}

.field-icon {
  position: absolute;
  left: var(--sp-3);
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: var(--text-dim);
  pointer-events: none;
  z-index: 1;
}
.field-icon svg { width: 100%; height: 100%; stroke: currentColor; }

.field-input {
  width: 100%;
  padding: var(--sp-4) var(--sp-3) var(--sp-3) calc(var(--sp-3) + 26px);
  background: transparent;
  border: none;
  font-size: var(--fs-base);
  font-weight: var(--fw-medium);
  color: var(--text-primary);
  outline: none;
}
.field-input::placeholder {
  color: var(--text-dim);
  font-weight: var(--fw-normal);
}

.field-airport-name {
  display: block;
  padding: 0 var(--sp-3) var(--sp-2) calc(var(--sp-3) + 26px);
  font-size: 11px;
  color: var(--text-dim);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: -4px;
}
.field-wrap.has-selection .field-airport-name { color: var(--accent-light); }

/* Code pill */
.ac-code-pill {
  position: absolute;
  right: var(--sp-3);
  top: 50%;
  transform: translateY(-50%);
  padding: var(--sp-1) var(--sp-2);
  background: var(--accent-glow);
  border: 1px solid var(--accent-border);
  border-radius: var(--r-sm);
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  color: var(--accent-light);
  font-family: var(--font-mono);
  letter-spacing: var(--ls-wide);
  pointer-events: none;
  z-index: 1;
}

/* Date field */
.date-field {
  position: relative;
  background: var(--bg-input);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp-3) var(--sp-3) var(--sp-3) calc(var(--sp-3) + 26px);
  cursor: pointer;
  transition: all var(--t-normal) var(--ease-out);
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}
.date-field:hover { border-color: var(--border-hover); }
.date-field:focus-within,
.date-field.has-value {
  border-color: var(--border-focus);
  box-shadow: 0 0 0 3px var(--accent-glow);
}
.date-field .field-icon {
  position: absolute;
  left: var(--sp-3);
  top: 50%;
  transform: translateY(-50%);
}
.date-label {
  font-size: var(--fs-base);
  font-weight: var(--fw-medium);
  color: var(--text-dim);
  flex: 1;
}
.date-field.has-value .date-label { color: var(--text-primary); }

.date-input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
}

.date-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-3);
}

/* ══════════════════════════════════════
   AIRPORT AUTOCOMPLETE
══════════════════════════════════════ */
.ac-dropdown {
  position: fixed;
  z-index: var(--z-dropdown);
  background: var(--bg-card);
  border: 1px solid var(--border-hover);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-xl);
  overflow-y: auto;
  display: none;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity var(--t-fast) var(--ease-out), transform var(--t-fast) var(--ease-out);
}
.ac-dropdown.open {
  display: block;
  opacity: 1;
  transform: translateY(0);
}
.ac-item {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-3) var(--sp-4);
  cursor: pointer;
  transition: background var(--t-fast);
}
.ac-item:hover, .ac-item.kbd-active { background: var(--bg-card-hover); }
.ac-item-code {
  font-family: var(--font-mono);
  font-size: var(--fs-sm);
  font-weight: var(--fw-bold);
  color: var(--accent-light);
  min-width: 40px;
}
.ac-item-info { flex: 1; min-width: 0; }
.ac-item-city {
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--text-primary);
}
.ac-item-name {
  font-size: 11px;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ac-item-arrow { color: var(--text-dim); }
.ac-item-arrow svg { width: 14px; height: 14px; stroke: currentColor; fill: none; }
.ac-item mark {
  background: var(--accent-glow);
  color: var(--accent-light);
  border-radius: 2px;
  padding: 0 1px;
}
.ac-empty {
  padding: var(--sp-6) var(--sp-4);
  text-align: center;
  color: var(--text-muted);
  font-size: var(--fs-sm);
}
.ac-empty svg { width: 24px; height: 24px; stroke: var(--text-dim); margin: 0 auto var(--sp-2); }

/* ══════════════════════════════════════
   BUTTONS
══════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: var(--sp-3) var(--sp-5);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semi);
  border: none;
  border-radius: var(--r-lg);
  cursor: pointer;
  transition: all var(--t-normal) var(--ease-out);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.btn svg { width: 16px; height: 16px; stroke: currentColor; flex-shrink: 0; }

.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover {
  background: var(--accent-hover);
  box-shadow: var(--shadow-accent);
  transform: translateY(-1px);
  color: #fff;
}

.btn-secondary {
  background: var(--bg-surface);
  color: var(--text-primary);
  border: 1px solid var(--border);
}
.btn-secondary:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-hover);
}

.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  color: var(--text-primary);
  border-color: var(--border-hover);
  background: var(--accent-subtle);
}

.btn-lg {
  padding: var(--sp-4) var(--sp-6);
  font-size: var(--fs-base);
  border-radius: var(--r-xl);
}

.btn-block { width: 100%; }

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

.btn .spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ══════════════════════════════════════
   CARDS
══════════════════════════════════════ */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: all var(--t-normal) var(--ease-out);
}
.card:hover { border-color: var(--border-hover); }
.card-header {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-4) var(--sp-5);
  border-bottom: 1px solid var(--border);
}
.card-icon {
  width: 36px;
  height: 36px;
  background: var(--accent-glow);
  border: 1px solid var(--accent-border);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.card-icon svg { width: 16px; height: 16px; stroke: var(--accent-light); }
.card-title {
  font-size: var(--fs-sm);
  font-weight: var(--fw-semi);
  color: var(--text-primary);
}
.card-subtitle {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 1px;
}
.card-body { padding: var(--sp-5); }

/* ══════════════════════════════════════
   FORMS
══════════════════════════════════════ */
.form-group {
  margin-bottom: var(--sp-4);
}
.form-label {
  display: block;
  font-size: var(--fs-xs);
  font-weight: var(--fw-semi);
  color: var(--text-secondary);
  margin-bottom: var(--sp-2);
  letter-spacing: var(--ls-wide);
}
.form-label .required {
  color: var(--error);
  margin-left: 2px;
}

.input-wrap {
  position: relative;
  background: var(--bg-input);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  transition: all var(--t-normal) var(--ease-out);
}
.input-wrap:hover { border-color: var(--border-hover); }
.input-wrap:focus-within {
  border-color: var(--border-focus);
  box-shadow: 0 0 0 3px var(--accent-glow);
}
.input-wrap.error {
  border-color: var(--error-border);
  box-shadow: 0 0 0 3px var(--error-bg);
}
.input-wrap.success {
  border-color: var(--success-border);
}

.input-icon {
  position: absolute;
  left: var(--sp-3);
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: var(--text-dim);
  pointer-events: none;
}
.input-icon svg { width: 100%; height: 100%; stroke: currentColor; }

.inp {
  width: 100%;
  padding: var(--sp-3) var(--sp-4);
  background: transparent;
  border: none;
  font-size: var(--fs-base);
  font-weight: var(--fw-medium);
  color: var(--text-primary);
  outline: none;
}
.inp.with-icon { padding-left: calc(var(--sp-3) + 26px); }
.inp::placeholder { color: var(--text-dim); font-weight: var(--fw-normal); }

.sel {
  width: 100%;
  padding: var(--sp-3) var(--sp-4);
  background: transparent;
  border: none;
  font-size: var(--fs-base);
  font-weight: var(--fw-medium);
  color: var(--text-primary);
  outline: none;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}
.sel option { background: var(--bg-card); color: var(--text-primary); }

.sel-wrap::after {
  content: '';
  position: absolute;
  right: var(--sp-4);
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid var(--text-dim);
  pointer-events: none;
}

textarea.inp {
  resize: vertical;
  min-height: 100px;
  line-height: var(--lh-relaxed);
}

/* Error message */
.error-msg {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
  margin-top: var(--sp-1);
  font-size: 11px;
  color: var(--error);
  font-weight: var(--fw-medium);
}
.error-msg svg { width: 12px; height: 12px; stroke: currentColor; flex-shrink: 0; }

/* Hint text */
.hint {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
  margin-top: var(--sp-1);
  font-size: 11px;
  color: var(--text-dim);
}
.hint svg { width: 12px; height: 12px; stroke: currentColor; flex-shrink: 0; }

/* Character counter */
.char-count {
  position: absolute;
  bottom: var(--sp-2);
  right: var(--sp-3);
  font-size: 10px;
  color: var(--text-dim);
}

/* Checkbox */
.checkbox-wrap {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  cursor: pointer;
}
.checkbox-wrap input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.checkbox-box {
  width: 20px;
  height: 20px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--t-fast) var(--ease-out);
  margin-top: 1px;
}
.checkbox-box svg { width: 12px; height: 12px; stroke: #fff; opacity: 0; transition: opacity var(--t-fast); }
.checkbox-wrap input:checked + .checkbox-box {
  background: var(--accent);
  border-color: var(--accent);
}
.checkbox-wrap input:checked + .checkbox-box svg { opacity: 1; }
.checkbox-text {
  font-size: var(--fs-sm);
  color: var(--text-secondary);
  line-height: var(--lh-normal);
}
.checkbox-text a {
  color: var(--accent-light);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Segmented control */
.seg-row {
  display: flex;
  gap: var(--sp-2);
}
.seg-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: var(--sp-3) var(--sp-3);
  background: var(--bg-input);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--t-normal) var(--ease-out);
}
.seg-btn svg { width: 14px; height: 14px; stroke: currentColor; }
.seg-btn:hover { border-color: var(--border-hover); color: var(--text-secondary); }
.seg-btn.active {
  background: var(--accent-glow);
  border-color: var(--accent-border);
  color: var(--accent-light);
}

/* Tip box */
.tip-box {
  display: flex;
  gap: var(--sp-3);
  padding: var(--sp-4);
  background: var(--accent-subtle);
  border: 1px solid var(--accent-border);
  border-radius: var(--r-lg);
  margin-bottom: var(--sp-4);
}
.tip-box svg { width: 16px; height: 16px; stroke: var(--accent-light); flex-shrink: 0; margin-top: 2px; }
.tip-box p { font-size: var(--fs-sm); color: var(--text-secondary); line-height: var(--lh-relaxed); }

/* ══════════════════════════════════════
   PASSENGER CARDS
══════════════════════════════════════ */
.pax-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  margin-bottom: var(--sp-4);
  overflow: hidden;
  transition: all var(--t-normal) var(--ease-out);
}
.pax-card:hover { border-color: var(--border-hover); }

.pax-header {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-4) var(--sp-5);
  border-bottom: 1px solid var(--border);
}
.pax-number {
  width: 28px;
  height: 28px;
  background: var(--accent-glow);
  border: 1px solid var(--accent-border);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: var(--fs-sm);
  font-weight: var(--fw-bold);
  color: var(--accent-light);
  flex-shrink: 0;
}
.pax-name {
  font-size: var(--fs-sm);
  font-weight: var(--fw-semi);
  color: var(--text-primary);
  flex: 1;
}
.pax-delete {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  color: var(--text-dim);
  font-size: var(--fs-lg);
  transition: all var(--t-fast);
}
.pax-delete:hover {
  background: var(--error-bg);
  border-color: var(--error-border);
  color: var(--error);
}

.pax-body { padding: var(--sp-5); }

.name-grid {
  display: grid;
  grid-template-columns: 100px 1fr 1fr;
  gap: var(--sp-3);
}
@media (max-width: 480px) {
  .name-grid {
    grid-template-columns: 80px 1fr;
  }
  .name-grid > :last-child { grid-column: 1 / -1; }
}

.dob-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  gap: var(--sp-2);
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
}
@media (max-width: 640px) {
  .field-row { grid-template-columns: 1fr; }
}

/* Nationality autocomplete */
.nat-dropdown {
  position: fixed;
  z-index: var(--z-dropdown);
  background: var(--bg-card);
  border: 1px solid var(--border-hover);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-xl);
  overflow-y: auto;
  display: none;
}
.nat-dropdown.open { display: block; }
.nat-item {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-2) var(--sp-3);
  cursor: pointer;
  font-size: var(--fs-sm);
  color: var(--text-secondary);
  transition: background var(--t-fast);
}
.nat-item:hover { background: var(--bg-card-hover); color: var(--text-primary); }
.nat-item mark {
  background: var(--accent-glow);
  color: var(--accent-light);
  border-radius: 2px;
  padding: 0 1px;
}

/* Country code dropdown */
.cc-dropdown {
  position: fixed;
  z-index: var(--z-dropdown);
  background: var(--bg-card);
  border: 1px solid var(--border-hover);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-xl);
  display: none;
  width: 280px;
}
.cc-dropdown.open { display: block; }
.cc-search {
  padding: var(--sp-3);
  border-bottom: 1px solid var(--border);
}
.cc-search input {
  width: 100%;
  padding: var(--sp-2) var(--sp-3);
  background: var(--bg-input);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  font-size: var(--fs-sm);
  color: var(--text-primary);
  outline: none;
}
.cc-search input:focus { border-color: var(--border-focus); }
.cc-list { max-height: 260px; overflow-y: auto; }
.cc-item {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-2) var(--sp-3);
  cursor: pointer;
  transition: background var(--t-fast);
}
.cc-item:hover { background: var(--bg-card-hover); }
.cc-item-code {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  color: var(--accent-light);
  font-weight: var(--fw-bold);
  min-width: 45px;
}
.cc-item-name {
  font-size: var(--fs-sm);
  color: var(--text-secondary);
  flex: 1;
}

/* Phone input group */
.phone-group {
  display: flex;
  gap: 0;
}
.cc-trigger {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
  padding: var(--sp-3) var(--sp-3);
  background: var(--bg-surface);
  border: 1.5px solid var(--border);
  border-right: none;
  border-radius: var(--r-lg) 0 0 var(--r-lg);
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--t-fast);
  white-space: nowrap;
  min-width: 90px;
}
.cc-trigger svg { width: 12px; height: 12px; stroke: currentColor; }
.cc-trigger:hover { background: var(--bg-card-hover); }
.cc-trigger.open { border-color: var(--border-focus); }

.phone-input-wrap {
  flex: 1;
  background: var(--bg-input);
  border: 1.5px solid var(--border);
  border-radius: 0 var(--r-lg) var(--r-lg) 0;
  transition: all var(--t-normal) var(--ease-out);
}
.phone-input-wrap:focus-within {
  border-color: var(--border-focus);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

/* ══════════════════════════════════════
   ORDER SUMMARY SIDEBAR
══════════════════════════════════════ */
.page-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-6);
  max-width: 1100px;
  margin: 0 auto;
  padding: calc(60px + var(--sp-8)) var(--sp-5) var(--sp-16);
}
@media (min-width: 900px) {
  .page-layout {
    grid-template-columns: 1fr 340px;
    gap: var(--sp-8);
  }
}

.form-col { min-width: 0; }

.summary-col {
  display: none;
}
@media (min-width: 900px) {
  .summary-col {
    display: block;
    position: sticky;
    top: calc(60px + var(--sp-8));
    align-self: start;
  }
}

/* Summary card styles */
.summary-section {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
}

.sum-service {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-3) var(--sp-4);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semi);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  color: var(--accent-light);
  background: var(--accent-subtle);
  border-bottom: 1px solid var(--border);
}

.sum-section {
  padding: var(--sp-4) var(--sp-5);
  border-bottom: 1px solid var(--border);
}
.sum-section:last-child { border-bottom: none; }

.sum-section-title {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 11px;
  font-weight: var(--fw-bold);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: var(--ls-wider);
  margin-bottom: var(--sp-3);
}
.sum-section-title svg { width: 14px; height: 14px; stroke: var(--accent-light); }

.sum-route {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp-3) var(--sp-4);
  margin-bottom: var(--sp-2);
}
.sum-route:last-child { margin-bottom: 0; }

.sum-route-cities {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin-bottom: var(--sp-2);
}
.sum-airport-code {
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  color: var(--accent-light);
  letter-spacing: var(--ls-wide);
}
.sum-airport-city {
  font-size: 11px;
  color: var(--text-muted);
}
.sum-arrow {
  flex-shrink: 0;
  color: var(--text-dim);
}
.sum-arrow svg { width: 16px; height: 16px; stroke: currentColor; }

.sum-dates {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-1);
}
.sum-date-chip {
  font-size: 11px;
  color: var(--text-muted);
  background: var(--bg-input);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 2px var(--sp-2);
}

.sum-detail {
  display: flex;
  justify-content: space-between;
  padding: var(--sp-1) 0;
  font-size: var(--fs-sm);
}
.sum-detail-label { color: var(--text-muted); }
.sum-detail-value { color: var(--text-primary); font-weight: var(--fw-medium); }

/* Price block */
.price-block {
  background: linear-gradient(135deg, var(--bg-primary), var(--bg-secondary));
  border: 1px solid var(--accent-border);
  border-radius: var(--r-lg);
  padding: var(--sp-4) var(--sp-5);
}
.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--sp-1) 0;
  font-size: var(--fs-sm);
}
.price-label { color: var(--text-muted); }
.price-value { color: var(--text-primary); font-weight: var(--fw-medium); }
.price-divider {
  height: 1px;
  background: var(--accent-border);
  margin: var(--sp-3) 0;
}
.price-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.price-total-label {
  font-size: var(--fs-base);
  font-weight: var(--fw-semi);
  color: var(--text-primary);
}
.price-total-value {
  font-family: var(--font-display);
  font-size: var(--fs-2xl);
  font-weight: var(--fw-bold);
  color: var(--accent-light);
  letter-spacing: var(--ls-tight);
}
.price-usd {
  font-size: 11px;
  color: var(--text-muted);
  text-align: right;
  margin-top: 2px;
}

/* Mobile summary */
.mobile-summary {
  display: block;
}
@media (min-width: 900px) {
  .mobile-summary { display: none; }
}

/* Add passenger button */
.add-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  width: 100%;
  padding: var(--sp-3);
  background: transparent;
  border: 1.5px dashed var(--border);
  border-radius: var(--r-lg);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semi);
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--t-normal) var(--ease-out);
}
.add-btn svg { width: 16px; height: 16px; stroke: currentColor; }
.add-btn:hover {
  border-color: var(--accent-border);
  color: var(--accent-light);
  background: var(--accent-subtle);
}

/* ══════════════════════════════════════
   SECTIONS — Generic
══════════════════════════════════════ */
.section {
  padding: var(--sp-16) 0;
}
.section-label {
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  color: var(--accent-light);
  text-transform: uppercase;
  letter-spacing: var(--ls-widest);
  margin-bottom: var(--sp-3);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(var(--fs-2xl), 3.5vw, var(--fs-4xl));
  font-weight: var(--fw-bold);
  color: var(--text-primary);
  line-height: var(--lh-tight);
  margin-bottom: var(--sp-4);
}
.section-title .accent { color: var(--accent-light); }
.section-desc {
  font-size: var(--fs-lg);
  color: var(--text-secondary);
  line-height: var(--lh-relaxed);
  max-width: 600px;
}

/* ══════════════════════════════════════
   HOW IT WORKS
══════════════════════════════════════ */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-4);
  margin-top: var(--sp-10);
}
@media (min-width: 640px) { .steps-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .steps-grid { grid-template-columns: repeat(4, 1fr); } }

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--sp-6);
  position: relative;
  transition: all var(--t-normal) var(--ease-out);
}
.step-card:hover {
  border-color: var(--accent-border);
  transform: translateY(-2px);
}
.step-number {
  font-family: var(--font-display);
  font-size: var(--fs-4xl);
  font-weight: var(--fw-extra);
  color: var(--accent-subtle);
  line-height: 1;
  margin-bottom: var(--sp-4);
}
.step-card:nth-child(1) .step-number { color: rgba(59,130,246,0.15); }
.step-card:nth-child(2) .step-number { color: rgba(34,197,94,0.15); }
.step-card:nth-child(3) .step-number { color: rgba(245,158,11,0.15); }
.step-card:nth-child(4) .step-number { color: rgba(168,85,247,0.15); }

.step-icon {
  width: 44px;
  height: 44px;
  background: var(--accent-glow);
  border: 1px solid var(--accent-border);
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-4);
}
.step-icon svg { width: 20px; height: 20px; stroke: var(--accent-light); }

.step-title {
  font-size: var(--fs-base);
  font-weight: var(--fw-semi);
  color: var(--text-primary);
  margin-bottom: var(--sp-2);
}
.step-desc {
  font-size: var(--fs-sm);
  color: var(--text-muted);
  line-height: var(--lh-relaxed);
}

/* ══════════════════════════════════════
   TICKET PREVIEW
══════════════════════════════════════ */
.ticket-showcase {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-10);
  align-items: center;
}
@media (min-width: 1024px) {
  .ticket-showcase { grid-template-columns: 1fr 1fr; }
}

.ticket-preview {
  position: relative;
}

.ticket-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.ticket-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-4) var(--sp-5);
  border-bottom: 1px solid var(--border);
}
.ticket-airline {
  font-size: var(--fs-sm);
  font-weight: var(--fw-semi);
  color: var(--text-secondary);
}
.ticket-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-1);
  padding: var(--sp-1) var(--sp-2);
  background: var(--success-bg);
  border: 1px solid var(--success-border);
  border-radius: var(--r-full);
  font-size: 10px;
  font-weight: var(--fw-bold);
  color: var(--success);
  text-transform: uppercase;
  letter-spacing: var(--ls-wide);
}
.ticket-badge svg { width: 10px; height: 10px; stroke: currentColor; }

.ticket-route {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-5) var(--sp-5);
}
.ticket-city {
  text-align: center;
}
.ticket-code {
  font-family: var(--font-display);
  font-size: var(--fs-3xl);
  font-weight: var(--fw-extra);
  color: var(--text-primary);
  letter-spacing: var(--ls-wide);
  line-height: 1;
}
.ticket-city-name {
  font-size: var(--fs-xs);
  color: var(--text-muted);
  margin-top: var(--sp-1);
}
.ticket-mid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-1);
  flex: 1;
  padding: 0 var(--sp-4);
}
.ticket-plane {
  width: 32px;
  height: 32px;
  background: var(--accent-glow);
  border: 1px solid var(--accent-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-light);
}
.ticket-plane svg { width: 16px; height: 16px; stroke: currentColor; }
.ticket-dots {
  width: 100%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--accent-border) 0, var(--accent-border) 4px, transparent 4px, transparent 8px);
}
.ticket-duration {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: var(--fw-medium);
}

.ticket-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-3);
  padding: var(--sp-4) var(--sp-5);
  border-top: 1px solid var(--border);
}
.ticket-detail-label {
  font-size: 10px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: var(--ls-wider);
  margin-bottom: 2px;
}
.ticket-detail-value {
  font-size: var(--fs-sm);
  font-weight: var(--fw-semi);
  color: var(--text-primary);
}

.ticket-barcode {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-4) var(--sp-5);
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
}
.ticket-bars {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  height: 32px;
}
.ticket-bars span {
  width: 2px;
  background: var(--text-dim);
  border-radius: 1px;
}
.ticket-ref {
  flex: 1;
}
.ticket-ref-id {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  color: var(--text-secondary);
  letter-spacing: var(--ls-wide);
}
.ticket-ref-label {
  font-size: 10px;
  color: var(--text-dim);
  margin-top: 2px;
}
.ticket-price-tag {
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  color: var(--accent-light);
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  margin-top: var(--sp-8);
}
.feature-item {
  display: flex;
  gap: var(--sp-4);
}
.feature-icon {
  width: 40px;
  height: 40px;
  background: var(--accent-glow);
  border: 1px solid var(--accent-border);
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.feature-icon svg { width: 18px; height: 18px; stroke: var(--accent-light); }
.feature-text h4 {
  font-size: var(--fs-base);
  font-weight: var(--fw-semi);
  color: var(--text-primary);
  margin-bottom: var(--sp-1);
}
.feature-text p {
  font-size: var(--fs-sm);
  color: var(--text-muted);
  line-height: var(--lh-relaxed);
}

/* Floating price tag */
.float-price {
  position: absolute;
  top: var(--sp-4);
  right: var(--sp-4);
  background: var(--accent);
  border-radius: var(--r-lg);
  padding: var(--sp-2) var(--sp-4);
  text-align: center;
  box-shadow: var(--shadow-accent);
  z-index: 2;
}
.float-price-amount {
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  color: #fff;
  line-height: 1;
}
.float-price-label {
  font-size: 9px;
  font-weight: var(--fw-semi);
  color: rgba(255,255,255,0.8);
  text-transform: uppercase;
  letter-spacing: var(--ls-wider);
  margin-top: 2px;
}

/* ══════════════════════════════════════
   PRICING
══════════════════════════════════════ */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-4);
  margin-top: var(--sp-8);
}
@media (min-width: 640px) { .pricing-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .pricing-grid { grid-template-columns: repeat(3, 1fr); } }

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--sp-6);
  position: relative;
  transition: all var(--t-normal) var(--ease-out);
}
.pricing-card:hover {
  border-color: var(--accent-border);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.pricing-card.featured {
  border-color: var(--accent-border);
  background: linear-gradient(135deg, var(--bg-card), rgba(59, 130, 246, 0.05));
}
.pricing-popular {
  position: absolute;
  top: var(--sp-3);
  right: var(--sp-3);
  padding: var(--sp-1) var(--sp-3);
  background: var(--accent);
  border-radius: var(--r-full);
  font-size: 10px;
  font-weight: var(--fw-bold);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: var(--ls-wide);
}
.pricing-name {
  font-size: var(--fs-lg);
  font-weight: var(--fw-semi);
  color: var(--text-primary);
  margin-bottom: var(--sp-1);
}
.pricing-desc {
  font-size: var(--fs-sm);
  color: var(--text-muted);
  margin-bottom: var(--sp-4);
}
.pricing-amount {
  display: flex;
  align-items: baseline;
  gap: var(--sp-1);
  margin-bottom: var(--sp-5);
}
.pricing-currency {
  font-size: var(--fs-lg);
  font-weight: var(--fw-semi);
  color: var(--text-muted);
}
.pricing-value {
  font-family: var(--font-display);
  font-size: var(--fs-4xl);
  font-weight: var(--fw-extra);
  color: var(--text-primary);
  letter-spacing: var(--ls-tight);
  line-height: 1;
}
.pricing-period {
  font-size: var(--fs-sm);
  color: var(--text-muted);
}
.pricing-features {
  list-style: none;
  margin-bottom: var(--sp-6);
}
.pricing-features li {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-2) 0;
  font-size: var(--fs-sm);
  color: var(--text-secondary);
}
.pricing-features li svg { width: 16px; height: 16px; stroke: var(--success); flex-shrink: 0; }

/* ══════════════════════════════════════
   FAQ
══════════════════════════════════════ */
.faq-grid {
  max-width: 800px;
  margin: var(--sp-8) auto 0;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  padding: var(--sp-5) 0;
  cursor: pointer;
  width: 100%;
  background: transparent;
  border: none;
  text-align: left;
  color: var(--text-primary);
  font-size: var(--fs-base);
  font-weight: var(--fw-medium);
  transition: color var(--t-fast);
}
.faq-question:hover { color: var(--accent-light); }
.faq-icon {
  width: 28px;
  height: 28px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--text-muted);
  transition: all var(--t-normal) var(--ease-out);
}
.faq-icon svg { width: 14px; height: 14px; stroke: currentColor; transition: transform var(--t-normal) var(--ease-out); }
.faq-item.active .faq-icon {
  background: var(--accent-glow);
  border-color: var(--accent-border);
  color: var(--accent-light);
}
.faq-item.active .faq-icon svg { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--t-slow) var(--ease-out), padding var(--t-slow) var(--ease-out);
}
.faq-item.active .faq-answer {
  max-height: 300px;
}
.faq-answer p {
  padding-bottom: var(--sp-5);
  font-size: var(--fs-sm);
  color: var(--text-muted);
  line-height: var(--lh-relaxed);
}

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.footer {
  border-top: 1px solid var(--border);
  padding: var(--sp-8) 0;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-4);
  text-align: center;
}
@media (min-width: 640px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}
.footer-copy {
  font-size: var(--fs-sm);
  color: var(--text-dim);
}
.footer-copy strong { color: var(--text-secondary); }
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  list-style: none;
}
.footer-links a {
  font-size: var(--fs-sm);
  color: var(--text-dim);
  transition: color var(--t-fast);
}
.footer-links a:hover { color: var(--text-primary); }

/* ══════════════════════════════════════
   PAYMENT PAGE
══════════════════════════════════════ */
.payment-page {
  max-width: 600px;
  margin: 0 auto;
  padding: calc(60px + var(--sp-8)) var(--sp-5) var(--sp-16);
}

.price-banner {
  background: linear-gradient(135deg, var(--bg-card), var(--bg-secondary));
  border: 1px solid var(--accent-border);
  border-radius: var(--r-xl);
  padding: var(--sp-5) var(--sp-6);
  margin-bottom: var(--sp-5);
  position: relative;
  overflow: hidden;
}
.price-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.price-banner-label {
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: var(--ls-wider);
}
.price-banner-order {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  color: var(--accent-light);
  background: var(--accent-glow);
  border: 1px solid var(--accent-border);
  border-radius: var(--r-sm);
  padding: var(--sp-1) var(--sp-2);
  display: inline-block;
  margin-top: var(--sp-1);
}
.price-banner-amount {
  display: flex;
  align-items: baseline;
  gap: var(--sp-2);
  margin-top: var(--sp-2);
}
.price-banner-inr {
  font-family: var(--font-display);
  font-size: var(--fs-4xl);
  font-weight: var(--fw-extra);
  color: var(--accent-light);
  letter-spacing: var(--ls-tight);
  line-height: 1;
}
.price-banner-usd {
  font-size: var(--fs-sm);
  color: var(--text-muted);
}
.price-banner-note {
  font-size: var(--fs-xs);
  color: var(--text-muted);
  margin-top: var(--sp-2);
}

/* Payment tabs */
.payment-tabs {
  display: flex;
  gap: var(--sp-2);
  background: var(--bg-surface);
  border-radius: var(--r-lg);
  padding: var(--sp-1);
  margin-bottom: var(--sp-4);
}
.payment-tab {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: var(--sp-3) var(--sp-2);
  background: transparent;
  border: none;
  border-radius: var(--r-md);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semi);
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--t-fast) var(--ease-out);
  white-space: nowrap;
}
.payment-tab svg { width: 14px; height: 14px; stroke: currentColor; flex-shrink: 0; }
.payment-tab.active {
  background: var(--accent);
  color: #fff;
}
.payment-tab.active svg { stroke: #fff; }
@media (max-width: 400px) {
  .payment-tab { font-size: var(--fs-xs); padding: var(--sp-2) var(--sp-1); gap: var(--sp-1); }
}

.payment-panel { display: none; }
.payment-panel.active { display: block; }

/* UPI layout */
.upi-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-5);
  align-items: start;
}
@media (max-width: 480px) { .upi-layout { grid-template-columns: 1fr; } }

.qr-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-3);
}
.qr-box {
  background: #fff;
  border-radius: var(--r-lg);
  padding: var(--sp-3);
  width: 160px;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.qr-box img { width: 140px; height: 140px; }
.qr-download {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
  font-size: var(--fs-xs);
  color: var(--accent-light);
  text-decoration: none;
}
.qr-download svg { width: 12px; height: 12px; stroke: currentColor; }

.upi-info { display: flex; flex-direction: column; gap: var(--sp-3); }
.upi-id-label {
  font-size: 10px;
  font-weight: var(--fw-bold);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: var(--ls-wider);
}
.upi-id-box {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  background: var(--bg-input);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp-3) var(--sp-4);
  cursor: pointer;
  transition: all var(--t-fast);
}
.upi-id-box:hover { border-color: var(--accent-border); }
.upi-id-value {
  flex: 1;
  font-family: var(--font-mono);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semi);
  color: var(--text-primary);
  word-break: break-all;
}
.copy-btn {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
  padding: var(--sp-1) var(--sp-2);
  background: var(--accent-glow);
  border: 1px solid var(--accent-border);
  border-radius: var(--r-sm);
  font-size: 10px;
  font-weight: var(--fw-bold);
  color: var(--accent-light);
  cursor: pointer;
  transition: all var(--t-fast);
  white-space: nowrap;
}
.copy-btn svg { width: 12px; height: 12px; stroke: currentColor; }
.copy-btn:hover { background: rgba(59,130,246,0.2); }

.payment-steps {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}
.payment-step {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-2);
  font-size: var(--fs-sm);
  color: var(--text-muted);
}
.payment-step-num {
  width: 22px;
  height: 22px;
  background: var(--bg-input);
  border: 1px solid var(--accent-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: var(--fw-bold);
  color: var(--accent-light);
  flex-shrink: 0;
}

.upi-apps {
  display: flex;
  gap: var(--sp-2);
  flex-wrap: wrap;
  margin-top: var(--sp-2);
}
.upi-app-chip {
  font-size: 10px;
  font-weight: var(--fw-semi);
  color: var(--text-muted);
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: var(--sp-1) var(--sp-2);
}

/* Confirm section */
.confirm-section {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--sp-5);
  margin-top: var(--sp-4);
}
.confirm-note {
  font-size: var(--fs-sm);
  color: var(--text-muted);
  text-align: center;
  margin-bottom: var(--sp-4);
  line-height: var(--lh-relaxed);
}
.confirm-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  width: 100%;
  padding: var(--sp-4);
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: var(--r-lg);
  font-size: var(--fs-base);
  font-weight: var(--fw-bold);
  cursor: pointer;
  transition: all var(--t-normal) var(--ease-out);
  text-decoration: none;
}
.confirm-btn:hover {
  background: var(--accent-hover);
  box-shadow: var(--shadow-accent);
  transform: translateY(-2px);
  color: #fff;
}
.confirm-btn svg { width: 18px; height: 18px; stroke: currentColor; }

.help-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  margin-top: var(--sp-3);
  font-size: var(--fs-sm);
  color: var(--text-muted);
}
.help-row a { color: var(--accent-light); font-weight: var(--fw-semi); }

/* ══════════════════════════════════════
   ORDER STATUS PAGE
══════════════════════════════════════ */
.status-page {
  max-width: 780px;
  margin: 0 auto;
  padding: calc(70px + var(--sp-8)) var(--sp-5) var(--sp-16);
}

.search-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--sp-6);
  margin-bottom: var(--sp-6);
  position: relative;
  overflow: hidden;
}
.search-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.search-title {
  font-family: var(--font-display);
  font-size: var(--fs-2xl);
  font-weight: var(--fw-bold);
  color: var(--text-primary);
  margin-bottom: var(--sp-1);
}
.search-subtitle {
  font-size: var(--fs-sm);
  color: var(--text-muted);
  margin-bottom: var(--sp-5);
  line-height: var(--lh-relaxed);
}
.search-row {
  display: flex;
  gap: var(--sp-3);
}
.search-input {
  flex: 1;
  padding: var(--sp-3) var(--sp-4);
  background: var(--bg-input);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  font-family: var(--font-mono);
  font-size: var(--fs-base);
  font-weight: var(--fw-semi);
  color: var(--text-primary);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  outline: none;
  transition: all var(--t-normal);
}
.search-input::placeholder {
  color: var(--text-dim);
  text-transform: none;
  font-family: var(--font-primary);
  letter-spacing: normal;
  font-weight: var(--fw-normal);
}
.search-input:focus {
  border-color: var(--border-focus);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

@media (max-width: 580px) {
  .search-row { flex-direction: column; }
}

/* Status steps */
.status-bar {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp-5);
  margin-bottom: var(--sp-4);
}
.status-label {
  font-size: 10px;
  font-weight: var(--fw-bold);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: var(--ls-wider);
  margin-bottom: var(--sp-4);
}
.status-steps {
  display: flex;
  align-items: flex-start;
  margin-bottom: var(--sp-4);
}
.status-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-1);
  flex: 1;
}
.status-dot {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: var(--bg-input);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: var(--fw-bold);
  color: var(--text-muted);
  position: relative;
  z-index: 1;
}
.status-dot.done {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.status-dot.active {
  background: var(--accent-glow);
  border-color: var(--accent);
  color: var(--accent-light);
  box-shadow: 0 0 0 4px rgba(59,130,246,0.1);
}
.status-dot.active::after {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 2px solid rgba(59,130,246,0.25);
  animation: statusPulse 1.6s ease-out infinite;
}
@keyframes statusPulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.6); opacity: 0; }
}
.status-dot svg { width: 14px; height: 14px; stroke: currentColor; }

.status-step-label {
  font-size: 9px;
  font-weight: var(--fw-semi);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: var(--ls-wide);
  text-align: center;
}
.status-step-label.active { color: var(--accent-light); }

.status-line {
  flex: 1;
  height: 2px;
  background: var(--border);
  margin: 15px -1px 0;
}
.status-line.done { background: var(--accent); }
.status-line.progress {
  background: linear-gradient(90deg, var(--accent), var(--border));
}

.status-message {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  background: var(--accent-subtle);
  border: 1px solid var(--accent-border);
  border-radius: var(--r-md);
  padding: var(--sp-3) var(--sp-4);
}
.status-message svg {
  width: 16px;
  height: 16px;
  stroke: var(--accent-light);
  animation: spin 0.9s linear infinite;
  flex-shrink: 0;
}
.status-message-text {
  font-size: var(--fs-sm);
  color: var(--text-secondary);
  line-height: var(--lh-normal);
}
.status-message-text strong { color: var(--accent-light); }

/* Order detail sections */
.order-section {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  margin-bottom: var(--sp-3);
  overflow: hidden;
}
.order-section-header {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-3) var(--sp-4);
  border-bottom: 1px solid var(--border);
  background: rgba(59, 130, 246, 0.02);
}
.order-section-icon {
  width: 32px;
  height: 32px;
  background: var(--accent-glow);
  border: 1px solid var(--accent-border);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
}
.order-section-icon svg { width: 14px; height: 14px; stroke: var(--accent-light); }
.order-section-title {
  font-size: var(--fs-sm);
  font-weight: var(--fw-semi);
  color: var(--text-primary);
}
.order-section-body { padding: var(--sp-4); }

.detail-row {
  display: flex;
  gap: var(--sp-2);
  padding: var(--sp-2) 0;
  border-bottom: 1px solid rgba(148,163,184,0.05);
}
.detail-row:last-child { border-bottom: none; }
.detail-label {
  font-size: var(--fs-xs);
  color: var(--text-muted);
  min-width: 120px;
  flex-shrink: 0;
  padding-top: 1px;
}
.detail-value {
  font-size: var(--fs-sm);
  color: var(--text-primary);
  font-weight: var(--fw-medium);
  word-break: break-word;
}

/* Not found state */
.not-found {
  text-align: center;
  padding: var(--sp-12) var(--sp-5);
}
.not-found-icon {
  width: 60px;
  height: 60px;
  background: var(--error-bg);
  border: 1px solid var(--error-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--sp-4);
}
.not-found-icon svg { width: 26px; height: 26px; stroke: var(--error); }
.not-found-title {
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  color: var(--text-primary);
  margin-bottom: var(--sp-2);
}
.not-found-text {
  font-size: var(--fs-sm);
  color: var(--text-muted);
  line-height: var(--lh-relaxed);
}

/* Loading state */
.loading-state {
  text-align: center;
  padding: var(--sp-10);
}
.loading-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--border);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto var(--sp-3);
}
.loading-text {
  font-size: var(--fs-sm);
  color: var(--text-muted);
}

/* Toast */
.toast {
  position: fixed;
  bottom: var(--sp-6);
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--bg-card);
  border: 1px solid var(--accent-border);
  border-radius: var(--r-lg);
  padding: var(--sp-3) var(--sp-5);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semi);
  color: var(--accent-light);
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  box-shadow: var(--shadow-xl);
  z-index: var(--z-toast);
  transition: transform var(--t-normal) var(--ease-out);
}
.toast.show { transform: translateX(-50%) translateY(0); }
.toast svg { width: 16px; height: 16px; stroke: var(--accent-light); }

/* ══════════════════════════════════════
   PAYMENT WARNING
══════════════════════════════════════ */
.payment-warning {
  background: var(--error-bg);
  border: 2px solid var(--error-border);
  border-radius: var(--r-xl);
  padding: var(--sp-5);
  text-align: center;
  margin-bottom: var(--sp-4);
}
.payment-warning-title {
  font-size: var(--fs-base);
  font-weight: var(--fw-bold);
  color: var(--error);
  margin-bottom: var(--sp-2);
}
.payment-warning-text {
  font-size: var(--fs-sm);
  color: var(--text-muted);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--sp-3);
}
.payment-warning-amount {
  font-family: var(--font-display);
  font-size: var(--fs-2xl);
  font-weight: var(--fw-bold);
  color: var(--error);
  margin: var(--sp-2) 0;
}

/* ══════════════════════════════════════
   UTILITIES
══════════════════════════════════════ */
.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }
.mt-2 { margin-top: var(--sp-2); }
.mt-4 { margin-top: var(--sp-4); }
.mt-6 { margin-top: var(--sp-6); }
.mt-8 { margin-top: var(--sp-8); }
.mb-2 { margin-bottom: var(--sp-2); }
.mb-4 { margin-bottom: var(--sp-4); }
.mb-6 { margin-bottom: var(--sp-6); }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border-width: 0;
}

/* ══════════════════════════════════════
   FIX: FIELD ICON & CODE PILL POSITIONING
   Prevents them shifting when airport-name sub-label expands field height
══════════════════════════════════════ */
.field-icon {
  top: 16px !important;
  transform: none !important;
}
.ac-code-pill {
  top: 14px !important;
  transform: none !important;
}
/* Ensure airport name sub-label is always visible */
.field-airport-name {
  display: block !important;
  min-height: 18px;
  padding: 2px var(--sp-3) var(--sp-2) calc(var(--sp-3) + 26px) !important;
  font-size: 11px;
  color: var(--text-dim);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 0 !important;
}
.field-wrap.has-selection .field-airport-name {
  color: var(--accent-light) !important;
}
/* Give input less bottom padding so airport name sits naturally below */
.field-input {
  padding-bottom: var(--sp-1) !important;
}

/* ══════════════════════════════════════
   MICRO-INTERACTIONS
   Subtle haptic-like feedback on interactive elements
══════════════════════════════════════ */
.btn:active:not(:disabled) { transform: scale(0.97); }
.trip-btn:active { transform: scale(0.96); }
.embassy-card:active { transform: scale(0.97); }
.step-card:active { transform: translateY(-1px) scale(0.99); }
.faq-question:active { opacity: 0.85; }

/* Input focus glow micro-interaction */
.field-wrap, .input-wrap {
  transition: border-color var(--t-normal) var(--ease-out), box-shadow var(--t-normal) var(--ease-out), transform var(--t-fast) var(--ease-out);
}
.field-wrap:focus-within, .input-wrap:focus-within {
  transform: scale(1.005);
}

/* Card hover lift */
.card { transition: border-color var(--t-normal) var(--ease-out), box-shadow var(--t-normal) var(--ease-out), transform var(--t-normal) var(--ease-out); }
@media (hover: hover) {
  .card:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }
  .step-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
  .embassy-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
}

/* Smooth page transitions */
.hero-content, .hero-right {
  will-change: transform, opacity;
}

/* Loading button pulse */
.btn-primary:disabled .spinner {
  animation: spin 0.7s linear infinite;
}

/* Booking card entrance */
.booking-card {
  will-change: transform, opacity;
}

/* Mobile nav body lock */
body.nav-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

/* ══════════════════════════════════════
   HERO — MOBILE: FORM ABOVE TEXT
══════════════════════════════════════ */
@media (max-width: 1023px) {
  .hero-inner {
    display: flex;
    flex-direction: column;
  }
  .hero-right {
    order: -1;
    width: 100%;
  }
  .hero-content {
    order: 1;
  }
  .booking-card {
    max-width: 100%;
  }
}

/* ══════════════════════════════════════
   SWAP BUTTON — REMOVED (hidden above)
══════════════════════════════════════ */

/* ══════════════════════════════════════
   PASSENGER PAGE LAYOUT FIX
   Proper two-column grid that actually works
══════════════════════════════════════ */
.pax-page {
  padding-top: calc(60px + var(--sp-6));
  padding-bottom: var(--sp-12);
  min-height: 100vh;
}
.pax-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: var(--sp-6) var(--sp-4);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-5);
}
@media (min-width: 900px) {
  .pax-container {
    grid-template-columns: 1fr 340px;
    gap: var(--sp-8);
    padding: var(--sp-8) var(--sp-8);
    align-items: start;
  }
  .pax-summary-col {
    position: sticky;
    top: calc(60px + var(--sp-6));
    align-self: start;
  }
}
.pax-form-col {
  min-width: 0;
}
.pax-summary-col {
  display: none;
}
@media (min-width: 900px) {
  .pax-summary-col {
    display: block;
  }
}

/* ══════════════════════════════════════
   NAME GRID — MOBILE FULL STACK
══════════════════════════════════════ */
@media (max-width: 540px) {
  .name-grid {
    grid-template-columns: 1fr !important;
  }
  .name-grid > * {
    grid-column: auto !important;
  }
}
@media (min-width: 541px) and (max-width: 720px) {
  .name-grid {
    grid-template-columns: 80px 1fr 1fr;
  }
}

/* ══════════════════════════════════════
   PAYMENT PAGE — QR CODE STABLE LAYOUT
══════════════════════════════════════ */
.upi-layout {
  display: grid;
  grid-template-columns: 170px 1fr !important;
  gap: var(--sp-5);
  align-items: start;
}
@media (max-width: 520px) {
  .upi-layout {
    grid-template-columns: 1fr !important;
    gap: var(--sp-4);
  }
  .qr-wrap {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: var(--sp-4);
  }
}
.qr-box {
  width: 150px !important;
  height: 150px !important;
  flex-shrink: 0;
  margin: 0 auto;
}
.qr-box img {
  width: 130px !important;
  height: 130px !important;
  object-fit: contain;
}

/* ══════════════════════════════════════
   EMBASSY ACCEPTED / TRUST SECTION
══════════════════════════════════════ */
.embassy-section {
  padding: var(--sp-16) 0;
  background: linear-gradient(180deg, transparent, var(--bg-secondary) 20%, var(--bg-secondary) 80%, transparent);
}
.embassy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-3);
  margin-top: var(--sp-10);
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 640px) {
  .embassy-grid { grid-template-columns: repeat(6, 1fr); }
}
.embassy-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-4) var(--sp-3);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  text-align: center;
  transition: all var(--t-normal) var(--ease-out);
}
.embassy-card:hover {
  border-color: var(--accent-border);
  transform: translateY(-2px);
}
.embassy-flag {
  font-size: 2rem;
  line-height: 1;
}
.embassy-name {
  font-size: 10px;
  font-weight: var(--fw-semi);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: var(--ls-wide);
}
.trust-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--sp-3);
  margin-top: var(--sp-10);
}
.trust-pill {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-3) var(--sp-5);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--text-secondary);
  white-space: nowrap;
}
.trust-pill svg {
  width: 16px;
  height: 16px;
  stroke: var(--success);
  flex-shrink: 0;
}

/* ══════════════════════════════════════
   PAYMENT PAGE — ORDER ID VISIBILITY
══════════════════════════════════════ */
.price-banner-order {
  font-size: var(--fs-sm) !important;
  padding: var(--sp-1) var(--sp-3) !important;
  letter-spacing: var(--ls-wide);
}

/* ══════════════════════════════════════
   MOBILE — GENERAL PASSENGER FORM FIXES
══════════════════════════════════════ */
@media (max-width: 640px) {
  .card-body {
    padding: var(--sp-4) !important;
  }
  .card-header {
    padding: var(--sp-3) var(--sp-4) !important;
  }
  .pax-body {
    padding: var(--sp-4) !important;
  }
  .pax-header {
    padding: var(--sp-3) var(--sp-4) !important;
  }
  .dob-grid {
    gap: var(--sp-1);
  }
  .field-row {
    grid-template-columns: 1fr;
  }
  .seg-row {
    flex-wrap: wrap;
  }
  .seg-btn {
    flex: 1 1 auto;
    min-width: 80px;
  }
}

/* ══════════════════════════════════════
   STEP BAR — MOBILE LABELS
══════════════════════════════════════ */
@media (max-width: 400px) {
  .step-label {
    display: none !important;
  }
  .steps-inner {
    gap: 0;
  }
}
@media (min-width: 401px) {
  .step-label {
    display: block !important;
    font-size: 9px;
  }
}


/* ═══════════════════════════════════════════════════════════════
   iOS SAFARI ZOOM FIX
   iOS auto-zooms on input focus when font-size < 16px.
   Force all form inputs to 16px minimum.
   ═══════════════════════════════════════════════════════════════ */

/* Target iOS specifically */
@supports (-webkit-touch-callout: none) {
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  input[type="number"],
  input[type="search"],
  input[type="password"],
  input[type="url"],
  select,
  textarea {
    font-size: 16px !important;
  }
}

/* Global fallback: ensure all known input classes are 16px minimum */
.field-input,
.inp,
.search-input,
.cc-search input {
  font-size: max(16px, var(--fs-base));
}

/* Date picker label (tap target) */
.date-label {
  font-size: max(16px, var(--fs-base));
}


/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE FIXES FOR NEW SECTIONS
   Testimonials, Embassy Quotes, Comparison, Countries, Final CTA
   ═══════════════════════════════════════════════════════════════ */

/* ── Testimonials Grid ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-5);
  margin-top: var(--sp-8);
}
@media (min-width: 640px) {
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--sp-5);
  transition: all var(--t-normal) var(--ease-out);
}
.testimonial-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
}
.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: var(--sp-3);
}
.testimonial-stars svg {
  width: 16px;
  height: 16px;
  fill: #f59e0b;
  stroke: none;
}
.testimonial-text {
  font-size: var(--fs-sm);
  color: var(--text-secondary);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--sp-4);
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}
.testimonial-avatar {
  width: 36px;
  height: 36px;
  border-radius: var(--r-full);
  background: var(--accent-glow);
  border: 1px solid var(--accent-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--fw-bold);
  font-size: var(--fs-xs);
  color: var(--accent-light);
  flex-shrink: 0;
}
.testimonial-name {
  font-size: var(--fs-sm);
  font-weight: var(--fw-semi);
  color: var(--text-primary);
}
.testimonial-detail {
  font-size: var(--fs-xs);
  color: var(--text-muted);
}

/* ── Audience / Target Grid ── */
.audience-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-4);
  margin-top: var(--sp-8);
}
@media (min-width: 640px) {
  .audience-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .audience-grid { grid-template-columns: repeat(4, 1fr); }
}
.audience-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--sp-5);
  text-align: center;
  transition: all var(--t-normal) var(--ease-out);
}
.audience-card:hover {
  border-color: var(--accent-border);
  background: var(--bg-card-hover);
}
.audience-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto var(--sp-3);
  background: var(--accent-glow);
  border: 1px solid var(--accent-border);
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}
.audience-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--accent-light);
  fill: none;
  stroke-width: 1.8;
}
.audience-title {
  font-size: var(--fs-sm);
  font-weight: var(--fw-semi);
  color: var(--text-primary);
  margin-bottom: var(--sp-2);
}
.audience-desc {
  font-size: var(--fs-xs);
  color: var(--text-muted);
  line-height: var(--lh-normal);
}

/* ── Embassy Quotes Grid ── */
.quotes-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-4);
  margin-top: var(--sp-8);
}
@media (min-width: 640px) {
  .quotes-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .quotes-grid { grid-template-columns: repeat(3, 1fr); }
}
.quote-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--sp-5);
  position: relative;
}
.quote-card::before {
  content: '\201C';
  font-size: 2.5rem;
  font-family: Georgia, serif;
  color: var(--accent);
  opacity: 0.3;
  position: absolute;
  top: var(--sp-3);
  left: var(--sp-4);
  line-height: 1;
}
.quote-text {
  font-size: var(--fs-sm);
  color: var(--text-secondary);
  line-height: var(--lh-relaxed);
  font-style: italic;
  padding-top: var(--sp-4);
  margin-bottom: var(--sp-3);
}
.quote-source {
  font-size: var(--fs-xs);
  color: var(--accent-light);
  font-weight: var(--fw-semi);
}

/* ── Comparison Table ── */
.comparison-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-top: var(--sp-8);
}
.comparison-table {
  width: 100%;
  min-width: 500px;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  font-size: var(--fs-sm);
}
.comparison-table th,
.comparison-table td {
  padding: var(--sp-3) var(--sp-4);
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.comparison-table th {
  background: var(--bg-surface);
  color: var(--text-primary);
  font-weight: var(--fw-semi);
  white-space: nowrap;
}
.comparison-table td {
  color: var(--text-secondary);
}
.comparison-table tr:last-child td {
  border-bottom: none;
}
.comparison-table .highlight-col {
  background: var(--accent-subtle);
}
.comparison-table .highlight-col th {
  background: var(--accent-glow);
  color: var(--accent-light);
}
@media (max-width: 640px) {
  .comparison-table {
    font-size: var(--fs-xs);
    min-width: 420px;
  }
  .comparison-table th,
  .comparison-table td {
    padding: var(--sp-2) var(--sp-3);
  }
}

/* ── Countries Tags ── */
.countries-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  margin-top: var(--sp-6);
  justify-content: center;
}
.country-tag {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-1);
  padding: var(--sp-2) var(--sp-3);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  font-size: var(--fs-xs);
  color: var(--text-secondary);
  text-decoration: none;
  transition: all var(--t-normal) var(--ease-out);
  white-space: nowrap;
}
.country-tag:hover {
  border-color: var(--accent-border);
  color: var(--accent-light);
  background: var(--accent-subtle);
}

/* ── Final CTA Section ── */
.final-cta {
  text-align: center;
  padding: var(--sp-10) 0;
}
.final-cta-title {
  font-family: var(--font-display);
  font-size: var(--fs-3xl);
  font-weight: var(--fw-bold);
  color: var(--text-primary);
  margin-bottom: var(--sp-3);
}
@media (min-width: 768px) {
  .final-cta-title { font-size: var(--fs-4xl); }
}
.final-cta-desc {
  font-size: var(--fs-base);
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 auto var(--sp-6);
  line-height: var(--lh-relaxed);
}
.final-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-3) var(--sp-6);
  background: var(--accent);
  color: #fff;
  font-size: var(--fs-base);
  font-weight: var(--fw-semi);
  border-radius: var(--r-lg);
  text-decoration: none;
  transition: all var(--t-normal) var(--ease-out);
}
.final-cta-btn:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}
.final-cta-btn svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
}

/* ── Utility Classes ── */
.section-desc-centered {
  margin: 0 auto;
}
.section-desc-centered-narrow {
  margin: 0 auto var(--sp-2);
}
.text-right {
  text-align: right;
}
.overflow-x-auto {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.bg-gradient-section {
  background: linear-gradient(180deg, transparent, var(--bg-secondary) 20%, var(--bg-secondary) 80%, transparent);
}
.bg-gradient-section-light {
  background: linear-gradient(180deg, transparent, var(--bg-secondary) 30%, var(--bg-secondary) 70%, transparent);
}
