:root {
  --ink: #f8fbff;
  --muted: #aeb9c7;
  --dark: #05070b;
  --panel: #0e131b;
  --panel-2: #141b24;
  --line: rgba(255, 255, 255, 0.13);
  --gold: #d8b56d;
  --gold-2: #f2d99a;
  --cyan: #6de4ff;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: var(--dark);
  color: var(--ink);
}

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

svg {
  display: block;
  width: 1.08em;
  height: 1.08em;
  fill: currentColor;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: var(--ink);
  transition:
    background 180ms ease,
    border-color 180ms ease,
    backdrop-filter 180ms ease;
}

.site-header.is-scrolled {
  border-bottom: 1px solid var(--line);
  background: rgba(5, 7, 11, 0.82);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(216, 181, 109, 0.45);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(216, 181, 109, 0.24), rgba(109, 228, 255, 0.08));
  color: var(--gold-2);
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.05;
}

.brand strong {
  font-size: 1rem;
}

.brand small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.76rem;
}

.nav-links {
  display: flex;
  gap: clamp(16px, 3vw, 38px);
  color: var(--muted);
  font-size: 0.92rem;
}

.nav-links a:hover,
.header-call:hover {
  color: var(--gold-2);
}

.header-call,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  border-radius: 8px;
  font-weight: 750;
}

.header-call {
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.94rem;
}

.hero {
  position: relative;
  min-height: 76vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 116px clamp(18px, 4vw, 56px) 58px;
}

.hero-image,
.hero-shade,
.hero-grid {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(5, 7, 11, 0.96) 0%, rgba(5, 7, 11, 0.8) 38%, rgba(5, 7, 11, 0.22) 76%),
    linear-gradient(0deg, #05070b 0%, rgba(5, 7, 11, 0) 35%);
}

.hero-grid {
  opacity: 0.2;
  background-image:
    linear-gradient(rgba(109, 228, 255, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(216, 181, 109, 0.12) 1px, transparent 1px);
  background-size: 84px 84px;
  mask-image: linear-gradient(90deg, black, transparent 72%);
}

.hero-content {
  position: relative;
  width: min(760px, 100%);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold-2);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1 {
  max-width: 620px;
  margin: 0;
  font-size: clamp(2.35rem, 4.7vw, 4.8rem);
  line-height: 0.98;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4.25rem);
  line-height: 0.98;
}

h3 {
  margin: 0;
  font-size: 1.15rem;
}

.hero-copy {
  max-width: 540px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: clamp(0.96rem, 1.25vw, 1.06rem);
  line-height: 1.55;
}

.hero-price {
  display: inline-grid;
  grid-template-columns: auto auto;
  gap: 2px 14px;
  align-items: end;
  margin-top: 22px;
  border: 1px solid rgba(216, 181, 109, 0.34);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(216, 181, 109, 0.16), rgba(109, 228, 255, 0.07)),
    rgba(5, 7, 11, 0.46);
  padding: 14px 18px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
}

.hero-price span,
.hero-price small {
  color: var(--muted);
}

.hero-price strong {
  grid-row: span 2;
  color: var(--gold-2);
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  line-height: 0.9;
}

.hero-price small {
  font-size: 0.82rem;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.button {
  border: 0;
  padding: 0 22px;
  cursor: pointer;
  font: inherit;
  white-space: nowrap;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    border-color 160ms ease;
}

.button.primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #171105;
  box-shadow: 0 12px 36px rgba(216, 181, 109, 0.22);
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
  color: var(--ink);
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary:hover {
  box-shadow: 0 16px 42px rgba(216, 181, 109, 0.3);
}

.button.secondary:hover {
  border-color: rgba(242, 217, 154, 0.44);
}

.quick-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.quick-stats span {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--muted);
  background: rgba(5, 7, 11, 0.48);
  font-size: 0.85rem;
}

.fare-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--line);
  padding-inline: clamp(18px, 4vw, 56px);
}

.fare-strip button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 76px;
  border: 0;
  background:
    linear-gradient(135deg, rgba(216, 181, 109, 0.08), rgba(109, 228, 255, 0.04)),
    #0b1118;
  color: var(--ink);
  padding: 16px 18px;
  text-align: left;
  cursor: pointer;
  font: inherit;
}

.fare-strip button:hover {
  background:
    linear-gradient(135deg, rgba(216, 181, 109, 0.17), rgba(109, 228, 255, 0.08)),
    #101821;
}

.fare-strip span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 750;
}

.fare-strip strong {
  color: var(--gold-2);
  font-size: 1.6rem;
}

