:root {
  --bg: #0d1017;
  --surface: #151a24;
  --surface-2: #1d2431;
  --text: #f6f7f9;
  --muted: #aab2c1;
  --accent: #ffd31a;
  --accent-2: #ffec8a;
  --line: rgba(255,255,255,.11);
  --shadow: 0 24px 70px rgba(0,0,0,.35);
  --radius: 24px;
  --max: 1180px;
}

* { 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:
    radial-gradient(circle at 85% 5%, rgba(255,211,26,.16), transparent 24%),
    radial-gradient(circle at 5% 25%, rgba(255,255,255,.06), transparent 20%),
    var(--bg);
  color: var(--text);
  line-height: 1.55;
}

a { color: inherit; text-decoration: none; }
   
.brand-mark img{height:36px;width:36px}
button, input, select, textarea { font: inherit; }

.container { width: min(calc(100% - 32px), var(--max)); margin-inline: auto; }
.section { padding: 92px 0; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--accent-2);
  font-size: .83rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--accent);
  border-radius: 999px;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  font-size: clamp(3rem, 8vw, 6.7rem);
  line-height: .93;
  letter-spacing: -.065em;
  max-width: 900px;
  margin-bottom: 26px;
}
h2 {
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  line-height: 1;
  letter-spacing: -.045em;
  margin-bottom: 20px;
}
h3 { font-size: 1.15rem; margin-bottom: 9px; }
.lead {
  font-size: clamp(1.08rem, 2vw, 1.34rem);
  color: var(--muted);
  max-width: 720px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(18px);
  background: rgba(13,16,23,.74);
  border-bottom: 1px solid var(--line);
}
.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: -.03em;
}
.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--accent);
  color: #0a0d12;
  font-size: .88rem;
  box-shadow: 0 10px 30px rgba(255,211,26,.22);
}
.brand small { display: block; font-weight: 600; color: var(--muted); letter-spacing: 0; }
.navlinks { display: flex; align-items: center; gap: 26px; color: #dfe3ea; font-size: .96rem; }
.navlinks a:hover { color: var(--accent); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 850;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--accent);
  color: #11151c;
  box-shadow: 0 14px 36px rgba(255,211,26,.18);
}
.btn-primary:hover { box-shadow: 0 18px 46px rgba(255,211,26,.28); }
.btn-secondary { border-color: var(--line); background: rgba(255,255,255,.04); }

.hero { padding: 84px 0 44px; overflow: hidden; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  align-items: center;
  gap: 52px;
}
.hero-copy .lead { margin-bottom: 32px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 28px; }
.microcopy { color: var(--muted); font-size: .92rem; }
.microcopy strong { color: var(--text); }

