/* ═══════════════════════════════════════════════════════
   LessonDrive – Complete Stylesheet (mobile-first)
   ═══════════════════════════════════════════════════════ */

/* ── Variables ─────────────────────────────────────────── */
:root {
  --navy:        #0d1b2a;
  --navy-mid:    #1a2e42;
  --navy-light:  #243d56;
  --gold:        #f5a623;
  --gold-light:  #ffc354;
  --gold-pale:   #fff8ec;
  --white:       #ffffff;
  --off-white:   #f7f8fa;
  --text:        #1c2b3a;
  --muted:       #5b6e7f;
  --border:      #dde4ec;
  --radius:      12px;
  --radius-lg:   20px;
  --header-h:    68px;
}

/* ── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: 'DM Sans', sans-serif; color: var(--text); background: var(--white); line-height: 1.6; font-size: 16px; }
h1,h2,h3,h4,h5 { font-family: 'Syne', sans-serif; line-height: 1.2; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
input, select, textarea, button { font-family: inherit; }

/* ── Topbar ────────────────────────────────────────────── */
.topbar {
  background: var(--navy);
  color: rgba(255,255,255,.75);
  font-size: 12px;
  font-weight: 500;
  padding: 7px 16px;
  text-align: center;
  letter-spacing: .2px;
  line-height: 1.5;
}
.topbar a { color: var(--gold); font-weight: 700; }

/* ── Header ────────────────────────────────────────────── */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 2px solid var(--gold);
  box-shadow: 0 2px 16px rgba(13,27,42,.08);
  height: var(--header-h);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 12px;
}

/* ── Logo ──────────────────────────────────────────────── */
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}
.site-logo-img {
  height: 44px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
}
.logo-text-fallback {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  align-items: center;
}
.logo-text-fallback .gold { color: var(--gold); }

/* ── Desktop Nav ───────────────────────────────────────── */
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: center;
}
.desktop-nav > a,
.nav-dropdown > a {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--navy);
  padding: 8px 10px;
  border-radius: 8px;
  transition: background .15s, color .15s;
  white-space: nowrap;
  cursor: pointer;
}
.desktop-nav > a:hover,
.nav-dropdown > a:hover,
.desktop-nav > a.active,
.nav-dropdown > a.active { background: var(--gold-pale); color: var(--gold); }

.nav-dropdown { position: relative; }
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu { display: flex; }
.dropdown-menu {
  display: none;
  flex-direction: column;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 8px 28px rgba(13,27,42,.12);
  min-width: 210px;
  padding: 8px;
  z-index: 300;
}
.dropdown-menu a {
  padding: 9px 14px;
  font-size: 13.5px;
  border-radius: 8px;
  display: block;
  font-weight: 500;
}
.dropdown-menu a:hover { background: var(--gold-pale); color: var(--gold); }

/* ── Header CTA ────────────────────────────────────────── */
.header-cta { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.phone-link {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--navy);
  white-space: nowrap;
}
.icon-wrap {
  width: 32px; height: 32px;
  background: var(--gold-pale);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

/* ── Hamburger ─────────────────────────────────────────── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px 6px;
  background: none;
  border: none;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: .25s;
}

/* ── Mobile Nav ────────────────────────────────────────── */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--white);
  z-index: 1100;
  overflow-y: auto;
  flex-direction: column;
  padding-bottom: 40px;
  transform: translateX(100%);
  transition: transform .3s ease;
}
.mobile-nav.open {
  display: flex;
  transform: translateX(0);
}
.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 2px solid var(--gold);
  margin-bottom: 8px;
}
.mobile-close {
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: var(--navy);
  padding: 4px 8px;
}
.mobile-nav a {
  padding: 14px 20px;
  font-size: 16px;
  font-weight: 500;
  border-bottom: 1px solid var(--border);
  display: block;
  color: var(--text);
}
.mobile-nav a:hover { background: var(--gold-pale); color: var(--gold); }
.mobile-nav .sub-link { padding-left: 36px; font-size: 15px; color: var(--muted); }
.mob-section-label {
  padding: 10px 20px 4px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted);
  background: var(--off-white);
}
.mob-call-btn {
  margin: 20px 20px 0 !important;
  background: var(--gold) !important;
  color: var(--navy) !important;
  border-radius: 50px !important;
  text-align: center !important;
  font-family: 'Syne', sans-serif !important;
  font-weight: 700 !important;
  border-bottom: none !important;
}

/* ── Buttons ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 50px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: all .18s;
  border: 2px solid transparent;
  white-space: nowrap;
  text-decoration: none;
}
.btn-primary { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); box-shadow: 0 6px 18px rgba(245,166,35,.35); }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-white { background: var(--white); color: var(--navy); border-color: var(--white); }
.btn-white:hover { background: var(--gold); border-color: var(--gold); }
.btn-sm { padding: 9px 18px; font-size: 13px; }

/* ── Layout Helpers ────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
section { padding: 72px 20px; }
.bg-off  { background: var(--off-white); }
.bg-navy { background: var(--navy); }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }

/* ── Section Headings ──────────────────────────────────── */
.section-tag {
  display: inline-block;
  background: var(--gold-pale);
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 13px;
  border-radius: 50px;
  margin-bottom: 14px;
}
.section-title {
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 14px;
  letter-spacing: -.3px;
  line-height: 1.15;
}
.section-title em { color: var(--gold); font-style: normal; }
.section-lead {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 620px;
  margin-bottom: 40px;
  font-weight: 300;
}
.divider { width: 56px; height: 4px; background: var(--gold); border-radius: 2px; margin-bottom: 22px; }

/* ── Hero Badge ────────────────────────────────────────── */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(245,166,35,.15);
  border: 1px solid rgba(245,166,35,.3);
  color: var(--gold);
  padding: 5px 13px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

