/* ============================================
   THE ROADSIDE SERGEANT
   Hub-and-Spoke SPA · Curtain Transitions
   Navy + Gold + Green · Cormorant + Outfit
   ============================================ */

:root {
  --navy: #0D1B2A;
  --navy2: #1B2D45;
  --gold: #BF8F00;
  --gold-light: #d4a720;
  --green: #22C55E;
  --green-dark: #16A34A;
  --safety-orange: #EF4444;
  --white: #FFFFFF;
  --off-white: #F8F6F0;
  --light-gray: #E8E4DC;
  --text-muted: rgba(255,255,255,0.45);
  --text-light: #B0B8C4;
  --border: rgba(255,255,255,0.08);
  --card-bg: rgba(255,255,255,0.03);
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', -apple-system, sans-serif;
  --curtain-speed: 0.6s;
}


/* ========== RESET ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--navy);
  color: var(--white);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  overflow: hidden;
}
a { color: var(--gold); text-decoration: none; }
button { cursor: pointer; border: none; font-family: inherit; }
input, textarea { font-family: inherit; }
.container { width: 100%; max-width: 560px; margin: 0 auto; padding: 0 24px; }


/* ========== ANIMATIONS ========== */
@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%     { opacity: 0.4; transform: scale(1.4); }
}
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes slideUp {
  from { transform: translateY(100%); }
  to   { transform: translateY(0); }
}


/* ========== CURTAIN OVERLAY ========== */
.curtain {
  position: fixed; inset: 0; z-index: 150;
  pointer-events: none; display: flex;
}
.curtain-left, .curtain-right {
  width: 50%; height: 100%;
  background: var(--navy);
  transition: transform var(--curtain-speed) cubic-bezier(0.77, 0, 0.175, 1);
}
.curtain-left  { transform: translateX(-100%); }
.curtain-right { transform: translateX(100%); }
.curtain.closing .curtain-left  { transform: translateX(0); }
.curtain.closing .curtain-right { transform: translateX(0); }
.curtain.opening .curtain-left  { transform: translateX(-100%); }
.curtain.opening .curtain-right { transform: translateX(100%); }
.curtain-brand {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0);
  z-index: 151;
  transition: transform var(--curtain-speed) cubic-bezier(0.77, 0, 0.175, 1);
}
.curtain.closing .curtain-brand { transform: translate(-50%, -50%) scale(1); }
.curtain.opening .curtain-brand { transform: translate(-50%, -50%) scale(0); }
.curtain-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-weight: 700; font-size: 24px;
  color: var(--navy);
  box-shadow: 0 8px 32px rgba(191,143,0,0.4);
}


/* ========== PAGE SYSTEM ========== */
.page {
  position: fixed;
  top: 42px; left: 0; right: 0; bottom: 0;
  opacity: 0; visibility: hidden;
  z-index: 1;
  background: var(--navy);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.page.active { opacity: 1; visibility: visible; }
.page-scroll { height: 100%; overflow-y: auto; -webkit-overflow-scrolling: touch; }


/* ========== PAGE NAV BAR (spoke pages) ========== */
.page-nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 20px;
  background: rgba(13,27,42,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.back-btn {
  display: flex; align-items: center; gap: 8px;
  background: none; color: var(--gold);
  font-size: 14px; font-weight: 500; padding: 8px 14px; border-radius: 8px;
  transition: all 0.3s;
}
.back-btn:hover { background: rgba(191,143,0,0.1); gap: 12px; }
.page-nav-brand {
  display: flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.5); font-size: 13px; font-weight: 500;
}
.nav-help-btn {
  display: flex; align-items: center; gap: 5px;
  background: var(--green); color: #fff;
  font-size: 12px; font-weight: 700; padding: 8px 14px; border-radius: 8px;
  transition: all 0.2s; box-shadow: 0 2px 10px rgba(34,197,94,0.2);
}
.nav-help-btn:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(34,197,94,0.3); }


/* ========== HUB LAYOUT ========== */
.hub { display: flex; height: 100%; min-height: 100%; }

/* Hub Left: Henry */
.hub-left {
  width: 42%;
  position: relative;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 60px 32px;
  cursor: pointer; overflow: hidden;
  background: var(--navy);
}
.hub-left::before {
  content: '';
  position: absolute; inset: 0;
  background: url('../assets/marine2.webp') center/cover no-repeat;
  opacity: 0.3;
  z-index: 0;
  transition: opacity 0.5s;
}
.hub-left:hover::before { opacity: 0.4; }
.hub-left-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(191,143,0,0.08) 0%, transparent 60%);
  opacity: 0; transition: opacity 0.5s;
  z-index: 0;
}
.hub-left:hover .hub-left-overlay { opacity: 1; }

.hub-photo { margin-bottom: 24px; z-index: 1; }
.photo-ring {
  width: 88px; height: 88px; border-radius: 50%;
  background: conic-gradient(from 0deg, var(--gold), var(--gold-light), rgba(191,143,0,0.3), var(--gold-light), var(--gold));
  display: flex; align-items: center; justify-content: center;
  padding: 3px; box-shadow: 0 0 40px rgba(191,143,0,0.15);
}
.photo-ring.large { width: 220px; height: 220px; padding: 4px; }
.hub-portrait, .about-portrait {
  width: 100%; height: 100%; border-radius: 50%;
  object-fit: cover; object-position: top 20%;
}