.hero-visual {
  min-height: 560px;
  position: relative;
  display: grid;
  place-items: center;
}
.visual-card {
  width: min(100%, 520px);
  aspect-ratio: 1 / 1.05;
  border-radius: 38px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.13), rgba(255,255,255,.025)),
    #151a24;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.visual-card::before {
  content: "";
  position: absolute;
  inset: 7% 7% auto auto;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--accent);
  filter: blur(1px);
  opacity: .96;
  z-index: -1;
}
.visual-card::after {
  content: "";
  position: absolute;
  left: -15%;
  right: -15%;
  bottom: 6%;
  height: 2px;
  background: repeating-linear-gradient(90deg, rgba(255,255,255,.75) 0 34px, transparent 34px 64px);
  opacity: .72;
}
.plane {
  position: absolute;
  right: 10%;
  top: 14%;
  font-size: clamp(4rem, 10vw, 7rem);
  transform: rotate(-12deg);
  filter: drop-shadow(0 14px 18px rgba(0,0,0,.28));
}
.car {
  position: absolute;
  left: 7%;
  right: 7%;
  bottom: 12%;
  height: 32%;
  border-radius: 40px 70px 24px 24px;
  background: linear-gradient(180deg, #3a4352, #151922 72%);
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 28px 44px rgba(0,0,0,.42);
}
.car::before {
  content: "TAXI 1300";
  position: absolute;
  top: 16%;
  left: 34%;
  right: 34%;
  min-width: 110px;
  padding: 8px 10px;
  text-align: center;
  border-radius: 10px 10px 4px 4px;
  color: #11151c;
  font-size: .74rem;
  font-weight: 950;
  background: var(--accent);
  transform: translateY(-100%);
}
.window {
  position: absolute;
  left: 19%;
  right: 19%;
  top: 13%;
  height: 39%;
  border-radius: 62px 62px 14px 14px;
  background: linear-gradient(145deg, #aebbd0, #293343 70%);
  clip-path: polygon(18% 0, 82% 0, 100% 100%, 0 100%);
  opacity: .75;
}
.wheel {
  position: absolute;
  width: 70px;
  height: 70px;
  bottom: -26px;
  border: 14px solid #090b10;
  border-radius: 50%;
  background: #444d59;
}
.wheel.left { left: 11%; }
.wheel.right { right: 11%; }
.route-chip {
  position: absolute;
  left: 8%;
  top: 10%;
  padding: 12px 15px;
  border-radius: 16px;
  background: rgba(13,16,23,.74);
  border: 1px solid var(--line);
  backdrop-filter: blur(12px);
  font-size: .92rem;
  box-shadow: 0 12px 30px rgba(0,0,0,.22);
}
.route-chip strong { display: block; color: var(--accent); }

.trust-row {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  background: rgba(255,255,255,.025);
}
.trust-item { padding: 21px; border-right: 1px solid var(--line); }
.trust-item:last-child { border-right: 0; }
.trust-item strong { display: block; font-size: 1.04rem; }
.trust-item span { color: var(--muted); font-size: .9rem; }

.split-head {
  display: grid;
  grid-template-columns: 1fr .8fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 44px;
}
.split-head p { margin-bottom: 0; color: var(--muted); }

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.card {
  padding: 28px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.025));
  border: 1px solid var(--line);
  min-height: 210px;
}
.card-number {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--accent);
  color: #11151c;
  font-weight: 950;
  margin-bottom: 38px;
}
.card p { color: var(--muted); margin-bottom: 0; }

.booking-wrap {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 22px;
  align-items: stretch;
}
.booking-info, .booking-form {
  border: 1px solid var(--line);
  border-radius: 30px;
  background: var(--surface);
  padding: clamp(28px, 5vw, 48px);
  box-shadow: var(--shadow);
}
.booking-info {
  background:
    linear-gradient(160deg, rgba(255,211,26,.16), transparent 42%),
    var(--surface-2);
}
.booking-info ul { list-style: none; padding: 0; margin: 30px 0 0; }
.booking-info li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  color: #dfe3ea;
}
.booking-info li:last-child { border-bottom: 0; }
.tick { color: var(--accent); font-weight: 950; }

form { display: grid; gap: 18px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
label { display: grid; gap: 8px; font-size: .9rem; font-weight: 750; color: #dce1e8; }
input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: #0f141d;
  color: var(--text);
  border-radius: 14px;
  padding: 14px 15px;
  outline: none;
}
input:focus, select:focus, textarea:focus { border-color: rgba(255,211,26,.65); box-shadow: 0 0 0 4px rgba(255,211,26,.08); }
textarea { min-height: 110px; resize: vertical; }
.form-note { color: var(--muted); font-size: .82rem; margin: 0; }
.booking-form {
  background: var(--surface);
  color: var(--text);
  padding: 0;
  overflow: hidden;
}
.booking-form form {
  gap: 0;
}
.booking-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: rgba(255,255,255,.035);
}
.booking-tab {
  position: relative;
}
.booking-tab input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.booking-tab label {
  margin: 0;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-size: 1rem;
  font-weight: 850;
  cursor: pointer;
  border-right: 1px solid var(--line);
}
.booking-tab:last-child label { border-right: 0; }
.booking-tab .tab-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}
.booking-tab .tab-dot::after {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: transparent;
}
.booking-tab input:checked + label {
  background: rgba(255,211,26,.08);
  box-shadow: inset 0 -3px 0 var(--accent);
}
.booking-tab input:checked + label .tab-dot::after {
  background: var(--accent);
}
.booking-panel,
.booking-footer-fields {
  padding: 24px 28px;
}
.booking-panel {
  border-top: 1px solid var(--line);
}
.booking-section-title {
  margin: 0 0 10px;
  font-size: 1rem;
  color: var(--text);
  font-weight: 850;
}
.booking-form .light-label {
  color: var(--text);
  font-weight: 800;
}
.booking-form .light-input,
.booking-form .light-select,
.booking-form .light-textarea {
  background: #0f141d;
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 15px;
  box-shadow: none;
}
.booking-form .light-input:focus,
.booking-form .light-select:focus,
.booking-form .light-textarea:focus {
  border-color: rgba(255,211,26,.65);
  box-shadow: 0 0 0 4px rgba(255,211,26,.08);
}
.booking-inline {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 12px;
}
.booking-date-time {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 120px;
  gap: 12px;
}
.booking-panel.return-panel {
  padding: 18px 28px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255,211,26,.045);
}
.booking-check {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-size: 1rem;
  font-weight: 850;
}
.booking-check input {
  width: 18px;
  height: 18px;
  accent-color: var(--accent);
}
.booking-form .form-grid + .form-grid {
  margin-top: 14px;
}
.booking-section-title::after {
  content: '';
  display: block;
  width: 38px;
  height: 3px;
  margin-top: 9px;
  border-radius: 99px;
  background: var(--accent);
}
.booking-form input::placeholder,
.booking-form textarea::placeholder { color: #7f8792; }
.booking-form .btn {
  width: 100%;
  justify-content: center;
  margin-top: 10px;
}

.route-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.route-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.03);
}
.route-card span { color: var(--accent); font-weight: 850; }
.route-card p { color: var(--muted); margin-bottom: 0; }