/* ── Page Hero (inner pages) ───────────────────────────── */
.page-hero {
  background: var(--navy);
  color: var(--white);
  padding: 64px 20px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -40%; right: -8%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(245,166,35,.16) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.page-hero-inner.full {
  grid-template-columns: 1fr;
  max-width: 740px;
  text-align: center;
}
.page-hero-inner.full .hero-badge,
.page-hero-inner.full .hero-stats { margin-left: auto; margin-right: auto; }
.page-hero h1 { font-size: clamp(28px, 4vw, 48px); font-weight: 800; color: var(--white); margin-bottom: 14px; }
.page-hero h1 em { color: var(--gold); font-style: normal; }
.page-hero .lead { font-size: 17px; color: rgba(255,255,255,.75); line-height: 1.7; margin-bottom: 28px; font-weight: 300; }
.hero-stats { display: flex; gap: 28px; flex-wrap: wrap; }
.stat-number { font-family: 'Syne', sans-serif; font-size: 28px; font-weight: 800; color: var(--gold); display: block; line-height: 1; margin-bottom: 3px; }
.stat-label  { font-size: 12px; color: rgba(255,255,255,.55); }

/* ── Cards ─────────────────────────────────────────────── */
.card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: transform .22s, box-shadow .22s, border-color .22s;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 14px 36px rgba(13,27,42,.1); border-color: var(--gold); }
.card-icon { width: 50px; height: 50px; background: var(--gold-pale); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 16px; }
.card h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; color: var(--navy); }
.card p  { font-size: 14px; color: var(--muted); line-height: 1.7; margin-bottom: 14px; }
.link   { font-size: 14px; font-weight: 700; color: var(--gold); display: inline-flex; align-items: center; gap: 4px; }

/* ── Forms ─────────────────────────────────────────────── */
.contact-form-wrap {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: 0 4px 20px rgba(13,27,42,.06);
}
.contact-form-wrap h3 { font-size: 22px; font-weight: 800; margin-bottom: 6px; color: var(--navy); }
.contact-form-wrap > p { font-size: 14px; color: var(--muted); margin-bottom: 22px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-size: 12px; font-weight: 600; color: var(--text); margin-bottom: 5px; text-transform: uppercase; letter-spacing: .3px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 15px;
  color: var(--text);
  background: var(--white);
  outline: none;
  transition: border-color .18s, box-shadow .18s;
  appearance: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(245,166,35,.12);
}
.form-group textarea { resize: vertical; min-height: 80px; }

/* ── Info Box ──────────────────────────────────────────── */
.info-box {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 18px;
}
.info-box h4 { font-size: 16px; font-weight: 700; margin-bottom: 12px; color: var(--navy); }
.info-box p  { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ── Checklist ─────────────────────────────────────────── */
.checklist { list-style: none; }
.checklist li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: var(--text);
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
  line-height: 1.5;
}
.checklist li:last-child { border-bottom: none; }
.checklist li::before {
  content: '';
  width: 18px; height: 18px; flex-shrink: 0;
  margin-top: 1px;
  border-radius: 50%;
  background: var(--gold-pale) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%23f5a623' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") no-repeat center;
  border: 1.5px solid rgba(245,166,35,.5);
}
.checklist-cols { columns: 2; gap: 14px; }
.checklist-cols li { break-inside: avoid; }

