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

:root {
  /* ── Brand colors pulled from logo ── */
  --navy:      #1A3A7A;  /* Nevada shield / car body blue */
  --navy-dark: #0f2456;  /* darker navy for hero bg */
  --navy-mid:  #234fa3;  /* mid blue */
  --blue:      #2563EB;  /* accent blue */
  --blue-lt:   #3b82f6;
  --green:     #7EC820;  /* punchy lime green */
  --green-dk:  #5fa010;  /* darker green for hover */
  --orange:    #F04E00;  /* vivid orange */
  --orange-dk: #c23e00;  /* darker orange for hover */
  --silver:    #C0C8D8;
  --gold:      #F04E00;  /* vivid orange — matches --orange */
  --gold-lt:   #ff6f2a;  /* lighter orange */

  --bg:        #F7F9FC;
  --bg-white:  #FFFFFF;
  --text:      #0F1B35;
  --text-muted:#4B5A72;
  --border:    #DDE4EF;

  --text-xs:   clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm:   clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg:   clamp(1.125rem, 1rem + 0.75vw, 1.5rem);
  --text-xl:   clamp(1.5rem, 1.2rem + 1.25vw, 2.25rem);
  --text-2xl:  clamp(2rem, 1.2rem + 2.5vw, 3.5rem);
  --text-3xl:  clamp(2.5rem, 1rem + 4vw, 5rem);

  --font-display: 'Barlow Condensed', 'Barlow', system-ui, sans-serif;
  --font-body:    'Barlow', system-ui, sans-serif;

  --radius:  10px;
  --radius-lg: 18px;
  --shadow:  0 2px 12px rgba(27,63,139,0.08);
  --shadow-md: 0 6px 28px rgba(27,63,139,0.13);
  --transition: 0.22s ease;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--text);
  background-color: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}