.price-card {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  padding: clamp(28px, 5vw, 48px);
  border-radius: 30px;
  background: var(--accent);
  color: #10131a;
  box-shadow: 0 24px 60px rgba(255,211,26,.18);
}
.price-card h2 { color: #10131a; margin-bottom: 12px; }
.price-card p { max-width: 650px; margin-bottom: 0; color: #343a43; }
.price-box { text-align: right; }
.price-box small { display: block; font-weight: 850; }
.price { font-size: clamp(2.5rem, 6vw, 4.5rem); line-height: 1; font-weight: 950; letter-spacing: -.06em; }

.district-price-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, .65fr);
  gap: 22px;
  align-items: start;
}
.district-price-panel {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: var(--surface);
  box-shadow: var(--shadow);
}
.district-price-table {
  width: 100%;
  border-collapse: collapse;
  font-variant-numeric: tabular-nums;
}
.district-price-table th,
.district-price-table td {
  padding: 15px 22px;
  border-bottom: 1px solid var(--line);
}
.district-price-table th {
  color: var(--muted);
  background: rgba(255,255,255,.035);
  font-size: .82rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-align: left;
}
.district-price-table th:last-child,
.district-price-table td:last-child { text-align: right; }
.district-price-table tbody tr:last-child td { border-bottom: 0; }
.district-price-table tbody tr:hover { background: rgba(255,211,26,.045); }
.district-price-table td:first-child { font-weight: 850; }
.district-price-table td:last-child {
  color: var(--accent);
  font-weight: 950;
  white-space: nowrap;
}
.district-price-aside {
  position: sticky;
  top: 102px;
  display: grid;
  gap: 18px;
}
.featured-price {
  padding: 32px;
  border-radius: 30px;
  background: var(--accent);
  color: #10131a;
  box-shadow: 0 24px 60px rgba(255,211,26,.18);
}
.featured-price span {
  display: block;
  font-size: .85rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.featured-price strong {
  display: block;
  margin: 10px 0 8px;
  font-size: clamp(2.7rem, 7vw, 4.7rem);
  line-height: 1;
  letter-spacing: -.06em;
}
.featured-price p { margin: 0; color: #343a43; }
.price-note {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255,255,255,.03);
}
.price-note h3 { margin-bottom: 8px; }
.price-note p { color: var(--muted); margin-bottom: 0; }

.faq { display: grid; gap: 12px; }
details {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.025);
  padding: 20px 22px;
}
summary { cursor: pointer; font-weight: 850; list-style: none; display: flex; justify-content: space-between; gap: 20px; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; color: var(--accent); font-size: 1.35rem; }
details[open] summary::after { content: "–"; }
details p { color: var(--muted); margin: 14px 0 0; max-width: 850px; }

.contact-strip {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  padding: clamp(28px, 5vw, 52px);
  border-radius: 30px;
  border: 1px solid var(--line);
  background: linear-gradient(140deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
}
.contact-strip p { color: var(--muted); margin-bottom: 0; }
.contact-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: flex-end; }

