:root {
  --ink: #121417;
  --muted: #667085;
  --line: #d9dee7;
  --paper: #f7f8fb;
  --white: #ffffff;
  --gold: #b88938;
  --gold-dark: #7c5a21;
  --green: #0f8a63;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Inter", Arial, sans-serif;
}
a { color: inherit; text-decoration: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}
.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--white);
  background: var(--ink);
  border: 2px solid var(--gold);
  font-size: 13px;
}
.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}
.nav a:hover, .footer-links a:hover { color: var(--gold-dark); }
.header-tools {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.language-toggle {
  display: inline-flex;
  padding: 3px;
  background: #101216;
  border: 1px solid rgba(184, 137, 56, 0.45);
  border-radius: 999px;
}
.lang-button {
  min-width: 38px;
  min-height: 32px;
  color: rgba(255, 255, 255, 0.72);
  background: transparent;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}
.lang-button.active {
  color: var(--ink);
  background: var(--gold);
}

.header-action, .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  cursor: pointer;
}
.header-action, .button.primary {
  color: var(--white);
  background: var(--ink);
}
.button.secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
  border-color: var(--line);
}
.pay-button {
  min-height: 54px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #08090b;
}
.pay-button:hover {
  filter: brightness(1.06);
}

.hero {
  position: relative;
  display: grid;
  min-height: 720px;
  align-items: end;
  padding: 96px clamp(18px, 4vw, 56px) 42px;
  overflow: hidden;
  color: var(--white);
}
.hero-media {
  position: absolute;
  inset: 0;
  background-color: #050607;
  background:
    linear-gradient(90deg, rgba(5, 6, 7, 0.93), rgba(5, 6, 7, 0.66), rgba(5, 6, 7, 0.22)),
    linear-gradient(180deg, rgba(5, 6, 7, 0.18), rgba(5, 6, 7, 0.68)),
    url("hero-interior.png?v=54") 70% 28% / cover no-repeat;
}
.hero-content {
  position: relative;
  max-width: 760px;
  padding-bottom: 60px;
}
.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: clamp(44px, 7vw, 84px);
  line-height: 0.98;
}
h2 {
  margin-bottom: 16px;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.05;
}
h3 { margin-bottom: 12px; font-size: 21px; }
.hero-copy {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 19px;
  line-height: 1.6;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
.call-fallback {
  position: relative;
  max-width: 460px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
  line-height: 1.5;
}
.call-fallback a {
  color: var(--gold);
}
.booking-card {
  position: absolute;
  right: clamp(18px, 4vw, 56px);
  bottom: 42px;
  width: min(330px, calc(100% - 36px));
  padding: 24px;
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.06)),
    rgba(5, 6, 7, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(18px);
}
.booking-card p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.5;
}
.status-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 8px;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(184, 137, 56, 0.16);
  border-radius: 50%;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  padding: 1px;
  background: linear-gradient(90deg, #050607, rgba(184, 137, 56, 0.45), #050607);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.trust-strip div {
  display: grid;
  gap: 8px;
  min-height: 126px;
  align-content: center;
  padding: 26px clamp(18px, 3vw, 38px);
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02)),
    #080a0d;
}
.trust-strip strong { font-size: 22px; }
.trust-strip strong::after {
  display: block;
  width: 36px;
  height: 2px;
  margin-top: 10px;
  content: "";
  background: linear-gradient(90deg, var(--gold), rgba(255, 255, 255, 0.5));
}
.trust-strip span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
}

.section, .split-section, .booking-section {
  padding: 88px clamp(18px, 4vw, 56px);
}
.section-heading {
  max-width: 620px;
  margin-bottom: 34px;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.card {
  min-height: 250px;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}
.card p, .split-section p, .booking-intro p, .fleet-details p, .site-footer p {
  color: var(--muted);
  line-height: 1.65;
}
.service-card {
  position: relative;
  display: flex;
  min-height: 360px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0;
  overflow: hidden;
  color: var(--white);
  background: #090a0c;
}

.service-card h3,
.service-card p {
  position: relative;
  z-index: 1;
  padding-inline: 22px;
}

.service-card h3 {
  margin-top: auto;
  color: var(--white);
}

.service-card p {
  color: rgba(255, 255, 255, 0.82);
  padding-bottom: 24px;
}

.service-photo {
  position: absolute;
  inset: 0;
  min-height: 100%;
  background-position: center;
  background-size: cover;
}

.service-photo::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(18, 20, 23, 0.04), rgba(18, 20, 23, 0.54)),
    linear-gradient(90deg, rgba(18, 20, 23, 0.62), rgba(18, 20, 23, 0));
}

