:root {
  --navy: #0B192C;
  --blue: #1E3E62;
  --orange: #FF6500;
  --light-blue: #0879D8;
  --bg: #f3f7fb;
  --surface: #ffffff;
  --ink: #102033;
  --muted: #64748b;
  --line: #e2e8f0;
  --blue-2: #e8f4ff;
  --cyan: #20b7ff;
  --gold: #ffc247;
  --green: #18a058;
  --shadow: 0 24px 80px rgba(24, 49, 83, .15);
  --font-family: 'Inter', system-ui, sans-serif;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,.7), rgba(243,247,251,.92) 280px),
    linear-gradient(90deg, rgba(8,121,216,.045) 1px, transparent 1px),
    linear-gradient(rgba(8,121,216,.04) 1px, transparent 1px),
    var(--bg);
  background-size: auto, 54px 54px, 54px 54px, auto;
  color: var(--ink);
  font-family: var(--font-family);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { margin: 0; font-weight: 800; letter-spacing: -.02em; }
p { margin: 0; line-height: 1.6; }
button { cursor: pointer; }

/* Header */
.site-header {
  position: absolute; top: 0; left: 0; right: 0; z-index: 100;
  background: transparent;
  padding: 24px 48px;
  display: flex; justify-content: space-between; align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  gap: 32px;
}
.site-header .brand {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none; color: #fff;
}
.site-header .brand span {
  background: var(--light-blue); color: #fff;
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
}
.site-header nav { display: flex; gap: 32px; align-items: center; margin-left: auto; }
.site-header nav a {
  text-decoration: none; color: #fff;
  font-weight: 600; font-size: 15px; transition: color 0.2s;
}
.site-header nav a:hover { color: var(--light-blue); }
.contact-menu { position: relative; }
.contact-menu button {
  background: none; border: none; font: inherit; font-weight: 600;
  color: #fff; cursor: pointer; display: flex; gap: 4px; align-items: center;
}
.contact-dropdown {
  position: absolute; top: 100%; right: 0; margin-top: 8px;
  background: #fff; border: 1px solid var(--line); border-radius: 12px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.08); padding: 8px;
  display: none; flex-direction: column; min-width: 200px;
}
.contact-dropdown.open { display: flex; }
.header-cta {
  background: var(--orange); color: #fff;
  padding: 10px 24px; border-radius: 8px; font-weight: 700;
  text-decoration: none; transition: background 0.2s;
}

