:root {
  --bg: #090a0d;
  --bg-soft: #12151d;
  --panel: rgba(18, 21, 29, 0.78);
  --panel-solid: #141925;
  --gold: #d6a84d;
  --gold-soft: #f1d38d;
  --line: rgba(255, 255, 255, 0.12);
  --text: #f6f2e9;
  --muted: #c5c2ba;
  --ink: #111111;
  --mint: #a6d5cb;
  --radius: 8px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(214, 168, 77, 0.16), transparent 34%),
    linear-gradient(180deg, #08090c 0%, #10131b 56%, #0b0d12 100%);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

#ambient-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.9;
}

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

.netlify-hidden {
  display: none;
}

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

.location-field {
  position: relative;
  display: grid;
  gap: 10px;
}

.location-suggestions {
  z-index: 20;
  display: grid;
  max-height: 240px;
  overflow: auto;
  border: 1px solid rgba(241, 211, 141, 0.28);
  border-radius: var(--radius);
  background: rgba(14, 16, 22, 0.98);
  box-shadow: var(--shadow);
}

.location-suggestions[hidden] {
  display: none;
}

.location-suggestions button,
.suggestion-status {
  padding: 12px 14px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text);
  background: transparent;
  text-align: left;
  font-size: 0.9rem;
  line-height: 1.35;
}

.location-suggestions button {
  cursor: pointer;
}

.location-suggestions button:hover,
.location-suggestions button:focus {
  color: var(--ink);
  background: var(--gold);
  outline: none;
}

.suggestion-status {
  color: var(--muted);
}

.quick-locations {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.quick-locations[hidden] {
  display: none;
}

.quick-locations button {
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(241, 211, 141, 0.28);
  border-radius: 999px;
  color: var(--gold-soft);
  background: rgba(241, 211, 141, 0.08);
  font-size: 0.82rem;
  font-weight: 800;
  cursor: pointer;
}

.quick-locations button:hover,
.quick-locations button:focus {
  color: var(--ink);
  background: var(--gold);
  outline: none;
}

.map-pick-btn,
.map-tool-btn,
.map-close {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
}

.map-pick-btn {
  min-height: 46px;
  padding: 0 14px;
  color: var(--gold-soft);
  font-weight: 700;
}

.map-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(4, 5, 8, 0.8);
  backdrop-filter: blur(16px);
}

.map-modal.open {
  display: flex;
}

.map-dialog {
  width: min(980px, 100%);
  max-height: min(92vh, 920px);
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #11151d;
  box-shadow: var(--shadow);
}

.map-dialog-head,
.map-toolbar,
.map-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px;
}

.map-dialog-head {
  border-bottom: 1px solid var(--line);
}

.map-dialog-head h2 {
  font-size: clamp(1.7rem, 3vw, 2.7rem);
}

.map-close {
  width: 48px;
  height: 48px;
  font-size: 2rem;
}

.map-toolbar {
  align-items: flex-start;
}

.map-toolbar p,
.map-address span {
  margin: 0;
  color: var(--muted);
}

.ride-map {
  height: 440px;
  margin: 0 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.map-footer {
  align-items: stretch;
}

.map-address {
  display: grid;
  gap: 6px;
  flex: 1;
}

.map-address strong {
  font-size: 1.05rem;
}

.map-confirm {
  min-width: 190px;
  border: 0;
}

.map-confirm:disabled {
  cursor: not-allowed;
  filter: grayscale(0.8);
  opacity: 0.48;
  transform: none;
}

.site-header,
.section-shell,
.site-footer {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 18px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 18px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(10, 12, 17, 0.84);
  backdrop-filter: blur(18px);
}

.header-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex: 1;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: var(--text);
}

.brand,
.main-nav,
.header-actions,
.hero-actions,
.value-strip,
.contact-grid,
.site-footer {
  display: flex;
}

.brand {
  align-items: center;
  gap: 12px;
  font-weight: 700;
}

.brand img {
  width: 56px;
  height: 56px;
  border-radius: var(--radius);
  object-fit: cover;
}

.brand span {
  font-size: 1rem;
  letter-spacing: 0;
}

.main-nav {
  align-items: center;
  gap: 22px;
  color: var(--muted);
}

.main-nav a:hover,
.contact-card:hover strong {
  color: var(--gold-soft);
}