/* ── WATERMARK ── logo centered, fixed, very faint behind all content ── */
body::after {
  content: '';
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70vw;
  max-width: 700px;
  aspect-ratio: 1456 / 816;
  background-image: url('logo.jpg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.07;
  pointer-events: none;
  z-index: 0;
}

/* Ensure all page content sits above the watermark */
.coming-soon-bar, nav, .page, footer {
  position: relative;
  z-index: 1;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ── LAYOUT ─────────────────────────────────────────────────────────────── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section-tight { padding: 3rem 0 5rem; }

/* ── PAGES ──────────────────────────────────────────────────────────────── */
.page { display: none; }
.page.active { display: block; }

/* ── COMING SOON BAR ────────────────────────────────────────────────────── */
.coming-soon-bar {
  background: linear-gradient(90deg, var(--orange), #f5883a, var(--orange));
  background-size: 200% 100%;
  animation: goldShimmer 3s ease-in-out infinite;
  color: #122d66;
  text-align: center;
  font-size: var(--text-sm);
  font-weight: 600;
  padding: 0.6rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  position: sticky;
  top: 0;
  z-index: 200;
}
@keyframes goldShimmer {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.cs-pulse {
  width: 10px; height: 10px;
  background: var(--navy-dark);
  border-radius: 50%;
  flex-shrink: 0;
  animation: csPulse 1.5s ease-in-out infinite;
}
@keyframes csPulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

/* ── NAV ─────────────────────────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(27,63,139,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 80px; gap: 1rem;
}
.nav-logo {
  display: flex; align-items: center; gap: 0.75rem;
  flex-shrink: 0;
}
.nav-logo-img {
  height: 72px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 10px rgba(0,0,0,0.5));
}
.footer-logo-img {
  height: 64px;
  width: auto;
  object-fit: contain;
}
.nav-badge {
  height: 76px;
  width: 76px;
  object-fit: contain;
  border-radius: 50%;
  flex-shrink: 0;
  filter: drop-shadow(0 3px 10px rgba(0,0,0,0.5));
}
@media (max-width: 768px) {
  .nav-badge { height: 52px; width: 52px; }
}
.about-badge {
  width: 160px;
  height: 160px;
  object-fit: contain;
  border-radius: 50%;
  filter: drop-shadow(0 4px 14px rgba(0,0,0,0.25));
  display: inline-block;
}
.footer-badge-row {
  display: flex;
  justify-content: center;
  padding: 1.5rem 0 0.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.footer-badge {
  width: 110px;
  height: 110px;
  object-fit: contain;
  border-radius: 50%;
  filter: drop-shadow(0 3px 10px rgba(0,0,0,0.4));
}
.nav-brand {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 700;
  color: white;
  letter-spacing: 0.01em;
  line-height: 1.2;
}
.nav-brand em { font-style: normal; color: var(--orange); }
.nav-links {
  display: flex; align-items: center; gap: 0.25rem;
  list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,0.82);
  font-size: var(--text-sm);
  font-weight: 500;
  padding: 0.4rem 0.75rem;
  border-radius: 6px;
  transition: var(--transition);
  cursor: pointer;
}
.nav-links a:hover { color: white; background: rgba(255,255,255,0.1); }
.nav-cta {
  background: var(--orange) !important;
  color: white !important;
  font-weight: 700 !important;
  padding: 0.45rem 1rem !important;
}
.nav-cta:hover { background: var(--orange-dk) !important; }
.nav-toggle {
  display: none; flex-direction: column; gap: 4px;
  background: none; border: none; cursor: pointer; padding: 0.5rem;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: white; border-radius: 2px; transition: var(--transition);
}

/* ── BUTTONS ─────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 700;
  padding: 0.75rem 1.75rem;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  text-decoration: none;
}
.btn-primary { background: var(--orange); color: white; border-color: var(--orange); }
.btn-primary:hover { background: var(--orange-dk); border-color: var(--orange-dk); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(242,101,34,0.4); }
.btn-outline { background: transparent; color: white; border-color: rgba(255,255,255,0.55); }
.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: white; }
.btn-outline-dark { background: transparent; color: var(--navy); border-color: var(--border); }
.btn-outline-dark:hover { background: var(--navy); color: white; border-color: var(--navy); }
.btn-white { background: white; color: var(--navy); border-color: white; }
.btn-white:hover { background: var(--gold-lt); border-color: var(--gold-lt); }
.btn-full { width: 100%; justify-content: center; }

/* ── BADGES ─────────────────────────────────────────────────────────────── */
.badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: var(--text-xs); font-weight: 600;
  padding: 0.3rem 0.85rem;
  border-radius: 100px;
}
.badge-open { background: rgba(16,185,129,0.18); color: #6ee7b7; }
.badge-open.closed { background: rgba(239,68,68,0.18); color: #fca5a5; }
.badge-coming { background: rgba(242,101,34,0.2); color: #f5883a; border: 1px solid rgba(242,101,34,0.45); }
.badge-location { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.8); }
.badge-row { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.5rem; }

.coming-soon-hero-note {
  display: flex; align-items: flex-start; gap: 1rem;
  background: rgba(212,175,55,0.15);
  border: 1px solid rgba(212,175,55,0.4);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  margin-bottom: 2rem;
  color: var(--gold-lt);
  font-size: var(--text-sm);
  line-height: 1.55;
  max-width: 540px;
}
.coming-soon-hero-note strong { color: white; display: block; margin-bottom: 0.2rem; font-size: var(--text-base); }
.cs-icon { font-size: 1.75rem; flex-shrink: 0; }

.hours-coming-note {
  background: rgba(212,175,55,0.2);
  border: 1px solid rgba(212,175,55,0.35);
  color: var(--gold-lt);
  border-radius: 8px;
  padding: 0.65rem 1.25rem;
  font-size: var(--text-sm);
  font-weight: 600;
  align-self: center;
}

.page-coming-note {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(212,175,55,0.2);
  border: 1px solid rgba(212,175,55,0.45);
  color: var(--gold-lt);
  border-radius: 8px;
  padding: 0.5rem 1rem;
  font-size: var(--text-sm);
  font-weight: 700;
  margin-top: 1rem;
}

/* ── HERO ────────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
  background: var(--navy-dark);
  overflow: visible;
  padding: 7rem 0 5rem;
}
@media (max-width: 900px) {
  .hero { min-height: unset; padding: 6rem 0 3rem; overflow: visible; }
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: 0.3;
}
.hero-orb-1 { width: 600px; height: 600px; background: var(--navy-mid); top: -200px; right: -150px; }
.hero-orb-2 { width: 400px; height: 400px; background: var(--gold); bottom: -100px; left: -100px; opacity: 0.12; }
.hero-content {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3rem;
  align-items: center;
  width: 100%;
}
.hero-left { display: flex; flex-direction: column; }
.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: -200px;
}
.hero-badge {
  width: 340px;
  height: 340px;
  object-fit: contain;
  border-radius: 0;
  background: transparent;
  filter: drop-shadow(0 6px 24px rgba(0,0,0,0.55));
  animation: badgePulse 3s ease-in-out infinite;
  display: block;
}
@keyframes badgePulse {
  0%, 100% { filter: drop-shadow(0 6px 24px rgba(0,0,0,0.55)); }
  50%       { filter: drop-shadow(0 6px 32px rgba(240,78,0,0.45)); }
}
@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; }
  .hero-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 2rem;
    width: 100%;
    overflow: visible;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-badge {
    width: 220px;
    height: 220px;
    border-radius: 0;
    background: transparent;
    object-fit: contain;
  }
  .hero-right-hours {
    width: 100%;
    max-width: 340px;
    margin-top: 1rem;
    padding: 0 1rem;
  }
  .hero-right-hours-line1 { font-size: 1.3rem; }
  .hero-right-hours-line2 { font-size: 0.85rem; }
}
.hero-heading {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.01em;
  color: white;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
}
.hero-accent { color: var(--green); }
.hero-sub {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.72);
  max-width: 560px;
  line-height: 1.6;
  margin-bottom: 1.75rem;
}
.hero-discounts {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 2.5rem;
}
.disc-badge {
  background: rgba(212,175,55,0.15);
  border: 1px solid rgba(212,175,55,0.35);
  color: var(--gold-lt);
  font-size: var(--text-xs);
  font-weight: 600;
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
}
.hero-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  min-width: 0;
}
.badge-hours {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-top: 1.2rem;
  gap: 0.3rem;
  width: 100%;
  max-width: 340px;
  word-break: break-word;
  overflow-wrap: break-word;
}
.badge-hours-open {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 900;
  color: #7EC820;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.1;
  white-space: normal;
}
.badge-hours-sunday {
  font-size: 0.88rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.5;
  white-space: normal;
}
.hero-right-hours {
  text-align: center;
  margin-top: 1.25rem;
  width: 100%;
}
.hero-right-hours-line1 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.2;
}
.hero-right-hours-line2 {
  font-size: 0.88rem;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  margin-top: 0.35rem;
  line-height: 1.5;
}
.hero-hours-block {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin-bottom: 1.25rem;
}
.hero-hours-open {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.1;
}
.hero-hours-sunday {
  font-size: 0.95rem;
  font-weight: 700;
  color: rgba(255,255,255,0.95);
  line-height: 1.4;
}
.hero-sunday-banner {
  display: inline-block;
  background: rgba(126,200,32,0.15);
  border: 1px solid rgba(126,200,32,0.4);
  color: #b8f05a;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 0.45rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.25rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-stats { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.stat { display: flex; flex-direction: column; }
.stat-val { font-family: var(--font-display); font-size: 2.8rem; font-weight: 900; color: var(--green); line-height: 1; }
.stat-label { font-size: var(--text-base); color: rgba(255,255,255,0.75); margin-top: 0.3rem; font-weight: 600; letter-spacing: 0.02em; }
.stat-sunday { font-size: 1.05rem; color: #8DC63F; margin-top: 0.5rem; font-weight: 800; letter-spacing: 0.01em; text-shadow: 0 1px 4px rgba(0,0,0,0.5); }
@media (max-width: 900px) {
  .hero-stats { margin-top: 1rem; }
}
.stat-div { width: 1px; height: 36px; background: rgba(255,255,255,0.15); }
.hero-scroll-hint {
  position: absolute; bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  color: rgba(255,255,255,0.3); font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100%{opacity:.3;} 50%{opacity:.8;} }

/* ── SECTION LABELS & HEADINGS ───────────────────────────────────────────── */
.section-label {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green-dk);
  margin-bottom: 0.75rem;
}
.section-heading {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 900;
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 3rem;
  text-transform: uppercase;
}

/* ── WHY US ──────────────────────────────────────────────────────────────── */
.why-us { background: var(--bg-white); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.feature-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  transition: var(--transition);
}
.feature-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.feature-icon { font-size: 2rem; margin-bottom: 1rem; }
.feature-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}
.feature-card p { font-size: var(--text-sm); color: var(--text-muted); line-height: 1.65; }

/* ── HOURS BANNER ────────────────────────────────────────────────────────── */
.hours-banner { background: var(--navy); padding: 3.5rem 0; }
.hours-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
}
.hours-block { display: flex; align-items: flex-start; gap: 1rem; }
.hours-icon { font-size: 2rem; flex-shrink: 0; }
.hours-title { font-family: var(--font-display); font-size: var(--text-lg); font-weight: 800; color: var(--gold-lt); text-transform: uppercase; margin-bottom: 0.5rem; }
.hours-days { font-size: var(--text-sm); color: rgba(255,255,255,0.82); line-height: 1.7; }
.hours-closed { font-size: var(--text-sm); color: rgba(255,255,255,0.4); }
.hours-divider { width: 1px; height: 80px; background: rgba(255,255,255,0.12); flex-shrink: 0; }

/* ── SERVICE PREVIEW ─────────────────────────────────────────────────────── */
.service-preview { background: var(--bg); }
.service-split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem;
}
.service-col {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  display: flex; flex-direction: column;
}
.smog-col { background: #f0f4ff; border-color: rgba(37,99,235,0.2); }
.dmv-col  { background: #f5f7f9; }
.service-col-header {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 1.5rem 1.75rem;
  border-bottom: 1px solid rgba(0,0,0,0.07);
  flex-wrap: wrap;
}
.smog-col .service-col-header { background: var(--navy); }
.dmv-col  .service-col-header { background: var(--navy-mid); }
.service-col-icon { font-size: 1.5rem; }
.service-col-label {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 900;
  color: white;
  text-transform: uppercase;
  flex: 1;
}
.service-col-tag {
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.8);
  font-size: var(--text-xs);
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
}
.service-list {
  list-style: none; padding: 1.5rem 1.75rem; flex: 1;
}
.service-list li {
  font-size: var(--text-sm);
  color: var(--text);
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  display: flex; align-items: center; gap: 0.5rem;
}
.service-list li:last-child { border-bottom: none; }
.service-list li::before { content: "✓"; color: var(--blue); font-weight: 700; flex-shrink: 0; }
.service-col .btn { margin: 0 1.75rem 1.75rem; }

/* ── DISCOUNT STRIP ──────────────────────────────────────────────────────── */
.discount-strip {
  background: linear-gradient(135deg, var(--navy-dark) 0%, #1a3570 100%);
  padding: 5rem 0;
}
.discount-inner { text-align: center; }
.discount-heading {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 900;
  color: white;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.discount-sub {
  font-size: var(--text-base);
  color: rgba(255,255,255,0.65);
  max-width: 560px;
  margin: 0 auto 3rem;
  line-height: 1.65;
}
.discount-cards {
  display: flex; justify-content: center; gap: 1.25rem; flex-wrap: wrap;
}
.discount-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 2rem 2.5rem;
  text-align: center;
  min-width: 160px;
  transition: var(--transition);
}
.discount-card:hover { background: rgba(255,255,255,0.12); transform: translateY(-3px); }
.disc-icon { font-size: 2.5rem; margin-bottom: 0.75rem; }
.disc-name { font-family: var(--font-display); font-weight: 800; color: var(--gold-lt); font-size: var(--text-base); text-transform: uppercase; line-height: 1.3; }
.disc-name small { font-size: var(--text-xs); color: rgba(255,255,255,0.6); display: block; font-weight: 400; text-transform: none; font-family: var(--font-body); }
.disc-req {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--gold-lt);
  opacity: 0.8;
  margin-top: 0.35rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.id-req {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  color: white;
  background: var(--orange);
  padding: 0.1rem 0.55rem;
  border-radius: 100px;
  margin-top: 0.2rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ── PAGE HERO ───────────────────────────────────────────────────────────── */
.page-hero {
  background: var(--navy-dark);
  padding: 4rem 0 3rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.page-hero .container {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 2rem;
  align-items: center;
}
.page-hero-text { display: flex; flex-direction: column; }
.page-hero-badge-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.page-hero-badge {
  width: 220px;
  height: 220px;
  object-fit: contain;
  border-radius: 50%;
  filter: drop-shadow(0 6px 24px rgba(0,0,0,0.55));
  animation: badgePulse 3s ease-in-out infinite;
}
@media (max-width: 900px) {
  .page-hero .container { grid-template-columns: 1fr; }
  .page-hero-badge-wrap { display: none; }
}
.page-hero-logo {
  height: 90px;
  width: auto;
  object-fit: contain;
  margin-bottom: 1.25rem;
  filter: drop-shadow(0 3px 12px rgba(0,0,0,0.5));
}
.page-hero-label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.5rem;
}
.page-hero-heading {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 900;
  color: white;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.page-hero-sub { font-size: var(--text-base); color: rgba(255,255,255,0.65); max-width: 560px; line-height: 1.6; }

/* ── SERVICES PAGE ───────────────────────────────────────────────────────── */
.services-layout { display: flex; flex-direction: column; gap: 4rem; }
.services-group {}
.services-group-header {
  display: flex; align-items: center; gap: 1rem;
  padding: 1.25rem 1.75rem;
  border-radius: var(--radius) var(--radius) 0 0;
  margin-bottom: 0;
}
.smog-header { background: var(--navy); }
.dmv-header  { background: var(--navy-mid); }
.disc-header { background: linear-gradient(90deg, var(--orange-dk), var(--orange)); }
.services-group-header span:first-child { font-size: 1.75rem; }
.services-group-header h2 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 900;
  color: white;
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}
.svc-card-more {
  border: 2px dashed var(--green);
  background: rgba(126,200,32,0.06);
}
.svc-card-more h3 { color: var(--green); }

/* ── CUSTOMER INFO PAGE ─────────────────────────────────────────────────── */
.info-page-wrap { padding: 4rem 0; }
.info-section { margin-bottom: 4rem; }
.info-section-alt { background: var(--navy-dark); border-radius: 16px; padding: 2.5rem; margin-bottom: 4rem; }
.info-section-alt .info-section-header h2 { color: white; }
.info-section-alt .info-section-sub { color: rgba(255,255,255,0.6); }
.info-section-header {
  display: flex; align-items: flex-start; gap: 1.2rem;
  margin-bottom: 2rem;
  padding-bottom: 1.2rem;
  border-bottom: 2px solid rgba(126,200,32,0.3);
}
.info-section-icon { font-size: 2.2rem; flex-shrink: 0; margin-top: 0.2rem; }
.info-section-header h2 { font-family: var(--font-display); font-size: var(--text-2xl); font-weight: 900; color: var(--navy); margin-bottom: 0.3rem; }
.info-section-sub { color: var(--text-muted); font-size: var(--text-sm); }

/* Step cards */
.info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(280px, 100%), 1fr));
  gap: 1.5rem;
}
.info-card {
  background: white;
  border: 1px solid #e5e9f0;
  border-radius: 12px;
  padding: 1.5rem;
  position: relative;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}
.info-card-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--green);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.info-card h3 { font-family: var(--font-display); font-size: var(--text-lg); font-weight: 800; color: var(--navy); margin-bottom: 0.5rem; }
.info-card p { font-size: var(--text-sm); color: #374151; line-height: 1.7; }

/* Fail cards */
.fail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(280px, 100%), 1fr));
  gap: 1.5rem;
}
.fail-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 1.5rem;
}
.fail-card-red { border-left: 4px solid #ef4444; }
.fail-icon { font-size: 1.8rem; margin-bottom: 0.75rem; }
.fail-card h3 { font-family: var(--font-display); font-size: var(--text-base); font-weight: 800; color: white; margin-bottom: 0.5rem; }
.fail-card p { font-size: var(--text-sm); color: rgba(255,255,255,0.7); line-height: 1.7; margin-bottom: 0.75rem; }
.fail-tip {
  background: rgba(126,200,32,0.1);
  border-left: 3px solid var(--green);
  padding: 0.5rem 0.75rem;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  border-radius: 0 6px 6px 0;
  line-height: 1.5;
}

/* Tailpipe section */
.tailpipe-intro {
  background: rgba(27,63,139,0.06);
  border-left: 4px solid var(--navy);
  padding: 1rem 1.25rem;
  border-radius: 0 8px 8px 0;
  margin-bottom: 2rem;
  font-size: var(--text-sm);
  color: #374151;
  line-height: 1.7;
}
.tailpipe-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
@media (max-width: 700px) { .tailpipe-grid { grid-template-columns: 1fr; } }

/* Info page mobile fixes */
@media (max-width: 768px) {
  .info-page-wrap { padding: 2rem 0; }
  .info-section-alt { padding: 1.5rem; border-radius: 10px; }
  .info-section-header { flex-direction: column; gap: 0.5rem; }
  .info-section-icon { font-size: 1.6rem; }
  .info-section-header h2 { font-size: var(--text-xl); }
  .info-cards { grid-template-columns: 1fr; }
  .fail-grid { grid-template-columns: 1fr; }
  .tailpipe-grid { grid-template-columns: 1fr; }
  .info-cta { padding: 2rem 1.25rem; }
  .info-cta h2 { font-size: var(--text-xl); }
  .info-cta-hours { flex-direction: column; gap: 0.5rem; align-items: center; }
}
.tailpipe-card {
  background: white;
  border: 1px solid #e5e9f0;
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}
.tailpipe-gas {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--orange);
  margin-bottom: 0.5rem;
}
.tailpipe-card h3 { font-family: var(--font-display); font-size: var(--text-lg); font-weight: 800; color: var(--navy); margin-bottom: 0.5rem; }
.tailpipe-card p { font-size: var(--text-sm); color: #374151; line-height: 1.7; margin-bottom: 0.75rem; }
.tailpipe-fix {
  background: rgba(126,200,32,0.08);
  border-radius: 6px;
  padding: 0.5rem 0.75rem;
  font-size: 0.72rem;
  color: var(--navy);
  font-weight: 600;
}
.tailpipe-note {
  background: #fef3c7;
  border: 1px solid #fbbf24;
  border-radius: 8px;
  padding: 1rem 1.25rem;
  font-size: var(--text-sm);
  color: #92400e;
  line-height: 1.7;
}

/* Info CTA */
.info-cta {
  text-align: center;
  background: var(--navy);
  border-radius: 16px;
  padding: 3rem 2rem;
  margin-bottom: 2rem;
  color: white;
}
.info-cta h2 { font-family: var(--font-display); font-size: var(--text-2xl); font-weight: 900; margin-bottom: 0.75rem; }
.info-cta p { color: rgba(255,255,255,0.7); margin-bottom: 1.5rem; max-width: 560px; margin-left: auto; margin-right: auto; }
.info-cta-hours {
  display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap;
  color: rgba(255,255,255,0.6);
  font-size: var(--text-sm);
  margin-bottom: 0.5rem;
}

/* Pricing table */
.pricing-header { background: linear-gradient(135deg, #1a4a1a, #2d6e2d) !important; }
.pricing-table {
  background: var(--navy-dark);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(126,200,32,0.2);
}
.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  gap: 1rem;
}
.price-row:last-of-type { border-bottom: none; }
.price-service {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.price-icon { font-size: 1.8rem; flex-shrink: 0; }
.price-name {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: white;
}
.price-desc {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.5);
  margin-top: 0.1rem;
}
.price-amt {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--green);
  white-space: nowrap;
  flex-shrink: 0;
}
.price-coupon-note {
  background: rgba(126,200,32,0.08);
  border-top: 1px solid rgba(126,200,32,0.2);
  padding: 1rem 1.5rem;
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}
.svc-location-tag {
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.85);
  font-size: var(--text-xs);
  font-weight: 600;
  padding: 0.2rem 0.65rem;
  border-radius: 100px;
  display: inline-block;
}
.services-cards {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border); border-top: none;
  border-radius: 0 0 var(--radius) var(--radius);
  overflow: hidden;
}
.svc-card {
  padding: 1.5rem;
  background: var(--bg-white);
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
}
.svc-card:nth-child(3n) { border-right: none; }
.svc-card:nth-last-child(-n+3) { border-bottom: none; }
.svc-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 800;
  color: var(--navy);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.svc-card p { font-size: var(--text-sm); color: var(--text-muted); line-height: 1.6; }
