/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold: #1a6ebd;
  --gold-light: #2d85d8;
  --dark: #ffffff;
  --dark2: #f4f6f9;
  --dark3: #e8ecf1;
  --text: #111111;
  --muted: #333333;
  --cyan: #1a6ebd;
  --font: 'Inter', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--dark);
  color: var(--text);
  font-family: var(--font);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; }

/* ── Nav ──────────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 4rem;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  transition: background 0.4s, box-shadow 0.4s;
}

nav.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.12);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.nav-logo img {
  height: 44px;
  width: 44px;
  object-fit: contain;
  border-radius: 6px;
}

.nav-logo-text {
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  color: var(--gold);
}

.nav-logo-text span { color: var(--text); }

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #333;
  transition: color 0.2s;
}

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

.nav-cta {
  background: #1a6ebd;
  color: #fff !important;
  padding: 0.55rem 1.4rem;
  border-radius: 3px;
  font-weight: 700;
  letter-spacing: 0.06em;
  transition: background 0.2s !important;
}

.nav-cta:hover { background: #2d85d8 !important; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: all 0.3s;
}

/* ── Hero Video ───────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.75;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.65) 100%);
}

.hero-content {
  position: relative;
  text-align: center;
  padding: 0 2rem;
  max-width: 860px;
  color: #fff;
  transition: opacity 0.1s linear;
}

.hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #ffffff;
  opacity: 0.8;
  margin-bottom: 1rem;
}

.hero-title {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  color: #fff;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.hero-title em {
  font-style: normal;
  color: #7fc4ff;
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  max-width: 520px;
  margin: 0 auto 2.5rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  opacity: 0.6;
  animation: bob 2s ease-in-out infinite;
}

.scroll-indicator span { font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; }
.scroll-indicator svg { width: 20px; }

@keyframes bob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* scroll-driven parallax for hero video */
.hero-video {
  will-change: transform;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  border-radius: 3px;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
  border: 2px solid transparent;
}

.btn-gold {
  background: #1a6ebd;
  color: #fff;
}

.btn-gold:hover {
  background: #2d85d8;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border-color: rgba(26,110,189,0.35);
  color: #111;
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

/* ── Section base ─────────────────────────────────────────── */
section { padding: 6rem 4rem; }

.section-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.section-sub {
  color: #333;
  font-size: 1rem;
  max-width: 560px;
  margin-top: 0.75rem;
}

/* ── Service cards as links ── */
.service-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

/* ── Marquee ticker ───────────────────────────────────────── */
.ticker {
  overflow: hidden;
  background: var(--gold);
  padding: 0.9rem 0;
  white-space: nowrap;
}

.ticker-track {
  display: inline-flex;
  animation: ticker 28s linear infinite;
}

.ticker-track span {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  padding: 0 2.5rem;
}

.ticker-track span::before {
  content: '◆';
  margin-right: 2.5rem;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── Services preview (home) ──────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5px;
  margin-top: 3rem;
}

.service-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  background: #ddd;
}

.service-card::after {
  content: 'View Services →';
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  background: var(--gold);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.45rem 0.9rem;
  border-radius: 3px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.25s, transform 0.25s;
}

.service-card:hover::after {
  opacity: 1;
  transform: translateY(0);
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, opacity 0.4s;
  opacity: 0.7;
}

.service-card:hover img {
  transform: scale(1.07);
  opacity: 0.85;
}

.service-card-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 2rem 1.5rem 1.5rem;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%);
}

.service-card-body h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  color: #fff;
  text-shadow: 0 1px 6px rgba(0,0,0,0.5);
}

.service-card-body p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.82);
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

.service-card-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--gold);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: 2px;
}