.header-actions {
  align-items: center;
  gap: 12px;
}

.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 44px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  background: transparent;
  cursor: pointer;
}

.lang-toggle span {
  min-width: 38px;
  padding: 8px 10px;
  border-radius: 6px;
  text-align: center;
}

.lang-toggle .active {
  color: var(--ink);
  background: var(--gold-soft);
}

.header-cta,
.primary-btn,
.ghost-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: var(--radius);
  padding: 0 18px;
  font-weight: 700;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease;
}

.header-cta,
.primary-btn {
  color: var(--ink);
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
}

.ghost-btn {
  border: 1px solid var(--line);
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.header-cta:hover,
.primary-btn:hover,
.ghost-btn:hover,
.service-card:hover,
.contact-card:hover {
  transform: translateY(-2px);
}

.section-shell {
  padding: 86px 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.95fr);
  align-items: center;
  min-height: calc(100vh - 110px);
  gap: 46px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold-soft);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 20px;
  font-size: clamp(3rem, 6vw, 6.4rem);
  line-height: 0.96;
}

h2 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.05;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.25rem;
}

.hero-text,
.booking-copy > p,
.about-panel p {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.06rem;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 14px;
  margin: 30px 0 34px;
}

.estimate-card,
.about-panel,
.service-card,
.contact-card,
.booking-form,
.fare-note,
.cab-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.cab-card.zone-offer {
  border-color: rgba(241, 211, 141, 0.64);
  background:
    linear-gradient(145deg, rgba(214, 168, 77, 0.22), rgba(255, 255, 255, 0.03)),
    rgba(18, 21, 29, 0.95);
}

.cab-card.zone-offer #scene-price {
  text-shadow: 0 0 28px rgba(241, 211, 141, 0.55);
}

.scene-price strong,
.estimate-card strong,
.service-card strong {
  display: block;
  color: var(--gold-soft);
}

.estimate-card span,
.estimate-card small,
.cab-topline,
.scene-price small,
.contact-card span {
  color: var(--muted);
}

.hero-scene {
  position: relative;
  min-height: 620px;
  perspective: 1200px;
}

.scene-grid,
.route-disc {
  position: absolute;
  inset: 0;
  border-radius: 999px;
}

.scene-grid {
  transform: rotateX(72deg) rotateZ(-8deg);
  background:
    linear-gradient(rgba(214, 168, 77, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(214, 168, 77, 0.18) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: radial-gradient(circle, black 28%, transparent 74%);
}

.route-disc {
  inset: 92px 48px 58px;
  border: 1px solid rgba(214, 168, 77, 0.2);
  background:
    radial-gradient(circle at 30% 30%, rgba(241, 211, 141, 0.16), transparent 32%),
    radial-gradient(circle at 70% 65%, rgba(166, 213, 203, 0.16), transparent 30%),
    rgba(255, 255, 255, 0.03);
  transform: rotateX(68deg);
}

.cab-card {
  position: absolute;
  top: 128px;
  right: 28px;
  left: 22px;
  min-height: 330px;
  padding: 28px;
  transform-style: preserve-3d;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(18, 21, 29, 0.92);
  cursor: pointer;
}

.cab-topline,
.route-path,
.scene-price {
  display: flex;
  align-items: center;
}

.cab-topline {
  justify-content: space-between;
  margin-bottom: 80px;
}

.cab-topline b {
  color: var(--gold-soft);
}

.route-path {
  gap: 16px;
  justify-content: space-between;
  font-size: clamp(1.4rem, 3vw, 2.4rem);
  font-weight: 800;
}

.route-path i {
  flex: 1;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), var(--mint));
  box-shadow: 0 0 26px rgba(214, 168, 77, 0.45);
}

.scene-price {
  justify-content: space-between;
  margin-top: 72px;
}

.scene-price strong {
  font-size: clamp(2.4rem, 4vw, 4rem);
}

.scene-note {
  width: fit-content;
  margin: 18px 0 0;
  padding: 10px 12px;
  border: 1px solid rgba(214, 168, 77, 0.34);
  border-radius: var(--radius);
  color: var(--gold-soft);
  background: rgba(214, 168, 77, 0.08);
  font-weight: 700;
}