/* ── Pricing ───────────────────────────────────────────── */
.price-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.price-card {
  background: rgba(255,255,255,.05);
  border: 1.5px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 30px;
  position: relative;
  transition: transform .22s;
}
.price-card:hover { transform: translateY(-4px); }
.price-card.featured { background: var(--gold); border-color: var(--gold); }
.price-card .badge { position: absolute; top: -11px; right: 22px; background: var(--navy); color: var(--gold); font-size: 11px; font-weight: 700; padding: 3px 12px; border-radius: 50px; text-transform: uppercase; }
.price-card h3 { font-size: 17px; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.price-card.featured h3 { color: var(--navy); }
.price-value { display: flex; align-items: baseline; gap: 3px; margin-bottom: 6px; }
.price-value .currency { font-size: 20px; font-weight: 700; color: var(--gold); }
.price-card.featured .price-value .currency { color: var(--navy); }
.price-value .amount { font-family: 'Syne', sans-serif; font-size: 46px; font-weight: 800; color: var(--white); line-height: 1; }
.price-card.featured .price-value .amount { color: var(--navy); }
.price-value .per { font-size: 12px; color: rgba(255,255,255,.5); align-self: flex-end; padding-bottom: 8px; }
.price-card.featured .price-value .per { color: rgba(13,27,42,.6); }
.price-card .description { font-size: 13px; color: rgba(255,255,255,.5); margin-bottom: 18px; }
.price-card.featured .description { color: rgba(13,27,42,.55); }
.price-features { margin-bottom: 22px; }
.price-features li { display: flex; align-items: center; gap: 8px; font-size: 13.5px; color: rgba(255,255,255,.75); padding: 7px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
.price-card.featured .price-features li { color: rgba(13,27,42,.8); border-bottom-color: rgba(13,27,42,.1); }
.price-features li::before { content: '✓'; color: var(--gold); font-weight: 700; flex-shrink: 0; }
.price-card.featured .price-features li::before { color: var(--navy); }
.btn-ghost { width: 100%; justify-content: center; padding: 11px; border-radius: 50px; border: 1.5px solid rgba(255,255,255,.25); color: var(--white); font-family: 'Syne', sans-serif; font-weight: 700; font-size: 14px; cursor: pointer; transition: all .18s; background: transparent; display: flex; align-items: center; }
.btn-ghost:hover { background: rgba(255,255,255,.12); }
.price-card.featured .btn-ghost { background: var(--navy); border-color: var(--navy); }
.price-card.featured .btn-ghost:hover { background: var(--navy-mid); }

/* ── Area Cards ────────────────────────────────────────── */
.area-section { margin-bottom: 36px; }
.area-section h3 { font-family: 'Syne', sans-serif; font-size: 18px; font-weight: 700; color: var(--navy); padding: 12px 18px; background: var(--gold-pale); border-left: 4px solid var(--gold); border-radius: 8px; margin-bottom: 14px; }
.area-links { display: flex; flex-wrap: wrap; gap: 10px; }
.area-link { padding: 7px 15px; background: var(--white); border: 1.5px solid var(--border); border-radius: 50px; font-size: 14px; font-weight: 500; color: var(--text); transition: all .18s; }
.area-link:hover { background: var(--gold-pale); border-color: var(--gold); color: var(--gold); }

/* ── Contact Info Card ─────────────────────────────────── */
.contact-info-card { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 24px; margin-bottom: 18px; }
.ci-row { display: flex; align-items: center; gap: 14px; padding: 12px 0; border-bottom: 1px solid var(--border); }
.ci-row:last-child { border-bottom: none; }
.ci-icon { width: 44px; height: 44px; background: var(--gold-pale); border-radius: 11px; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.ci-row h4 { font-size: 11px; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 2px; }
.ci-row a, .ci-row p { font-size: 14px; font-weight: 600; color: var(--navy); word-break: break-word; }
.ci-row a:hover { color: var(--gold); }
.hours-card { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 22px; margin-bottom: 18px; }
.hours-card h4 { font-family: 'Syne', sans-serif; font-size: 15px; font-weight: 700; margin-bottom: 14px; color: var(--navy); }
.hours-row { display: flex; justify-content: space-between; padding: 7px 0; border-bottom: 1px solid var(--border); font-size: 14px; }
.hours-row:last-child { border-bottom: none; }
.hours-row span:last-child { color: var(--gold); font-weight: 600; }

/* ── Map Placeholder ───────────────────────────────────── */
.map-wrap { border-radius: var(--radius-lg); overflow: hidden; border: 1.5px solid var(--border); height: 260px; background: var(--off-white); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; text-align: center; padding: 20px; }

/* ── Why Grid ──────────────────────────────────────────── */
.why-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; }
.why-item { display: flex; gap: 18px; align-items: flex-start; padding: 24px; border-radius: var(--radius-lg); border: 1.5px solid var(--border); transition: all .2s; }
.why-item:hover { border-color: var(--gold); background: var(--gold-pale); }
.why-icon { width: 46px; height: 46px; flex-shrink: 0; background: var(--gold-pale); border-radius: 11px; display: flex; align-items: center; justify-content: center; font-size: 20px; }
.why-item h4 { font-size: 17px; font-weight: 700; margin-bottom: 6px; color: var(--navy); }
.why-item p  { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ── Spec Sections ─────────────────────────────────────── */
.spec-item { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; margin-bottom: 72px; }
.spec-item:last-child { margin-bottom: 0; }
.spec-item.rev .spec-visual { order: -1; }
.spec-visual { border-radius: var(--radius-lg); background: var(--navy); height: 300px; display: flex; align-items: center; justify-content: center; font-size: 72px; position: relative; overflow: hidden; }
.spec-visual::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 70% 30%, rgba(245,166,35,.2), transparent 60%); }

/* ── Consider Cards ────────────────────────────────────── */
.consider-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.consider-card { border-radius: var(--radius-lg); overflow: hidden; border: 1.5px solid var(--border); transition: all .22s; }
.consider-card:hover { box-shadow: 0 12px 30px rgba(13,27,42,.1); border-color: var(--gold); transform: translateY(-3px); }
.consider-img { height: 170px; background: var(--navy-mid); display: flex; align-items: center; justify-content: center; font-size: 52px; }
.consider-body { padding: 22px; }
.consider-body h3 { font-size: 19px; font-weight: 700; margin-bottom: 8px; }
.consider-body p  { font-size: 14px; color: var(--muted); line-height: 1.7; margin-bottom: 14px; }

/* ── Footer ────────────────────────────────────────────── */
footer { background: var(--navy); color: rgba(255,255,255,.7); padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; }
.footer-brand .logo { margin-bottom: 14px; }
.footer-brand .site-logo-img { filter: brightness(0) invert(1); height: 38px; }
.footer-brand .logo-text-fallback { color: var(--white); }
.footer-brand p { font-size: 14px; line-height: 1.7; max-width: 280px; }
.footer-contact-list { margin-top: 18px; display: flex; flex-direction: column; gap: 9px; }
.footer-contact-list a,
.footer-contact-list span { font-size: 13.5px; color: rgba(255,255,255,.6); display: flex; align-items: flex-start; gap: 7px; word-break: break-word; }
.footer-contact-list a:hover { color: var(--gold); }
.footer-col h4 { font-family: 'Syne', sans-serif; font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 16px; text-transform: uppercase; letter-spacing: .5px; }
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a { font-size: 13.5px; color: rgba(255,255,255,.6); transition: color .18s; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom { padding: 22px 0; border-top: 1px solid rgba(255,255,255,.1); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; font-size: 12.5px; color: rgba(255,255,255,.4); }
.footer-bottom a { color: rgba(255,255,255,.4); }
.footer-bottom a:hover { color: var(--gold); }

/* ── Location Page Extras ──────────────────────────────── */
.loc-hero { background: var(--navy); color: var(--white); padding: 60px 20px; position: relative; overflow: hidden; }
.loc-hero::before { content: ''; position: absolute; top: -40%; right: -8%; width: 500px; height: 500px; background: radial-gradient(circle, rgba(245,166,35,.16) 0%, transparent 70%); pointer-events: none; }
.loc-hero-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px; align-items: start; position: relative; z-index: 1; }
.loc-hero h1 { font-size: clamp(26px,4vw,44px); font-weight: 800; color: var(--white); margin-bottom: 12px; }
.loc-hero h1 em { color: var(--gold); font-style: normal; }
.breadcrumb { font-size: 12px; color: rgba(255,255,255,.5); margin-bottom: 14px; display: flex; flex-wrap: wrap; gap: 4px; align-items: center; }
.breadcrumb a { color: var(--gold); }
.breadcrumb span { opacity: .5; }
.loc-stats { display: flex; gap: 20px; flex-wrap: wrap; margin-top: 24px; }
.loc-stat .stat-number { font-family: 'Syne', sans-serif; font-size: 24px; font-weight: 800; color: var(--gold); display: block; line-height: 1; margin-bottom: 3px; }
.loc-stat .stat-label { font-size: 11px; color: rgba(255,255,255,.5); }

/* Loc form in hero */
.loc-form-card { background: var(--white); border-radius: var(--radius-lg); padding: 26px; }
.loc-form-card h3 { font-size: 18px; font-weight: 800; color: var(--navy); margin-bottom: 4px; }
.loc-form-card > p { font-size: 13px; color: var(--muted); margin-bottom: 16px; }
.loc-form-card .form-group { margin-bottom: 10px; }
.loc-form-card label { font-size: 11px; font-weight: 600; color: var(--text); display: block; margin-bottom: 4px; text-transform: uppercase; letter-spacing: .3px; }
.loc-form-card input,
.loc-form-card select { width: 100%; padding: 10px 12px; border: 1.5px solid var(--border); border-radius: var(--radius); font-size: 14px; color: var(--text); outline: none; transition: border-color .18s; appearance: none; -webkit-appearance: none; background: var(--white); }
.loc-form-card input:focus,
.loc-form-card select:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(245,166,35,.1); }