/* ── Why us ───────────────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.why-card {
  padding: 2rem;
  border: 1px solid rgba(26,110,189,0.12);
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.why-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(26,110,189,0.12);
}

.why-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.why-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--gold);
}

.why-card p {
  font-size: 0.88rem;
  color: #222;
}

/* ── CTA strip ────────────────────────────────────────────── */
.cta-strip {
  background: linear-gradient(135deg, #1a6ebd 0%, #0e4a8a 100%);
  border-top: none;
  border-bottom: none;
  text-align: center;
  color: #fff;
}

.cta-strip .section-label { color: rgba(255,255,255,0.7); }
.cta-strip h2 { color: #fff; }
.cta-strip p { color: rgba(255,255,255,0.82); }
.cta-strip .btn-gold { background: #fff; color: #1a6ebd; }
.cta-strip .btn-gold:hover { background: #e8f2ff; }

.cta-strip h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.cta-strip p {
  color: var(--muted);
  margin-bottom: 2rem;
}

/* ── Footer ───────────────────────────────────────────────── */
footer {
  background: #0d1b2e;
  border-top: none;
  padding: 4rem 4rem 2rem;
  color: #e0e8f0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .nav-logo { font-size: 1.4rem; display: block; margin-bottom: 0.75rem; }

.footer-brand p {
  font-size: 0.85rem;
  color: #8fa8c4;
  max-width: 280px;
  line-height: 1.8;
}

.footer-col h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-col ul li a {
  font-size: 0.88rem;
  color: #8fa8c4;
  transition: color 0.2s;
}

.footer-col ul li a:hover { color: #fff; }

.footer-contact li {
  font-size: 0.88rem;
  color: #8fa8c4;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.footer-contact li strong { color: #e0e8f0; font-weight: 500; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: #8fa8c4;
}

/* ── Page hero (inner pages) ──────────────────────────────── */
.page-hero {
  padding: 10rem 4rem 5rem;
  background-color: #111;
  background-image: linear-gradient(to bottom, rgba(0,0,0,0.62) 0%, rgba(0,0,0,0.72) 100%), var(--hero-img, none);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-bottom: none;
  color: #fff;
}

.page-hero .section-label { margin-bottom: 0.5rem; color: #7fc4ff; letter-spacing: 0.25em; }
.page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

.page-hero p { color: rgba(255,255,255,0.82) !important; }

/* ── Services page ────────────────────────────────────────── */
.booking-flow {
  max-width: 960px;
  margin: 0 auto;
  padding: 4rem 2rem 6rem;
}

.step-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 3.5rem;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  flex: 1;
  position: relative;
}

.step::after {
  content: '';
  position: absolute;
  top: 18px;
  left: calc(50% + 24px);
  right: calc(-50% + 24px);
  height: 2px;
  background: rgba(255,255,255,0.1);
}

.step:last-child::after { display: none; }

.step.active .step-num,
.step.done .step-num {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}

.step.active::after,
.step.done::after { background: var(--gold); }

.step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  background: var(--dark3);
  z-index: 1;
  transition: all 0.3s;
}

.step-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #555;
  white-space: nowrap;
}

.step.active .step-label { color: var(--gold); }

/* booking panels */
.booking-panel { display: none; }
.booking-panel.active { display: block; }

.booking-panel h2 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.booking-panel .panel-sub {
  color: #333;
  font-size: 0.9rem;
  margin-bottom: 2.5rem;
}

.vehicle-grid,
.service-type-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.pick-card {
  border: 2px solid rgba(26,110,189,0.15);
  border-radius: 6px;
  padding: 1.5rem;
  cursor: pointer;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: all 0.25s;
  text-align: center;
  position: relative;
}

.pick-card:hover {
  border-color: rgba(26,110,189,0.5);
  background: #f0f6ff;
}

.pick-card.selected {
  border-color: #1a6ebd;
  background: #eaf2ff;
}

.pick-card .pick-icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
  display: block;
}

.pick-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.pick-card p {
  font-size: 0.78rem;
  color: #222;
}

.pick-card .check {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--gold);
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  color: var(--dark);
  font-weight: 900;
}

.pick-card.selected .check { display: flex; }

/* Package cards */
.package-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.pkg-card {
  border: 2px solid rgba(26,110,189,0.15);
  border-radius: 6px;
  padding: 2rem;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  cursor: pointer;
  transition: all 0.25s;
  position: relative;
}

.pkg-card:hover { border-color: rgba(26,110,189,0.5); }
.pkg-card.selected { border-color: #1a6ebd; background: #eaf2ff; }

.pkg-card.featured {
  border-width: 2px;
}

.pkg-badge {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 2px;
  background: var(--gold);
  color: var(--dark);
  margin-bottom: 1rem;
}

.pkg-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
}

.pkg-price {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.pkg-price span {
  font-size: 0.8rem;
  font-weight: 400;
  color: #444;
}

.pkg-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-bottom: 1.5rem;
}

.pkg-features li {
  font-size: 0.85rem;
  color: #111;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.pkg-features li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Add-ons */
.addon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.addon-card {
  border: 2px solid rgba(26,110,189,0.15);
  border-radius: 6px;
  padding: 1.25rem;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  cursor: pointer;
  transition: all 0.25s;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.addon-card:hover { border-color: rgba(26,110,189,0.5); background: #f0f6ff; }
.addon-card.selected { border-color: #1a6ebd; background: #eaf2ff; }

.addon-icon { font-size: 1.6rem; flex-shrink: 0; }

.addon-info h4 { font-size: 0.9rem; font-weight: 700; margin-bottom: 0.15rem; color: #111; }
.addon-info p { font-size: 0.78rem; color: #333; }

.addon-price {
  margin-left: auto;
  font-size: 1rem;
  font-weight: 800;
  color: var(--gold);
  flex-shrink: 0;
}

/* Package description blurb */
.pkg-desc {
  font-size: 0.82rem;
  color: #444;
  line-height: 1.55;
  margin-bottom: 0.25rem;
}

/* XL note on package cards */
.pkg-xl-note {
  font-size: 0.75rem;
  color: #777;
  margin-top: 1rem;
  line-height: 1.4;
}

/* package section label */
.pkg-section-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

/* booking nav */
.booking-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.summary-bar {
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 6px;
  padding: 1rem 1.5rem;
  margin-top: 2rem;
  display: none;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  font-size: 0.85rem;
}

.summary-bar.visible { display: flex; }
.summary-bar strong { color: var(--gold); }

/* ── About page ───────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.about-img-wrap {
  position: relative;
}

.about-img-wrap img {
  width: 100%;
  border-radius: 4px;
  display: block;
}

.about-img-accent {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 60%;
  border: 3px solid var(--gold);
  border-radius: 4px;
  z-index: -1;
}

.about-text .section-title { margin-bottom: 1.25rem; }
.about-text p { color: #222; margin-bottom: 1rem; font-size: 0.95rem; line-height: 1.8; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.value-card {
  padding: 2rem;
  background: #fff;
  border-left: 3px solid var(--gold);
  border-radius: 0 4px 4px 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.value-card h3 { font-size: 1rem; font-weight: 700; color: var(--gold); margin-bottom: 0.5rem; }
.value-card p { font-size: 0.85rem; color: #222; }

/* ── Contact page ─────────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.contact-info h2 { font-size: 1.6rem; font-weight: 800; margin-bottom: 1.5rem; }

.contact-detail {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}

.contact-detail-icon {
  width: 42px;
  height: 42px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-detail-text h4 { font-size: 0.8rem; font-weight: 700; color: var(--gold); margin-bottom: 0.2rem; letter-spacing: 0.05em; text-transform: uppercase; }
.contact-detail-text p { font-size: 0.9rem; color: #222; }

.hours-table { margin-top: 0.5rem; }
.hours-table tr td { font-size: 0.85rem; color: #333; padding: 0.2rem 0; }
.hours-table tr td:first-child { color: #111; padding-right: 1.5rem; font-weight: 600; }

/* Contact form */
.contact-form { display: flex; flex-direction: column; gap: 1rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.form-group { display: flex; flex-direction: column; gap: 0.4rem; }

.form-group label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: #fff;
  border: 1px solid rgba(26,110,189,0.2);
  border-radius: 4px;
  padding: 0.85rem 1rem;
  color: var(--text);
  font-family: var(--font);
  font-size: 0.9rem;
  transition: border-color 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}

.form-group select option { background: #fff; color: #111; }
.form-group textarea { resize: vertical; min-height: 120px; }

.form-submit { margin-top: 0.5rem; }

/* ── Address step split layout ────────────────────────────── */
.address-panel-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 440px;
  border: 1.5px solid rgba(26,110,189,0.12);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
}

.address-panel-form {
  padding: 2.5rem 2rem;
  background: #fff;
  display: flex;
  flex-direction: column;
}

.address-panel-form h2 { font-size: 1.4rem; }

.address-hint {
  font-size: 0.78rem;
  color: #888;
  margin-top: 0.5rem;
}

.address-map-wrap {
  position: relative;
  background: #e8ecf1;
  height: 440px;
}

#address-map {
  width: 100%;
  height: 440px;
}

.address-map-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: #aaa;
  pointer-events: none;
  transition: opacity 0.3s;
}

.address-map-placeholder svg {
  width: 52px;
  height: 52px;
  stroke: #ccc;
}

.address-map-placeholder p {
  font-size: 0.85rem;
  text-align: center;
  line-height: 1.5;
  color: #bbb;
}

.address-map-placeholder.hidden { opacity: 0; }

@media (max-width: 760px) {
  .address-panel-split { grid-template-columns: 1fr; }
  .address-map-wrap { height: 280px; }
  #address-map { height: 280px; }
}

/* ── Address input ────────────────────────────────────────── */
.address-input-wrap {
  position: relative;
  margin-top: 1.5rem;
}

.address-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  stroke: var(--gold);
  flex-shrink: 0;
}

.address-field {
  width: 100%;
  padding: 1.1rem 1.25rem 1.1rem 3rem;
  font-size: 1rem;
  font-family: var(--font);
  border: 2px solid rgba(26,110,189,0.25);
  border-radius: 8px;
  background: #fff;
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.address-field:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(26,110,189,0.1);
}

.address-field::placeholder { color: #aaa; }

/* ── Address autocomplete dropdown ───────────────────────── */
.address-suggestions {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: #fff;
  border: 1.5px solid rgba(26,110,189,0.25);
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  list-style: none;
  margin: 0;
  padding: 0.4rem 0;
  z-index: 200;
  max-height: 260px;
  overflow-y: auto;
  display: none;
}

.address-suggestions.open { display: block; }

.address-suggestions li {
  padding: 0.75rem 1.1rem 0.75rem 3rem;
  font-size: 0.88rem;
  color: #222;
  cursor: pointer;
  line-height: 1.4;
  border-bottom: 1px solid rgba(0,0,0,0.04);
  transition: background 0.15s;
  position: relative;
}

.address-suggestions li:last-child { border-bottom: none; }

.address-suggestions li::before {
  content: '📍';
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.85rem;
}

.address-suggestions li:hover,
.address-suggestions li.highlighted {
  background: #eaf2ff;
  color: #1a6ebd;
}

.address-suggestions li .sug-main {
  font-weight: 600;
  display: block;
}

.address-suggestions li .sug-sub {
  font-size: 0.78rem;
  color: #666;
  display: block;
  margin-top: 1px;
}

.address-suggestions li.highlighted .sug-sub { color: #1a6ebd; opacity: 0.75; }

.address-sug-loading {
  padding: 0.75rem 1.1rem;
  font-size: 0.85rem;
  color: #888;
  text-align: center;
}

/* ── Yes / No cards ───────────────────────────────────────── */
.yn-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 0.75rem;
  max-width: 380px;
}

.yn-card {
  border: 2px solid rgba(26,110,189,0.18);
  border-radius: 8px;
  padding: 1.25rem;
  text-align: center;
  cursor: pointer;
  background: #fff;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.yn-card:hover { border-color: rgba(26,110,189,0.5); background: #f0f6ff; }
.yn-card.selected { border-color: #1a6ebd; background: #eaf2ff; }

.yn-icon { font-size: 1.5rem; }

/* ── Question blocks ──────────────────────────────────────── */
.question-block {
  margin-bottom: 2rem;
}

.question-label {
  font-size: 0.9rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 0.75rem;
}

/* ── Vehicle details grid ─────────────────────────────────── */
.vehicle-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
}

/* ── Booking recap card ───────────────────────────────────── */
.booking-recap {
  background: rgba(26,110,189,0.04);
  border: 1px solid rgba(26,110,189,0.15);
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.recap-grid { display: flex; flex-direction: column; gap: 0.6rem; }

.recap-row {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  font-size: 0.88rem;
}

.recap-row > span {
  min-width: 110px;
  color: #555;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  flex-shrink: 0;
}

.recap-row strong { color: #111; }

.recap-total {
  border-top: 1px solid rgba(26,110,189,0.15);
  padding-top: 0.6rem;
  margin-top: 0.2rem;
  font-size: 1rem;
}

.recap-total strong { color: var(--gold); font-size: 1.1rem; }

.recap-addons {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin: 0;
  padding: 0;
}

.recap-addons li { font-size: 0.85rem; color: #333; }

/* ── XL addon highlight ───────────────────────────────────── */
.addon-card-xl {
  border-style: dashed;
}

/* ── Animations ───────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 900px) {
  nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  section { padding: 4rem 1.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .vehicle-grid, .service-type-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
  .form-row { grid-template-columns: 1fr; }
  .page-hero { padding: 8rem 1.5rem 3rem; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .package-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: clamp(2rem, 8vw, 3.5rem); }
  .section-title { font-size: clamp(1.5rem, 4vw, 2.2rem); }
  .cta-strip { padding: 4rem 1.5rem; }
  .booking-flow { padding: 2rem 1.5rem 4rem; }
  .step-label { font-size: 0.65rem; }
  footer { padding: 3rem 1.5rem 2rem; }
}

@media (max-width: 900px) {
  .vehicle-details-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  nav { padding: 0.9rem 1rem; }
  .vehicle-details-grid { grid-template-columns: 1fr; }
  .yn-grid { max-width: 100%; }
  .nav-logo img { height: 36px; width: 36px; }
  .nav-logo-text { font-size: 1.1rem; }
  section { padding: 3rem 1rem; }
  .vehicle-grid, .service-type-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .addon-grid { grid-template-columns: 1fr; }
  .booking-flow { padding: 1.5rem 1rem 3rem; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; max-width: 280px; text-align: center; }
  .page-hero { padding: 7rem 1rem 2.5rem; }
  .page-hero h1 { font-size: clamp(1.8rem, 7vw, 2.5rem); }
  .section-title { font-size: clamp(1.4rem, 6vw, 2rem); }
  .booking-panel h2 { font-size: 1.25rem; }
  .pick-card { padding: 1rem; }
  .pick-card .pick-icon { font-size: 2rem; }
  .pkg-card { padding: 1.5rem; }
  .addon-card { padding: 1rem; }
  .btn { padding: 0.75rem 1.5rem; font-size: 0.8rem; }
  .cta-strip { padding: 3rem 1rem; }
  .cta-strip h2 { font-size: 1.4rem; }
  .summary-bar { font-size: 0.78rem; padding: 0.75rem 1rem; }
  .step-num { width: 30px; height: 30px; font-size: 0.75rem; }
  .step-label { font-size: 0.6rem; }
  .booking-nav { flex-direction: column; gap: 0.75rem; }
  .booking-nav .btn { width: 100%; text-align: center; }
  .contact-layout { gap: 2rem; }
  .hero-sub { font-size: 0.95rem; }
  footer { padding: 2.5rem 1rem 1.5rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .service-card { aspect-ratio: 4/3; }
  .about-grid { gap: 2rem; }
  .contact-detail { gap: 0.75rem; }
  .contact-detail-icon { width: 36px; height: 36px; font-size: 0.95rem; }
}

/* Mobile nav open */
nav.menu-open .nav-links {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(255,255,255,0.98);
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  z-index: 99;
}

nav.menu-open .nav-links a { font-size: 1.2rem; }

/* close button for mobile nav */
nav.menu-open .nav-hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
nav.menu-open .nav-hamburger span:nth-child(2) { opacity: 0; }
nav.menu-open .nav-hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
nav.menu-open .nav-hamburger { z-index: 100; position: relative; }