.airport-card .service-photo {
  background-image: url("service-airport.png?v=54");
  background-position: center 58%;
}

.event-card .service-photo {
  background-image: url("https://images.unsplash.com/photo-1519741497674-611481863552?auto=format&fit=crop&w=900&q=80");
}

.corporate-card .service-photo {
  background-image: url("service-pickup.png?v=54");
  background-position: center 58%;
}

.night-card .service-photo {
  background-image: url("service-night.png?v=54");
  background-position: center 62%;
}

.card-icon {
  position: absolute;
  left: 18px;
  bottom: 16px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--white);
  background: rgba(18, 20, 23, 0.82);
  border: 1px solid rgba(184, 137, 56, 0.78);
  border-radius: 50%;
  font-weight: 800;
}

.split-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(28px, 5vw, 80px);
  align-items: center;
  background: var(--white);
}
.fleet-panel {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  min-height: 420px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
}
.fleet-image {
  min-height: 360px;
  background:
    linear-gradient(180deg, rgba(18, 20, 23, 0), rgba(18, 20, 23, 0.28)),
    url("suburban-premier-2026.jpg.png?v=54") center / cover,
    url("https://images.unsplash.com/photo-1549317661-bd32c8ce0db2?auto=format&fit=crop&w=1200&q=82") center / cover;
}
.fleet-details {
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 26px;
  background: #15181d;
  color: var(--white);
}
.fleet-details span {
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
}
.fleet-details strong {
  margin-bottom: 12px;
  font-size: 26px;
}
.amenity-badge {
  width: fit-content;
  margin-top: 8px;
  padding: 9px 12px;
  color: var(--white);
  background: rgba(184, 137, 56, 0.18);
  border: 1px solid rgba(184, 137, 56, 0.62);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 800;
}

