:root {
  --bg: #0b1020;
  --bg-2: #11183a;
  --panel: #ffffff;
  --panel-2: #f2f2f2;
  --ink: #0d1330;
  --ink-2: #4a5278;
  --muted: #8089a8;
  --line: #e6e8f1;
  --brand: #e11d2e;        /* World Cup red */
  --brand-2: #ffffff;      /* accent (was gold) */
  --accent: #1e7a3a;       /* pitch green */
  --radius: 14px;
  --shadow: 0 10px 30px rgba(13, 19, 48, 0.08);
  --shadow-lg: 0 20px 60px rgba(13, 19, 48, 0.18);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--ink);
  background: var(--panel-2);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

.wrap { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* nav */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: #f2f2f2;
  backdrop-filter: saturate(140%) blur(8px);
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 1px 12px rgba(13, 19, 48, 0.05);
}
.nav-inner { display: flex; align-items: center; gap: 24px; height: 64px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 700; }
.logo-mark { font-size: 22px; }
.logo-text { font-family: "Bebas Neue", sans-serif; letter-spacing: 1px; font-size: 22px; }
.logo-accent { color: var(--brand-2); margin-left: 2px; }

/* Image-based brand logo — blends into white nav */
.brand-img {
  padding: 0;
  background: transparent;
  border: none;
  outline: none;
  -webkit-tap-highlight-color: transparent;
  transition: transform .12s ease;
}
.brand-img:focus { outline: none; }
.brand-img:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 4px;
  border-radius: 6px;
}
.brand-img:hover { transform: translateY(-1px); }
.brand-logo {
  display: block;
  height: 44px;
  width: auto;
  border: none;
}
@media (max-width: 520px) {
  .brand-logo { height: 34px; }
}
.nav-links { display: flex; gap: 22px; margin-left: auto; }
.nav-links a { color: var(--ink-2); font-size: 14px; font-weight: 500; }
.nav-links a:hover { color: var(--ink); }

/* buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 18px; border-radius: 999px;
  font-weight: 800; font-size: 15px;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  transition: transform .08s ease, background .15s ease, color .15s ease;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--brand); color: #fff; }
.btn-primary:hover { background: #c81526; }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,0.25); }
.btn-ghost:hover { background: rgba(255,255,255,0.08); }
.btn-ghost-dark { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost-dark:hover { background: var(--panel-2); }
.btn-sm { padding: 8px 14px; font-size: 13px; }
.btn-lg { padding: 16px 22px; font-size: 16px; }
.btn-block { width: 100%; }

/* hero */
.hero {
  background:
    radial-gradient(1200px 500px at 80% -10%, rgba(225,29,46,0.28), transparent 60%),
    radial-gradient(900px 400px at 10% 110%, rgba(255,255,255,0.10), transparent 60%),
    linear-gradient(180deg, #0b1020 0%, #11183a 100%);
  color: #fff;
  padding: 72px 0 96px;
  overflow: hidden;
}
.hero-inner { display: grid; grid-template-columns: 1.2fr .8fr; gap: 40px; align-items: center; }
.eyebrow { color: var(--brand-2); font-size: 13px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; margin: 0 0 12px; }
.hero h1 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(48px, 7vw, 92px);
  line-height: 0.95; letter-spacing: 1px;
  margin: 0 0 18px;
}
.hero h1 .accent { color: var(--brand-2); }
.lede { font-size: 18px; color: #c8cee5; max-width: 52ch; margin: 0 0 24px; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 24px; }
.hero-points { list-style: none; padding: 0; margin: 0; color: #c8cee5; font-size: 14px; }
.hero-points li { padding: 4px 0; }

.hero-art { position: relative; height: 320px; }
.hero-art .ball {
  position: absolute; inset: 30px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, #fff 0 30%, #ddd 32% 60%, #888 62% 100%);
  box-shadow: 0 30px 80px rgba(0,0,0,0.45);
}
.hero-art .ring {
  position: absolute; inset: 0;
  border: 2px dashed rgba(255,255,255,0.35);
  border-radius: 50%;
  animation: spin 24s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* sections */
.section { padding: 80px 0; }
.section-alt { background: #fff; }
.section-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(34px, 4.5vw, 52px);
  letter-spacing: 1px; margin: 0 0 8px;
}
.section-sub { color: var(--ink-2); margin: 0 0 36px; max-width: 60ch; }

/* vehicles */
.vehicles {
  display: grid; gap: 22px;
  grid-template-columns: repeat(3, 1fr);
}
.vehicle-card {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 26px; position: relative;
  display: flex; flex-direction: column;
  box-shadow: var(--shadow);
}
.vehicle-card.featured { border-color: var(--brand); transform: translateY(-6px); }
.vehicle-card .badge {
  position: absolute; top: -12px; right: 20px;
  background: var(--brand); color: #fff; font-size: 11px; font-weight: 700;
  padding: 6px 10px; border-radius: 999px; letter-spacing: .5px; text-transform: uppercase;
}
.vehicle-icon { font-size: 38px; }
.vehicle-photo {
  aspect-ratio: 16 / 10;
  width: calc(100% + 52px);
  margin: -26px -26px 16px;
  border-radius: var(--radius) var(--radius) 0 0;
  background-color: #0b1020;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.vehicle-card h3 { font-family: "Bebas Neue", sans-serif; font-size: 28px; letter-spacing: 1px; margin: 6px 0 4px; }
.vehicle-pax { color: var(--ink-2); margin: 0 0 12px; font-size: 14px; }
.vehicle-feats { list-style: none; padding: 0; margin: 0 0 18px; color: var(--ink-2); font-size: 14px; }
.vehicle-feats li { padding: 5px 0; border-top: 1px dashed var(--line); }
.vehicle-feats li:first-child { border-top: 0; }
.vehicle-price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 4px; }
.price-num { font-family: "Bebas Neue", sans-serif; font-size: 40px; color: var(--brand); }
.price-unit { color: var(--ink-2); font-size: 14px; }
.vehicle-transfer { font-size: 13px; color: var(--ink-2); margin-bottom: 18px; }

/* booking */
.book-grid {
  display: grid; gap: 28px;
  grid-template-columns: 1.4fr 1fr;
  align-items: start;
}
.card {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 28px;
  box-shadow: var(--shadow);
}
.form-card .field { display: flex; flex-direction: column; margin-bottom: 14px; border: 0; padding: 0; }
.form-card legend { font-size: 13px; font-weight: 600; margin-bottom: 8px; color: var(--ink); }
.form-card label > span { font-size: 13px; font-weight: 600; margin-bottom: 6px; }
.form-card label em { color: var(--muted); font-style: normal; font-weight: 400; }
.row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

input[type="text"], input[type="email"], input[type="tel"],
input[type="number"], input[type="date"], input[type="time"],
select, textarea {
  font: inherit; color: var(--ink);
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  transition: border-color .15s ease, box-shadow .15s ease;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(225,29,46,0.15);
}

.seg { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.seg-3 { grid-template-columns: repeat(3, 1fr); }
.seg label {
  display: block; text-align: center; cursor: pointer;
  padding: 12px 10px; border: 1px solid var(--line); border-radius: 10px;
  font-size: 14px; font-weight: 600; color: var(--ink-2);
  background: var(--panel-2);
  transition: all .12s ease;
}
.seg input { position: absolute; opacity: 0; pointer-events: none; }
.seg label:has(input:checked) {
  background: var(--ink); color: #fff; border-color: var(--ink);
}
.hint { color: var(--muted); font-size: 13px; margin: 6px 0 0; }
.hint.center { text-align: center; }
.paypal-wrap { margin-top: 14px; min-height: 50px; }
.paypal-wrap:empty { display: none; }

/* quote */
.quote-card { position: sticky; top: 88px; }
.quote-eyebrow { color: var(--brand); font-weight: 700; letter-spacing: 1.5px; font-size: 12px; text-transform: uppercase; margin: 0 0 14px; }
.quote-row { display: flex; justify-content: space-between; padding: 8px 0; font-size: 14px; color: var(--ink-2); }
.quote-row strong { color: var(--ink); font-weight: 600; }
.quote-card hr { border: 0; border-top: 1px solid var(--line); margin: 14px 0; }
.quote-total { display: flex; justify-content: space-between; align-items: baseline; }
.quote-total span { color: var(--ink-2); font-size: 14px; }
.quote-total strong { font-family: "Bebas Neue", sans-serif; font-size: 38px; color: var(--ink); }
.quote-fine { font-size: 12px; color: var(--muted); margin: 8px 0 18px; }
.trust { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 6px; font-size: 12px; color: var(--ink-2); }
.trust > div { background: var(--panel-2); border-radius: 8px; padding: 8px 6px; text-align: center; }

/* how it works */
.how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.how-step { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow); }
.step-num {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--brand); color: #fff;
  display: grid; place-items: center;
  font-family: "Bebas Neue", sans-serif; font-size: 22px;
  margin-bottom: 14px;
}
.how-step h3 { font-family: "Bebas Neue", sans-serif; font-size: 24px; letter-spacing: 1px; margin: 0 0 6px; }
.how-step p { color: var(--ink-2); margin: 0; font-size: 15px; }

/* cities */
.cities { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 24px; }
.city-col h4 { font-family: "Bebas Neue", sans-serif; font-size: 22px; letter-spacing: 1px; margin: 0 0 10px; }
.city-col ul { columns: 2; column-gap: 24px; list-style: none; padding: 0; margin: 0; color: var(--ink-2); }
.city-col:not(:first-child) ul { columns: 1; }
.city-col li { padding: 4px 0; }

/* packages */
.packages { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.pkg {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 26px;
  box-shadow: var(--shadow);
  display: flex; flex-direction: column;
}
.pkg.featured-pkg { border-color: var(--brand); transform: translateY(-6px); }
.pkg-tag {
  display: inline-block; align-self: flex-start;
  background: var(--panel-2); color: var(--ink-2);
  font-size: 11px; font-weight: 700; letter-spacing: .5px;
  padding: 4px 10px; border-radius: 999px; text-transform: uppercase;
  margin-bottom: 12px;
}
.pkg.featured-pkg .pkg-tag { background: var(--brand); color: #fff; }
.pkg h3 { font-family: "Bebas Neue", sans-serif; font-size: 26px; letter-spacing: 1px; margin: 0 0 8px; }
.pkg p { color: var(--ink-2); margin: 0 0 12px; font-size: 15px; }
.pkg ul { list-style: none; padding: 0; margin: 0 0 18px; color: var(--ink-2); font-size: 14px; }
.pkg ul li { padding: 6px 0; border-top: 1px dashed var(--line); }
.pkg ul li:first-child { border-top: 0; }
.pkg .btn { margin-top: auto; align-self: flex-start; }

/* service zones */
.zones { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.zone {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 22px;
  box-shadow: var(--shadow);
}
.zone h4 { font-family: "Bebas Neue", sans-serif; font-size: 22px; letter-spacing: 1px; margin: 0 0 10px; }
.zone ul { list-style: none; padding: 0; margin: 0; color: var(--ink-2); font-size: 14px; }
.zone li { padding: 4px 0; border-top: 1px dashed var(--line); }
.zone li:first-child { border-top: 0; }

/* faq */
.faq { display: grid; gap: 12px; max-width: 820px; }
.faq details {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 18px 20px;
  box-shadow: var(--shadow);
}
.faq summary {
  cursor: pointer; font-weight: 600; color: var(--ink);
  list-style: none; display: flex; justify-content: space-between; align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; font-size: 22px; color: var(--brand); margin-left: 12px;
  transition: transform .15s ease;
}
.faq details[open] summary::after { content: "−"; }
.faq details p { margin: 12px 0 0; color: var(--ink-2); font-size: 15px; }

/* test checkout block (dev only) */
.test-card {
  max-width: 520px;
  margin: 0 auto;
  background: #fff8e1;
  border: 2px dashed #f5b500;
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
}
.test-badge {
  display: inline-block;
  background: #f5b500;
  color: #5a3d00;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 1.5px;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.test-card h3 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 32px;
  letter-spacing: 1px;
  margin: 0 0 8px;
  color: var(--ink);
}
.test-card p {
  color: var(--ink-2);
  font-size: 14px;
  margin: 0 0 18px;
  line-height: 1.5;
}
.paypal-test-wrap {
  min-height: 50px;
  margin-bottom: 14px;
}
.test-fine {
  font-size: 12px;
  color: var(--muted);
  margin: 0 !important;
}

/* footer */
.footer { background: #0b1020; color: #c8cee5; padding: 40px 0; margin-top: 40px; }
.footer-inner { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; align-items: center; }
.footer-brand { display: flex; flex-direction: column; gap: 10px; align-items: flex-start; }
.footer-logo {
  display: block;
  height: 56px;
  width: auto;
  padding: 8px 16px;
  background: #ffffff;
  border-radius: 12px;
  box-sizing: content-box;
}
.muted { color: #8089a8; margin: 4px 0 0; }
.small { font-size: 12px; }

/* dialog */
dialog#demo-modal {
  border: 0; border-radius: var(--radius); padding: 0;
  max-width: 520px; width: calc(100% - 32px);
  box-shadow: var(--shadow-lg);
}
dialog#demo-modal::backdrop { background: rgba(11,16,32,0.6); }
dialog#demo-modal form { padding: 26px; }
dialog#demo-modal h3 { font-family: "Bebas Neue", sans-serif; font-size: 28px; letter-spacing: 1px; margin: 0 0 8px; }
dialog#demo-modal pre {
  background: var(--panel-2); border-radius: 10px;
  padding: 14px; font-size: 13px; white-space: pre-wrap; word-break: break-word;
  max-height: 240px; overflow: auto; margin: 14px 0 18px;
}
dialog#demo-modal code { background: var(--panel-2); padding: 2px 6px; border-radius: 4px; }

/* responsive */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-art { display: none; }
  .vehicles { grid-template-columns: 1fr; }
  .book-grid { grid-template-columns: 1fr; }
  .quote-card { position: static; }
  .how-grid { grid-template-columns: 1fr; }
  .cities { grid-template-columns: 1fr; }
  .city-col ul, .city-col:not(:first-child) ul { columns: 2; }
  .packages { grid-template-columns: 1fr; }
  .zones { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
}
@media (max-width: 520px) {
  .row { grid-template-columns: 1fr; }
  .seg-3 { grid-template-columns: 1fr; }
}