.svc-tag {
  display: inline-block;
  background: var(--green);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
  margin-top: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.discount-grid-services {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  border: 1px solid var(--border); border-top: none;
  border-radius: 0 0 var(--radius) var(--radius);
  overflow: hidden;
}
.disc-svc-card {
  padding: 2rem 1.5rem;
  background: var(--bg-white);
  border-right: 1px solid var(--border);
  text-align: center;
}
.disc-svc-card:last-child { border-right: none; }
.disc-big-icon { font-size: 2.25rem; margin-bottom: 0.75rem; }
.disc-svc-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 800;
  color: var(--navy);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.disc-svc-card p { font-size: var(--text-xs); color: var(--text-muted); line-height: 1.55; }

/* ── MAP PAGE ────────────────────────────────────────────────────────────── */
.map-layout {
  display: grid; grid-template-columns: 340px 1fr; gap: 2rem;
  align-items: start;
}
@media (max-width: 900px) {
  .map-layout { grid-template-columns: 1fr; }
}
.map-info-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  margin-bottom: 1rem;
}
.map-info-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 900;
  color: var(--navy);
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.map-detail {
  display: flex; gap: 0.75rem; align-items: flex-start;
  margin-bottom: 1rem;
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.6;
}
.map-detail svg { flex-shrink: 0; color: var(--blue); margin-top: 2px; }
.map-closed { color: #ef4444; }
.map-embed {
  height: 480px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.nearby-note {
  background: var(--gold);
  color: var(--navy-dark);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  font-size: var(--text-sm);
  line-height: 1.55;
}
.nearby-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}
.nearby-chip {
  background: var(--navy-dark);
  color: #fff;
  border-radius: 100px;
  padding: 0.3rem 0.85rem;
  font-size: var(--text-xs);
  font-weight: 700;
  white-space: nowrap;
}

/* ── ABOUT PAGE ──────────────────────────────────────────────────────────── */
.about-layout {
  display: grid; grid-template-columns: 1fr 360px; gap: 3.5rem;
  align-items: start;
}
.about-text h2 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 900;
  color: var(--navy);
  text-transform: uppercase;
  margin-bottom: 1rem;
  margin-top: 2.5rem;
}
.about-text h2:first-child { margin-top: 0; }
.about-text p {
  font-size: var(--text-base);
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}
.about-text em { font-style: italic; color: var(--navy); }
.about-stat-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
  margin-bottom: 1rem;
}
.about-stat-num {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 900;
  color: var(--gold-lt);
  line-height: 1;
  margin-bottom: 0.35rem;
}
.about-stat-label {
  font-size: var(--text-sm);
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 0.25rem;
}
.about-stat-note { font-size: var(--text-xs); color: rgba(255,255,255,0.5); }
.about-values { margin-top: 1.5rem; }
.about-value {
  display: flex; align-items: center; gap: 0.65rem;
  font-size: var(--text-sm);
  color: var(--text);
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
}
.about-value:last-child { border-bottom: none; }
.about-value span { color: var(--blue); font-weight: 700; flex-shrink: 0; }