.hub-left-info { text-align: center; z-index: 1; }
.hub-name {
  font-family: var(--font-heading); font-size: 2.2rem;
  color: var(--gold); margin-bottom: 6px;
}
.hub-rank { color: var(--white); font-size: 0.95rem; margin-bottom: 2px; }
.hub-title-text {
  color: var(--gold-light); font-size: 0.75rem;
  text-transform: uppercase; letter-spacing: 2px; margin-bottom: 8px;
}
.hub-location { color: rgba(255,255,255,0.4); font-size: 0.85rem; }
.hub-location i { color: var(--gold); margin-right: 4px; }

.hub-left-cta {
  position: absolute; bottom: 36px;
  display: flex; align-items: center; gap: 10px;
  color: var(--gold); font-size: 0.85rem; font-weight: 500;
  letter-spacing: 1px; text-transform: uppercase;
  opacity: 0.5; transition: all 0.4s; z-index: 2;
}
.hub-left:hover .hub-left-cta { opacity: 1; gap: 16px; }

/* Hub Right: Path Cards */
.hub-right {
  width: 58%;
  background: var(--off-white);
  display: flex; align-items: center; justify-content: center;
  padding: 48px 40px;
  overflow-y: auto;
}
/* Collage background */
.hub-collage {
  position: absolute; inset: 0;
  display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr;
  gap: 0; z-index: 0; opacity: 0.35;
}
.collage-img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hub-right { position: relative; overflow: hidden; }

.hub-right-content { max-width: 440px; text-align: center; width: 100%; position: relative; z-index: 1; }

.hub-brand {
  display: flex; flex-direction: column; align-items: center;
  gap: 10px; margin-bottom: 36px;
}
.brand-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 16px; color: var(--navy);
  font-family: var(--font-heading);
  box-shadow: 0 4px 16px rgba(191,143,0,0.25);
}
.brand-icon.small { width: 32px; height: 32px; font-size: 12px; border-radius: 8px; }
.brand-icon.large { width: 56px; height: 56px; font-size: 20px; border-radius: 14px; }
.hub-hero-title {
  font-family: var(--font-heading); font-size: 3rem;
  color: var(--navy); letter-spacing: 6px;
  text-transform: uppercase; font-weight: 700;
  line-height: 1.1; margin: 0;
}
.hub-hero-sub {
  font-size: 0.8rem; color: #555;
  letter-spacing: 1px; line-height: 1.6;
  font-weight: 400; margin-top: 4px;
}
.hub-brand-tagline {
  font-size: 0.85rem; color: var(--navy);
  letter-spacing: 2px; text-transform: uppercase;
  font-weight: 700;
  background: rgba(191,143,0,0.15);
  padding: 6px 16px; border-radius: 20px;
  margin-top: 4px;
}

.hub-heading {
  font-family: var(--font-heading); font-size: 1.8rem;
  color: var(--navy); margin-bottom: 24px; font-weight: 400;
}