.booking-strip,
.section,
.split-section,
.contact-band,
.site-footer {
  padding-inline: clamp(18px, 4vw, 56px);
}

.booking-strip {
  display: grid;
  grid-template-columns: minmax(230px, 0.78fr) 1.4fr;
  gap: 32px;
  align-items: start;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 86% 12%, rgba(109, 228, 255, 0.16), transparent 30%),
    var(--panel);
  padding-block: 42px;
}

.booking-intro {
  max-width: 440px;
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.booking-form {
  display: grid;
  gap: 18px;
  align-items: start;
}

.booking-assurance {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

label {
  display: grid;
  gap: 8px;
}

label > span:not(.address-control) {
  color: var(--muted);
  font-size: 0.82rem;
}

.address-field {
  position: relative;
}

.address-control {
  position: relative;
  display: block;
}

.address-suggestions {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  left: 0;
  z-index: 15;
  display: none;
  max-height: 285px;
  overflow: auto;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(12, 17, 24, 0.98);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.44);
}

.address-suggestions.is-visible {
  display: grid;
}

.suggestion-button {
  display: grid;
  gap: 4px;
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: transparent;
  color: var(--ink);
  padding: 12px 14px;
  text-align: left;
  cursor: pointer;
  font: inherit;
}

.suggestion-button:last-child {
  border-bottom: 0;
}

.suggestion-button small {
  color: var(--muted);
  font-size: 0.76rem;
}

.suggestion-button:hover,
.suggestion-button.is-active {
  background: linear-gradient(90deg, rgba(216, 181, 109, 0.16), rgba(109, 228, 255, 0.08));
}

input,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--ink);
  padding: 0 13px;
  font: inherit;
}

textarea {
  min-height: 86px;
  padding-block: 13px;
  resize: vertical;
}

select {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--ink);
  padding: 0 13px;
  font: inherit;
}

select option {
  background: #111821;
  color: var(--ink);
}

input:focus,
textarea:focus,
select:focus {
  outline: 2px solid rgba(109, 228, 255, 0.4);
  outline-offset: 2px;
}

.booking-extra.is-hidden,
.wizard-step:not(.is-active) {
  display: none;
}

.wizard-progress {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.wizard-progress span {
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  padding: 12px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.86rem;
  font-weight: 750;
}

.wizard-progress span.is-active {
  border-color: rgba(216, 181, 109, 0.48);
  color: var(--gold-2);
  background: linear-gradient(135deg, rgba(216, 181, 109, 0.18), rgba(109, 228, 255, 0.08));
}

.wizard-step {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.wizard-step.is-active {
  display: grid;
}

.wizard-step[data-step="0"],
.wizard-step[data-step="2"] {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.wizard-step[data-step="0"] label:first-child,
.booking-note,
.trip-estimate,
.review-panel {
  grid-column: 1 / -1;
}

.booking-submit {
  width: 100%;
  min-height: 52px;
}

.trip-estimate {
  display: grid;
  gap: 10px;
  border: 1px solid rgba(216, 181, 109, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(216, 181, 109, 0.14), rgba(109, 228, 255, 0.08)),
    rgba(5, 7, 11, 0.36);
  padding: clamp(18px, 3vw, 24px);
}

.trip-estimate.is-warning {
  border-color: rgba(242, 217, 154, 0.42);
}

.estimate-label {
  color: var(--muted);
  font-size: 0.86rem;
}

.trip-estimate strong {
  color: var(--gold-2);
  font-size: clamp(2.5rem, 6vw, 4.8rem);
  line-height: 0.92;
}

.trip-estimate p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.trip-estimate dl {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 10px 0 0;
}

.trip-estimate dl div {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.04);
}

.trip-estimate dt,
.trip-estimate dd {
  margin: 0;
}

.trip-estimate dt {
  color: var(--muted);
  font-size: 0.76rem;
}

.trip-estimate dd {
  margin-top: 5px;
  color: var(--ink);
  font-weight: 800;
}

.review-panel {
  display: grid;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  padding: 18px;
}

.review-panel h3 {
  margin-bottom: 4px;
}

.review-panel dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
}

.review-panel div {
  min-width: 0;
}

.review-panel dt,
.review-panel dd {
  margin: 0;
}

.review-panel dt {
  color: var(--muted);
  font-size: 0.76rem;
}

.review-panel dd {
  margin-top: 4px;
  color: var(--ink);
  font-weight: 750;
}

.wizard-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.vehicle-section {
  display: grid;
  grid-template-columns: minmax(320px, 1.2fr) minmax(280px, 0.8fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
  padding: clamp(70px, 9vw, 118px) clamp(18px, 4vw, 56px);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), transparent 42%),
    #05070b;
}