.orbital-tag {
  position: absolute;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(9, 10, 13, 0.82);
  color: var(--gold-soft);
  box-shadow: var(--shadow);
}

.tag-one {
  top: 70px;
  left: 42px;
}

.carousel-controls,
.offer-dots {
  display: flex;
  align-items: center;
}

.carousel-controls {
  justify-content: space-between;
  gap: 14px;
  margin-top: 26px;
}

.carousel-controls button {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
}

.offer-dots {
  justify-content: center;
  gap: 8px;
  flex: 1;
}

.offer-dots button {
  width: 12px;
  height: 12px;
  padding: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}

.offer-dots button.active {
  background: var(--gold-soft);
}

.split,
.booking-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: 32px;
}

.about-panel {
  padding: 30px;
}

.value-strip {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.value-strip span,
.fare-note {
  padding: 12px 14px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
}

.services .section-heading,
.contact .section-heading {
  margin-bottom: 28px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.fleet .section-heading {
  margin-bottom: 28px;
}

.fleet-carousel {
  overflow: hidden;
}

.fleet-grid {
  display: flex;
  gap: 18px;
  transition: transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.fleet-card {
  position: relative;
  flex: 0 0 calc((100% - 36px) / 3);
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
  opacity: 0.66;
  transform: scale(0.94);
  transition:
    opacity 420ms ease,
    transform 420ms ease,
    border-color 420ms ease;
}

.fleet-card.is-active {
  opacity: 1;
  transform: scale(1);
  border-color: rgba(241, 211, 141, 0.55);
}

.fleet-card::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(115deg, transparent 22%, rgba(255, 255, 255, 0.14), transparent 48%);
  opacity: 0;
  transform: translateX(-70%);
}

.fleet-card.is-active::after {
  animation: fleetShine 3.4s ease-in-out infinite;
}

.fleet-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transform: scale(1.03);
  transition: transform 1.2s ease;
}

.fleet-card.is-active img {
  animation: fleetDrift 5.6s ease-in-out infinite alternate;
}

.fleet-card figcaption {
  min-height: 82px;
  padding: 18px;
  color: var(--muted);
}

.fleet-controls,
.fleet-dots {
  display: flex;
  align-items: center;
}

.fleet-controls {
  justify-content: center;
  gap: 14px;
  margin-top: 20px;
}

.fleet-controls button {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
}

.fleet-dots {
  gap: 8px;
}

.fleet-dots button {
  width: 12px;
  height: 12px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  cursor: pointer;
}

.fleet-dots button.active {
  background: var(--gold-soft);
}

@keyframes fleetDrift {
  from {
    transform: scale(1.03) translateX(-1.5%);
  }

  to {
    transform: scale(1.11) translateX(1.5%);
  }
}

@keyframes fleetShine {
  0%,
  46% {
    opacity: 0;
    transform: translateX(-70%);
  }

  70% {
    opacity: 0.7;
  }

  100% {
    opacity: 0;
    transform: translateX(70%);
  }
}

.service-card {
  min-height: 270px;
  padding: 22px;
  cursor: pointer;
  transition: transform 180ms ease;
}

.service-card.selected {
  border-color: rgba(241, 211, 141, 0.72);
  box-shadow:
    var(--shadow),
    0 0 32px rgba(214, 168, 77, 0.16);
}

.service-card:focus-visible {
  outline: 3px solid rgba(241, 211, 141, 0.55);
  outline-offset: 3px;
}

.service-card.emphasis {
  position: relative;
  background:
    linear-gradient(145deg, rgba(214, 168, 77, 0.32), rgba(166, 213, 203, 0.08)),
    var(--panel-solid);
  border-color: rgba(241, 211, 141, 0.5);
  box-shadow:
    var(--shadow),
    0 0 34px rgba(214, 168, 77, 0.14);
}

.service-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

.service-code {
  display: inline-flex;
  min-width: 54px;
  min-height: 32px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(214, 168, 77, 0.35);
  border-radius: var(--radius);
  color: var(--gold-soft);
  font-weight: 700;
}

.service-icon {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(166, 213, 203, 0.32);
  border-radius: var(--radius);
  background: rgba(166, 213, 203, 0.08);
  color: var(--mint);
}

.service-icon svg {
  width: 23px;
  height: 23px;
  fill: currentColor;
}

.deal-badge {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  border: 1px solid rgba(241, 211, 141, 0.46);
  border-radius: var(--radius);
  color: var(--ink);
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  font-size: 0.78rem;
  font-weight: 800;
}

.zone-price {
  display: block;
  font-size: 2.45rem;
  text-shadow: 0 0 28px rgba(241, 211, 141, 0.54);
}

.zone-offer-line {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  padding: 14px;
  border: 1px solid rgba(241, 211, 141, 0.42);
  border-radius: var(--radius);
  background: rgba(9, 10, 13, 0.24);
}

.zone-offer-line span {
  color: var(--gold-soft);
  font-weight: 800;
}

.custom-rate-line,
.fare-breakdown {
  display: block;
  color: var(--mint);
  font-weight: 800;
}

.custom-rate-line {
  margin-top: 18px;
  padding: 14px;
  border: 1px solid rgba(166, 213, 203, 0.34);
  border-radius: var(--radius);
  background: rgba(166, 213, 203, 0.08);
}

.fare-breakdown {
  margin-top: 10px;
}

.service-card p {
  min-height: 72px;
  color: var(--muted);
}

.service-card strong {
  font-size: 2rem;
}

.fare-note {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin-top: 18px;
  border: 1px solid var(--line);
}

.fare-note strong {
  text-align: right;
}

.booking-copy {
  position: sticky;
  top: 128px;
  align-self: start;
}

.estimate-card {
  margin-top: 28px;
  padding: 24px;
}

.form-estimate {
  margin-top: 20px;
  background:
    linear-gradient(145deg, rgba(214, 168, 77, 0.09), rgba(166, 213, 203, 0.06)),
    var(--panel);
}

.zone-warning {
  display: none;
  margin-top: 12px;
  color: var(--gold-soft);
  font-weight: 700;
}

.booking-form.zone-selected select {
  border-color: rgba(241, 211, 141, 0.75);
  background:
    linear-gradient(145deg, rgba(214, 168, 77, 0.13), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.05);
}

.booking-form.zone-selected .form-estimate {
  border-color: rgba(241, 211, 141, 0.62);
  background:
    linear-gradient(145deg, rgba(214, 168, 77, 0.3), rgba(166, 213, 203, 0.08)),
    var(--panel-solid);
  box-shadow:
    var(--shadow),
    0 0 36px rgba(214, 168, 77, 0.16);
}

.booking-form.zone-selected .form-estimate strong {
  text-shadow: 0 0 30px rgba(241, 211, 141, 0.56);
}

.booking-form.zone-selected .zone-warning {
  display: block;
}

.estimate-card strong {
  font-size: clamp(2.8rem, 5vw, 4.4rem);
}

.booking-form {
  padding: 26px;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

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

label span {
  color: var(--muted);
  font-size: 0.95rem;
}

.ride-timing-field {
  display: grid;
  gap: 10px;
}

.ride-timing-field > span {
  color: var(--muted);
  font-size: 0.95rem;
}

.ride-timing-toggle {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
}

.ride-timing-toggle label {
  display: block;
}

.ride-timing-toggle input {
  position: absolute;
  inline-size: 1px;
  block-size: 1px;
  opacity: 0;
  pointer-events: none;
}

.ride-timing-toggle span {
  display: grid;
  place-items: center;
  min-height: 44px;
  border-radius: calc(var(--radius) - 4px);
  color: var(--muted);
  font-weight: 900;
  cursor: pointer;
}

.ride-timing-toggle input:checked + span {
  color: var(--ink);
  background: var(--gold);
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
  outline: none;
}

input,
select {
  height: 52px;
  padding: 0 14px;
}

.time-field {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) 42px;
  align-items: center;
  gap: 8px;
  width: 100%;
  min-height: 52px;
  padding: 0 8px 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
}

.time-field:focus-within {
  border-color: rgba(241, 211, 141, 0.7);
}

.time-field input {
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  text-align: center;
  font-weight: 800;
}

.time-field span {
  color: var(--gold-soft);
  font-weight: 900;
}

.time-stepper {
  display: grid;
  gap: 3px;
}

.time-stepper button {
  display: grid;
  place-items: center;
  width: 34px;
  height: 21px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--gold-soft);
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
  line-height: 1;
}