/* Path Cards */
.hub-paths {
  display: flex; flex-direction: column; gap: 12px;
  margin-bottom: 24px; text-align: left;
}
.hub-path {
  display: flex; align-items: center; gap: 16px;
  background: var(--navy); color: var(--gold);
  padding: 18px 20px; border-radius: 12px;
  border: 2px solid transparent; cursor: pointer;
  transition: all 0.35s ease; width: 100%; text-align: left;
  font-family: var(--font-body);
}
.hub-path:hover {
  transform: translateX(6px); border-color: var(--gold);
  box-shadow: 0 4px 24px rgba(191,143,0,0.2);
}
.hub-path.primary {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #fff; box-shadow: 0 4px 20px rgba(34,197,94,0.25);
}
.hub-path.primary:hover {
  transform: translateX(6px);
  box-shadow: 0 8px 32px rgba(34,197,94,0.35);
  border-color: transparent;
}
.hub-path.primary .hub-path-text strong { color: #fff; }
.hub-path.primary .hub-path-text small { color: rgba(255,255,255,0.7); }
.hub-path.primary .hub-path-arrow { color: rgba(255,255,255,0.5); }

.hub-path-icon { font-size: 1.3rem; flex-shrink: 0; width: 36px; text-align: center; }
.hub-path-text { flex: 1; display: flex; flex-direction: column; gap: 2px; }
.hub-path-text strong { font-size: 0.95rem; color: var(--gold); }
.hub-path-text small { font-size: 0.75rem; color: rgba(255,255,255,0.4); font-weight: 400; }
.hub-path-arrow { font-size: 0.9rem; opacity: 0.4; transition: all 0.3s; }
.hub-path:hover .hub-path-arrow { opacity: 1; transform: translateX(4px); }

/* Phone path card - special orange/emergency style */
.hub-path.phone-path {
  background: linear-gradient(135deg, var(--safety-orange), #dc2626);
  color: #fff; border-color: transparent;
}
.hub-path.phone-path:hover {
  box-shadow: 0 8px 32px rgba(239,68,68,0.35);
  border-color: transparent;
}
.hub-path.phone-path .hub-path-text strong { color: #fff; }
.hub-path.phone-path .hub-path-text small { color: rgba(255,255,255,0.7); }
.hub-path.phone-path .hub-path-icon { color: #fff; }
.hub-path.phone-path .hub-path-arrow { color: rgba(255,255,255,0.5); }

.hub-promise {
  font-family: 'Caveat', cursive; font-size: 1.25rem;
  color: #999; font-style: italic;
}


/* ========== SPOKE PAGE BACKGROUNDS (gmc1.webp) ========== */
#page-services,
#page-how,
#page-coverage,
#page-book,
#page-about {
  position: fixed; top: 42px; left: 0; right: 0; bottom: 0;
}
#page-services::before,
#page-how::before,
#page-coverage::before,
#page-book::before,
#page-about::before {
  content: '';
  position: absolute; inset: 0;
  background: url('../assets/gmc1.webp') center/cover no-repeat;
  opacity: 0.06;
  z-index: 0;
  pointer-events: none;
}
#page-services .page-nav,
#page-services .page-scroll,
#page-how .page-nav,
#page-how .page-scroll,
#page-coverage .page-nav,
#page-coverage .page-scroll,
#page-book .page-nav,
#page-book .page-scroll,
#page-about .page-nav,
#page-about .page-scroll {
  position: relative;
  z-index: 1;
}


/* ========== SPOKE PAGES — SHARED ========== */
.spoke-header { text-align: center; padding: 48px 0 32px; }
.spoke-header h2 {
  font-family: var(--font-heading); font-size: 2rem;
  font-weight: 700; color: var(--white); margin-bottom: 8px;
}
.spoke-header p {
  font-size: 15px; color: var(--text-light); font-weight: 300;
}
.spoke-cta { text-align: center; padding: 40px 0 56px; }
.spoke-cta .btn-primary { animation: none; }


/* ========== EMERGENCY BAR ========== */
.emergency-bar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 20px;
  background: linear-gradient(135deg, var(--safety-orange), #dc2626);
  color: #fff;
  box-shadow: 0 2px 20px rgba(239,68,68,0.3);
}
.emergency-left { display: flex; align-items: center; gap: 10px; }
.pulse-dot {
  width: 8px; height: 8px; background: #fff;
  border-radius: 50%; animation: pulse 1.5s ease-in-out infinite;
}
.emergency-text {
  font-size: 11px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
}
.emergency-phone {
  color: #fff; font-weight: 700; font-size: 13px;
  background: rgba(255,255,255,0.2);
  padding: 6px 14px; border-radius: 20px; white-space: nowrap;
  transition: all 0.2s;
}
.emergency-phone:hover { background: rgba(255,255,255,0.35); color: #fff; }

/* Unavailability banner */
.unavail-banner {
  display: none; align-items: center; justify-content: center;
  gap: 10px; padding: 12px 20px;
  position: fixed; top: 42px; left: 0; right: 0;
  background: linear-gradient(135deg, #1B2D45, #0D1B2A);
  border-bottom: 2px solid rgba(191,143,0,0.3);
  color: var(--gold-light);
  font-size: 13px; font-weight: 500;
  text-align: center; z-index: 199;
}
.unavail-banner i { font-size: 16px; }


/* ========== SERVICE CARDS ========== */
.service-card {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 20px; background: var(--card-bg);
  border: 1px solid var(--border); border-radius: 14px;
  margin-bottom: 12px; transition: all 0.3s ease;
}
.service-card:hover {
  border-color: rgba(191,143,0,0.25); transform: translateX(4px);
  box-shadow: 0 4px 20px rgba(191,143,0,0.08);
}
.service-left { display: flex; align-items: center; gap: 14px; }
.service-icon-box {
  width: 46px; height: 46px;
  background: rgba(191,143,0,0.08); border: 1px solid rgba(191,143,0,0.15);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center; font-size: 20px;
  transition: all 0.3s;
}
.service-card:hover .service-icon-box {
  background: rgba(191,143,0,0.12); border-color: rgba(191,143,0,0.3);
}
.service-info { display: flex; flex-direction: column; }
.service-name { font-weight: 600; font-size: 15px; color: var(--white); }
.service-desc { font-size: 12px; color: var(--text-muted); font-weight: 300; }
.service-price {
  font-family: var(--font-heading); font-size: 20px;
  font-weight: 700; color: var(--gold); white-space: nowrap;
  display: flex; flex-direction: column; align-items: flex-end;
}
.starting-at {
  display: block; font-family: var(--font-body);
  font-size: 10px; font-weight: 400; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 1px;
}
.pricing-note {
  font-size: 12px; color: var(--text-muted); text-align: center;
  margin-top: 20px; font-weight: 300;
}
.pricing-note i { color: var(--gold); margin-right: 4px; }


/* ========== PRICE CALCULATOR ========== */
.calc-card {
  background: var(--off-white); color: var(--navy);
  border-radius: 16px; padding: 28px 24px;
  margin-top: 32px; margin-bottom: 24px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.15);
}
.calc-header {
  display: flex; align-items: center; gap: 10px; margin-bottom: 4px;
}
.calc-header i { font-size: 22px; color: var(--green-dark); }
.calc-header h3 {
  font-family: var(--font-heading); font-size: 1.4rem;
  font-weight: 700; color: var(--navy); margin: 0;
}
.calc-sub {
  font-size: 13px; color: #666; margin-bottom: 20px; font-weight: 300;
}
.calc-gps-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; padding: 14px;
  background: linear-gradient(135deg, #1565C0, #0D47A1); color: #fff;
  font-size: 15px; font-weight: 700; border-radius: 12px;
  margin-bottom: 24px; transition: all 0.25s;
  box-shadow: 0 4px 16px rgba(21,101,192,0.25);
}
.calc-gps-btn:hover:not(:disabled) {
  transform: translateY(-2px); box-shadow: 0 6px 24px rgba(21,101,192,0.35);
}
.calc-gps-btn:disabled { opacity: 0.7; }
.calc-field { margin-bottom: 18px; }
.calc-field label {
  display: block; font-size: 14px; font-weight: 600;
  color: var(--navy); margin-bottom: 8px;
}
.calc-slider-row {
  display: flex; align-items: center; gap: 14px;
}
.calc-slider {
  flex: 1; height: 8px; -webkit-appearance: none; appearance: none;
  border-radius: 8px;
  background: linear-gradient(to right, var(--green) 0%, rgba(0,0,0,0.08) 0%);
  outline: none;
}
.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none; width: 22px; height: 22px;
  border-radius: 50%; background: #fff;
  border: 3px solid var(--green-dark);
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  cursor: pointer;
}
.calc-slider::-moz-range-thumb {
  width: 22px; height: 22px; border-radius: 50%;
  background: #fff; border: 3px solid var(--green-dark);
  box-shadow: 0 2px 8px rgba(0,0,0,0.15); cursor: pointer;
}
.calc-mi { font-weight: 700; color: var(--navy); font-size: 15px; min-width: 42px; text-align: right; }
.calc-select {
  width: 100%; padding: 12px 14px;
  border: 2px solid #ddd; border-radius: 10px;
  font-size: 15px; font-family: var(--font-body);
  color: var(--navy); background: #fff;
  outline: none; cursor: pointer; transition: border 0.2s;
}
.calc-select:focus { border-color: var(--green-dark); }
.calc-breakdown {
  background: #f3f1ea; border-radius: 12px;
  padding: 18px; margin-bottom: 20px; margin-top: 8px;
}
.calc-row {
  display: flex; justify-content: space-between;
  padding: 8px 0; font-size: 14px; color: #444;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.calc-row:last-of-type { border-bottom: none; }
.calc-row span:last-child { font-weight: 600; color: var(--navy); }
.calc-total-row {
  border-bottom: none !important; padding-top: 14px; margin-top: 6px;
  border-top: 2px solid var(--navy);
}
.calc-total-val {
  font-family: var(--font-heading); font-size: 1.8rem !important;
  font-weight: 700 !important; color: var(--green-dark) !important;
}
.calc-free-note {
  font-size: 12px; color: var(--green-dark); text-align: center;
  margin-top: 10px; font-weight: 400;
}
.calc-free-note i { margin-right: 4px; }
.calc-book-btn {
  margin-top: 4px;
  background: linear-gradient(135deg, #2E7D32, #1B5E20) !important;
}
.calc-book-btn:hover {
  box-shadow: 0 8px 32px rgba(46,125,50,0.35) !important;
}


/* ========== MILEAGE RATES TABLE ========== */
.mileage-card {
  background: var(--off-white); color: var(--navy);
  border-radius: 16px; padding: 28px 24px;
  margin-bottom: 24px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.15);
}
.mileage-header {
  display: flex; align-items: center; gap: 10px; margin-bottom: 20px;
}
.mileage-header i { font-size: 20px; color: var(--green-dark); }
.mileage-header h3 {
  font-family: var(--font-heading); font-size: 1.2rem;
  font-weight: 700; color: var(--navy); margin: 0;
}
.mileage-tiers {
  display: flex; gap: 8px; flex-wrap: wrap; justify-content: center;
  margin-bottom: 16px;
}
.mileage-tier {
  flex: 1; min-width: 90px; text-align: center;
  padding: 14px 10px; background: #f3f1ea;
  border-radius: 10px; border: 1px solid #e0dcd4;
  transition: all 0.2s;
}
.mileage-tier:hover { border-color: var(--green-dark); transform: translateY(-2px); }
.tier-range {
  display: block; font-size: 12px; color: #666;
  margin-bottom: 4px; font-weight: 500;
}
.tier-rate {
  display: block; font-family: var(--font-heading);
  font-size: 18px; font-weight: 700; color: var(--green-dark);
}
.mileage-note {
  text-align: center; font-size: 12px; color: #888;
  font-weight: 400;
}
.mileage-note i { color: var(--green-dark); margin-right: 4px; }


/* ========== BEYOND 70 MI ========== */
.beyond-card {
  text-align: center; padding: 28px 24px;
  border: 2px dashed rgba(191,143,0,0.3);
  border-radius: 16px; margin-bottom: 24px;
  background: rgba(191,143,0,0.03);
}
.beyond-card h3 {
  font-family: var(--font-heading); font-size: 1.3rem;
  font-weight: 700; color: var(--white); margin-bottom: 6px;
}
.beyond-card p {
  font-size: 14px; color: var(--text-light);
  margin-bottom: 16px; font-weight: 300;
}
.btn-beyond {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px;
  background: linear-gradient(135deg, #2E7D32, #1B5E20); color: #fff;
  font-size: 15px; font-weight: 700; border-radius: 12px;
  transition: all 0.25s; text-decoration: none;
  box-shadow: 0 4px 16px rgba(46,125,50,0.25);
}
.btn-beyond:hover {
  transform: translateY(-2px); color: #fff;
  box-shadow: 0 6px 24px rgba(46,125,50,0.35);
}


/* ========== STEPS (How It Works) ========== */
.steps { display: flex; flex-direction: column; gap: 20px; }
.step {
  display: flex; gap: 18px; align-items: flex-start;
  padding: 20px; background: var(--card-bg);
  border: 1px solid var(--border); border-radius: 14px;
  transition: all 0.3s;
}
.step:hover {
  border-color: rgba(191,143,0,0.2); transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.step-number {
  width: 40px; height: 40px;
  background: rgba(191,143,0,0.1); border: 1px solid rgba(191,143,0,0.2);
  color: var(--gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-weight: 700; font-size: 18px;
  flex-shrink: 0;
}
.step-content h3 {
  font-family: var(--font-heading); font-size: 18px;
  font-weight: 600; color: var(--white); margin-bottom: 4px;
}
.step-content p {
  font-size: 14px; color: var(--text-light); line-height: 1.6; font-weight: 300;
}


/* ========== COVERAGE ========== */
.map-wrapper {
  border-radius: 14px; overflow: hidden;
  border: 1px solid var(--border); margin-bottom: 24px;
  background: rgba(191,143,0,0.03);
}
.map-placeholder {
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 10px; height: 250px;
  color: var(--text-muted); cursor: pointer; font-size: 14px;
  transition: all 0.3s;
}
.map-placeholder:hover { background: rgba(191,143,0,0.06); color: var(--gold); }
.map-placeholder i { font-size: 32px; color: var(--gold); }
.map-wrapper iframe { width: 100%; height: 300px; border: 0; }
.area-pills { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.area-pill {
  font-size: 12px; font-weight: 500; padding: 6px 14px;
  border-radius: 20px; transition: all 0.2s;
}
.area-pill.town {
  background: var(--card-bg); border: 1px solid var(--border); color: var(--text-light);
}
.area-pill.town:hover { border-color: rgba(191,143,0,0.25); color: var(--gold-light); }
.area-pill.highway {
  background: rgba(239,68,68,0.06); border: 1px solid rgba(239,68,68,0.2);
  color: var(--safety-orange); font-weight: 600;
}


/* ========== ABOUT ========== */
.about-card { text-align: center; padding: 20px 0 40px; }
.about-photo { display: flex; justify-content: center; margin-bottom: 20px; }
.about-name {
  font-family: var(--font-heading); font-size: 2rem;
  font-weight: 700; color: #fff; margin-bottom: 4px;
}
.about-rank {
  font-size: 13px; font-weight: 600; color: var(--gold);
  letter-spacing: 1px; text-transform: uppercase; margin-bottom: 2px;
}
.about-title {
  font-size: 13px; color: var(--text-muted); margin-bottom: 24px; font-weight: 300;
}
.about-quote {
  font-family: var(--font-heading); font-size: 17px; font-style: italic;
  color: rgba(255,255,255,0.55); line-height: 1.7;
  border: 0; padding: 0 16px; max-width: 400px; margin: 0 auto;
}
.about-quote strong { color: var(--gold-light); font-style: normal; }

.about-badges {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px;
}
.about-badge {
  display: flex; align-items: center; gap: 10px;
  padding: 16px; background: var(--card-bg);
  border: 1px solid var(--border); border-radius: 12px;
  font-size: 13px; color: var(--text-light); transition: all 0.3s;
}
.about-badge:hover { border-color: rgba(191,143,0,0.2); }
.about-badge i { color: var(--gold); font-size: 18px; flex-shrink: 0; }

/* About crosslinks */
.about-links {
  display: flex; flex-direction: column; gap: 10px;
  margin-top: 32px; margin-bottom: 16px;
}
.about-link-card {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 20px; background: var(--card-bg);
  border: 1px solid var(--border); border-radius: 12px;
  color: var(--white); cursor: pointer; transition: all 0.3s;
  font-family: var(--font-body); width: 100%; text-align: left;
}
.about-link-card:hover {
  border-color: rgba(191,143,0,0.3); transform: translateX(4px);
  box-shadow: 0 4px 16px rgba(191,143,0,0.1);
}
.about-link-card i.link-icon { color: var(--gold); font-size: 1.1rem; flex-shrink: 0; }
.about-link-card strong { font-size: 14px; color: var(--gold); }
.about-link-card .bi-chevron-right { opacity: 0.3; margin-left: auto; transition: all 0.3s; }
.about-link-card:hover .bi-chevron-right { opacity: 1; transform: translateX(4px); }


/* ========== BUTTONS ========== */
.btn-primary {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  width: 100%; padding: 18px 24px;
  background: linear-gradient(135deg, var(--green), var(--green-dark)); color: #fff;
  font-size: 17px; font-weight: 700; border-radius: 14px; gap: 4px;
  transition: all 0.25s; min-height: 44px;
  box-shadow: 0 4px 24px rgba(34,197,94,0.25);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(34,197,94,0.35);
}
.btn-sub { font-size: 11px; font-weight: 400; opacity: 0.7; }
.divider-text {
  text-align: center; color: var(--text-muted); font-size: 13px;
  margin: 16px 0; font-family: var(--font-heading); letter-spacing: 2px;
}
.btn-call {
  display: flex; align-items: center; justify-content: center;
  width: 100%; padding: 14px 24px;
  border: 2px solid var(--safety-orange); color: var(--safety-orange);
  font-size: 16px; font-weight: 600; border-radius: 14px; gap: 8px;
  transition: all 0.25s; min-height: 44px; background: transparent;
}
.btn-call:hover {
  background: rgba(239,68,68,0.08); transform: translateY(-2px);
  color: var(--safety-orange);
}
.btn-secondary {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 10px 20px; background: var(--card-bg); color: var(--white);
  font-size: 14px; font-weight: 600; border-radius: 10px;
  border: 1px solid var(--border); margin-top: 8px; min-height: 44px;
  transition: all 0.2s;
}
.btn-secondary:hover { border-color: var(--gold); background: rgba(191,143,0,0.06); }
.btn-next {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; padding: 16px;
  background: linear-gradient(135deg, var(--green), var(--green-dark)); color: #fff;
  font-size: 16px; font-weight: 700; border-radius: 12px; margin-top: 24px;
  transition: all 0.25s; min-height: 44px;
}
.btn-next:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(34,197,94,0.3);
}
.btn-next:disabled { opacity: 0.35; cursor: not-allowed; }


/* ========== BOOKING MODAL — ECOMMERCE CHECKOUT ========== */
.modal-overlay {
  position: fixed; inset: 0; z-index: 300;
  background: rgba(0,0,0,0.75); display: none;
  align-items: flex-end; justify-content: center;
  backdrop-filter: blur(8px);
}
.modal-overlay.active { display: flex; }
.modal {
  background: linear-gradient(180deg, #0f2035 0%, var(--navy) 100%);
  width: 100%; max-width: 520px; max-height: 92vh;
  border-radius: 20px 20px 0 0; overflow-y: auto;
  padding: 0 24px 32px; position: relative;
  animation: slideUp 0.35s cubic-bezier(0.4,0,0.2,1);
  box-shadow: 0 -8px 60px rgba(0,0,0,0.5);
  border-top: 3px solid var(--gold);
}
.modal-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 0 12px; position: sticky; top: 0;
  background: linear-gradient(180deg, #0f2035, #0f2035ee); z-index: 10;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.modal-brand {
  display: flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 15px; color: var(--white);
  letter-spacing: 0.5px;
}
.modal-close {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.06); border-radius: 50%;
  color: var(--white); font-size: 22px;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.modal-close:hover { background: rgba(255,255,255,0.12); color: var(--gold); }

/* Checkout Step Indicator */
.checkout-steps-bar {
  display: flex; align-items: center; justify-content: center;
  gap: 0; padding: 16px 0 12px;
}
.checkout-step-dot {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  min-width: 48px;
}
.dot-num {
  width: 28px; height: 28px;
  background: rgba(255,255,255,0.06); border: 2px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.3);
  transition: all 0.3s;
}
.checkout-step-dot.active .dot-num {
  background: var(--gold); border-color: var(--gold);
  color: var(--navy); box-shadow: 0 0 12px rgba(191,143,0,0.4);
}
.checkout-step-dot.done .dot-num {
  background: var(--green); border-color: var(--green); color: #fff;
}
.dot-label {
  font-size: 9px; color: rgba(255,255,255,0.25);
  text-transform: uppercase; letter-spacing: 0.5px; font-weight: 600;
  transition: color 0.3s;
}
.checkout-step-dot.active .dot-label { color: var(--gold); }
.checkout-step-dot.done .dot-label { color: var(--green); }
.checkout-step-line {
  flex: 1; height: 2px; max-width: 28px;
  background: rgba(255,255,255,0.08);
  margin: 0 2px; margin-bottom: 16px;
}

/* Step Number Badge */
.step-number-badge {
  display: inline-block;
  font-size: 10px; font-weight: 700; color: var(--gold);
  text-transform: uppercase; letter-spacing: 2px;
  background: rgba(191,143,0,0.1); border: 1px solid rgba(191,143,0,0.2);
  border-radius: 20px; padding: 4px 14px;
  margin-bottom: 12px;
}

.modal-progress {
  height: 3px; background: rgba(255,255,255,0.04);
  border-radius: 4px; margin-bottom: 24px; overflow: hidden;
}
.modal-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 4px;
  transition: width 0.5s cubic-bezier(0.4,0,0.2,1);
}

/* Payment Summary — Order Summary Style */
.pay-header {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 700; color: var(--gold);
  text-transform: uppercase; letter-spacing: 1px;
  padding-bottom: 12px; margin-bottom: 4px;
  border-bottom: 1px solid var(--border);
}
.pay-header i { font-size: 16px; }
.pay-divider {
  height: 1px; background: var(--border); margin: 4px 0;
}
.pay-notice {
  display: flex; align-items: center; gap: 6px;
  font-size: 11px; color: var(--green);
  padding: 10px 0 0; font-weight: 500;
}
.pay-notice i { font-size: 14px; }

/* Modal Trust Badges */
.modal-trust {
  display: flex; justify-content: center; gap: 16px;
  padding: 20px 0 8px;
  border-top: 1px solid rgba(255,255,255,0.04);
  margin-top: 16px;
}
.modal-trust-item {
  display: flex; align-items: center; gap: 5px;
  font-size: 10px; color: rgba(255,255,255,0.3);
  font-weight: 500;
}
.modal-trust-item i { color: var(--gold); font-size: 12px; }


/* ========== BOOKING FLOW (inline on book page) ========== */
.booking-flow-wrap {
  max-width: 520px; margin: 0 auto; padding: 0 24px 32px;
}
.booking-flow-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 0;
}
.booking-flow-brand {
  display: flex; align-items: center; gap: 10px;
  font-weight: 600; font-size: 15px; color: var(--white);
}
.booking-flow-progress {
  height: 4px; background: rgba(255,255,255,0.06);
  border-radius: 4px; margin-bottom: 28px; overflow: hidden;
}
.booking-flow-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 4px;
  transition: width 0.5s cubic-bezier(0.4,0,0.2,1);
}

.booking-step { display: none; animation: fadeSlideIn 0.35s ease; }
.booking-step.active { display: block; }
.booking-step h3 {
  font-family: var(--font-heading); font-size: 24px;
  font-weight: 700; color: #fff; margin-bottom: 6px;
}
.step-desc {
  font-size: 14px; color: var(--text-light);
  margin-bottom: 24px; font-weight: 300;
}

/* Step 1: Service Select */
.service-select-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.service-select-btn {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 8px; padding: 22px 14px; background: var(--card-bg);
  border: 2px solid var(--border); border-radius: 14px; color: var(--white);
  transition: all 0.25s; min-height: 44px;
}
.service-select-btn:hover {
  border-color: rgba(191,143,0,0.3); transform: translateY(-3px);
  box-shadow: 0 4px 16px rgba(191,143,0,0.1);
}
.service-select-btn.selected {
  border-color: var(--gold); background: rgba(191,143,0,0.08);
  box-shadow: 0 4px 16px rgba(191,143,0,0.15);
}
.ss-icon { font-size: 28px; }
.ss-name { font-size: 13px; font-weight: 600; }
.ss-price {
  font-family: var(--font-heading); font-size: 17px;
  font-weight: 700; color: var(--gold);
}

/* Step 2: GPS Ping */
.ping-btn {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%; padding: 20px;
  background: linear-gradient(135deg, var(--green), var(--green-dark)); color: #fff;
  font-size: 17px; font-weight: 700; border-radius: 14px; margin-bottom: 12px;
  transition: all 0.25s; min-height: 44px;
  box-shadow: 0 4px 20px rgba(34,197,94,0.2);
}
.ping-btn:hover {
  transform: translateY(-2px); box-shadow: 0 6px 28px rgba(34,197,94,0.3);
}
.ping-btn:active { transform: scale(0.97); }
.ping-btn.pinging { opacity: 0.7; }
.ping-btn.pinging i { animation: spin 1s linear infinite; }
.ping-btn.success { background: var(--green); }
.gps-status {
  font-size: 13px; color: var(--text-muted); text-align: center;
  margin-bottom: 20px; min-height: 20px;
}
.gps-status.success { color: var(--green); }
.gps-status.error { color: var(--safety-orange); }
.gps-status a { color: var(--gold); text-decoration: underline; }
.location-result {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: 14px; padding: 18px; margin-bottom: 16px;
  animation: fadeSlideIn 0.3s ease;
}
.loc-row {
  display: flex; justify-content: space-between;
  padding: 10px 0; border-bottom: 1px solid var(--border);
}
.loc-row:last-of-type { border-bottom: none; }
.loc-row.highlight {
  border-bottom: none; padding-top: 14px; margin-top: 4px;
  border-top: 2px solid var(--gold);
}
.loc-label { font-size: 13px; color: var(--text-muted); font-weight: 300; }
.loc-value {
  font-size: 14px; font-weight: 600; color: var(--white);
  text-align: right; max-width: 55%; word-break: break-all;
}
.loc-total {
  font-family: var(--font-heading); font-size: 22px;
  font-weight: 700; color: var(--gold);
}
.loc-note {
  font-size: 11px; color: var(--text-muted); margin-top: 10px; font-weight: 300;
}
.loc-note i { color: var(--gold); }
.manual-fallback {
  margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--border);
}
.manual-fallback p {
  font-size: 13px; color: var(--text-muted); margin-bottom: 10px; font-weight: 300;
}
.autocomplete-wrap { position: relative; }
.autocomplete-list {
  display: none; position: absolute; top: 100%; left: 0; right: 0;
  background: var(--navy2); border: 1px solid var(--border);
  border-radius: 0 0 12px 12px; max-height: 220px; overflow-y: auto;
  z-index: 20; box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}
.ac-item {
  padding: 12px 16px; font-size: 13px; color: var(--text-light);
  cursor: pointer; border-bottom: 1px solid var(--border);
  transition: background 0.15s;
  line-height: 1.4;
}
.ac-item:last-child { border-bottom: none; }
.ac-item:hover {
  background: rgba(191,143,0,0.1); color: var(--white);
}

/* Step 3: Customer Info */
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block; font-size: 12px; font-weight: 600;
  color: var(--gold); margin-bottom: 6px;
  text-transform: uppercase; letter-spacing: 1px;
}
.optional {
  font-weight: 400; color: var(--text-muted);
  text-transform: none; letter-spacing: 0;
}
.input-field {
  width: 100%; padding: 14px 16px; background: var(--card-bg);
  border: 1px solid var(--border); border-radius: 12px; color: var(--white);
  font-size: 15px; outline: none; transition: all 0.25s; min-height: 44px;
}
.input-field:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(191,143,0,0.1);
}
.input-field::placeholder { color: var(--text-muted); font-weight: 300; }
textarea.input-field { resize: vertical; }