.brand { display: flex; align-items: center; gap: 12px; }
.brand span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-weight: 950;
  box-shadow: 0 14px 34px rgba(8,121,216,.26);
}
.deal-tag {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--blue);
  color: #fff;
  font-weight: 950;
  box-shadow: 0 14px 34px rgba(8,121,216,.26);
}
.brand strong { display: block; font-size: 18px; color: #fff; }
.brand small, .muted { color: rgba(255,255,255,0.7); }

nav { display: flex; align-items: center; gap: 20px; color: #fff; font-weight: 800; }
nav a,
.contact-menu button {
  position: relative;
  transition: color .18s ease, transform .18s ease;
}
nav a::after,
.contact-menu button::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  border-radius: 999px;
  background: var(--blue);
  opacity: 0;
}
.gradient-text {
  background: var(--blue);
  -webkit-background-clip: text;
  transform: scaleX(.35);
  transition: opacity .18s ease, transform .18s ease;
}
nav a:hover,
.contact-menu button:hover { color: var(--blue); transform: translateY(-1px); }
nav a:hover::after,
.contact-menu button:hover::after,
.contact-menu.open button::after { opacity: 1; transform: scaleX(1); }

.contact-menu { position: relative; }
.contact-menu button {
  border: 0;
  background: transparent;
  color: inherit;
  font-weight: 850;
  padding: 0;
}
.contact-menu button:hover,
.contact-menu.open button,
.contact-menu:focus-within button { color: var(--blue); }

.contact-dropdown {
  position: absolute;
  top: calc(100% + 16px);
  right: 0;
  z-index: 80;
  display: grid;
  min-width: 300px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity .16s ease, transform .16s ease;
}
.contact-dropdown::before { content: ""; position: absolute; top: -16px; right: 0; width: 100%; height: 16px; }
.contact-menu:hover .contact-dropdown,
.contact-menu:focus-within .contact-dropdown,
.contact-menu.open .contact-dropdown { opacity: 1; pointer-events: auto; transform: translateY(0); }
.contact-dropdown a { display: grid; gap: 4px; padding: 15px 17px; border-bottom: 1px solid var(--line); }
.contact-dropdown a:last-child { border-bottom: 0; }
.contact-dropdown a:hover { background: var(--blue-2); }
.contact-dropdown span { color: var(--muted); font-size: 12px; font-weight: 900; text-transform: uppercase; }
.contact-dropdown strong { overflow-wrap: anywhere; }

.header-cta,
.primary-btn,
.secondary-btn,
.secondary-light-btn {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 10px;
  padding: 12px 20px;
  font-weight: 950;
  position: relative;
  overflow: hidden;
  transition: transform .25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow .25s ease, background .25s ease, border-color .25s ease;
}
.header-cta, .primary-btn { background: var(--orange); color: #fff; }
.secondary-btn { background: var(--blue-2); color: var(--blue); border: 1px solid #c8e6ff; }
.secondary-light-btn { border: 1px solid rgba(255,255,255,.42); background: rgba(255,255,255,.12); color: #fff; backdrop-filter: blur(14px); }
.header-cta:hover,
.primary-btn:hover {
  transform: translateY(-3px) scale(1.02);
}
.secondary-btn:hover {
  border-color: rgba(8,121,216,.45);
  background: #dff1ff;
  transform: translateY(-2px);
}
.secondary-light-btn:hover {
  border-color: rgba(255,255,255,.7);
  background: rgba(255,255,255,.2);
  transform: translateY(-2px);
}
.header-cta:active,
.primary-btn:active,
.secondary-btn:active,
.secondary-light-btn:active { transform: translateY(0); }

.hero {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 460px);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  min-height: 520px;
  padding: clamp(72px, 9vw, 120px) clamp(18px, 5vw, 72px) 170px;
  background:
    linear-gradient(90deg, rgba(6,24,45,.9), rgba(6,24,45,.58) 54%, rgba(6,24,45,.28)),
    url("https://images.unsplash.com/photo-1506012787146-f92b2d7d6d96?auto=format&fit=crop&w=2200&q=88") center/cover;
  color: #fff;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 0 58%, rgba(32,183,255,.16) 58% 58.35%, transparent 58.35%),
    repeating-linear-gradient(90deg, rgba(255,255,255,.05) 0 1px, transparent 1px 92px);
  mix-blend-mode: screen;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 140px;
  background: linear-gradient(180deg, transparent, rgba(243,247,251,.96));
}
.hero-copy { position: relative; z-index: 1; max-width: 820px; }
.eyebrow {
  margin: 0 0 10px;
  color: var(--blue);
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.hero .eyebrow { color: #9ed8ff; }
h1, h2, h3 { margin: 0; }
h1 { max-width: 800px; font-size: clamp(42px, 6vw, 78px); line-height: .96; letter-spacing: 0; text-wrap: balance; }
h2 { font-size: clamp(30px, 4vw, 48px); line-height: 1.05; }
.hero-copy > p:not(.eyebrow) { max-width: 680px; color: rgba(255,255,255,.86); font-size: 20px; line-height: 1.7; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.hero-stats { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.hero-stats div {
  min-width: 180px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 14px;
  background: rgba(255,255,255,.18);
  padding: 16px;
  box-shadow: 0 18px 48px rgba(0,0,0,.14);
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.hero-stats div:hover {
  border-color: rgba(255,255,255,.5);
  background: rgba(255,255,255,.24);
  transform: translateY(-3px);
}
.hero-stats strong { display: block; font-size: 24px; }
.hero-stats span { color: rgba(255,255,255,.78); }
.hero-visual {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
  max-width: 460px;
  justify-self: end;
}
.hero-visual::before {
  content: "";
  position: absolute;
  inset: 48px -24px -24px 34px;
  border-radius: 30px;
  background: var(--blue);
  filter: blur(18px);
  opacity: .75;
}
.hero-image-card,
.hero-route-card,
.hero-mini-grid {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  background: rgba(255,255,255,0.06);
  box-shadow: 0 24px 60px rgba(0,0,0,0.2);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}
.hero-image-card { min-height: 220px; }
.hero-image-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transform: scale(1.02);
  animation: slowImageLift 9s ease-in-out infinite alternate;
}
.hero-image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(5,17,31,0.65);
}
.hero-image-card span {
  position: absolute;
  left: 18px;
  bottom: 16px;
  z-index: 1;
  border-radius: 999px;
  background: rgba(255,255,255,0.95);
  color: var(--blue);
  padding: 8px 14px;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: -0.2px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}
.hero-route-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  color: #fff;
}
.route-left {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.route-left strong {
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.route-left small { color: rgba(255,255,255,0.7); font-size: 13px; font-weight: 500; }

.pulse-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 0, 0, 0.25);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 1px solid rgba(255,255,255,0.08);
}
.pulse-dot {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 0 rgba(32,183,255,.48);
  animation: pulseDot 1.9s ease-out infinite;
}
.pulse-dot.orange { background: var(--orange); box-shadow: 0 0 0 0 rgba(255,122,33,.48); }

.hero-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
  padding: 0;
}
.hero-mini-grid span {
  background: rgba(255,255,255,0.03);
  padding: 16px 8px;
  text-align: center;
  color: rgba(255,255,255,0.9);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: background 0.2s;
}
.hero-mini-grid span:hover {
  background: rgba(255,255,255,0.1);
}

.booking-shell {
  position: relative;
  z-index: 2;
  margin-top: -110px;
  padding: 0 clamp(18px, 5vw, 72px) 54px;
}
.booking-card {
  max-width: 1320px;
  margin: 0 auto;
  border: 1px solid rgba(196,215,233,.78);
  border-radius: 22px;
  background: var(--surface);
  box-shadow: var(--shadow-strong);
  overflow: hidden;
}
.booking-intro-premium {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  border-bottom: 1px solid var(--line);
  background: #fcfdfe;
  padding: clamp(32px, 5vw, 48px);
}
.intro-text-center {
  text-align: center;
}
.intro-text-center h2 {
  max-width: 780px;
  font-size: clamp(28px, 4vw, 42px);
  margin-top: 8px;
}
.service-tabs-pill {
  position: relative;
  display: flex;
  background: rgba(16, 32, 51, 0.04);
  border-radius: 999px;
  padding: 6px;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.02);
}
.service-tabs-pill button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-weight: 850;
  font-size: 16px;
  transition: color .3s ease;
  z-index: 1;
}
.service-tabs-pill button.active {
  color: var(--blue);
}
.service-tabs-pill button:hover:not(.active) {
  color: var(--ink);
}
.pill-indicator {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 4px 14px rgba(8,121,216,.12);
  z-index: 0;
}
.relative { position: relative; }
.z-10 { z-index: 10; }

.service-panel { display: none; padding: clamp(22px, 4vw, 38px); }
.service-panel.active { display: block; animation: panelIn .28s ease both; }
.panel-heading { display: flex; justify-content: space-between; gap: 24px; margin-bottom: 22px; }
.panel-heading p:last-child { max-width: 420px; color: var(--muted); line-height: 1.6; }

.smart-form { display: grid; gap: 18px; }
.form-grid, .flight-grid, .form-row {
  display: grid;
  gap: 14px;
}
.form-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.form-row.compact { grid-template-columns: repeat(3, minmax(0, 1fr)); align-items: end; }
.flight-grid { grid-template-columns: 1.1fr auto 1.1fr .8fr .8fr .65fr; align-items: end; }

label { display: grid; gap: 8px; color: #38506a; font-size: 14px; font-weight: 800; }
input, select, textarea {
  min-height: 48px;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  outline: none;
  padding: 12px 14px;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease, background .18s ease;
}
input:hover, select:hover, textarea:hover { border-color: #b6d9f2; }
input:focus, select:focus, textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(8,121,216,.1); transform: translateY(-1px); }
textarea { min-height: 118px; resize: vertical; }
.full { grid-column: 1 / -1; }
.big-field input { min-height: 68px; font-size: 30px; font-weight: 950; text-transform: uppercase; }
.big-field small { color: var(--muted); font-weight: 600; }
label small.good { color: #047857; font-weight: 800; }
label small.bad { color: #b91c1c; font-weight: 800; }
.swap-btn { min-width: 54px; min-height: 54px; border: 1px solid var(--line); border-radius: 50%; background: #fff; color: var(--blue); font-weight: 950; box-shadow: 0 10px 24px rgba(16,32,51,.09); transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease; }
.swap-btn:hover { border-color: #9bd6ff; box-shadow: 0 14px 32px rgba(8,121,216,.18); transform: rotate(180deg); }
.radio-card { min-height: 48px; grid-auto-flow: column; justify-content: start; align-items: center; border: 1px solid var(--line); border-radius: 10px; padding: 0 14px; background: #fff; }
.radio-card input { width: auto; min-height: auto; }
.route-suggestions { display: flex; flex-wrap: wrap; gap: 10px; }
.route-suggestions button { border: 1px solid #c8e6ff; border-radius: 999px; background: var(--blue-2); color: var(--blue); padding: 9px 13px; font-weight: 850; transition: transform .18s ease, background .18s ease; }
.route-suggestions button:hover { background: #dff1ff; transform: translateY(-2px); }
.inline-status { border-radius: 12px; background: #fff8f2; color: #9b4a0c; padding: 12px 14px; font-weight: 800; }

.logistics-selector {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.option-card {
  position: relative;
  min-height: 116px;
  align-content: start;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  padding: 16px 16px 16px 46px;
  box-shadow: 0 10px 26px rgba(16,32,51,.06);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
}
.option-card:hover {
  border-color: #b6d9f2;
  box-shadow: 0 16px 40px rgba(16,32,51,.1);
  transform: translateY(-3px);
}
.option-card input {
  position: absolute;
  top: 18px;
  left: 16px;
  width: auto;
  min-height: auto;
}
.option-card strong {
  color: var(--ink);
  font-size: 17px;
}
.option-card span {
  color: var(--muted);
  line-height: 1.45;
}
.option-card:has(input:checked) {
  border-color: var(--blue);
  background: var(--blue-2);
  box-shadow: 0 0 0 4px rgba(8,121,216,.08);
}
.service-card {
  background: #eef8ff;
  border: 1px solid rgba(8, 121, 216, 0.1);
  padding: 32px;
}
.section-mini-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}
.section-mini-heading > span {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-weight: 950;
  box-shadow: 0 12px 26px rgba(8,121,216,.2);
}
.service-card .icon-wrapper {
  background: var(--blue);
  color: #fff;
  width: 54px;
}
.section-mini-heading strong {
  display: block;
  color: var(--ink);
  font-size: 18px;
}
.section-mini-heading small {
  color: var(--muted);
}
.checkbox-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.checkbox-row label {
  min-height: 46px;
  grid-auto-flow: column;
  align-items: center;
  justify-content: start;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  padding: 0 14px;
  color: #38506a;
  transition: background .18s ease, border-color .18s ease, color .18s ease, transform .18s ease;
}
.checkbox-row label:hover {
  border-color: #b6d9f2;
  background: #f7fbff;
  transform: translateY(-1px);
}
.checkbox-row input {
  width: auto;
  min-height: auto;
}
.request-summary {
  display: grid;
  gap: 4px;
  border: 1px solid #bee8d3;
  border-radius: 14px;
  background: #f0fff7;
  color: #14613a;
  padding: 14px 16px;
  box-shadow: 0 14px 34px rgba(24,160,88,.08);
}
.service-card.premium {
  background: #f0fff7;
  border-color: rgba(30, 206, 122, 0.2);
  padding: 14px 16px;
  box-shadow: 0 14px 34px rgba(24,160,88,.08);
}
.request-summary span {
  line-height: 1.55;
}

.offer-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.offer-card { border: 1px solid var(--line); border-radius: 16px; background: #fff; padding: 16px; box-shadow: 0 10px 28px rgba(16,32,51,.08); transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease; }
.offer-card:hover { border-color: #b6d9f2; box-shadow: 0 18px 48px rgba(16,32,51,.13); transform: translateY(-3px); }
.offer-card.selected { border-color: var(--orange); box-shadow: 0 0 0 4px rgba(255,122,33,.12); }
.offer-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.airline-mark { display: grid; width: 42px; height: 42px; place-items: center; border-radius: 50%; background: var(--blue-2); color: var(--blue); font-weight: 950; }
.offer-price { margin-top: 14px; font-size: 26px; font-weight: 950; }
.offer-meta { color: var(--muted); font-size: 13px; line-height: 1.6; }
.fx-note {
  display: inline-flex;
  border: 1px solid #bee8d3;
  border-radius: 999px;
  background: #f0fff7;
  color: #14613a;
  padding: 7px 10px;
  font-weight: 850;
}
.offer-card button { width: 100%; margin-top: 14px; }
.traveler-block { border-top: 1px solid var(--line); padding-top: 18px; }
.traveler-block h3 { margin-bottom: 14px; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: flex-end; }

.section { padding: clamp(46px, 7vw, 86px) clamp(18px, 5vw, 72px); }
.section,
.site-footer {
  content-visibility: auto;
  contain-intrinsic-size: 760px;
}
.soft-section {
  background: #f5f9fc;
  color: var(--navy);
}
.section-heading { max-width: 760px; margin-bottom: 24px; }
.section-heading p, .card p, .contact-band p, .muted { line-height: 1.65; }
.promo-carousel {
  position: relative;
  margin: 0 0 28px;
}
.promo-track {
  display: grid;
  grid-auto-columns: minmax(420px, 1fr);
  grid-auto-flow: column;
  gap: 18px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 4px 0 12px;
}
.promo-track:focus-visible {
  outline: 4px solid rgba(8,121,216,.18);
  outline-offset: 8px;
}
.promo-track::-webkit-scrollbar { display: none; }
.promo-card {
  position: relative;
  min-height: 230px;
  overflow: hidden;
  border-radius: 18px;
  color: #fff;
  box-shadow: 0 18px 50px rgba(24,49,83,.18);
  scroll-snap-align: start;
  transition: transform .24s ease, box-shadow .24s ease;
}
.promo-card:hover {
  box-shadow: 0 28px 74px rgba(24,49,83,.24);
  transform: translateY(-5px);
}
.promo-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform .7s ease;
}
.promo-card:hover img { transform: scale(1.08); }
.promo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5,17,31,0.95) 0%, rgba(5,17,31,0.4) 50%, rgba(5,17,31,0) 100%);
  pointer-events: none;
}
.promo-card div {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  min-height: 280px;
  padding: 32px;
}
.promo-card span {
  color: #9ed8ff;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.promo-card h3 {
  margin-top: 8px;
  font-size: clamp(25px, 3vw, 38px);
  line-height: 1;
}
.promo-card p {
  max-width: 420px;
  color: rgba(255,255,255,.82);
  line-height: 1.55;
}
.carousel-btn {
  position: absolute;
  top: 50%;
  z-index: 5;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 12px 26px rgba(16,32,51,.2);
  font-size: 34px;
  line-height: 1;
  transform: translateY(-50%);
  transition: transform .18s ease, box-shadow .18s ease, color .18s ease;
}
.carousel-btn:hover {
  color: var(--blue);
  box-shadow: 0 16px 36px rgba(16,32,51,.24);
  transform: translateY(-50%) scale(1.06);
}
.carousel-btn.prev { left: -18px; }
.carousel-btn.next { right: -18px; }
.deal-grid, .cards.three { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.cards.three { grid-template-columns: repeat(3, 1fr); }
.deal-grid article, .card, .panel, .contact-band {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: 0 12px 40px rgba(24,49,83,.08);
}
.deal-grid article, .card { padding: 22px; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.deal-grid article { overflow: hidden; padding: 0; }
.deal-grid article:hover,
.card:hover {
  border-color: #b6d9f2;
  box-shadow: 0 22px 64px rgba(24,49,83,.14);
  transform: translateY(-4px);
}
.deal-grid img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  transition: transform .55s ease;
}
.deal-grid article:hover img { transform: scale(1.07); }
.deal-grid article span,
.deal-grid article strong,
.deal-grid article small {
  margin-left: 18px;
  margin-right: 18px;
}
.deal-grid article span { display: block; margin-top: 18px; }
.deal-grid article small { display: block; margin-bottom: 20px; }
.deal-grid span, .card span { color: var(--orange); font-weight: 950; }
.deal-grid strong { display: block; margin: 8px 0; font-size: 22px; }
.deal-grid small { color: var(--muted); }
.card h3 { margin: 8px 0; }

.visual-band {
  padding-top: 56px;
  padding-bottom: 56px;
}
.visual-band article {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  max-width: 1320px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
}
.visual-band article:hover {
  box-shadow: var(--shadow-strong);
  transform: translateY(-3px);
}
.visual-band img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  transition: transform .8s ease;
}
.visual-band article:hover img { transform: scale(1.04); }
.visual-band div {
  display: grid;
  align-content: center;
  gap: 16px;
  padding: clamp(28px, 5vw, 64px);
}
.visual-band p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.split { display: grid; grid-template-columns: minmax(280px, 460px) minmax(0, 1fr); gap: 24px; align-items: start; }
.panel { padding: 24px; }
.tracking-result { margin-top: 16px; color: var(--muted); }
.tracking-result strong { color: var(--ink); }
.tracking-timeline { display: grid; gap: 10px; margin-top: 14px; }
.tracking-timeline div { display: grid; gap: 2px; border-left: 3px solid var(--blue); padding-left: 12px; }
.tracking-timeline span, .tracking-timeline small { color: var(--muted); font-size: 13px; }

.contact-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 32px;
  background: #f7fbff;
}
.why-us-section {
  position: relative;
  padding: 100px 0;
  background: #f7fbff;
  border-bottom: 1px solid var(--line);
}
.services-section {
  padding: 100px 0;
  background: #193b45;
  color: #fff;
}

.site-footer {
  background-color: var(--navy);
  color: #fff;
  padding: clamp(46px, 7vw, 76px) clamp(18px, 5vw, 72px) 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr repeat(3, minmax(160px, .75fr));
  gap: clamp(28px, 5vw, 70px);
  max-width: 1320px;
  margin: 0 auto;
}
.site-footer .brand {
  margin-right: 0;
}
.site-footer .brand span {
  background: #0ea5e9;
}
.site-footer p {
  color: rgba(255,255,255,.72);
  line-height: 1.7;
}
.site-footer h3 {
  margin-bottom: 18px;
  font-size: 22px;
}
.site-footer a:not(.brand) {
  display: block;
  color: rgba(255,255,255,.88);
  font-weight: 750;
  margin: 0 0 14px;
}
.site-footer a:hover { color: #7dd3fc; }
.store-buttons {
  display: grid;
  gap: 10px;
  max-width: 240px;
  margin: 20px 0 26px;
}
.store-buttons span {
  display: grid;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 10px;
  background: #07131a;
  padding: 10px 14px;
}
.store-buttons small {
  color: rgba(255,255,255,.65);
  font-size: 11px;
  text-transform: uppercase;
}
.store-buttons strong {
  font-size: 20px;
}
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.social-links a {
  display: grid !important;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.44);
  border-radius: 50%;
  margin: 0 !important;
  text-transform: uppercase;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  max-width: 1320px;
  margin: 54px auto 0;
  border-top: 1px solid rgba(255,255,255,.24);
  padding-top: 24px;
  color: rgba(255,255,255,.78);
  font-weight: 700;
}
.toast-host { position: fixed; right: 16px; bottom: 16px; z-index: 100; display: grid; gap: 10px; width: min(390px, calc(100vw - 32px)); }
.toast { border: 1px solid var(--line); border-radius: 14px; background: #fff; padding: 14px; box-shadow: var(--shadow); }
.toast strong { display: block; }
.toast span { color: var(--muted); font-size: 13px; }

.reveal-ready {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .55s ease, transform .55s ease;
  transition-delay: var(--reveal-delay, 0ms);
}
.reveal-ready.reveal-in {
  opacity: 1;
  transform: translateY(0);
}

@keyframes heroImagePan {
  from { background-position: center center; }
  to { background-position: center 42%; }
}

@keyframes slowImageLift {
  from { transform: scale(1.02) translateY(0); }
  to { transform: scale(1.08) translateY(-8px); }
}

@keyframes pulseDot {
  0% { box-shadow: 0 0 0 0 rgba(32,183,255,.46); }
  75% { box-shadow: 0 0 0 14px rgba(32,183,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(32,183,255,0); }
}

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
  .reveal-ready {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1100px) {
  .hero { grid-template-columns: 1fr; }
  .hero-visual { max-width: 720px; justify-self: start; }
  .hero-mini-grid { max-width: 520px; }
  .flight-grid { grid-template-columns: 1fr 54px 1fr; }
  .flight-grid label:nth-of-type(n+3) { grid-column: auto; }
  .booking-intro { align-items: flex-start; flex-direction: column; }
  .booking-service-summary { justify-content: flex-start; }
  .logistics-selector { grid-template-columns: 1fr; }
  .promo-track { grid-auto-columns: minmax(360px, 80vw); }
  .offer-grid, .deal-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 780px) {
  .site-header { align-items: flex-start; flex-direction: column; }
  nav { flex-wrap: wrap; }
  .contact-dropdown { left: 0; right: auto; }
  .hero-visual { width: 100%; }
  .hero-image-card { min-height: 180px; }
  .hero-image-card img { height: 180px; }
  .hero-mini-grid { grid-template-columns: 1fr; text-align: left; }
  .hero-mini-grid span { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.18); }
  .hero-mini-grid span:last-child { border-bottom: 0; }
  .hero { padding-bottom: 130px; }
  .service-tabs { grid-template-columns: repeat(2, 1fr); }
  .panel-heading, .contact-band { align-items: flex-start; flex-direction: column; }
  .form-grid, .form-row.compact, .flight-grid, .split, .offer-grid, .deal-grid, .cards.three, .visual-band article, .footer-grid { grid-template-columns: 1fr; }
  .promo-track { grid-auto-columns: minmax(280px, 88vw); }
  .carousel-btn.prev { left: 8px; }
  .carousel-btn.next { right: 8px; }
  .swap-btn { border-radius: 10px; width: 100%; }
  .actions { justify-content: stretch; }
  .actions .primary-btn, .actions .secondary-btn { width: 100%; }
  .footer-bottom { flex-direction: column; }
}

/* --- Premium Form Redesign --- */
.premium-form {
  display: grid;
  gap: 24px;
}
.form-header-options {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}
.radio-pill-group {
  display: inline-flex;
  background: #f1f5f9;
  border-radius: 999px;
  padding: 4px;
}
.radio-pill-group label {
  cursor: pointer;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  color: var(--muted);
  transition: all 0.2s ease;
  min-height: auto;
  border: none;
  background: transparent;
  gap: 0;
}
.radio-pill-group label.active {
  background: #ffffff;
  color: var(--blue);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.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;
}
.compact-select select {
  min-height: 40px;
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 700;
  border: 1px solid var(--line);
  background: #ffffff;
  color: var(--ink);
  cursor: pointer;
}
.compact-input {
  position: relative;
  display: flex;
  align-items: center;
}
.compact-input input {
  min-height: 40px;
  border-radius: 999px;
  padding: 8px 16px 8px 36px;
  font-size: 14px;
  font-weight: 700;
  width: 120px;
}
.input-icon {
  position: absolute;
  left: 12px;
  pointer-events: none;
  color: var(--blue);
}

.search-bar-container {
  display: flex;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 12px 34px rgba(16, 32, 51, 0.06);
  position: relative;
  padding: 8px 0;
}
.search-input-group {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 8px 24px;
  position: relative;
  transition: background 0.2s ease;
}
.search-input-group:hover:not(.disabled) {
  background: rgba(8, 121, 216, 0.03);
}
.border-right {
  border-right: 1px solid var(--line);
}
.search-input-group .input-icon {
  left: 20px;
  color: var(--muted);
}
.search-input-group .input-stack {
  margin-left: 28px;
  display: flex;
  flex-direction: column;
  width: 100%;
}
.input-stack label {
  font-size: 12px;
  font-weight: 900;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 2px;
}
.input-stack input {
  border: none;
  padding: 0;
  min-height: auto;
  font-size: 16px;
  font-weight: 850;
  color: var(--ink);
  background: transparent;
  box-shadow: none !important;
}
.input-stack input:focus {
  transform: none;
}
.input-stack input::placeholder {
  color: #94a3b8;
  font-weight: 500;
}
.swap-btn-absolute {
  position: absolute;
  left: 31%; /* Adjust based on flex layout */
  top: 50%;
  transform: translate(-50%, -50%);
  width: 32px;
  height: 32px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  z-index: 10;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.swap-btn-absolute:hover {
  transform: translate(-50%, -50%) rotate(180deg);
  box-shadow: 0 6px 16px rgba(8,121,216,0.15);
}
.search-input-group.disabled {
  opacity: 0.5;
  pointer-events: none;
}

.traveler-details-card {
  background: #fbfdff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 8px 24px rgba(16, 32, 51, 0.04);
}
.traveler-details-card h3 {
  margin-bottom: 20px;
  font-size: 18px;
  color: var(--navy);
}
.details-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.input-with-icon {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}
.input-with-icon .icon {
  position: absolute;
  left: 16px;
  color: var(--muted);
  pointer-events: none;
  z-index: 2;
  display: flex;
}
.input-with-icon.textarea-wrapper .icon.top-aligned {
  top: 16px;
}
.input-with-icon input, 
.input-with-icon select,
.input-with-icon textarea {
  padding-left: 44px;
  background: #f8fafc;
  border-color: #e2e8f0;
  width: 100%;
}
.input-with-icon input:focus,
.input-with-icon select:focus,
.input-with-icon textarea:focus {
  background: #ffffff;
}

.form-footer {
  display: flex;
  justify-content: flex-end;
  margin-top: 12px;
}
.pulse-hover:hover {
  animation: pulseButton 1.5s infinite;
}
@keyframes pulseButton {
  0% { box-shadow: 0 0 0 0 rgba(255, 122, 33, 0.4); }
  70% { box-shadow: 0 0 0 10px rgba(255, 122, 33, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 122, 33, 0); }
}

.store-buttons span.coming-soon {
  opacity: 0.6;
  position: relative;
  cursor: not-allowed;
}
.store-buttons span.coming-soon::after {
  content: "SOON";
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--blue);
  color: #fff;
  font-size: 9px;
  font-weight: 900;
  padding: 2px 6px;
  border-radius: 999px;
  letter-spacing: 0.5px;
}

/* Footer */
.site-footer {
  background-color: var(--navy);
  color: #fff;
  padding: 60px 20px 20px;
  margin-top: 60px;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 60px;
}

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

.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #fff;
  margin-bottom: 20px;
}

.footer-brand .logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--orange);
  border-radius: 8px;
  font-weight: 700;
  font-size: 1.2rem;
}

.footer-brand .logo-text {
  display: flex;
  flex-direction: column;
}

.footer-brand .logo-text strong {
  font-size: 1.1rem;
  line-height: 1.2;
}

.footer-brand .logo-text small {
  font-size: 0.75rem;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  font-size: 0.95rem;
  margin: 0;
}

.footer-links h3, .footer-contact h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #fff;
  margin-top: 0;
}

.footer-links a {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  margin-bottom: 12px;
  font-size: 0.95rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--orange);
}

.footer-contact p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  margin-bottom: 16px;
  margin-top: 0;
}

.footer-contact .contact-link {
  display: block;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  margin-bottom: 10px;
  font-size: 0.95rem;
}

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

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
}
.footer-bottom p {
  margin: 0;
}

/* Deal Grid Premium Styling */
.deal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.deal-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(8, 121, 216, 0.08);
  border: 1px solid rgba(8, 121, 216, 0.05);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}
.deal-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(8, 121, 216, 0.15);
}
.deal-card:hover .deal-image img {
  transform: scale(1.08);
}
.deal-image {
  position: relative;
  height: 150px;
  width: 100%;
  overflow: hidden;
}
.deal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.deal-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(11, 25, 44, 0.85);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.deal-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.deal-content strong {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy);
}
.deal-content small {
  color: var(--orange);
  font-weight: 600;
  font-size: 0.9rem;
}

