/* ════════════════════════════════════════════════
   BLUE MOUNTAIN AUTOPRO — Brand Stylesheet
   NAPA Blue #003087 · NAPA Yellow #FFD100
   AUTOPRO Red #E31837 · White / Clean
   ════════════════════════════════════════════════ */

:root {
  --blue:       #003087;
  --blue-dark:  #002068;
  --blue-light: #0044b8;
  --yellow:     #FFD100;
  --yellow-dark:#D4AC00;
  --red:        #E31837;
  --red-dark:   #B8122B;
  --dark:       #1A1A1A;
  --charcoal:   #2D2D2D;
  --gray:       #6B6B6B;
  --text-muted: #5A5A5A;
  --bg:         #FFFFFF;
  --bg-alt:     #F5F7FB;
  --border:     #E2E6EF;
  --font:       'Segoe UI', system-ui, -apple-system, sans-serif;
  --top-bar-h:  0px;
  --nav-h:      96px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); background: var(--bg); color: var(--dark); overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
h1,h2,h3,h4,h5 { line-height: 1.2; font-weight: 800; }
p { line-height: 1.75; }

/* ── Top Utility Bar ─────────────────────────── */
.top-bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 101;
  height: var(--top-bar-h); background: #00102a;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: flex-end;
  padding: 0 32px; gap: 0;
}
.top-bar-links { display: flex; align-items: center; gap: 0; }
.top-bar a {
  font-size: 11.5px; font-weight: 600; color: rgba(255,255,255,0.65);
  text-decoration: none; padding: 0 11px; line-height: var(--top-bar-h);
  transition: color .15s; white-space: nowrap; letter-spacing: 0.02em;
}
.top-bar a:hover { color: #fff; }
.top-bar-sep { color: rgba(255,255,255,0.18); font-size: 11px; user-select: none; }
.top-bar-phone {
  color: var(--yellow) !important; font-weight: 700 !important;
  border-left: 1px solid rgba(255,255,255,0.12); margin-left: 8px; padding-left: 16px !important;
}
.top-bar-phone:hover { color: #ffe44d !important; }
@media(max-width:780px) {
  .top-bar-links { display: none; }
  .top-bar { justify-content: center; }
  .top-bar-phone { border-left: none; margin-left: 0; }
}

/* ── Nav ─────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: #fff; border-bottom: 3px solid var(--yellow);
  height: var(--nav-h); display: flex; align-items: center;
  padding: 0 24px 0 10px; box-shadow: 0 2px 20px rgba(0,0,0,0.07);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-brand {
  display: flex; align-items: stretch; align-self: stretch;
  flex-shrink: 0; text-decoration: none; line-height: 0; padding: 0;
}
.nav-brand img { height: 100% !important; width: auto !important; display: block; }

/* ── Center links — fills gap between logo and phone, items centered inside */
.nav-links {
  display: flex; align-items: center; justify-content: center; gap: 2px; list-style: none;
  flex: 1; min-width: 0;
}
.nav-links a {
  padding: 7px 10px; border-radius: 6px; font-size: 17px; font-weight: 800;
  color: var(--charcoal); white-space: nowrap;
  transition: color .18s, background .18s, box-shadow .18s, transform .18s;
  position: relative;
}
.nav-links a:hover {
  color: var(--blue);
  background: rgba(0,48,135,0.10);
  box-shadow: 0 3px 0 0 var(--yellow);
  transform: translateY(-1px);
}

/* ── EV button — gloss dome + gold rim ───────── */
.nav-links .ev-link { flex-shrink: 0; }
.nav-links .ev-link a {
  display: inline-flex; align-items: center; gap: 7px;
  background: linear-gradient(180deg, #1a2e48 0%, #0a1520 45%, #060e18 100%);
  color: #FFD100 !important;
  border: 2px solid #c9960c;
  border-bottom-color: #7a5a06;
  border-radius: 50px; padding: 9px 18px;
  font-size: 13px; font-weight: 800; letter-spacing: 0.03em;
  position: relative; overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease;
  box-shadow:
    0 0 0 1px rgba(212,160,20,0.30),
    0 -1px 0 rgba(0,0,0,0.35) inset,
    0 6px 20px rgba(0,0,0,0.50),
    0 3px 8px  rgba(0,0,0,0.30);
  animation: ev-electricity 2.8s ease-in-out infinite;
}
/* Glass dome highlight */
.nav-links .ev-link a::before {
  content: '';
  position: absolute; top: 0; left: 5%; width: 90%; height: 50%;
  background: linear-gradient(180deg,
    rgba(255,255,255,0.22) 0%,
    rgba(255,255,255,0.06) 70%,
    transparent 100%
  );
  border-radius: 50px 50px 60% 60%;
  pointer-events: none;
  animation: none; transform: none;
}
.nav-links .ev-link a:hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 0 1px rgba(212,160,20,0.50),
    0 -1px 0 rgba(0,0,0,0.35) inset,
    0 10px 30px rgba(0,0,0,0.55),
    0 4px 10px rgba(0,0,0,0.30);
  animation: none;
}
@keyframes ev-electricity {
  0%,100% { border-color: #c9960c; }
  25%,75% { border-color: rgba(255,255,255,0.6); }
  50%     { border-color: #FFD100; }
}

/* ── Right section: phone + Book Now ─────────── */
.nav-right {
  display: flex; align-items: center; gap: 20px;
  flex-shrink: 0;
}
.nav-phone {
  display: flex; align-items: center; gap: 10px;
}
.nav-phone-icon {
  width: 28px; height: 28px; color: var(--blue); flex-shrink: 0;
}
.nav-phone-text { display: flex; flex-direction: column; line-height: 1; }
.nav-phone-number {
  font-size: 19px; font-weight: 800; color: var(--blue);
  letter-spacing: 0.01em; white-space: nowrap; line-height: 1.25;
}
.nav-phone-hours {
  font-size: 10.5px; font-weight: 500; color: rgba(0,0,0,0.5);
  white-space: nowrap; margin-top: 3px;
}
.nav-book {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(180deg, #1255cc 0%, #003087 45%, #001a55 100%);
  color: #fff !important;
  padding: 13px 24px; border-radius: 50px;
  font-size: 15px; font-weight: 700; white-space: nowrap;
  letter-spacing: 0.02em; text-decoration: none;
  position: relative; overflow: hidden;
  border: 2px solid #c9960c;
  border-bottom-color: #7a5a06;
  transition: transform .18s ease, box-shadow .18s ease;
  box-shadow:
    0 0 0 1px rgba(212,160,20,0.30),
    0 -1px 0 rgba(0,0,0,0.30) inset,
    0 6px 22px rgba(0,20,90,0.50),
    0 3px 8px  rgba(0,0,0,0.28);
}
/* Glass dome highlight */
.nav-book::before {
  content: '';
  position: absolute; top: 0; left: 5%; width: 90%; height: 50%;
  background: linear-gradient(180deg,
    rgba(255,255,255,0.28) 0%,
    rgba(255,255,255,0.07) 70%,
    transparent 100%
  );
  border-radius: 50px 50px 60% 60%;
  pointer-events: none;
}
.nav-book:hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 0 1px rgba(212,160,20,0.50),
    0 -1px 0 rgba(0,0,0,0.30) inset,
    0 12px 32px rgba(0,20,90,0.60),
    0 4px 10px rgba(0,0,0,0.28);
}
.nav-book-arrow { font-size: 17px; line-height: 1; }

/* ── Hamburger / mobile ───────────────────────── */
.nav-hamburger {
  display: none; margin-left: auto; background: none; border: none;
  cursor: pointer; padding: 8px; flex-direction: column; gap: 5px;
}
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--blue); border-radius: 2px; transition: transform .3s, opacity .3s; }
.nav-mobile {
  display: none; position: fixed; top: var(--nav-h); left: 0; right: 0; bottom: 0;
  background: #fff; z-index: 99; padding: 28px 20px;
  flex-direction: column; gap: 4px; overflow-y: auto;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  padding: 14px 16px; border-radius: 10px; font-size: 17px; font-weight: 600;
  color: var(--dark); border-bottom: 1px solid var(--border); transition: background .2s;
}
.nav-mobile a:hover { background: var(--bg-alt); }
.nav-mobile .ev-link-m a { color: var(--yellow); font-weight: 800; }
.nav-mobile .cta-link-m a {
  background: var(--blue); color: #fff !important; border-radius: 10px;
  text-align: center; margin-top: 12px; border-bottom: none; display: block;
}
.nav-mobile-phone {
  display: flex; align-items: center; gap: 10px;
  padding: 16px; border-radius: 10px; background: var(--bg-alt);
  border-bottom: none; margin-bottom: 8px;
}
.nav-mobile-phone a { padding: 0; border-bottom: none; font-size: 20px; font-weight: 800; color: var(--blue); }
body.nav-open { overflow: hidden; }

/* ── Responsive compression before hamburger ─── */
@media(max-width:1260px) {
  .nav-links a { padding: 5px 8px; font-size: 15px; }
  .nav-right { gap: 12px; }
  .nav-phone-number { font-size: 16px; }
  .nav-book { padding: 11px 18px; font-size: 14px; }
}
@media(max-width:1080px) {
  .nav-links a { padding: 4px 6px; font-size: 13.5px; }
  .nav-right { gap: 8px; }
  .nav-phone-number { font-size: 14px; }
  .nav-phone-hours { display: none; }
  .nav-book { padding: 9px 14px; font-size: 13px; }
  .nav-book-arrow { display: none; }
}
@media(max-width:960px) {
  .nav-phone { display: none; }
  .nav-links a { padding: 4px 5px; font-size: 13px; }
}
@media(max-width:860px) {
  .nav-links { display: none; }
  .nav-right { display: none; }
  .nav-hamburger { display: flex; }
  .nav { padding: 0 20px; }
}

/* ── Page offset ─────────────────────────────── */
.page-body { padding-top: calc(var(--top-bar-h) + var(--nav-h)); }

/* ── Hero ────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, #001a4d 0%, #003087 60%, #002068 100%);
  color: #fff; padding: 96px 40px 80px;
  position: relative; overflow: hidden; min-height: 540px;
  display: flex; align-items: center;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 70% at 80% 50%, rgba(255,209,0,0.07) 0%, transparent 60%);
  pointer-events: none;
}
.hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 4px;
  background: var(--yellow);
}
.hero-inner { max-width: 1100px; margin: 0 auto; position: relative; z-index: 1; width: 100%; }
.hero-label {
  font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--yellow); font-weight: 700; margin-bottom: 18px;
  display: flex; align-items: center; gap: 12px;
}
.hero-label::before { content: ''; display: block; width: 32px; height: 2px; background: var(--yellow); }
.hero h1 {
  font-size: clamp(30px, 5vw, 58px); font-weight: 900; line-height: 1.08;
  margin-bottom: 22px; max-width: 760px;
}
.hero h1 em { color: var(--yellow); font-style: normal; }
.hero p { font-size: clamp(15px, 1.8vw, 18px); color: rgba(255,255,255,0.75); max-width: 580px; line-height: 1.75; margin-bottom: 36px; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.hero-ev-path {
  font-size: 14px; color: rgba(255,255,255,0.55); display: flex; align-items: center; gap: 8px;
  padding: 0 4px; transition: color .2s;
}
.hero-ev-path a { color: #4CB4CB; font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.hero-ev-path a:hover { color: #7dd0e0; }

/* ── Buttons — premium gloss dome + gold rim ─ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 50px; font-size: 15px; font-weight: 700;
  letter-spacing: 0.04em;
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
  cursor: pointer; white-space: nowrap; text-decoration: none;
  position: relative; overflow: hidden;
}
/* Glass dome highlight — top reflection on every button */
.btn::before {
  content: '';
  position: absolute; top: 0; left: 5%; width: 90%; height: 52%;
  background: linear-gradient(180deg,
    rgba(255,255,255,0.38) 0%,
    rgba(255,255,255,0.10) 70%,
    transparent 100%
  );
  border-radius: 50px 50px 60% 60%;
  pointer-events: none;
}
.btn:active { transform: translateY(2px) !important; filter: brightness(0.93); }

/* ── Blue primary — deep navy with gold rim */
.btn-primary {
  background: linear-gradient(180deg, #1255cc 0%, #003087 45%, #001a55 100%);
  color: #fff;
  border: 2px solid #c9960c;
  border-bottom-color: #7a5a06;
  box-shadow:
    0 0 0 1px rgba(212,160,20,0.30),
    0 -1px 0 rgba(0,0,0,0.30) inset,
    0 8px 32px rgba(0,20,90,0.22),
    0 3px 8px  rgba(0,0,0,0.12);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow:
    0 0 0 1px rgba(212,160,20,0.45),
    0 -1px 0 rgba(0,0,0,0.30) inset,
    0 14px 40px rgba(0,20,90,0.26),
    0 4px 10px rgba(0,0,0,0.12);
}

/* ── Yellow/gold — rich amber with deep gold rim */
.btn-yellow {
  background: linear-gradient(180deg, #ffe033 0%, #FFD100 45%, #b88800 100%);
  color: #1a1100;
  border: 2px solid #e8b800;
  border-bottom-color: #7a6000;
  box-shadow:
    0 0 0 1px rgba(255,200,0,0.35),
    0 -1px 0 rgba(0,0,0,0.15) inset,
    0 8px 32px rgba(160,110,0,0.18),
    0 3px 8px  rgba(0,0,0,0.09);
}
.btn-yellow:hover {
  transform: translateY(-3px);
  box-shadow:
    0 0 0 1px rgba(255,200,0,0.5),
    0 -1px 0 rgba(0,0,0,0.15) inset,
    0 14px 40px rgba(160,110,0,0.22),
    0 4px 10px rgba(0,0,0,0.09);
}

/* ── Red */
.btn-red {
  background: linear-gradient(180deg, #f03050 0%, #E31837 45%, #8a0a1a 100%);
  color: #fff;
  border: 2px solid #c9960c;
  border-bottom-color: #7a5a06;
  box-shadow:
    0 0 0 1px rgba(212,160,20,0.25),
    0 -1px 0 rgba(0,0,0,0.25) inset,
    0 8px 28px rgba(160,0,20,0.20),
    0 3px 8px  rgba(0,0,0,0.11);
}
.btn-red:hover {
  transform: translateY(-3px);
  box-shadow:
    0 0 0 1px rgba(212,160,20,0.40),
    0 -1px 0 rgba(0,0,0,0.25) inset,
    0 14px 36px rgba(160,0,20,0.24),
    0 4px 10px rgba(0,0,0,0.11);
}

/* ── Secondary / white */
.btn-secondary {
  background: linear-gradient(180deg, #ffffff 0%, #e8ecf4 100%);
  color: var(--dark);
  border: 2px solid #c9960c;
  border-bottom-color: #7a5a06;
  box-shadow:
    0 0 0 1px rgba(212,160,20,0.25),
    0 -1px 0 rgba(0,0,0,0.06) inset,
    0 8px 24px rgba(0,0,0,0.07),
    0 3px 6px  rgba(0,0,0,0.05);
}
.btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow:
    0 0 0 1px rgba(212,160,20,0.40),
    0 -1px 0 rgba(0,0,0,0.06) inset,
    0 14px 32px rgba(0,0,0,0.10),
    0 4px 10px rgba(0,0,0,0.06);
}

/* ── Outline (used on dark backgrounds) */
.btn-outline {
  background: rgba(255,255,255,0.06);
  color: #fff;
  border: 2px solid rgba(255,255,255,0.55);
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}
.btn-outline:hover {
  transform: translateY(-3px);
  border-color: #fff;
  background: rgba(255,255,255,0.12);
  box-shadow: 0 8px 24px rgba(0,0,0,0.11);
}

/* ── EV teal */
.btn-ev {
  background: linear-gradient(135deg, #c8e870 0%, #38aac4 100%);
  color: #fff;
  border: 2px solid #c9960c;
  border-bottom-color: #7a5a06;
  box-shadow:
    0 0 0 1px rgba(212,160,20,0.25),
    0 -1px 0 rgba(0,0,0,0.15) inset,
    0 8px 28px rgba(40,140,170,0.18),
    0 3px 8px  rgba(0,0,0,0.09);
}
.btn-ev:hover {
  transform: translateY(-3px);
  box-shadow:
    0 0 0 1px rgba(212,160,20,0.40),
    0 -1px 0 rgba(0,0,0,0.15) inset,
    0 14px 36px rgba(40,140,170,0.22),
    0 4px 10px rgba(0,0,0,0.09);
}

/* ── Dark */
.btn-dark {
  background: linear-gradient(180deg, #383838 0%, #181818 100%);
  color: #fff;
  border: 2px solid #c9960c;
  border-bottom-color: #7a5a06;
  box-shadow:
    0 0 0 1px rgba(212,160,20,0.25),
    0 8px 24px rgba(0,0,0,0.18),
    0 3px 6px  rgba(0,0,0,0.12);
}
.btn-dark:hover { transform: translateY(-3px); }

/* ── Trust bar ───────────────────────────────── */
.trust-bar {
  background: var(--blue); padding: 16px 40px;
  display: flex; align-items: center; justify-content: center; gap: 32px; flex-wrap: wrap;
}
.trust-item { display: flex; align-items: center; gap: 8px; color: #fff; font-size: 13px; font-weight: 700; letter-spacing: 0.04em; white-space: nowrap; }
.trust-item .trust-dot { width: 6px; height: 6px; background: var(--yellow); border-radius: 50%; flex-shrink: 0; }

/* ── Sections ────────────────────────────────── */
.section { padding: 88px 40px; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-alt { background: var(--bg-alt); }
.section-dark { background: var(--dark); color: #fff; }
.section-blue { background: var(--blue); color: #fff; }
.section-navy { background: #001a4d; color: #fff; }

.section-label { font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--blue); font-weight: 700; margin-bottom: 12px; }
.section-dark .section-label,
.section-blue .section-label,
.section-navy .section-label { color: var(--yellow); }
.section-title { font-size: clamp(26px, 3.5vw, 44px); font-weight: 900; line-height: 1.12; margin-bottom: 16px; color: var(--dark); }
.section-dark .section-title,
.section-blue .section-title,
.section-navy .section-title { color: #fff; }
.section-title em { color: var(--blue); font-style: normal; }
.section-dark .section-title em { color: var(--yellow); }
.section-blue .section-title em { color: var(--yellow); }
.section-sub { font-size: 17px; color: var(--text-muted); line-height: 1.75; max-width: 660px; margin-bottom: 48px; }
.section-dark .section-sub,
.section-blue .section-sub { color: rgba(255,255,255,0.6); }
.section-divider { width: 48px; height: 4px; border-radius: 2px; background: var(--yellow); margin: 0 0 28px; }
.section-dark .section-divider,
.section-blue .section-divider { background: var(--yellow); }

/* ── Grid ────────────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }

/* ── Cards ───────────────────────────────────── */
.card {
  background: linear-gradient(160deg, #ffffff 0%, #f7f9fc 100%);
  border: 1px solid rgba(0,48,135,0.08);
  border-top: 3px solid var(--yellow);
  border-radius: 16px;
  padding: 32px 28px;
  transition: transform .22s ease, box-shadow .22s ease;
  position: relative; overflow: hidden;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.1); }
.section-alt .card { background: linear-gradient(160deg, #ffffff 0%, #f7f9fc 100%); }
.card h3 { font-size: 18px; font-weight: 800; margin-bottom: 10px; color: var(--dark); }
.card p { font-size: 14px; color: var(--text-muted); line-height: 1.65; border-left: 3px solid var(--blue); padding-left: 14px; margin-left: 2px; }
.card-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; font-size: 14px; font-weight: 700; color: var(--blue); transition: gap .2s; }
.card-link:hover { gap: 10px; }

/* ── Goodyear section ────────────────────────── */
.goodyear-section {
  background: linear-gradient(135deg, #1A1A1A 0%, #2D2D2D 100%);
  padding: 56px 40px 64px; color: #fff; position: relative; overflow: hidden;
}
.goodyear-section::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--yellow);
}
.goodyear-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--yellow); color: var(--dark); font-size: 12px; font-weight: 900;
  letter-spacing: 0.1em; text-transform: uppercase; padding: 8px 20px; border-radius: 4px;
  margin-bottom: 20px;
}
.goodyear-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 16px; margin-top: 40px; }
.goodyear-tile {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-top: 3px solid var(--yellow);
  border-radius: 12px; padding: 20px 18px; transition: transform .22s ease, box-shadow .22s ease;
}
.goodyear-tile:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(0,0,0,0.25); }
.goodyear-tile h4 { font-size: 14px; font-weight: 800; color: #fff; margin-bottom: 8px; }
.goodyear-tile p { font-size: 12px; color: rgba(255,255,255,0.55); line-height: 1.5; border-left: 3px solid var(--blue); padding-left: 10px; }

/* ── Vehicle selector ────────────────────────── */
.vehicle-selector { padding: 80px 40px; background: #fff; }
.vs-inner { max-width: 960px; margin: 0 auto; text-align: center; }
.vs-inner h2 { font-size: clamp(24px, 3.5vw, 40px); font-weight: 900; margin-bottom: 12px; }
.vs-inner > p { color: var(--text-muted); font-size: 17px; margin-bottom: 48px; line-height: 1.7; }
.vs-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; max-width: 840px; margin: 0 auto; }
.vs-card {
  border-radius: 20px; padding: 44px 36px; text-decoration: none; display: block;
  transition: transform .25s, box-shadow .25s; text-align: left; position: relative; overflow: hidden;
}
.vs-card:hover { transform: translateY(-6px); }
.vs-card-autopro {
  background: linear-gradient(135deg, #001a4d 0%, #003087 100%);
  color: #fff; box-shadow: 0 8px 40px rgba(0,48,135,0.3);
  border: 2px solid rgba(255,209,0,0.2);
}
.vs-card-autopro:hover { box-shadow: 0 16px 60px rgba(0,48,135,0.45); }
.vs-card-ev {
  background: linear-gradient(135deg, #040f1c 0%, #083050 100%);
  color: #fff; box-shadow: 0 8px 40px rgba(8,48,80,0.35);
  border: 2px solid rgba(76,180,203,0.25);
}
.vs-card-ev:hover { box-shadow: 0 16px 60px rgba(76,180,203,0.2); }
.vs-icon { font-size: 40px; margin-bottom: 20px; display: block; }
.vs-card h3 { font-size: 22px; font-weight: 900; margin-bottom: 10px; }
.vs-card p { font-size: 14px; line-height: 1.65; opacity: 0.72; margin-bottom: 24px; }
.vs-badge { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700; padding: 9px 20px; border-radius: 50px; letter-spacing: 0.04em; }
.vs-card-autopro .vs-badge { background: var(--yellow); color: var(--dark); }
.vs-card-ev .vs-badge { background: linear-gradient(135deg, #A6C959, #4CB4CB); color: #fff; }

/* ── Stat strip ──────────────────────────────── */
.stat-strip { display: flex; }
.stat-item { flex: 1; min-width: 140px; padding: 44px 32px; text-align: center; border-right: 1px solid rgba(255,255,255,0.1); }
.stat-item:last-child { border-right: none; }
.stat-num { font-size: clamp(34px, 4vw, 52px); font-weight: 900; color: var(--yellow); line-height: 1; display: block; }
.stat-lbl { font-size: 13px; color: rgba(255,255,255,0.45); margin-top: 6px; letter-spacing: 0.06em; }

/* ── Reason cards ────────────────────────────── */
.reason {
  display: flex; gap: 18px; align-items: flex-start; padding: 28px 24px;
  border-radius: 14px;
  background: linear-gradient(160deg, #ffffff 0%, #f7f9fc 100%);
  border: 1px solid rgba(0,48,135,0.08);
  border-top: 3px solid var(--yellow);
  transition: transform .22s ease, box-shadow .22s ease;
}
.reason:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.1); }
.reason h4 + p, .reason p { border-left: 3px solid var(--blue); padding-left: 14px; margin-left: 2px; }
.reason-icon {
  width: 48px; height: 48px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: #fff; box-shadow: 0 4px 12px rgba(0,48,135,0.3);
}
.reason h4 { font-size: 16px; font-weight: 800; margin-bottom: 6px; color: var(--dark); }
.reason p { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

/* ── Badge ───────────────────────────────────── */
.badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(0,48,135,0.07); border: 1px solid rgba(0,48,135,0.18); border-radius: 50px; padding: 8px 18px; font-size: 13px; color: var(--blue); font-weight: 700; }
.badge-strip { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }

/* ── Hours table ─────────────────────────────── */
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table tr td { padding: 12px 0; border-bottom: 1px solid var(--border); font-size: 15px; }
.hours-table tr td:first-child { color: var(--text-muted); font-weight: 600; }
.hours-table tr td:last-child { text-align: right; font-weight: 700; }
.hours-table tr:last-child td { border-bottom: none; }
.section-dark .hours-table tr td { border-bottom-color: rgba(255,255,255,0.07); color: rgba(255,255,255,0.85); }
.section-dark .hours-table tr td:first-child { color: rgba(255,255,255,0.45); }
.closed { color: rgba(220,80,80,0.75) !important; }

/* ── Contact items ───────────────────────────── */
.contact-item { display: flex; gap: 16px; margin-bottom: 28px; align-items: flex-start; }
.contact-icon {
  width: 48px; height: 48px; border-radius: 12px; flex-shrink: 0;
  background: rgba(0,48,135,0.07); border: 1px solid rgba(0,48,135,0.18);
  display: flex; align-items: center; justify-content: center; font-size: 20px;
}
.contact-label { font-size: 11px; color: var(--blue); letter-spacing: 0.14em; text-transform: uppercase; font-weight: 700; margin-bottom: 4px; }
.contact-value { font-size: 16px; color: var(--dark); font-weight: 600; line-height: 1.55; }
.contact-value a { color: var(--dark); transition: color .2s; }
.contact-value a:hover { color: var(--blue); }
.section-dark .contact-value,
.section-dark .contact-value a { color: rgba(255,255,255,0.85); }
.section-dark .contact-value a:hover { color: var(--yellow); }
.section-dark .contact-icon { background: rgba(255,209,0,0.1); border-color: rgba(255,209,0,0.25); }
.section-dark .contact-label { color: var(--yellow); }

/* ── Service list ────────────────────────────── */
.service-list { list-style: none; }
.service-list li { padding: 14px 0; border-bottom: 1px solid var(--border); display: flex; align-items: flex-start; gap: 12px; font-size: 16px; color: var(--dark); }
.service-list li::before { content: '✓'; color: var(--blue); font-weight: 900; font-size: 14px; flex-shrink: 0; margin-top: 2px; }
.service-list li:last-child { border-bottom: none; }

/* ── FAQ ─────────────────────────────────────── */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { padding: 20px 0; font-size: 16px; font-weight: 700; cursor: pointer; display: flex; justify-content: space-between; align-items: center; color: var(--dark); transition: color .2s; user-select: none; }
.faq-q:hover { color: var(--blue); }
.faq-q::after { content: '+'; font-size: 22px; font-weight: 400; color: var(--blue); flex-shrink: 0; }
.faq-item.open .faq-q::after { content: '−'; }
.faq-a { font-size: 15px; color: var(--text-muted); line-height: 1.8; max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .35s; }
.faq-item.open .faq-a { max-height: 500px; padding-bottom: 20px; }

/* ── Page hero (inner pages) ─────────────────── */
.page-hero {
  background: linear-gradient(135deg, #001a4d 0%, #003087 100%);
  color: #fff; padding: 76px 40px 68px; position: relative; overflow: hidden;
}
.page-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 60% at 80% 50%, rgba(255,209,0,0.07) 0%, transparent 60%); pointer-events: none; }
.page-hero::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: var(--yellow); }
.page-hero-inner { max-width: 900px; margin: 0 auto; position: relative; z-index: 1; }
.page-hero-label { font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--yellow); font-weight: 700; margin-bottom: 14px; }
.page-hero h1 { font-size: clamp(28px, 4.5vw, 50px); font-weight: 900; margin-bottom: 16px; }
.page-hero p { font-size: 18px; color: rgba(255,255,255,0.7); max-width: 600px; line-height: 1.75; }

/* ── Cross-promo banner ──────────────────────── */
.cross-promo { padding: 64px 40px; text-align: center; }
.cross-promo-ev { background: linear-gradient(135deg, #040f1c 0%, #083050 100%); color: #fff; }
.cross-promo-autopro { background: linear-gradient(135deg, #001a4d 0%, #003087 100%); color: #fff; }
.cross-promo h3 { font-size: clamp(20px, 3vw, 30px); font-weight: 900; margin-bottom: 12px; }
.cross-promo p { font-size: 16px; color: rgba(255,255,255,0.6); max-width: 540px; margin: 0 auto 28px; line-height: 1.75; }

/* ── EV Household cross-promo (homepage) ─────── */
.ev-household {
  background: linear-gradient(135deg, #040f1c 0%, #083050 100%);
  padding: 80px 40px; color: #fff; text-align: center; position: relative;
}
.ev-household::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, #A6C959, #4CB4CB); }
.ev-household h2 { font-size: clamp(22px, 3vw, 36px); font-weight: 900; margin-bottom: 14px; }
.ev-household p { font-size: 16px; color: rgba(255,255,255,0.65); max-width: 600px; margin: 0 auto 32px; line-height: 1.8; }

/* ── First-visit popup ───────────────────────── */
.vehicle-popup {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(0,10,30,0.78); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  padding: 20px; opacity: 0; pointer-events: none;
  transition: opacity .35s;
}
.vehicle-popup.active { opacity: 1; pointer-events: auto; }
.popup-inner {
  background: #fff; border-radius: 24px; padding: 52px 48px 44px;
  max-width: 760px; width: 100%; position: relative;
  box-shadow: 0 24px 80px rgba(0,0,0,0.4);
  animation: popup-in .35s ease;
}
@keyframes popup-in { from { transform: scale(0.93) translateY(16px); opacity: 0; } to { transform: scale(1) translateY(0); opacity: 1; } }
.popup-close {
  position: absolute; top: 18px; right: 20px;
  background: none; border: none; font-size: 26px; cursor: pointer;
  color: #aaa; line-height: 1; transition: color .2s;
}
.popup-close:hover { color: var(--dark); }
.popup-inner h2 { font-size: clamp(20px, 3vw, 28px); font-weight: 900; margin-bottom: 8px; color: var(--dark); text-align: center; }
.popup-sub { text-align: center; font-size: 15px; color: var(--text-muted); margin-bottom: 36px; }
.popup-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.popup-card {
  border-radius: 16px; padding: 32px 28px; display: flex; flex-direction: column;
  align-items: flex-start; gap: 10px;
}
.popup-card-gas {
  background: linear-gradient(160deg, #f8f9fb, #eef1f7);
  color: #0d1a2e;
  border: 2px solid #003087;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.9);
}
.popup-card-gas h3 { color: #0d1a2e; }
.popup-card-gas p { opacity: 0.6; }
.popup-card-ev {
  background: linear-gradient(135deg, #040f1c, #083050);
  color: #fff; border: 1px solid rgba(76,180,203,0.25);
}
.popup-card .popup-icon { font-size: 36px; display: block; line-height: 1; }
.popup-card h3 { font-size: 17px; font-weight: 900; }
.popup-card p { font-size: 13px; line-height: 1.65; opacity: 0.72; flex: 1; }
.popup-card .btn { margin-top: 6px; font-size: 13px; padding: 11px 20px; width: 100%; justify-content: center; }
.popup-note { text-align: center; font-size: 13px; color: var(--text-muted); margin-top: 24px; }
@media(max-width:580px) {
  .popup-inner { padding: 40px 24px 32px; }
  .popup-cards { grid-template-columns: 1fr; }
}

/* ── Map placeholder ─────────────────────────── */
.map-placeholder { width: 100%; height: 280px; border-radius: 16px; background: linear-gradient(135deg, #f0f0f0, #e5e5e5); display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 12px; color: var(--gray); border: 2px dashed var(--border); font-size: 15px; font-weight: 600; }

/* ── Image placeholder ───────────────────────── */
.img-placeholder { width: 100%; border-radius: 16px; background: linear-gradient(135deg, #001a4d 0%, #003087 100%); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.3); font-size: 13px; font-weight: 600; text-align: center; padding: 20px; letter-spacing: 0.06em; aspect-ratio: 4/3; }

/* ── Footer ──────────────────────────────────── */
.footer { background: #0d0d0d; color: #fff; padding: 64px 40px 32px; border-top: 4px solid var(--yellow); }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand .name { font-size: 18px; font-weight: 900; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 12px; }
.footer-brand .name span { color: var(--yellow); }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.45); line-height: 1.75; max-width: 280px; }
.footer-col h4 { font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--yellow); margin-bottom: 18px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 14px; color: rgba(255,255,255,0.55); transition: color .2s; }
.footer-col ul li a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 28px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-size: 13px; color: rgba(255,255,255,0.3); }
.footer-bottom a { color: #4CB4CB; }

/* ── Review Cards ────────────────────────────── */
.reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 40px; }
.review-card {
  background: linear-gradient(160deg, #ffffff 0%, #f7f9fc 100%);
  border: 1px solid rgba(0,48,135,0.08);
  border-top: 3px solid var(--yellow);
  border-radius: 18px;
  padding: 32px 28px 28px;
  display: flex; flex-direction: column; gap: 16px;
  box-shadow:
    0 4px 6px  rgba(0,0,0,0.04),
    0 10px 28px rgba(0,0,0,0.07),
    0 1px 0    rgba(255,255,255,0.9) inset;
  transition: transform .22s ease, box-shadow .22s ease;
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 8px 16px  rgba(0,0,0,0.06),
    0 20px 48px rgba(0,0,0,0.11),
    0 1px 0     rgba(255,255,255,0.9) inset;
}
.review-stars {
  font-size: 22px;
  letter-spacing: 3px;
  background: linear-gradient(160deg, #FFE566 0%, #FFD100 40%, #E6A800 75%, #FFD100 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 1px 2px rgba(180,120,0,0.35));
}
.review-text {
  font-size: 15px; line-height: 1.8; color: #4a4a5a; flex: 1;
  font-style: italic;
  border-left: 3px solid var(--blue);
  padding-left: 14px;
  margin-left: 2px;
}
.review-author {
  display: flex; flex-direction: column; gap: 3px;
  padding-top: 8px;
  border-top: 1px solid rgba(0,48,135,0.07);
}
.review-author strong { font-size: 14px; font-weight: 800; color: var(--dark); }
.review-author span { font-size: 12px; color: var(--text-muted); letter-spacing: 0.02em; }
.review-author span { font-size: 13px; color: var(--gray); }

/* Inline review strip (homepage / service pages) */
.reviews-strip { background: var(--bg-alt); padding: 72px 40px; }
.reviews-strip .section-inner { max-width: 1200px; margin: 0 auto; }
.reviews-strip-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 40px; }

/* ── Blog ─────────────────────────────────────── */
.blog-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 28px; margin-top: 40px; }
.blog-card { background: var(--bg); border: 1px solid var(--border); border-radius: 16px; padding: 28px; display: flex; flex-direction: column; gap: 12px; }
.blog-card h3 { font-size: 17px; line-height: 1.4; }
.blog-card h3 a { color: var(--dark); text-decoration: none; }
.blog-card h3 a:hover { color: var(--blue); }
.blog-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; flex: 1; }
.blog-meta { display: flex; gap: 16px; font-size: 12px; color: var(--gray); }
.blog-read-more { font-size: 14px; font-weight: 700; color: var(--blue); text-decoration: none; }
.blog-read-more:hover { color: var(--blue-light); }

.blog-featured { background: var(--bg-alt); border: 1px solid var(--border); border-radius: 20px; padding: 40px; margin-top: 40px; max-width: 800px; }
.blog-featured-content h3 { font-size: 24px; margin: 12px 0; }
.blog-featured-content h3 a { color: var(--dark); }
.blog-featured-content h3 a:hover { color: var(--blue); }
.blog-featured-content p { color: var(--text-muted); font-size: 16px; line-height: 1.8; }

.blog-cat-badge { display: inline-block; font-size: 11px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; padding: 4px 10px; border-radius: 20px; }
.blog-cat-ev { background: rgba(0,48,135,0.1); color: var(--blue); }
.blog-cat-tires { background: rgba(255,209,0,0.2); color: #8a6800; }
.blog-cat-general { background: rgba(227,24,55,0.1); color: var(--red-dark); }

/* Blog article page */
.blog-article-layout { display: grid; grid-template-columns: 1fr 320px; gap: 60px; align-items: start; }
.blog-article-body { max-width: none; }
.blog-article-body h2 { font-size: 22px; margin: 36px 0 14px; color: var(--blue); }
.blog-article-body h3 { font-size: 17px; margin: 24px 0 10px; color: var(--dark); }
.blog-article-body p { font-size: 16px; line-height: 1.85; color: var(--text-muted); margin-bottom: 16px; }
.blog-article-body ul.service-list { margin: 16px 0 20px 20px; }
.blog-article-body ul.service-list li { font-size: 15px; line-height: 1.75; color: var(--text-muted); margin-bottom: 8px; }
.blog-article-body a { color: var(--blue); text-decoration: underline; }
.blog-intro { font-size: 18px !important; color: var(--dark) !important; font-weight: 500; border-left: 4px solid var(--yellow); padding-left: 20px; margin-bottom: 32px !important; }

/* Blog sidebar */
.blog-sidebar { display: flex; flex-direction: column; gap: 24px; position: sticky; top: calc(var(--top-bar-h) + var(--nav-h) + 24px); }
.sidebar-card { background: var(--bg-alt); border: 1px solid var(--border); border-radius: 16px; padding: 24px; }
.sidebar-card h4 { font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; color: var(--blue); margin-bottom: 14px; }
.sidebar-card ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.sidebar-card ul li a { font-size: 14px; color: var(--text-muted); text-decoration: none; }
.sidebar-card ul li a:hover { color: var(--blue); }
.sidebar-card p { font-size: 13px; color: var(--text-muted); line-height: 1.6; margin-bottom: 16px; }
.sidebar-cta { background: var(--blue); border-color: var(--blue); }
.sidebar-cta h4 { color: var(--yellow); }
.sidebar-cta p { color: rgba(255,255,255,0.7); }

/* ── Partners ─────────────────────────────────── */
.partners-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.partner-card { background: var(--bg-alt); border: 1px solid var(--border); border-radius: 16px; padding: 28px; }
.partner-card-social { background: var(--bg); }
.partner-icon { font-size: 32px; margin-bottom: 12px; }
.partner-card h3 { font-size: 18px; margin-bottom: 10px; color: var(--dark); }
.partner-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 14px; }
.partner-link { font-size: 14px; font-weight: 700; color: var(--blue); text-decoration: none; }
.partner-link:hover { color: var(--blue-light); }

/* ── Utility ─────────────────────────────────── */
.mt-8 { margin-top: 8px; } .mt-16 { margin-top: 16px; } .mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; } .mt-48 { margin-top: 48px; }
.mb-16 { margin-bottom: 16px; } .mb-24 { margin-bottom: 24px; }
.text-blue { color: var(--blue); } .text-yellow { color: var(--yellow); }
.text-muted { color: var(--text-muted); } .text-center { text-align: center; }
strong { font-weight: 800; }

/* ── Responsive ──────────────────────────────── */
@media(max-width:1024px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media(max-width:768px) {
  .section { padding: 64px 20px; }
  .hero { padding: 72px 20px 60px; }
  .page-hero { padding: 60px 20px 52px; }
  .cross-promo, .ev-household { padding: 52px 20px; }
  .vehicle-selector { padding: 60px 20px; }
  .goodyear-section { padding: 64px 20px; }
  .grid-2 { grid-template-columns: 1fr; gap: 40px; }
  .grid-3 { grid-template-columns: 1fr; }
  .vs-cards { grid-template-columns: 1fr; }
  .stat-strip { flex-wrap: wrap; }
  .stat-item { flex: 1 1 45%; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); padding: 28px 20px; }
  .trust-bar { gap: 16px; padding: 14px 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .hero-ev-path { margin-top: 4px; }
  .goodyear-grid { grid-template-columns: repeat(2, 1fr); }
}
@media(max-width:1024px) {
  .blog-article-layout { grid-template-columns: 1fr; }
  .blog-sidebar { position: static; }
  .partners-grid { grid-template-columns: repeat(2,1fr); }
}
@media(max-width:768px) {
  .reviews-grid { grid-template-columns: 1fr; }
  .reviews-strip-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .partners-grid { grid-template-columns: 1fr; }
}
@media(max-width:480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .stat-item { flex: 1 1 100%; }
  .trust-bar { flex-direction: column; align-items: flex-start; gap: 10px; }
  .goodyear-grid { grid-template-columns: 1fr; }
}