/* Step 4: Agreements */
.agreement-items {
  display: flex; flex-direction: column; gap: 12px; margin-bottom: 8px;
}
.agreement-item {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 16px; background: var(--card-bg);
  border: 1px solid var(--border); border-radius: 12px;
  cursor: pointer; transition: all 0.25s;
  font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.5;
}
.agreement-item:hover { border-color: rgba(191,143,0,0.2); }
.agreement-item input[type="checkbox"] {
  width: 20px; height: 20px; flex-shrink: 0; margin-top: 2px;
  accent-color: var(--gold);
}
.agreement-item:has(input:checked) {
  border-color: var(--gold); color: var(--white);
  background: rgba(191,143,0,0.04);
}
.battery-agree {
  border-color: rgba(239,68,68,0.3);
  background: rgba(239,68,68,0.04);
}
.battery-agree:has(input:checked) {
  border-color: var(--gold); background: rgba(191,143,0,0.04);
}

/* Step 5: Payment */
.payment-summary {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: 14px; padding: 18px; margin-bottom: 24px;
}
.pay-row {
  display: flex; justify-content: space-between;
  padding: 8px 0; font-size: 14px; color: var(--text-muted);
}
.pay-row span:last-child { color: var(--white); font-weight: 600; }
.pay-row.total {
  border-top: 1px solid var(--border); padding-top: 14px; margin-top: 8px;
}
.pay-row.total span:last-child {
  font-family: var(--font-heading); font-size: 22px;
  font-weight: 700; color: var(--gold);
}
.card-input-wrapper { margin-bottom: 20px; }
.card-input-wrapper label {
  display: block; font-size: 12px; font-weight: 600;
  color: var(--gold); margin-bottom: 8px;
  text-transform: uppercase; letter-spacing: 1px;
}
#card-element {
  padding: 14px 16px; background: #fff;
  border-radius: 12px; min-height: 44px;
}
.card-errors {
  font-size: 13px; color: var(--safety-orange);
  margin-top: 6px; min-height: 18px;
}
.btn-pay {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; padding: 18px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  font-size: 17px; font-weight: 700; border-radius: 14px; margin-bottom: 12px;
  min-height: 44px; transition: all 0.25s;
  box-shadow: 0 4px 20px rgba(191,143,0,0.25);
}
.btn-pay:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(191,143,0,0.4);
}
.btn-pay:disabled { opacity: 0.5; cursor: not-allowed; }
.btn-pay.processing { opacity: 0.7; }
.stripe-badge {
  text-align: center; font-size: 11px;
  color: var(--text-muted); font-weight: 300;
}
.stripe-badge i { color: var(--gold); margin-right: 4px; }