.time-stepper button:hover {
  color: var(--ink);
  background: var(--gold);
}

select {
  color-scheme: dark;
  background-color: rgba(18, 20, 27, 0.96);
}

select option {
  color: var(--text);
  background-color: #11141b;
}

button:disabled {
  cursor: wait;
  opacity: 0.72;
}

textarea {
  resize: vertical;
  min-height: 118px;
  padding: 14px;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(241, 211, 141, 0.7);
}

label.has-error input,
label.has-error select,
label.has-error textarea,
label.has-error .time-field {
  border-color: rgba(255, 112, 112, 0.82);
  box-shadow: 0 0 0 3px rgba(255, 112, 112, 0.12);
}

.field-error {
  color: #ffb0a8;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.45;
}

.field-wide {
  grid-column: 1 / -1;
}

.submit-btn {
  width: 100%;
  margin-top: 20px;
  border: 0;
  cursor: pointer;
}

.contact-grid {
  gap: 18px;
}

.contact-card {
  flex: 1;
  min-height: 132px;
  padding: 22px;
  transition: transform 180ms ease;
}

.contact-card strong {
  display: block;
  margin-top: 18px;
  font-size: 1.25rem;
}

.site-footer {
  justify-content: space-between;
  gap: 18px;
  padding: 0 0 36px;
  color: var(--muted);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .site-header {
    flex-wrap: wrap;
  }

  .hero,
  .split,
  .booking-shell {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 58px;
  }

  .hero-scene {
    min-height: 560px;
  }

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

  .fleet-card {
    flex-basis: min(78vw, 520px);
  }

  .booking-copy {
    position: static;
  }
}