/* Loc content / sidebar */
.loc-content { max-width: 1200px; margin: 0 auto; padding: 56px 20px; display: grid; grid-template-columns: 1fr 340px; gap: 44px; align-items: start; }
.loc-main h2 { font-family: 'Syne', sans-serif; font-size: 24px; font-weight: 800; color: var(--navy); margin-bottom: 10px; }
.loc-main h2 em { color: var(--gold); font-style: normal; }
.loc-main p { font-size: 15.5px; color: var(--muted); line-height: 1.85; margin-bottom: 15px; }
.loc-divider { width: 48px; height: 4px; background: var(--gold); border-radius: 2px; margin-bottom: 18px; }
.nearby-areas { margin-top: 28px; padding: 20px; background: var(--off-white); border-radius: var(--radius-lg); border: 1.5px solid var(--border); }
.nearby-areas h4 { font-family: 'Syne', sans-serif; font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.nearby-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.nearby-tag { padding: 6px 13px; background: var(--white); border: 1.5px solid var(--border); border-radius: 50px; font-size: 13px; font-weight: 500; color: var(--text); transition: all .18s; display: inline-block; }
.nearby-tag:hover { background: var(--gold-pale); border-color: var(--gold); color: var(--gold); }

/* Sidebar */
.loc-sidebar { display: flex; flex-direction: column; gap: 18px; }
.sidebar-cta-card { background: var(--navy); border-radius: var(--radius-lg); padding: 22px; text-align: center; }
.sidebar-cta-card h4 { font-family: 'Syne', sans-serif; font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 14px; }
.sidebar-cta-card .call-btn { display: flex; align-items: center; justify-content: center; gap: 8px; background: var(--gold); color: var(--navy); font-family: 'Syne', sans-serif; font-weight: 700; font-size: 15px; padding: 13px; border-radius: 50px; margin-bottom: 8px; transition: all .18s; }
.sidebar-cta-card .call-btn:hover { background: var(--gold-light); }
.sidebar-cta-card p { font-size: 12px; color: rgba(255,255,255,.5); }
.test-centre-badge { background: var(--gold-pale); border: 1.5px solid rgba(245,166,35,.4); border-radius: var(--radius); padding: 14px 18px; }
.test-centre-badge h5 { font-family: 'Syne', sans-serif; font-size: 11px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 4px; }
.test-centre-badge p { font-size: 14px; font-weight: 700; color: var(--navy); margin: 0; }
.sidebar-form { background: var(--off-white); border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 20px; }
.sidebar-form h4 { font-family: 'Syne', sans-serif; font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.sidebar-form > p { font-size: 12px; color: var(--muted); margin-bottom: 14px; }
.sidebar-form .form-group { margin-bottom: 10px; }
.sidebar-form label { font-size: 11px; font-weight: 600; color: var(--text); display: block; margin-bottom: 4px; text-transform: uppercase; }
.sidebar-form input,
.sidebar-form select { width: 100%; padding: 9px 12px; border: 1.5px solid var(--border); border-radius: var(--radius); font-size: 14px; color: var(--text); outline: none; transition: border-color .18s; appearance: none; -webkit-appearance: none; background: var(--white); }
.sidebar-form input:focus,
.sidebar-form select:focus { border-color: var(--gold); }

/* Pricing section on loc pages */
.loc-pricing { padding: 48px 20px; background: var(--off-white); }
.loc-pricing > .inner { max-width: 1200px; margin: 0 auto; }
.price-hl-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 28px; }
.price-hl { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 24px; text-align: center; }
.price-hl.featured { background: var(--navy); border-color: var(--navy); }
.ph-label { display: block; font-size: 11px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 6px; }
.price-hl.featured .ph-label { color: var(--gold); }
.ph-price { display: block; font-family: 'Syne', sans-serif; font-size: 40px; font-weight: 800; color: var(--navy); line-height: 1; margin-bottom: 6px; }
.ph-price small { font-size: 18px; }
.price-hl.featured .ph-price { color: var(--white); }
.ph-note { display: block; font-size: 12px; color: var(--muted); }
.price-hl.featured .ph-note { color: rgba(255,255,255,.55); }
.pricing-subhead { font-family: 'Syne', sans-serif; font-size: 17px; font-weight: 700; color: var(--navy); margin: 24px 0 14px; }
.block-pkg-grid { display: grid; grid-template-columns: repeat(6,1fr); gap: 10px; }
.block-pkg { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius); padding: 14px 10px; text-align: center; }
.bp-hours { font-family: 'Syne', sans-serif; font-size: 15px; font-weight: 800; color: var(--navy); }
.bp-price { font-size: 16px; font-weight: 700; color: var(--gold); margin: 3px 0; }
.bp-save { font-size: 11px; color: var(--muted); background: var(--gold-pale); border-radius: 50px; padding: 2px 8px; display: inline-block; }
.int-pkg-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.int-pkg { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 18px; }
.int-pkg.top { background: var(--navy); border-color: var(--navy); }
.ip-title { font-family: 'Syne', sans-serif; font-size: 13px; font-weight: 700; color: var(--navy); margin-bottom: 3px; }
.int-pkg.top .ip-title { color: var(--gold); }
.ip-price { font-family: 'Syne', sans-serif; font-size: 22px; font-weight: 800; color: var(--gold); margin-bottom: 8px; }
.int-pkg.top .ip-price { color: var(--white); }
.int-pkg ul li { font-size: 11.5px; color: var(--muted); padding: 2px 0 2px 14px; position: relative; }
.int-pkg ul li::before { content: '✓'; position: absolute; left: 0; color: var(--gold); font-weight: 700; font-size: 11px; }
.int-pkg.top ul li { color: rgba(255,255,255,.65); }

/* ── Bottom CTA ────────────────────────────────────────── */
.bottom-cta { background: var(--navy); padding: 60px 20px; text-align: center; }
.bottom-cta h2 { font-family: 'Syne', sans-serif; font-size: clamp(22px,3vw,36px); font-weight: 800; color: var(--white); margin-bottom: 10px; }
.bottom-cta h2 em { color: var(--gold); font-style: normal; }
.bottom-cta p { font-size: 16px; color: rgba(255,255,255,.65); margin-bottom: 26px; }
.bottom-cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ═══════════════════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
   ═══════════════════════════════════════════════════════ */