/* Step 6: Confirmation */
.confirmation {
  text-align: center; padding: 20px 0; animation: fadeSlideIn 0.5s ease;
}
.conf-icon {
  width: 64px; height: 64px;
  background: rgba(34,197,94,0.1); border: 2px solid rgba(34,197,94,0.25);
  color: var(--green); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; font-weight: 900; margin: 0 auto 16px;
}
.confirmation h3 { text-align: center; }
.conf-sub {
  font-size: 14px; color: var(--text-light);
  margin-bottom: 28px; font-weight: 300;
}
.conf-details {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: 14px; padding: 18px; margin-bottom: 20px; text-align: left;
}
.conf-row {
  display: flex; justify-content: space-between;
  padding: 10px 0; border-bottom: 1px solid var(--border);
}
.conf-row:last-child { border-bottom: none; }
.conf-label { font-size: 13px; color: var(--text-muted); font-weight: 300; }
.conf-value { font-size: 14px; font-weight: 700; color: var(--gold); }
.conf-notice {
  font-size: 12px; color: rgba(255,255,255,0.4); line-height: 1.6;
  padding: 14px; background: rgba(191,143,0,0.04);
  border: 1px solid rgba(191,143,0,0.1); border-radius: 12px;
  margin-bottom: 24px; font-weight: 300;
}
.conf-notice i { color: var(--gold); margin-right: 4px; }