@media (max-width: 1100px) {
  .deal-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .deal-grid {
    grid-template-columns: 1fr;
  }
}

/* Premium Flight Concierge Form CSS */
.premium-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: rgba(255, 255, 255, 0.9);
  padding: 16px;
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
}
.form-header-options {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}
.radio-pill-group {
  display: flex;
  background: #f1f5f9;
  border-radius: 8px;
  padding: 4px;
}
.radio-pill-group label {
  padding: 6px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  border-radius: 6px;
  transition: all 0.2s;
}
.radio-pill-group label.active {
  background: #fff;
  color: var(--navy);
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.compact-input {
  display: flex;
  align-items: center;
  background: #f1f5f9;
  padding: 6px 12px;
  border-radius: 8px;
  gap: 8px;
}
.compact-input input {
  border: none;
  background: transparent;
  width: 40px;
  font-weight: 600;
  color: var(--navy);
  font-size: 0.95rem;
  outline: none;
  -moz-appearance: textfield;
}
.compact-input input::-webkit-outer-spin-button,
.compact-input input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.search-bar-container {
  display: flex;
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--line);
  position: relative;
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}
.search-input-group {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 12px 20px;
  gap: 12px;
  position: relative;
}
.border-right {
  border-right: 1px solid var(--line);
}
.search-input-group .input-stack {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.search-input-group label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.search-input-group input {
  border: none;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  outline: none;
  width: 100%;
  padding: 4px 0 0 0;
  background: transparent;
}
.search-input-group input::placeholder {
  color: #a0aec0;
  font-weight: 500;
}
.search-input-group.disabled {
  opacity: 0.5;
  pointer-events: none;
}
.swap-btn-absolute {
  position: absolute;
  left: 25%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  z-index: 10;
  cursor: pointer;
  color: var(--blue);
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  transition: all 0.2s;
}
.swap-btn-absolute:hover {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
  transform: translate(-50%, -50%) rotate(180deg);
}

.airport-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  width: 130%;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  z-index: 100;
  overflow: hidden;
}
.airport-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  cursor: pointer;
  border-bottom: 1px solid #f1f5f9;
  transition: background 0.1s;
}
.airport-item:hover {
  background: #f8fafc;
}
.airport-item-left {
  display: flex;
  flex-direction: column;
}
.airport-item-left strong {
  color: var(--navy);
  font-size: 0.95rem;
}
.airport-item-left small {
  color: var(--muted);
  font-size: 0.8rem;
}
.airport-item-right {
  background: #f1f5f9;
  padding: 4px 8px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--blue);
}