@media (max-width: 760px) {
  .site-header,
  .section-shell,
  .site-footer {
    width: min(100% - 24px, 1200px);
  }

  .site-header,
  .main-nav,
  .header-actions,
  .fare-note,
  .contact-grid,
  .site-footer {
    align-items: stretch;
  }

  .site-header {
    align-items: center;
    justify-content: space-between;
  }

  .fare-note {
    flex-direction: column;
    gap: 8px;
  }

  .fare-note strong {
    text-align: left;
  }

  .menu-toggle {
    display: inline-block;
    flex: 0 0 auto;
  }

  .header-panel {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    padding: 12px 0 2px;
  }

  .site-header.menu-open .header-panel {
    display: flex;
  }

  .main-nav,
  .header-actions,
  .contact-grid,
  .site-footer {
    flex-direction: column;
  }

  .main-nav {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .main-nav a {
    display: flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.045);
    color: var(--text);
    font-weight: 700;
  }

  .main-nav a[href="#fleet"] {
    grid-column: 1 / -1;
  }

  .main-nav a:hover {
    border-color: rgba(241, 211, 141, 0.48);
    background: rgba(214, 168, 77, 0.08);
  }

  .header-actions {
    width: 100%;
    gap: 10px;
  }

  .header-cta,
  .lang-toggle {
    width: 100%;
  }

  .lang-toggle {
    justify-content: center;
  }

  .lang-toggle span {
    flex: 1;
  }

  .section-shell {
    padding: 64px 0;
  }

  h1 {
    font-size: clamp(2.7rem, 12vw, 4.8rem);
  }

  .hero-scene {
    min-height: 470px;
  }

  .cab-card {
    top: 96px;
    right: 8px;
    left: 8px;
    min-height: 282px;
    padding: 20px;
  }

  .cab-topline {
    margin-bottom: 52px;
  }

  .scene-price {
    margin-top: 48px;
  }

  .orbital-tag {
    font-size: 0.9rem;
  }

  .tag-one {
    top: 38px;
    left: 4px;
  }

  .service-grid,
  .field-grid {
    grid-template-columns: 1fr;
  }

  .map-modal {
    padding: 12px;
  }

  .map-dialog-head,
  .map-toolbar,
  .map-footer {
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
  }

  .ride-map {
    height: 360px;
    margin: 0 18px;
  }

  .map-confirm {
    min-width: 0;
  }

  .carousel-controls {
    gap: 10px;
  }

  .carousel-controls button {
    width: 40px;
    height: 40px;
  }

  .fleet-card {
    flex-basis: 100%;
  }

  .field-wide {
    grid-column: auto;
  }
}