.modal-back {
  display: flex; align-items: center; gap: 6px;
  background: none; color: var(--text-muted);
  font-size: 14px; font-weight: 500; padding: 8px 0;
  margin-top: 12px; min-height: 44px; transition: color 0.2s;
}
.modal-back:hover { color: var(--gold); }
.modal-back.hidden { display: none; }


/* ========== FOOTER ========== */
.site-footer {
  background: rgba(13,27,42,0.95);
  border-top: 1px solid var(--border);
  padding: 32px 24px 24px;
  text-align: center;
}
.footer-brand {
  display: flex; align-items: center; justify-content: center;
  gap: 10px; margin-bottom: 16px;
}
.footer-brand-name {
  font-family: var(--font-heading); font-size: 0.9rem;
  color: var(--gold); letter-spacing: 3px; text-transform: uppercase;
}
.footer-nav {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 8px; margin-bottom: 16px;
}
.footer-nav-btn {
  background: var(--card-bg); border: 1px solid var(--border);
  color: var(--text-light); font-size: 12px; font-weight: 500;
  padding: 6px 14px; border-radius: 20px; transition: all 0.2s;
}
.footer-nav-btn:hover {
  border-color: rgba(191,143,0,0.3); color: var(--gold);
}
.footer-phone {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--safety-orange); font-weight: 600; font-size: 14px;
  margin-bottom: 12px;
}
.footer-phone:hover { color: #ff6b6b; }
.footer-legal {
  font-size: 11px; color: var(--text-muted); line-height: 1.6;
}
.footer-legal a { color: var(--gold); }


/* ========== RESPONSIVE ========== */

@media (max-width: 768px) {
  body { overflow: auto; }
  .hub { flex-direction: column; height: auto; min-height: auto; }
  .hub-left {
    width: 100%; height: auto; padding: 40px 24px 32px;
    order: 2; min-height: 350px;
  }
  .hub-right {
    width: 100%; height: auto; padding: 32px 24px;
    order: 1;
  }
  #page-hub {
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
  }
  .hub-left-cta { position: static; margin-top: 20px; }
  .hub-name { font-size: 1.6rem; }
  .photo-ring.large { width: 100px; height: 100px; }
  .hub-brand { margin-bottom: 24px; }
  .hub-hero-title { font-size: 2.2rem; letter-spacing: 4px; }
  .hub-hero-sub { font-size: 0.7rem; }
  .hub-heading { font-size: 1.5rem; margin-bottom: 18px; }
  .hub-path { padding: 14px 16px; }
  .hub-path-text strong { font-size: 0.88rem; }

  .about-badges { grid-template-columns: 1fr; }
  .mileage-tiers { gap: 6px; }
  .mileage-tier { min-width: 0; padding: 10px 6px; }
  .tier-rate { font-size: 15px; }
  .tier-range { font-size: 11px; }
  .calc-card, .mileage-card { padding: 22px 18px; }
}

@media (min-width: 600px) and (max-width: 768px) {
  .service-select-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 769px) {
  .container { max-width: 600px; }
  .spoke-header h2 { font-size: 2.4rem; }

  .modal {
    max-width: 520px; border-radius: 20px;
    margin: auto; max-height: 85vh;
  }
  .modal-overlay { align-items: center; }
}

@media (min-width: 900px) {
  .container { max-width: 680px; }
  .hub-name { font-size: 2.6rem; }
  .hub-hero-title { font-size: 3.6rem; letter-spacing: 8px; }
  .hub-hero-sub { font-size: 0.85rem; }
  .hub-heading { font-size: 2rem; }
  .service-select-grid { grid-template-columns: repeat(3, 1fr); }
}