.booking-section {
  position: relative;
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(28px, 5vw, 76px);
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 22% 18%, rgba(255, 255, 255, 0.06), transparent 28%),
    linear-gradient(135deg, #020303 0%, #050607 52%, #020303 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.booking-intro {
  position: sticky;
  top: 96px;
  align-self: start;
  z-index: 1;
}
.booking-intro .contact-note {
  display: none;
}
.booking-intro .payment-methods-card,
.booking-intro .payment-panel {
  margin-top: 24px;
}
.booking-intro .payment-panel {
  display: grid;
  grid-template-columns: 1fr;
}
.booking-logo {
  display: block;
  width: min(640px, 126%);
  height: auto;
  margin: -52px 0 18px -44px;
  opacity: 0.98;
  mix-blend-mode: normal;
  filter: drop-shadow(0 18px 34px rgba(0, 0, 0, 0.52));
}
.booking-section .eyebrow {
  color: #d6aa5c;
}
.booking-intro h2 {
  color: var(--white);
}
.booking-intro p {
  color: rgba(255, 255, 255, 0.72);
}
.contact-note,
.payment-methods-card {
  display: grid;
  gap: 8px;
  margin-top: 30px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.contact-note strong,
.payment-methods-card strong {
  color: var(--white);
}
.contact-note span { color: var(--muted); line-height: 1.5; }
.payment-methods-card {
  margin-top: 0;
}
.payment-methods-card span {
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.5;
}
.booking-section .contact-note span {
  color: rgba(255, 255, 255, 0.66);
}
.booking-form {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 26px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.06)),
    rgba(7, 8, 10, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(18px);
}
.booking-form::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  border-radius: inherit;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
}
label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  font-weight: 800;
}
input, select, textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  font: inherit;
}
input[type="file"] {
  padding: 12px;
  color: rgba(255, 255, 255, 0.72);
}
input[type="file"]::file-selector-button {
  margin-right: 12px;
  padding: 9px 12px;
  color: var(--ink);
  background: var(--gold);
  border: 0;
  border-radius: 6px;
  font-weight: 800;
  cursor: pointer;
}
.field-help {
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
}
input::placeholder,
textarea::placeholder {
  color: rgba(255, 255, 255, 0.48);
}
select option {
  color: var(--ink);
}
textarea { resize: vertical; }
input:focus, select:focus, textarea:focus {
  border-color: var(--gold);
  outline: 3px solid rgba(184, 137, 56, 0.22);
}
.checkbox-field {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 52px;
  padding: 13px 14px;
  background: rgba(184, 137, 56, 0.11);
  border: 1px solid rgba(184, 137, 56, 0.38);
  border-radius: 6px;
}
.checkbox-field input {
  width: 18px;
  min-height: 18px;
  accent-color: var(--gold);
}
.checkbox-field span {
  line-height: 1.35;
}
.airport-pricing,
.ride-pricing,
.hourly-pricing,
.payment-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 18px;
  background:
    linear-gradient(145deg, rgba(184, 137, 56, 0.16), rgba(255, 255, 255, 0.05)),
    rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(184, 137, 56, 0.38);
  border-radius: 8px;
}
.airport-pricing[hidden],
.ride-pricing[hidden],
.hourly-pricing[hidden],
.payment-panel[hidden] {
  display: none;
}
.pricing-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  grid-column: 1 / -1;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.pricing-head span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}
.pricing-head strong {
  color: var(--gold);
  font-size: clamp(20px, 3vw, 30px);
}
.airport-pricing p,
.ride-pricing p,
.hourly-pricing p,
.payment-panel p {
  grid-column: 1 / -1;
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.5;
}
.checkout-page {
  min-height: 100vh;
  padding: clamp(24px, 5vw, 64px);
  color: var(--white);
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 255, 255, 0.08), transparent 30%),
    linear-gradient(135deg, #020303 0%, #101419 52%, #020303 100%);
}
.checkout-shell {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  max-width: 1180px;
  margin: 0 auto;
}
.checkout-logo {
  width: min(480px, 100%);
  margin: -36px 0 10px -30px;
}
.checkout-summary h1 {
  color: var(--white);
  font-size: clamp(40px, 6vw, 72px);
}
.summary-box,
.checkout-card {
  padding: 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.06)),
    rgba(7, 8, 10, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.36);
}
.summary-box p {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.45;
}
.checkout-card {
  display: grid;
  gap: 18px;
}
#card-container {
  min-height: 90px;
}
.wallet-button {
  min-height: 46px;
  border-radius: 6px;
  overflow: hidden;
}
.full { grid-column: 1 / -1; }
.form-message {
  grid-column: 1 / -1;
  min-height: 24px;
  margin: 0;
  color: var(--green);
  font-weight: 700;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 36px clamp(18px, 4vw, 56px);
  color: var(--white);
  background: var(--ink);
}
.site-footer p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.68);
}
.footer-links {
  display: grid;
  gap: 10px;
  text-align: right;
}

@media (max-width: 1000px) {
  .nav { display: none; }
  .hero { min-height: 760px; }
  .booking-card {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 24px;
  }
  .trust-strip, .service-grid { grid-template-columns: repeat(2, 1fr); }
  .split-section, .booking-section { grid-template-columns: 1fr; }
  .booking-intro { position: static; }
}

@media (max-width: 640px) {
  .site-header { align-items: flex-start; }
  .header-action { display: none; }
  .header-tools { margin-left: auto; }
  .hero {
    min-height: 720px;
    padding-top: 72px;
  }
  .hero-content { padding-bottom: 16px; }
  .trust-strip, .service-grid, .fleet-panel, .booking-form, .airport-pricing, .ride-pricing, .hourly-pricing, .payment-panel, .checkout-shell { grid-template-columns: 1fr; }
  .pricing-head {
    align-items: flex-start;
    flex-direction: column;
  }
  .section, .split-section, .booking-section {
    padding-top: 62px;
    padding-bottom: 62px;
  }
  .site-footer { display: grid; }
  .footer-links { text-align: left; }
}