.submit-btn-large {
  background: var(--orange);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 16px;
  font-size: 1.1rem;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 4px 12px rgba(255, 122, 33, 0.25);
  margin-top: 8px;
}
.submit-btn-large:hover {
  background: #e66616;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 122, 33, 0.35);
}
.submit-btn-large:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 100px 20px 80px;
  }
  .booking-shell {
    margin-top: -60px;
    padding: 0 16px 40px;
  }
  .site-header {
    padding: 16px 20px;
  }
}

@media (max-width: 900px) {
  .search-bar-container {
    flex-direction: column;
  }
  .swap-btn-absolute {
    left: auto;
    right: 32px;
    top: 25%;
    transform: translateY(-50%) rotate(90deg);
  }
  .swap-btn-absolute:hover {
    transform: translateY(-50%) rotate(270deg);
  }
  .border-right {
    border-right: none;
    border-bottom: 1px solid var(--line);
  }
  .details-grid {
    grid-template-columns: 1fr;
  }
  .logistics-selector {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 38px;
    line-height: 1.1;
  }
  .hero-stats div {
    flex: 1;
    min-width: 140px;
  }
  .hero-actions {
    flex-direction: column;
  }
  .hero-actions a {
    width: 100%;
    text-align: center;
  }
  .site-header nav, .contact-menu {
    display: none;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 32px;
  }
  .booking-intro-premium h2 {
    font-size: 24px;
  }
  .cards.three, .deal-grid {
    grid-template-columns: 1fr;
  }
  .form-header-options {
    justify-content: center;
  }
}

/* Hamburger Menu Styles */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

@media (max-width: 768px) {
  .hamburger {
    display: block;
  }
  .site-header {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    justify-content: space-between !important;
  }
  .site-header nav {
    display: none;
  }
  nav.mobile-nav-open {
    display: flex !important;
    flex-direction: column;
    background: var(--navy);
    position: absolute;
    top: 80px;
    left: 20px;
    right: 20px;
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    z-index: 1000;
  }
  nav.mobile-nav-open a {
    color: #fff;
    padding: 14px 0;
    font-size: 18px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    width: 100%;
  }
  nav.mobile-nav-open a:last-child {
    border-bottom: none;
  }
  .contact-menu {
    display: none !important;
  }
  .site-header .header-cta {
    display: none;
  }
  .hero-mini-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    display: grid !important;
  }
}