/* ── CONTACT PAGE ────────────────────────────────────────────────────────── */
.contact-layout {
  display: grid; grid-template-columns: 400px 1fr; gap: 2rem;
  align-items: start;
}
.contact-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  margin-bottom: 1.25rem;
}
.contact-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 900;
  color: var(--navy);
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.contact-row {
  display: flex; gap: 0.9rem; align-items: flex-start;
  margin-bottom: 1.1rem;
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.65;
}
.contact-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 1px; }
.contact-row strong { color: var(--text); display: block; margin-bottom: 0.2rem; }
.text-closed { color: #ef4444; }
.disc-row {
  display: flex; align-items: center; gap: 0.75rem;
  font-size: var(--text-sm);
  color: var(--text);
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--border);
  font-weight: 500;
}
.disc-row:last-child { border-bottom: none; }
.disc-row span { font-size: 1.1rem; flex-shrink: 0; }
.contact-map-wrap {}
.contact-map {
  height: 420px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  margin-bottom: 1rem;
}
.contact-landmark {
  background: var(--gold);
  color: var(--navy-dark);
  border-radius: var(--radius);
  padding: 0.85rem 1.1rem;
  font-size: var(--text-sm);
  line-height: 1.55;
}

/* ── FOOTER ──────────────────────────────────────────────────────────────── */
.footer {
  background: var(--navy-dark);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 3rem 0 1.5rem;
}
.footer-inner { display: flex; flex-direction: column; gap: 2rem; }
.footer-brand {
  display: flex; align-items: flex-start; gap: 1rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-name { font-family: var(--font-display); font-size: var(--text-lg); font-weight: 900; color: white; text-transform: uppercase; margin-bottom: 0.25rem; }
.footer-addr { font-size: var(--text-sm); color: rgba(255,255,255,0.45); }
.footer-links {
  display: flex; flex-wrap: wrap; gap: 0.25rem 1.25rem;
}
.footer-links a {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.55);
  transition: var(--transition);
}
.footer-links a:hover { color: white; }
.footer-bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.3);
}