.vehicle-image-wrap {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: #0a0f16;
  box-shadow: var(--shadow);
}

.vehicle-image-wrap::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, transparent 52%, rgba(5, 7, 11, 0.74)),
    linear-gradient(90deg, rgba(109, 228, 255, 0.14), transparent 45%);
  pointer-events: none;
}

.vehicle-image-wrap img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: center;
}

.vehicle-copy p {
  max-width: 600px;
  margin: 22px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.vehicle-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.vehicle-points span {
  border: 1px solid rgba(216, 181, 109, 0.25);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--gold-2);
  background: rgba(216, 181, 109, 0.08);
  font-weight: 750;
}

.airport-routes {
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 78% 12%, rgba(109, 228, 255, 0.12), transparent 28%),
    #070a0f;
}

.airport-routes .section-heading p:last-child {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.route-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.route-card {
  display: grid;
  gap: 14px;
  align-content: start;
  min-height: 250px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025)),
    var(--panel-2);
  padding: 22px;
}

.route-card-featured {
  border-color: rgba(216, 181, 109, 0.42);
  background:
    linear-gradient(135deg, rgba(216, 181, 109, 0.16), rgba(109, 228, 255, 0.08)),
    var(--panel-2);
}

.route-card span {
  color: var(--gold-2);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.route-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.route-card strong {
  color: var(--gold-2);
  font-size: 2.5rem;
  line-height: 0.95;
}

.route-card .button {
  align-self: end;
  width: 100%;
}

.tariff-list {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.tariff-list span {
  border-left: 2px solid var(--gold);
  padding: 10px 0 10px 14px;
  color: var(--muted);
  background: linear-gradient(90deg, rgba(216, 181, 109, 0.08), transparent);
}

.section,
.split-section {
  padding-block: clamp(74px, 10vw, 130px);
}

.section-heading {
  width: min(780px, 100%);
  margin-bottom: 34px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.service-card {
  min-height: 270px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 15px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02)),
    var(--panel-2);
  padding: 24px;
  box-shadow: var(--shadow);
}

.service-card p,
.split-section p,
.contact-band p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.service-icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid rgba(216, 181, 109, 0.36);
  border-radius: 8px;
  color: var(--gold-2);
  background: rgba(216, 181, 109, 0.1);
}

.split-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(34px, 8vw, 110px);
  align-items: start;
  border-top: 1px solid var(--line);
  background: #070a0f;
}

.split-section > div p {
  margin-top: 22px;
  max-width: 600px;
}

.process-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 10px 20px;
  align-items: start;
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
}

.process-list span {
  grid-row: span 2;
  color: var(--cyan);
  font-weight: 850;
}

.contact-band {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(216, 181, 109, 0.14), rgba(109, 228, 255, 0.08)),
    #0b0f15;
  padding-block: 48px;
}

.contact-band p {
  margin-top: 14px;
}

.contact-actions {
  margin-top: 0;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  padding-block: 28px;
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--gold-2);
  font-weight: 800;
}

@media (max-width: 1060px) {
  .booking-strip,
  .vehicle-section,
  .split-section {
    grid-template-columns: 1fr;
  }

  .route-grid,
  .fare-strip,
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vehicle-image-wrap,
  .vehicle-image-wrap img {
    min-height: 320px;
  }
}

@media (max-width: 760px) {
  .site-header {
    align-items: flex-start;
    padding-block: 14px;
  }

  .nav-links {
    display: none;
  }

  .header-call {
    min-height: 42px;
    padding-inline: 12px;
    font-size: 0.86rem;
  }

  .hero {
    min-height: 78vh;
    padding-top: 104px;
    padding-bottom: 48px;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(5, 7, 11, 0.96), rgba(5, 7, 11, 0.66)),
      linear-gradient(0deg, #05070b 0%, rgba(5, 7, 11, 0.2) 50%);
  }

  .wizard-progress,
  .wizard-step,
  .wizard-step[data-step="0"],
  .wizard-step[data-step="2"],
  .review-panel dl,
  .route-grid,
  .fare-strip,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .trip-estimate dl {
    grid-template-columns: 1fr;
  }

  .contact-band {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-actions,
  .wizard-actions,
  .hero-actions {
    width: 100%;
  }

  .button {
    flex: 1 1 170px;
  }
}

@media (max-width: 420px) {
  .brand small {
    display: none;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .header-call {
    font-size: 0;
    width: 42px;
    padding: 0;
  }

  .header-call svg {
    font-size: 1rem;
  }

  h1 {
    font-size: 2.2rem;
  }
}