/* ── 1100px – shrink nav font ──────────────────────────── */
@media (max-width: 1100px) {
  .desktop-nav > a,
  .nav-dropdown > a { padding: 8px 8px; font-size: 13px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* ── 900px – hide phone text in header ─────────────────── */
@media (max-width: 900px) {
  .phone-link span { display: none; }
  .desktop-nav { gap: 0; }
  .block-pkg-grid { grid-template-columns: repeat(3,1fr); }
  .int-pkg-grid  { grid-template-columns: repeat(2,1fr); }
  .price-cards   { grid-template-columns: 1fr; }
}

/* ── 768px – tablet ────────────────────────────────────── */
@media (max-width: 768px) {
  :root { --header-h: 60px; }

  .desktop-nav { display: none; }
  .hamburger   { display: flex; }
  .header-cta .phone-link { display: none; }
  .header-cta .btn { font-size: 13px; padding: 9px 16px; }

  section { padding: 52px 16px; }

  /* Grids → single col */
  .grid-2, .grid-3, .grid-4,
  .page-hero-inner:not(.full),
  .loc-hero-inner,
  .loc-content,
  .consider-grid,
  .why-grid,
  .spec-item,
  .price-cards,
  .price-hl-row { grid-template-columns: 1fr !important; gap: 24px; }

  .spec-item.rev .spec-visual { order: 0; }
  .spec-visual { height: 220px; font-size: 52px; }

  /* Form row */
  .form-row { grid-template-columns: 1fr; gap: 0; }

  /* contact form */
  .contact-form-wrap { padding: 24px 18px; }

  /* loc content */
  .loc-content { padding: 36px 16px; }
  .loc-sidebar { order: -1; }  /* show sidebar above content on mobile */

  /* checklist cols */
  .checklist-cols { columns: 1; }

  /* footer */
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-brand p { max-width: 100%; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 6px; }

  /* block pkg */
  .block-pkg-grid { grid-template-columns: repeat(2,1fr); }
  .int-pkg-grid   { grid-template-columns: 1fr 1fr; }

  /* hero */
  .page-hero { padding: 44px 16px; }
  .page-hero h1 { font-size: clamp(26px, 6vw, 38px); }

  /* hero stats */
  .hero-stats { gap: 18px; }
  .stat-number { font-size: 22px; }
}

/* ── 480px – mobile ────────────────────────────────────── */
@media (max-width: 480px) {
  section { padding: 44px 14px; }

  .btn { padding: 11px 18px; font-size: 14px; }
  .btn-primary, .btn-white { width: 100%; }
  .bottom-cta-btns .btn { width: 100%; max-width: 300px; }

  .topbar { font-size: 11px; padding: 6px 12px; }

  /* cards full width */
  .card, .info-box, .contact-form-wrap { padding: 20px 16px; }
  .loc-form-card { padding: 20px 16px; }

  /* block pkgs */
  .block-pkg-grid { grid-template-columns: repeat(2,1fr); gap: 8px; }
  .int-pkg-grid   { grid-template-columns: 1fr; }

  /* area links */
  .area-link { font-size: 13px; padding: 6px 12px; }

  /* loc hero */
  .loc-hero { padding: 44px 14px; }
  .loc-hero h1 { font-size: clamp(22px,6vw,32px); }

  .hero-badge { font-size: 10px; padding: 4px 10px; }

  /* footer */
  footer { padding-top: 40px; }
  .footer-grid { padding: 0 0 36px; }
}

/* ── Animations ────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { opacity: 0; animation: fadeUp .55s ease forwards; }
.d1 { animation-delay: .1s; }
.d2 { animation-delay: .2s; }
.d3 { animation-delay: .3s; }


/* ── SEO/AEO/GEO Enhancement Styles ─────────────────── */

/* ── FAQ Accordion ─────────────────────────────────────── */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { border: 1.5px solid var(--border); border-radius: var(--radius); margin-bottom: 10px; overflow: hidden; background: var(--white); }
.faq-q { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 18px 22px; background: none; border: none; cursor: pointer; font-family: 'Syne', sans-serif; font-size: 15px; font-weight: 700; color: var(--navy); text-align: left; transition: background .18s; }
.faq-q:hover { background: var(--gold-pale); }
.faq-q[aria-expanded="true"] { background: var(--gold-pale); color: var(--gold); }
.faq-icon { font-size: 20px; font-weight: 400; flex-shrink: 0; transition: transform .2s; }
.faq-q[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-a { display: none; padding: 0 22px 18px; }
.faq-a.open { display: block; }
.faq-a p { font-size: 14px; color: var(--muted); line-height: 1.8; }

/* ── Reviews ───────────────────────────────────────────── */
.reviews-section { background: var(--white); padding: 72px 20px; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 24px; }
.review-card { background: var(--off-white); border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 24px; }
.review-stars { font-size: 18px; color: var(--gold); margin-bottom: 10px; letter-spacing: 2px; }
.review-text { font-size: 14px; color: var(--text); line-height: 1.7; margin-bottom: 14px; font-style: italic; }
.review-author { display: flex; justify-content: space-between; align-items: center; font-size: 13px; }
.review-author strong { color: var(--navy); }
.review-area { color: var(--muted); font-size: 12px; }

/* ── GEO Facts ─────────────────────────────────────────── */
.geo-block { padding: 72px 20px; }
.facts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 8px; }
.fact-item { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 24px; }
.fact-icon { font-size: 28px; margin-bottom: 10px; }
.fact-item h4 { font-family: 'Syne', sans-serif; font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.fact-item p { font-size: 13px; color: var(--muted); line-height: 1.7; }

/* ── Postcodes ─────────────────────────────────────────── */
.postcode-section { background: var(--navy); padding: 52px 20px; }
.postcode-section .section-tag { background: rgba(245,166,35,.15); color: var(--gold); }
.postcode-section .section-title { color: var(--white); }
.postcode-section p { color: rgba(255,255,255,.6); }
.postcode-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.pc-tag { padding: 6px 14px; background: rgba(245,166,35,.12); border: 1px solid rgba(245,166,35,.25); color: var(--gold-light); border-radius: 50px; font-size: 13px; font-weight: 600; transition: all .18s; }
.pc-tag:hover { background: var(--gold); color: var(--navy); }

/* ── Comparison Table ──────────────────────────────────── */
.compare-table { width: 100%; border-collapse: collapse; margin-top: 24px; }
.compare-table th { background: var(--navy); color: var(--white); padding: 14px 18px; font-family: 'Syne',sans-serif; font-size: 14px; text-align: left; }
.compare-table th:first-child { border-radius: 8px 0 0 0; }
.compare-table th:last-child { border-radius: 0 8px 0 0; }
.compare-table td { padding: 13px 18px; font-size: 14px; border-bottom: 1px solid var(--border); color: var(--text); }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:nth-child(even) td { background: var(--off-white); }
.compare-table .yes { color: #16a34a; font-weight: 700; }
.compare-table .check { color: var(--gold); font-weight: 700; font-size: 16px; }
.compare-table .highlight-row td { background: var(--gold-pale) !important; font-weight: 600; }

/* ── How To Schema Block ───────────────────────────────── */
.howto-block { background: var(--white); }
.howto-steps { counter-reset: step; display: flex; flex-direction: column; gap: 0; max-width: 720px; margin: 0 auto; }
.howto-step { display: flex; gap: 20px; align-items: flex-start; padding: 20px 0; border-bottom: 1px solid var(--border); }
.howto-step:last-child { border-bottom: none; }
.step-num { width: 40px; height: 40px; flex-shrink: 0; background: var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Syne',sans-serif; font-weight: 800; font-size: 16px; color: var(--navy); }
.step-text h4 { font-family: 'Syne',sans-serif; font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.step-text p { font-size: 13.5px; color: var(--muted); line-height: 1.6; }

/* Mobile */
@media(max-width:768px){
  .reviews-grid,.facts-grid{grid-template-columns:1fr;}
  .compare-table{font-size:12px;}
  .compare-table td,.compare-table th{padding:10px 12px;}
}


/* ═══════════════════════════════════════════════════════
   BOOKING MODAL — Full Flow
   ═══════════════════════════════════════════════════════ */

/* Backdrop */
#bookingModal { display:none; }
#bookingModal.open { display:flex; }
.bk-backdrop {
  position: fixed; inset: 0; z-index: 9000;
  background: rgba(13,27,42,.75);
  backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  padding: 16px;
  animation: bkFadeIn .2s ease;
}
@keyframes bkFadeIn { from{opacity:0} to{opacity:1} }

/* Modal container */
.bk-modal {
  background: #fff;
  border-radius: 20px;
  width: 100%;
  max-width: 640px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,.4);
  animation: bkSlideUp .3s ease;
}
@keyframes bkSlideUp { from{transform:translateY(32px);opacity:0} to{transform:translateY(0);opacity:1} }

/* Header */
.bk-header {
  display: flex; justify-content: space-between; align-items: flex-start;
  padding: 24px 28px 16px;
  border-bottom: 1.5px solid #f0f2f5;
  background: linear-gradient(135deg, var(--navy) 0%, #1a2e42 100%);
  flex-shrink: 0;
}
.bk-header h2 { font-family:'Syne',sans-serif; font-size:20px; font-weight:800; color:#fff; margin-bottom:3px; }
.bk-header p  { font-size:13px; color:rgba(255,255,255,.6); }
.bk-close {
  background:rgba(255,255,255,.12); border:none; border-radius:50%;
  width:34px; height:34px; color:#fff; font-size:16px;
  cursor:pointer; flex-shrink:0; display:flex; align-items:center; justify-content:center;
  transition:background .15s;
}
.bk-close:hover { background:rgba(255,255,255,.25); }

/* Progress bar */
.bk-progress {
  display: flex; align-items: center;
  padding: 14px 28px;
  background: #f8f9fb;
  border-bottom: 1.5px solid #f0f2f5;
  overflow-x: auto;
  flex-shrink: 0;
  gap: 0;
}
.bk-step-dot {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  flex-shrink: 0;
}
.bk-step-dot span { font-size: 10px; color: #aaa; white-space: nowrap; font-weight: 600; text-transform: uppercase; letter-spacing:.3px; }
.bk-step-dot.active span { color: var(--gold); }
.bk-step-dot.done span { color: #16a34a; }
.bk-dot {
  width: 28px; height: 28px; border-radius: 50%;
  background: #e5e7eb; color: #aaa;
  font-size: 11px; font-weight: 700; font-family:'Syne',sans-serif;
  display: flex; align-items: center; justify-content: center;
  transition: all .2s;
}
.bk-step-dot.active .bk-dot { background: var(--gold); color: var(--navy); }
.bk-step-dot.done  .bk-dot { background: #16a34a; color: #fff; font-size:13px; }
.bk-step-line { flex: 1; height: 2px; background: #e5e7eb; min-width: 16px; margin-bottom: 16px; }

/* Body */
.bk-body { padding: 24px 28px; overflow-y: auto; flex: 1; }

/* Step 1: Type grid */
.bk-type-grid { display:grid; grid-template-columns:1fr 1fr; gap:12px; margin-bottom:20px; }
.bk-type-card {
  border: 2px solid #e5e7eb; border-radius: 14px; padding: 18px 14px;
  cursor: pointer; transition: all .18s; text-align: center;
  background: #fff;
}
.bk-type-card:hover { border-color: var(--gold); background: var(--gold-pale); }
.bk-type-card.selected { border-color: var(--gold); background: var(--gold-pale); box-shadow: 0 0 0 3px rgba(245,166,35,.15); }
.bk-type-icon { font-size: 28px; margin-bottom: 8px; }
.bk-type-name { font-family:'Syne',sans-serif; font-size: 14px; font-weight: 700; color: var(--navy); }
.bk-type-price { font-size: 12px; color: var(--gold); font-weight: 600; margin: 2px 0; }
.bk-type-desc { font-size: 11px; color: #888; }

/* Gift toggle */
.bk-gift-toggle { margin: 0 0 16px; }
.bk-gift-label {
  display: flex; align-items: center; gap: 14px;
  padding: 16px; border: 2px solid #e5e7eb; border-radius: 14px;
  cursor: pointer; transition: all .18s;
}
.bk-gift-label:has(input:checked) { border-color: var(--gold); background: var(--gold-pale); }
.bk-gift-label input { display:none; }
.bk-gift-icon { font-size: 26px; flex-shrink: 0; }
.bk-gift-label strong { display:block; font-family:'Syne',sans-serif; font-size:14px; color:var(--navy); }
.bk-gift-label span { font-size:12px; color:#888; }

.bk-gift-fields {
  background: #fffbf0; border: 1.5px solid rgba(245,166,35,.3);
  border-radius: 14px; padding: 20px; margin-bottom: 16px;
}
.bk-gift-fields h4 { font-family:'Syne',sans-serif; font-size:15px; font-weight:700; color:var(--navy); margin-bottom:14px; }

/* Step 2: Package list */
.bk-pkg-header { display:flex; align-items:center; gap:10px; margin-bottom:16px; padding-bottom:14px; border-bottom:1.5px solid #f0f2f5; }
.bk-pkg-icon { font-size:24px; }
.bk-pkg-label { font-family:'Syne',sans-serif; font-size:17px; font-weight:700; color:var(--navy); }
.bk-pkg-list { display:flex; flex-direction:column; gap:10px; }
.bk-pkg-row {
  display: flex; align-items: center; gap: 12px;
  border: 2px solid #e5e7eb; border-radius: 14px; padding: 16px 18px;
  cursor: pointer; transition: all .18s;
}
.bk-pkg-row:hover { border-color: var(--gold); background: var(--gold-pale); }
.bk-pkg-row.selected { border-color: var(--gold); background: var(--gold-pale); }
.bk-pkg-left { flex: 1; }
.bk-pkg-name { font-family:'Syne',sans-serif; font-size:14px; font-weight:700; color:var(--navy); }
.bk-pkg-desc { font-size:12px; color:#888; margin-top:2px; }
.bk-pkg-right { text-align:right; flex-shrink:0; }
.bk-pkg-price { font-family:'Syne',sans-serif; font-size:18px; font-weight:800; color:var(--gold); }
.bk-pkg-hrs { font-size:11px; color:#aaa; }
.bk-pkg-check { width:22px; height:22px; border-radius:50%; background:var(--gold); color:var(--navy); display:flex; align-items:center; justify-content:center; font-size:12px; font-weight:700; opacity:0; transition:.15s; flex-shrink:0; }
.bk-pkg-row.selected .bk-pkg-check { opacity:1; }

/* Step 3: Schedule */
.bk-schedule { display:flex; flex-direction:column; gap:18px; }
.bk-time-grid { display:flex; flex-wrap:wrap; gap:8px; margin-top:6px; }
.bk-time-chip {
  padding: 7px 13px; border:1.5px solid #e5e7eb; border-radius:50px;
  font-size:13px; font-weight:500; cursor:pointer; transition:all .15s;
}
.bk-time-chip:hover { border-color:var(--gold); background:var(--gold-pale); }
.bk-time-chip.selected { border-color:var(--gold); background:var(--gold); color:var(--navy); font-weight:700; }
.bk-radio-group { display:flex; flex-direction:column; gap:8px; margin-top:6px; }
.bk-radio {
  display:flex; align-items:center; gap:10px;
  padding:11px 14px; border:1.5px solid #e5e7eb; border-radius:10px;
  cursor:pointer; transition:all .15s; font-size:13px; color:var(--text);
}
.bk-radio:has(input:checked) { border-color:var(--gold); background:var(--gold-pale); font-weight:600; color:var(--navy); }
.bk-radio input { display:none; }

/* Step 4: Details */
.bk-order-summary {
  background: var(--navy); border-radius:12px; padding:16px 20px; margin-bottom:18px;
}
.bk-summary-row { display:flex; justify-content:space-between; align-items:center; font-size:14px; color:rgba(255,255,255,.8); }
.bk-summary-row strong { color:#fff; }
.bk-summary-gift { font-size:12px; color:var(--gold); margin-top:6px; }
.bk-privacy-note { font-size:12px; color:#888; text-align:center; margin:4px 0 0; }

/* Step 5: Stripe */
.bk-secure-badges {
  display:flex; gap:16px; justify-content:center; flex-wrap:wrap;
  font-size:12px; color:#888; margin-bottom:16px;
}

/* Step 6: Confirmation */
.bk-confirm { text-align:center; padding:8px 0; }
.bk-confirm-icon { font-size:56px; margin-bottom:12px; }
.bk-confirm h3 { font-family:'Syne',sans-serif; font-size:24px; font-weight:800; color:var(--navy); margin-bottom:10px; }
.bk-confirm > p { font-size:14px; color:var(--muted); line-height:1.7; margin-bottom:20px; }
.bk-confirm-details {
  background: var(--off-white); border:1.5px solid var(--border);
  border-radius:14px; padding:18px; margin-bottom:20px; text-align:left;
}
.bk-confirm-row { display:flex; justify-content:space-between; padding:8px 0; border-bottom:1px solid var(--border); font-size:14px; }
.bk-confirm-row:last-child { border-bottom:none; }
.bk-confirm-row span { color:var(--muted); }
.bk-confirm-next { background:var(--gold-pale); border:1.5px solid rgba(245,166,35,.3); border-radius:12px; padding:16px 20px; text-align:left; }
.bk-confirm-next h4 { font-family:'Syne',sans-serif; font-size:14px; font-weight:700; color:var(--navy); margin-bottom:10px; }
.bk-confirm-next ul { padding-left:4px; }
.bk-confirm-next ul li { font-size:13px; color:var(--muted); padding:4px 0; }

/* Shared form fields */
.bk-form-row { display:grid; grid-template-columns:1fr 1fr; gap:12px; margin-bottom:0; }
.bk-field { margin-bottom:12px; }
.bk-field label { display:block; font-size:12px; font-weight:700; color:var(--text); margin-bottom:5px; text-transform:uppercase; letter-spacing:.3px; }
.bk-field input,
.bk-field select,
.bk-field textarea {
  width:100%; padding:11px 14px;
  border:1.5px solid #e5e7eb; border-radius:10px;
  font-family:'DM Sans',sans-serif; font-size:14px; color:var(--text);
  outline:none; transition:border-color .18s; appearance:none; -webkit-appearance:none;
  background:#fff;
}
.bk-field input:focus,
.bk-field select:focus,
.bk-field textarea:focus { border-color:var(--gold); box-shadow:0 0 0 3px rgba(245,166,35,.12); }
.bk-field textarea { min-height:80px; resize:vertical; }

/* Navigation */
.bk-nav { display:flex; justify-content:space-between; align-items:center; padding-top:18px; border-top:1.5px solid #f0f2f5; margin-top:18px; }
.bk-btn-primary {
  background:var(--gold); color:var(--navy);
  border:2px solid var(--gold); border-radius:50px;
  font-family:'Syne',sans-serif; font-weight:700; font-size:14px;
  padding:11px 24px; cursor:pointer; transition:all .18s;
  display:inline-flex; align-items:center; gap:6px;
}
.bk-btn-primary:hover:not(:disabled) { background:var(--gold-light); transform:translateY(-1px); }
.bk-btn-primary:disabled { opacity:.5; cursor:not-allowed; }
.bk-btn-ghost {
  background:transparent; color:var(--navy);
  border:2px solid #e5e7eb; border-radius:50px;
  font-family:'Syne',sans-serif; font-weight:600; font-size:14px;
  padding:11px 20px; cursor:pointer; transition:all .18s;
  text-decoration:none; display:inline-flex; align-items:center;
}
.bk-btn-ghost:hover { border-color:var(--navy); }
.bk-error {
  display:none; background:#fef2f2; border:1.5px solid #fca5a5;
  border-radius:10px; padding:11px 14px; font-size:13px; color:#b91c1c;
  margin-bottom:8px;
}

/* H1 Banner overlays */
.page-banner-wrap { position:relative; }
.page-banner-wrap .banner-h1 {
  position:absolute; bottom:0; left:0; right:0;
  padding:12px 32px 14px;
  background:linear-gradient(to top, rgba(13,27,42,.85) 0%, transparent 100%);
  font-family:'Syne',sans-serif;
  font-size:clamp(18px,2.5vw,28px);
  font-weight:800;
  color:#fff;
  letter-spacing:-.3px;
  pointer-events:none;
}
.page-banner-wrap .banner-h1 em { color:var(--gold); font-style:normal; }
.page-banner-wrap .banner-h1 .banner-breadcrumb {
  display:block; font-size:12px; font-weight:500;
  color:rgba(255,255,255,.55); margin-bottom:4px; letter-spacing:.5px;
  text-transform:uppercase;
}

/* Booking trigger button in hero card */
.bk-hero-trigger {
  width:100%; justify-content:center; padding:14px;
  font-size:15px;
}

/* Mobile adjustments */
@media (max-width:600px) {
  .bk-modal { border-radius:16px 16px 0 0; max-height:95vh; }
  .bk-backdrop { align-items:flex-end; padding:0; }
  .bk-type-grid { grid-template-columns:1fr 1fr; gap:8px; }
  .bk-form-row { grid-template-columns:1fr; }
  .bk-body { padding:18px 18px; }
  .bk-header { padding:18px 18px 14px; }
  .bk-progress { padding:12px 18px; }
  .bk-nav { flex-direction:column-reverse; gap:10px; }
  .bk-nav .bk-btn-primary,
  .bk-nav .bk-btn-ghost { width:100%; justify-content:center; }
}

/* ═══════════════════════════════════════════════════════
   PHOTO HERO BANNER  (matches screenshot style)
   ═══════════════════════════════════════════════════════ */
.photo-hero {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 340px;
  display: flex;
  align-items: center;
}
.photo-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(13, 27, 42, 0.62);
  z-index: 0;
}
.photo-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 52px 24px;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
}
/* Left: H1 text */
.photo-hero-text h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.photo-hero-text .hero-sub {
  font-size: clamp(15px, 1.8vw, 18px);
  color: rgba(255, 255, 255, 0.80);
  line-height: 1.65;
  font-weight: 300;
  max-width: 480px;
}
/* Right: callback form card */
.photo-hero-form {
  background: #ffffff;
  border-radius: 16px;
  padding: 28px 28px 24px;
  box-shadow: 0 12px 48px rgba(0,0,0,0.25);
}
.photo-hero-form .form-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Syne', sans-serif;
  font-size: 19px;
  font-weight: 800;
  color: #1c2b3a;
  margin-bottom: 14px;
}
.photo-hero-form .form-title .ph-ico {
  font-size: 18px;
}
.photo-hero-form .form-divider {
  border: none;
  border-top: 2px dashed #e0e4ea;
  margin-bottom: 18px;
}
/* 3-col input row */
.photo-hero-form .f3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  margin-bottom: 12px;
}
.photo-hero-form .f2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 16px;
}
.photo-hero-form .f-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #4a5568;
  margin-bottom: 5px;
}
.photo-hero-form input,
.photo-hero-form select {
  width: 100%;
  padding: 10px 12px;
  border: 1.5px solid #dde4ec;
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: #1c2b3a;
  outline: none;
  transition: border-color .18s;
  background: #ffffff;
  appearance: none;
  -webkit-appearance: none;
}
.photo-hero-form input::placeholder { color: #b0b8c4; }
.photo-hero-form input:focus,
.photo-hero-form select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(245,166,35,.12);
}
.photo-hero-form .cb-btn {
  width: 100%;
  padding: 14px;
  background: var(--gold);
  color: var(--navy);
  border: none;
  border-radius: 50px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: all .18s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.photo-hero-form .cb-btn:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(245,166,35,.4);
}
/* Stats row under text */
.photo-hero-stats {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.photo-hero-stats .ps-item .ps-val {
  font-family: 'Syne', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--gold);
  display: block;
  line-height: 1;
  margin-bottom: 2px;
}
.photo-hero-stats .ps-item .ps-lbl {
  font-size: 12px;
  color: rgba(255,255,255,.55);
}
/* Responsive */
@media (max-width: 900px) {
  .photo-hero-inner { gap: 28px; }
  .photo-hero-form .f3 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .photo-hero-inner { grid-template-columns: 1fr; padding: 36px 16px; }
  .photo-hero { min-height: auto; }
  .photo-hero-text h1 { font-size: clamp(26px, 7vw, 38px); }
  .photo-hero-form .f3 { grid-template-columns: 1fr 1fr; }
  .photo-hero-form .f2 { grid-template-columns: 1fr; }
  .photo-hero-stats { gap: 16px; }
}
@media (max-width: 480px) {
  .photo-hero-form .f3 { grid-template-columns: 1fr; }
}

/* ── Video section responsive ─────────────────────────── */
@media (max-width: 768px) {
  .video-section > .container > div {
    grid-template-columns: 1fr !important;
  }
  .video-section > .container > div > div:last-child video {
    max-height: 220px !important;
  }
}