/* ── LEAFLET OVERRIDES ───────────────────────────────────────────────────── */
.leaflet-popup-content-wrapper {
  border-radius: 12px !important;
  box-shadow: 0 10px 40px rgba(0,0,0,0.18) !important;
  font-family: var(--font-body) !important;
}
.leaflet-popup-content { margin: 0 !important; }

/* ── RESPONSIVE ──────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .service-split { grid-template-columns: 1fr; }
  .about-layout { grid-template-columns: 1fr; }
  .map-layout { grid-template-columns: 1fr; }
  .map-embed { height: 350px; order: -1; }
  .contact-layout { grid-template-columns: 1fr; }
  .services-cards { grid-template-columns: repeat(2, 1fr); }
  .svc-card:nth-child(3n) { border-right: 1px solid var(--border); }
  .svc-card:nth-child(2n) { border-right: none; }
  .discount-grid-services { grid-template-columns: repeat(2, 1fr); }
  .disc-svc-card:nth-child(2n) { border-right: none; }
  .hours-inner { flex-direction: column; align-items: flex-start; }
  .hours-divider { display: none; }
}
@media (max-width: 900px) {
  .nav-links { display: none; position: absolute; top: 64px; left: 0; right: 0; background: var(--navy-dark); flex-direction: column; padding: 1rem; gap: 0.25rem; border-bottom: 1px solid rgba(255,255,255,0.1); z-index: 999; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
}
@media (max-width: 640px) {
  .features-grid { grid-template-columns: 1fr; }
  .services-cards { grid-template-columns: 1fr; }
  .svc-card { border-right: none !important; }
  .discount-grid-services { grid-template-columns: repeat(2, 1fr); }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .footer-bottom { flex-direction: column; }
}

/* ── REVIEWS PAGE ─────────────────────────────────────────────────────────── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.review-card {
  background: white;
  border: 1px solid #e5e9f0;
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}
.review-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.1); }
.review-top { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.85rem; flex-wrap: wrap; }
.review-stars { color: var(--gold); font-size: 1.2rem; letter-spacing: 1px; }
.review-service-tag {
  font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em;
  background: rgba(27,63,139,0.08); color: var(--navy); padding: 0.2rem 0.6rem; border-radius: 100px;
}
.review-body {
  font-size: var(--text-sm); color: #374151; line-height: 1.7;
  margin-bottom: 1rem; font-style: italic;
}
.review-author { font-size: var(--text-xs); font-weight: 700; color: var(--navy); text-transform: uppercase; letter-spacing: 0.04em; }
.review-date { font-weight: 400; color: #9ca3af; margin-left: 0.4rem; text-transform: none; letter-spacing: 0; }
.reviews-loading { color: var(--text-muted); font-size: var(--text-sm); padding: 2rem 0; }
.reviews-error { color: #ef4444; font-size: var(--text-sm); }
.reviews-empty { text-align: center; padding: 3rem 0; color: var(--text-muted); }
.reviews-empty-icon { font-size: 3rem; margin-bottom: 1rem; }

/* ── REVIEW SUBMIT FORM ───────────────────────────────────────────────────── */
.review-form-wrap {
  max-width: 700px; margin: 0 auto;
  background: white; border-radius: var(--radius); padding: 2.5rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}