footer { padding: 34px 0 44px; border-top: 1px solid var(--line); color: var(--muted); }
.footer-grid { display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.footer-links { display: flex; gap: 18px; flex-wrap: wrap; }

.mobile-cta {
  display: none;
  position: fixed;
  z-index: 40;
  left: 12px;
  right: 12px;
  bottom: 12px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(13,16,23,.88);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 50px rgba(0,0,0,.38);
  opacity: 0;
  visibility: hidden;
  transform: translateY(18px);
  pointer-events: none;
  transition: opacity .22s ease, visibility .22s ease, transform .22s ease;
}
.mobile-cta.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.mobile-cta .btn { width: 100%; }

@media (max-width: 900px) {
  .navlinks { display: none; }
  .hero { padding-top: 62px; }
  .hero-grid, .booking-wrap, .split-head { grid-template-columns: 1fr; }
  .hero-visual { min-height: 470px; }
  .trust-row { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .cards { grid-template-columns: 1fr; }
  .route-grid { grid-template-columns: 1fr; }
  .price-card, .contact-strip, .district-price-layout { grid-template-columns: 1fr; }
  .price-box { text-align: left; }
  .district-price-aside { position: static; }
  .contact-actions { justify-content: flex-start; }
}

@media (max-width: 620px) {
  .container { width: min(calc(100% - 22px), var(--max)); }
  .section { padding: 70px 0; }
  .nav { min-height: 68px; }
  .brand small { display: none; }
  .nav > .btn:not(.showalways) {
    display: none;
  }
  h1 { font-size: clamp(3.3rem, 18vw, 5rem); }
  .hero-actions { display: grid; }
  .hero-actions .btn { width: 100%; }
  .hero-visual { min-height: 390px; }
  .visual-card { border-radius: 26px; }
  .plane { top: 12%; }
  .trust-row { grid-template-columns: 1fr; }
  .trust-item { border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-item:last-child { border-bottom: 0; }
  .form-grid, .booking-date-time, .booking-inline, .booking-tabs { grid-template-columns: 1fr; }
  .booking-panel, .booking-footer-fields { padding: 20px 18px; }
  .booking-panel.return-panel { padding: 16px 18px; }
  .booking-tab label { padding: 18px; }
  .district-price-table th,
  .district-price-table td { padding: 13px 16px; }
  .mobile-cta { display: block; }
  body { padding-bottom: 86px; }
}

.hero-order {
  min-height: 72vh;
  display: flex;
  align-items: center;
  padding: 120px 0 90px;
  background:
    radial-gradient(circle at 85% 15%, rgba(255,211,26,.22), transparent 26%),
    radial-gradient(circle at 10% 30%, rgba(255,255,255,.07), transparent 22%);
}

.hero-order .container {
  text-align: center;
}

.hero-order h1 {
  margin-inline: auto;
}

.hero-order .lead {
  margin: 0 auto 34px;
}

.hero-order .hero-actions {
  justify-content: center;
}

.order-form-container {
  max-width: 900px;
}

.order-form {
  border-radius: 30px;
}

.order-form form {
  gap: 0;
}

.gps-button {
  width: 100%;
  margin-top: 14px !important;
  filter: grayscale(100%) !important;
  background: rgba(255, 255, 255, 0.8) !important;
}

.order-tabs {
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
}

.preorder-fields[hidden] {
  display: none;
}
.preorder-fields{
padding-top: 24px;
}

#locationStatus{
	text-align:center;
	padding-top: 12px;
}

#taxiOrderForm[hidden], #orderMHeader[hidden]{
  display: none;
}
[id] {
    scroll-margin-top: 80px;
}


.burger {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,.04);
  cursor: pointer;
  place-items: center;
  gap: 5px;
    color: white;
}

.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 99px;

}

@media (max-width: 900px) {
  .burger {
    display: grid;
  }

  .navlinks {
    position: absolute;
    top: 78px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(13,16,23,.96);
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow);
  }

  .navlinks.is-open {
    display: flex;
  }

  .navlinks a {
    padding: 14px 16px;
    border-radius: 14px;
  }

  .navlinks a:hover {
    background: rgba(255,211,26,.08);
  }
}

.suggestions {
  top: 100%;
  left: 0;
  right: 0;
  z-index: 60;
  margin-top: 6px;
  max-height: 270px;
  overflow-y: auto;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface-2);
  box-shadow: var(--shadow);
}

.suggestion-item {
  padding: 13px 15px;
  cursor: pointer;
  border-bottom: 1px solid var(--line);
  color: var(--text);
}

.suggestion-item:hover {
  background: rgba(255,211,26,.08);
}