.review-form-header { margin-bottom: 2rem; }
.review-form-header h2 { font-family: var(--font-display); font-weight: 800; color: var(--navy); text-transform: uppercase; font-size: var(--text-xl); margin-bottom: 0.5rem; }
.review-form-header p { color: var(--text-muted); font-size: var(--text-sm); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media(max-width:560px){ .form-row { grid-template-columns: 1fr; } }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.25rem; }
.form-group label { font-size: var(--text-sm); font-weight: 700; color: var(--navy); text-transform: uppercase; letter-spacing: 0.04em; }
.form-group input, .form-group select, .form-group textarea {
  border: 1.5px solid #d1d5db; border-radius: 8px; padding: 0.7rem 1rem;
  font-size: var(--text-sm); font-family: var(--font-body); color: #1f2937;
  transition: border-color 0.2s, box-shadow 0.2s; outline: none;
  background: #f9fafb;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--navy); box-shadow: 0 0 0 3px rgba(27,63,139,0.12); background: white;
}
.form-group textarea { resize: vertical; min-height: 120px; }
.req { color: #ef4444; }
.char-count { font-size: 0.7rem; color: #9ca3af; text-align: right; margin-top: 0.25rem; }

/* Star picker */
.star-rating { display: flex; gap: 0.25rem; margin-bottom: 0.25rem; }
.star-rating button {
  background: none; border: none; cursor: pointer;
  font-size: 2rem; color: #d1d5db; transition: color 0.15s, transform 0.1s; padding: 0;
  line-height: 1;
}
.star-rating button:hover, .star-rating button.lit { color: var(--gold); transform: scale(1.15); }

/* Form messages */
.form-msg { padding: 0.85rem 1rem; border-radius: 8px; font-size: var(--text-sm); margin-bottom: 1rem; }
.form-msg-success { background: #ecfdf5; color: #065f46; border: 1px solid #6ee7b7; }
.form-msg-error   { background: #fef2f2; color: #991b1b; border: 1px solid #fca5a5; }

/* Section alt background */
.section-alt { background: #f8f9fc; }

/* ── HOME MAP SECTION ─────────────────────────────────────────────────────── */
.section-home-map {
  background: #f0f4ff;
  padding: 2.5rem 0;
  border-top: 3px solid var(--navy);
  border-bottom: 3px solid var(--navy);
}
.section-sub { color: var(--text-muted); font-size: var(--text-sm); margin-bottom: 2rem; line-height: 1.7; }
.home-map-wrap {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 1.5rem;
  align-items: stretch;
}
@media (max-width: 768px) {
  .home-map-wrap { grid-template-columns: 1fr; }
}
.home-map {
  height: 460px;
  min-height: 460px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
  z-index: 0;
  background: #e5e9f0;
}
.home-map-info {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  color: white;
}
.home-map-address { display: flex; flex-direction: column; gap: 0.3rem; }
.hm-label {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
}
.hm-val { font-size: var(--text-sm); line-height: 1.65; color: rgba(255,255,255,0.88); }

/* Map + Aerial side-by-side grid */
.map-aerial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: stretch;
}
@media (max-width: 700px) {
  .map-aerial-grid {
    grid-template-columns: 1fr;
  }
  .map-aerial-grid .map-embed {
    min-height: 280px !important;
  }
}
