@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;600;700;800;900&family=Open+Sans:wght@400;500;600&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Open Sans', sans-serif; font-size: 16px; color: #222; background: #fff; line-height: 1.6; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

:root {
  --navy:   #1e2a38;
  --navy2:  #2c3a4a;
  --orange: #D94F00;
  --blue:   #D94F00;
  --blue2:  #b83f00;
  --white:  #ffffff;
  --off:    #f5f6f8;
  --g1:     #eef0f3;
  --g2:     #e0e3e8;
  --g3:     #9aa3b0;
  --g4:     #5a6475;
  --g5:     #2c3444;
  --head:   'Raleway', sans-serif;
  --t:      0.2s ease;
}

/* ── TOP BAR ─────────────────────────────────────────── */
.top-bar {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 200;
  background: var(--g1); height: 38px;
  border-bottom: 1px solid var(--g2);
}
.top-bar-inner {
  max-width: 1240px; margin: 0 auto; padding: 0 32px;
  height: 100%; display: flex; align-items: center; gap: 28px;
}
.top-bar-item {
  display: flex; align-items: center; gap: 7px;
  font-size: 12.5px; color: var(--g4);
  transition: color var(--t); white-space: nowrap;
}
.top-bar-item svg { flex-shrink: 0; }
.top-bar-item:hover { color: var(--navy); }
.top-bar-divider { width: 1px; height: 16px; background: var(--g2); }
.top-bar-cta {
  margin-left: auto; display: inline-flex; align-items: center;
  gap: 6px; padding: 5px 16px;
  background: var(--orange); color: #fff;
  font-size: 11.5px; font-weight: 700; font-family: var(--head);
  letter-spacing: 0.07em; text-transform: uppercase;
  transition: background var(--t);
}
.top-bar-cta:hover { background: #b83f00; }

/* ── HEADER ──────────────────────────────────────────── */
#site-header {
  position: fixed; top: 38px; left: 0; width: 100%; z-index: 100;
  background: #fff; border-bottom: 1px solid var(--g2);
}
.header-inner {
  width: 100%; padding: 0 32px;
  height: 72px; display: flex; align-items: center; gap: 0; overflow: visible;
  flex-wrap: nowrap;
}

.logo { display: flex; align-items: center; cursor: pointer; flex-shrink: 0; margin-left: 32px; }
.logo-img { height: 140px; width: auto; display: block; }
.footer-logo-img { height: 100px; width: auto; display: block; margin-bottom: 14px; }

.main-nav { display: flex; align-items: center; flex: 1; justify-content: center; height: 72px; margin-left: 0; }
.nav-item { position: relative; height: 100%; display: flex; align-items: center; }
.nav-link {
  display: flex; align-items: center; gap: 4px;
  padding: 0 15px; height: 100%;
  font-family: var(--head); font-size: 12px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--g4); cursor: pointer; white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color var(--t), border-color var(--t);
}
.nav-link svg { width: 12px; height: 12px; fill: currentColor; transition: transform var(--t); }
.nav-link:hover { color: var(--navy); }
.nav-link.active { color: var(--orange); border-bottom-color: var(--orange); }
.nav-item:hover > .nav-link { color: var(--navy); }
.nav-item:hover > .nav-link svg { transform: rotate(180deg); }

.dropdown {
  display: none; position: absolute; top: 100%; left: 0; min-width: 220px;
  background: #fff; border: 1px solid var(--g2); border-top: 2px solid var(--orange);
  z-index: 99; padding: 6px 0;
}
.nav-item:hover .dropdown { display: block; }
.dropdown a {
  display: block; padding: 9px 20px;
  font-family: var(--head); font-size: 11.5px; font-weight: 700;
  letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--g4); cursor: pointer;
  transition: color var(--t), background var(--t);
}
.dropdown a:hover { color: var(--orange); background: var(--off); }

.header-cta-btns { display: flex; align-items: center; gap: 0; flex-shrink: 0; }

.nav-book-btn {
  margin-left: 0; padding: 10px 22px; flex-shrink: 0;
  background: var(--orange); color: #fff;
  font-family: var(--head); font-size: 11.5px; font-weight: 800;
  letter-spacing: 0.07em; text-transform: uppercase;
  transition: background var(--t); display: inline-flex; align-items: center;
}
.nav-book-btn:hover { background: #b83f00; }

.nav-call-btn {
  margin-left: 10px; padding: 10px 20px; flex-shrink: 0;
  background: var(--g1); color: var(--navy); border: 1px solid var(--g2);
  font-family: var(--head); font-size: 11.5px; font-weight: 800;
  letter-spacing: 0.07em; text-transform: uppercase;
  transition: background var(--t); display: inline-flex; align-items: center; gap: 7px;
}
.nav-call-btn:hover { background: var(--g2); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; margin-left: 8px; flex-shrink: 0; }
.hamburger span { width: 24px; height: 2px; background: var(--navy); display: block; transition: all 0.2s; }

.mobile-header-btns {
  display: none; align-items: center; gap: 8px; margin-left: auto; flex-shrink: 0;
}
.mobile-book-btn {
  padding: 9px 14px;
  background: var(--orange); color: #fff;
  font-family: var(--head); font-size: 11px; font-weight: 800;
  letter-spacing: 0.06em; text-transform: uppercase;
  white-space: nowrap;
}
.mobile-call-btn {
  padding: 9px 14px;
  background: var(--g1); color: var(--navy); border: 1px solid var(--g2);
  font-family: var(--head); font-size: 11px; font-weight: 800;
  letter-spacing: 0.06em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 6px; white-space: nowrap;
}

/* ── PAGE WRAPPER ─────────────────────────────────────── */
.page-wrapper { padding-top: 110px; }
.page-section { display: none; }
.page-section.active { display: block; }

/* ── BUTTONS ──────────────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px;
  background: var(--orange) !important; color: #fff !important;
  font-family: var(--head); font-size: 12px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.1em;
  transition: background var(--t), color var(--t);
  border: 2px solid var(--orange);
}
.btn-primary:hover { background: var(--navy) !important; color: #fff !important; border-color: var(--navy); }
.hero .btn-primary, .bst-banner .btn-primary {
  background: var(--orange); color: #fff;
}
.hero .btn-primary:hover, .bst-banner .btn-primary:hover { background: #b83f00; }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 32px; background: var(--g1); color: var(--navy);
  font-family: var(--head); font-size: 12px; font-weight: 800;
  letter-spacing: 0.07em; text-transform: uppercase;
  transition: background var(--t); cursor: pointer;
}
.btn-secondary:hover { background: var(--g2); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 30px; background: transparent; color: #fff;
  font-family: var(--head); font-size: 12px; font-weight: 800;
  letter-spacing: 0.07em; text-transform: uppercase;
  border: 2px solid #fff;
  transition: border-color var(--t), color var(--t); cursor: pointer;
}
.btn-outline:hover { border-color: rgba(255,255,255,0.4); }

.btn-light {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 32px; background: #fff; color: var(--navy);
  font-family: var(--head); font-size: 12px; font-weight: 800;
  letter-spacing: 0.07em; text-transform: uppercase;
  transition: background var(--t), color var(--t); cursor: pointer;
}
.btn-light:hover { background: var(--g1); }

/* ── HERO ─────────────────────────────────────────────── */
.hero {
  background: #1a1f26;
  min-height: calc(100vh - 106px);
  display: flex; align-items: center; position: relative; overflow: hidden;
}
.hero-photo {
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1800&q=80') center/cover no-repeat;
  opacity: 0.35;
}
.hero-inner {
  position: relative; z-index: 1;
  max-width: 1240px; margin: 0 auto; padding: 0 32px;
  display: flex; align-items: center; width: 100%;
}
.hero-left { max-width: 600px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--head); font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--orange);
  margin-bottom: 24px;
}
.hero-eyebrow::before { content: ''; display: block; width: 28px; height: 2px; background: var(--orange); }
.hero h1 {
  font-family: var(--head); font-size: clamp(38px, 5.5vw, 68px);
  font-weight: 900; line-height: 1.05; color: #fff; margin-bottom: 22px;
}
.hero h1 em { font-style: normal; color: var(--orange); }
.hero-sub {
  font-size: 16px; color: rgba(255,255,255,0.6); line-height: 1.75;
  max-width: 460px; margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 56px; }
.hero-stats {
  display: flex; gap: 0; border-top: 1px solid rgba(255,255,255,0.12); padding-top: 32px;
}
.hero-stat { flex: 1; padding-right: 28px; margin-right: 28px; border-right: 1px solid rgba(255,255,255,0.12); }
.hero-stat:last-child { border-right: none; padding-right: 0; margin-right: 0; }
.hero-stat-val { font-family: var(--head); font-size: 34px; font-weight: 900; color: #fff; line-height: 1; }
.hero-stat-val span { color: var(--orange); }
.hero-stat-label { font-size: 11px; font-weight: 600; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 5px; }

/* ── HOME SERVICES OVERVIEW ──────────────────────────── */
.home-services { padding: 80px 32px; background: var(--off); }
.home-services-inner { max-width: 1240px; margin: 0 auto; }
.home-svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.home-svc-card {
  background: #fff;
  border: 1px solid var(--g2);
  padding: 30px 26px 26px;
  cursor: pointer;
  transition: border-color var(--t), transform var(--t);
  position: relative;
}
.home-svc-card:hover {
  border-color: var(--orange);
  transform: translateY(-3px);
}
.home-svc-card:hover .home-svc-icon svg { fill: var(--orange); }
.home-svc-icon {
  width: 44px; height: 44px;
  background: var(--off);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.home-svc-icon svg { width: 22px; height: 22px; fill: var(--navy); transition: fill var(--t); }
.home-svc-card h3 {
  font-family: var(--head); font-size: 14px; font-weight: 800;
  text-transform: uppercase; color: var(--navy);
  letter-spacing: 0.04em; margin-bottom: 6px;
}
.home-svc-card p { font-size: 13px; color: var(--g4); line-height: 1.6; }
.home-svc-arrow {
  position: absolute; bottom: 20px; right: 22px;
  font-size: 18px; color: var(--g2);
  transition: color var(--t);
}
.home-svc-card:hover .home-svc-arrow { color: var(--orange); }

/* ── BUY / SELL / TRADE ──────────────────────────────── */
.bst-banner { background: var(--navy); padding: 40px 32px; }
.bst-inner {
  max-width: 1240px; margin: 0 auto;
  display: flex; align-items: center; gap: 0; flex-wrap: nowrap;
}
.bst-photo { flex-shrink: 0; width: 280px; align-self: stretch; overflow: hidden; margin: -40px 24px -40px -32px; }
.bst-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.bst-item {
  display: flex; align-items: flex-start; gap: 16px;
  flex: 1; min-width: 0; padding: 0 20px;
}
.bst-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: rgba(255,255,255,0.07);
  display: flex; align-items: center; justify-content: center;
}
.bst-icon svg { width: 20px; height: 20px; fill: var(--orange); }
.bst-label {
  font-family: var(--head); font-size: 13px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.05em; color: #fff;
  margin-bottom: 4px; white-space: nowrap;
}
.bst-desc { font-size: 12.5px; color: rgba(255,255,255,0.5); line-height: 1.55; }
.bst-divider { width: 1px; height: 60px; background: rgba(255,255,255,0.1); flex-shrink: 0; }
.bst-cta { padding-left: 24px; flex-shrink: 0; }

/* ── WHY CHOOSE US ────────────────────────────────────── */
.why-section { padding: 96px 32px; background: #fff; }
.why-inner { max-width: 1240px; margin: 0 auto; }
.section-header { margin-bottom: 56px; }
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--head); font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--orange);
  margin-bottom: 14px;
}
.section-eyebrow::before { content: ''; display: block; width: 24px; height: 2px; background: var(--orange); }
.section-title {
  font-family: var(--head); font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 900; color: var(--navy); line-height: 1.1;
}
.section-subtitle { font-size: 15px; color: var(--g4); margin-top: 10px; max-width: 500px; }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--g2); }
.why-card {
  background: #fff; padding: 36px 32px;
  transition: background var(--t);
}
.why-card:hover { background: var(--off); }
.why-icon {
  width: 48px; height: 48px; background: var(--off);
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
}
.why-icon svg { width: 24px; height: 24px; fill: var(--orange); }
.why-card h3 { font-family: var(--head); font-size: 14px; font-weight: 800; text-transform: uppercase; color: var(--navy); letter-spacing: 0.04em; margin-bottom: 8px; }
.why-card p { font-size: 14px; color: var(--g4); line-height: 1.7; }

/* ── PAGE HERO (inner pages) ──────────────────────────── */
.page-hero { background: var(--g1); padding: 60px 32px 52px; border-bottom: 1px solid var(--g2); }
.page-hero-inner { max-width: 1240px; margin: 0 auto; }
.breadcrumb {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  font-size: 11.5px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--g3); margin-bottom: 18px;
}
.breadcrumb a { color: var(--g4); cursor: pointer; transition: color var(--t); }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb span { opacity: 0.4; }
.page-hero h1 {
  font-family: var(--head); font-size: clamp(30px, 4.5vw, 52px);
  font-weight: 900; color: var(--navy); line-height: 1.08; margin-bottom: 14px;
}
.page-hero h1 em { font-style: normal; color: var(--orange); }
.page-hero p { font-size: 15px; color: var(--g4); max-width: 560px; line-height: 1.75; }

/* ── SERVICE CARDS ────────────────────────────────────── */
.services-section { padding: 72px 32px; background: var(--off); }
.services-inner { max-width: 1240px; margin: 0 auto; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.svc-card {
  background: #fff; cursor: pointer; overflow: hidden;
  border: 1px solid var(--g2);
  transition: border-color var(--t), transform var(--t);
}
.svc-card:hover { border-color: var(--g3); transform: translateY(-3px); }
.svc-card-img { height: 180px; overflow: hidden; background: var(--g1); }
.svc-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.svc-card:hover .svc-card-img img { transform: scale(1.05); }
.svc-card-body { padding: 22px 22px 26px; }
.svc-card-body h3 { font-family: var(--head); font-size: 14px; font-weight: 800; text-transform: uppercase; color: var(--navy); letter-spacing: 0.04em; margin-bottom: 7px; }
.svc-card-body p { font-size: 13.5px; color: var(--g4); line-height: 1.65; }
.svc-more { display: inline-flex; align-items: center; gap: 5px; margin-top: 12px; font-size: 12px; font-family: var(--head); font-weight: 700; color: var(--orange); text-transform: uppercase; letter-spacing: 0.06em; }

/* ── CTA BANNER ───────────────────────────────────────── */
.cta-banner { background: var(--orange); padding: 72px 32px; }
.cta-banner-inner { max-width: 1240px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.cta-banner h2 { font-family: var(--head); font-size: clamp(22px, 3vw, 34px); font-weight: 900; color: #fff; }
.cta-banner p { font-size: 15px; color: rgba(255,255,255,0.75); margin-top: 6px; }
.cta-banner-btns { display: flex; gap: 14px; flex-shrink: 0; flex-wrap: wrap; }
.cta-banner .btn-primary { background: #fff !important; color: #111 !important; border-color: #fff; }
.cta-banner .btn-primary:hover { background: var(--navy) !important; color: #fff !important; border-color: var(--navy); }

/* ── BATTERY CARDS ────────────────────────────────────── */
.batt-why { padding: 72px 32px; background: var(--off); }
.batt-why-inner { max-width: 1240px; margin: 0 auto; }
.batt-why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 48px; }
.batt-why-card {
  background: #fff; padding: 30px 24px;
  border: 1px solid var(--g2); position: relative; overflow: hidden;
}
.batt-why-card::after { content: attr(data-num); position: absolute; bottom: -10px; right: 10px; font-family: var(--head); font-size: 80px; font-weight: 900; color: var(--g1); line-height: 1; pointer-events: none; }
.batt-why-card h3 { font-family: var(--head); font-size: 13.5px; font-weight: 800; text-transform: uppercase; color: var(--navy); letter-spacing: 0.04em; margin-bottom: 8px; }
.batt-why-card p { font-size: 13.5px; color: var(--g4); line-height: 1.65; position: relative; z-index: 1; }

.batt-prices { padding: 72px 32px; background: #fff; }
.batt-prices-inner { max-width: 1240px; margin: 0 auto; }
.interstate-header { display: flex; align-items: center; gap: 16px; margin-bottom: 40px; padding-bottom: 32px; border-bottom: 1px solid var(--g2); }
.interstate-header img { height: 34px; width: auto; }
.interstate-name { font-family: var(--head); font-size: 20px; font-weight: 900; text-transform: uppercase; color: var(--navy); }
.interstate-name span { color: var(--orange); }
.interstate-sub { font-size: 12px; color: var(--g3); text-transform: uppercase; letter-spacing: 0.07em; font-weight: 600; margin-top: 2px; }

.batt-showcase { display: flex; gap: 48px; align-items: center; margin-top: 40px; flex-wrap: wrap; }
.batt-showcase-img { flex: 0 0 420px; max-width: 420px; overflow: hidden; }
.batt-showcase-img img { width: 100%; height: 300px; object-fit: cover; display: block; }
.batt-showcase-info { flex: 1; min-width: 260px; }
.batt-showcase-info h2 { font-family: var(--head); font-size: 26px; font-weight: 900; color: var(--navy); margin: 12px 0 16px; }
.batt-showcase-info p { font-size: 14px; color: var(--g4); line-height: 1.75; margin-bottom: 12px; }
.batt-list { list-style: none; margin: 16px 0 0; display: flex; flex-direction: column; gap: 8px; }
.batt-list li { font-size: 13.5px; color: var(--g4); padding-left: 18px; position: relative; }
.batt-list li::before { content: ''; position: absolute; left: 0; top: 7px; width: 8px; height: 2px; background: var(--orange); }

.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.price-card { border: 1px solid var(--g2); background: #fff; overflow: hidden; transition: border-color var(--t); }
.price-card:hover { border-color: var(--g3); }
.price-card.featured { border: 2px solid var(--orange); position: relative; }
.price-card.featured::before { content: 'Most Popular'; position: absolute; top: 0; right: 0; padding: 5px 14px; background: var(--orange); color: #fff; font-family: var(--head); font-size: 10.5px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.price-head { background: var(--g1); padding: 22px 24px; border-bottom: 1px solid var(--g2); }
.price-head-name { font-family: var(--head); font-size: 24px; font-weight: 900; text-transform: uppercase; color: var(--navy); }
.price-head-sub { font-size: 11.5px; color: var(--g3); text-transform: uppercase; letter-spacing: 0.07em; font-weight: 600; margin-top: 3px; }
.price-img-row { height: 140px; background: var(--off); display: flex; align-items: center; justify-content: center; border-bottom: 1px solid var(--g2); }
.price-img-row img { height: 90px; object-fit: contain; }
.price-amount { padding: 18px 24px; border-bottom: 1px solid var(--g2); display: flex; align-items: baseline; gap: 3px; }
.price-dollar { font-family: var(--head); font-size: 18px; color: var(--g3); }
.price-val { font-family: var(--head); font-size: 44px; font-weight: 900; color: var(--navy); line-height: 1; }
.price-cents { font-family: var(--head); font-size: 18px; color: var(--g3); align-self: flex-start; margin-top: 8px; }
.price-list { padding: 18px 24px; }
.price-list li { font-size: 13.5px; color: var(--g4); padding: 7px 0; border-bottom: 1px solid var(--off); display: flex; align-items: flex-start; gap: 9px; }
.price-list li:last-child { border-bottom: none; }
.price-list li::before { content: '✓'; color: var(--blue); font-weight: 700; flex-shrink: 0; }
.price-card.featured .price-list li::before { color: var(--orange); }
.price-action { padding: 0 24px 24px; }
.price-btn { display: block; width: 100%; padding: 12px; text-align: center; background: var(--g1); color: var(--navy); font-family: var(--head); font-size: 12px; font-weight: 800; letter-spacing: 0.07em; text-transform: uppercase; transition: background var(--t); cursor: pointer; border: 1px solid var(--g2); }
.price-btn:hover { background: var(--g2); }
.price-card.featured .price-btn { background: var(--orange); }
.price-card.featured .price-btn:hover { background: #b83f00; }

/* ── BELTS & HOSES ────────────────────────────────────── */
.belts-wrap { max-width: 1240px; margin: 0 auto; padding: 72px 32px; }
.belt-block { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; padding: 64px 0; border-bottom: 1px solid var(--g2); }
.belt-block:first-child { padding-top: 0; }
.belt-block:last-child { border-bottom: none; }
.belt-block.flip { direction: rtl; }
.belt-block.flip > * { direction: ltr; }
.belt-eyebrow { font-family: var(--head); font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--blue); margin-bottom: 12px; }
.belt-block h2 { font-family: var(--head); font-size: clamp(24px, 3vw, 36px); font-weight: 900; color: var(--navy); line-height: 1.1; margin-bottom: 18px; }
.belt-block p { font-size: 14.5px; color: var(--g4); line-height: 1.8; margin-bottom: 14px; }
.belt-photo { height: 360px; overflow: hidden; background: var(--g1); }
.belt-photo img { width: 100%; height: 100%; object-fit: cover; }
.hoses-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0; margin-bottom: 28px; border: 1px solid var(--g2); }
.hoses-list li { font-size: 13.5px; color: var(--g5); padding: 9px 14px; border-right: 1px solid var(--g2); border-bottom: 1px solid var(--g2); display: flex; align-items: center; gap: 8px; }
.hoses-list li:nth-child(even) { border-right: none; }
.hoses-list li::before { content: ''; width: 6px; height: 6px; background: var(--orange); flex-shrink: 0; }

/* ── PAGE IMAGE BANNER ────────────────────────────────── */
.page-img-banner { width: 100%; max-height: 420px; overflow: hidden; }
.page-img-banner img { width: 100%; height: 420px; object-fit: cover; display: block; }

/* ── FEATURE GRID (Truck / Oil etc) ──────────────────── */
.feature-section { padding: 72px 32px; background: var(--off); }
.feature-inner { max-width: 1240px; margin: 0 auto; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
.feature-card { background: #fff; border: 1px solid var(--g2); padding: 28px 26px; transition: border-color var(--t); }
.feature-card:hover { border-color: var(--g3); }
.feature-card-accent { width: 36px; height: 3px; background: var(--orange); margin-bottom: 16px; }
.feature-card h3 { font-family: var(--head); font-size: 13.5px; font-weight: 800; text-transform: uppercase; color: var(--navy); letter-spacing: 0.04em; margin-bottom: 9px; }
.feature-card p { font-size: 13.5px; color: var(--g4); line-height: 1.7; }

/* ── TIRES PAGE ───────────────────────────────────────── */
.tires-section { padding: 72px 32px; background: var(--off); }
.tires-inner { max-width: 1240px; margin: 0 auto; }
.tires-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.tire-service-card { background: #fff; border: 1px solid var(--g2); overflow: hidden; }
.tire-service-img { width: 100%; height: 260px; overflow: hidden; }
.tire-service-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.tire-service-card:hover .tire-service-img img { transform: scale(1.03); }
.tire-service-body { padding: 32px 28px; display: flex; flex-direction: column; flex: 1; }
.tire-service-body h2 { font-family: var(--head); font-size: 22px; font-weight: 900; color: var(--navy); margin: 8px 0 14px; }
.tire-service-body p { font-size: 14px; color: var(--g4); line-height: 1.75; margin-bottom: 4px; }
.tire-service-body .batt-list { flex: 1; }
.tire-service-card { display: flex; flex-direction: column; }

/* ── ALIGNMENT ANGLES ────────────────────────────────── */
.alignment-angles { display: flex; flex-direction: column; gap: 16px; margin-top: 24px; }
.alignment-angle { padding: 16px 20px; border-left: 3px solid var(--orange); background: var(--off); }
.alignment-angle-name { font-family: var(--head); font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em; color: var(--navy); margin-bottom: 6px; }
.alignment-angle p { font-size: 13.5px; color: var(--g4); line-height: 1.65; margin: 0; }

/* ── TIRES & REPAIR ───────────────────────────────────── */
.tiles-section { padding: 72px 32px; background: var(--off); }
.tiles-inner { max-width: 1240px; margin: 0 auto; }
.tiles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
.tile-card { background: #fff; border: 1px solid var(--g2); padding: 28px 26px; transition: border-color var(--t), box-shadow var(--t); }
.tile-card:hover { border-color: var(--orange); }
.tile-card--featured { border-left: 4px solid var(--orange); background: #fff; box-shadow: 0 2px 12px rgba(0,0,0,0.06); }
.tile-card--featured h3 { color: var(--navy); font-size: 15px; }
.tile-card h3 { font-family: var(--head); font-size: 13.5px; font-weight: 800; text-transform: uppercase; color: var(--navy); letter-spacing: 0.04em; margin-bottom: 8px; }
.tile-card p { font-size: 13.5px; color: var(--g4); line-height: 1.7; }

.repair-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 48px; }
.repair-card { background: #fff; border: 1px solid var(--g2); padding: 26px 22px; transition: border-color var(--t); }
.repair-card:hover { border-color: var(--orange); }
.repair-card h3 { font-family: var(--head); font-size: 13px; font-weight: 800; text-transform: uppercase; color: var(--navy); letter-spacing: 0.04em; margin-bottom: 8px; }
.repair-card p { font-size: 13px; color: var(--g4); line-height: 1.65; }
.repair-note { margin-top: 36px; padding: 18px 24px; background: #fff; border-left: 4px solid var(--orange); font-size: 14px; color: var(--g4); line-height: 1.6; }
.repair-note strong { color: var(--navy); }

/* ── APPOINTMENT FORM ─────────────────────────────────── */
.appt-wrap { max-width: 760px; margin: 0 auto; padding: 72px 32px; }
.appt-form { display: grid; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-family: var(--head); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.09em; color: var(--g4); }
.form-group input, .form-group select, .form-group textarea {
  padding: 11px 14px; border: 1px solid var(--g2); background: #fff;
  color: var(--navy); font-family: 'Open Sans', sans-serif; font-size: 14px;
  outline: none; transition: border-color var(--t); -webkit-appearance: none; appearance: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%239aa3b0'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 10px center; background-size: 20px;
  padding-right: 36px; background-color: #fff;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--orange); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-submit-link {
  display: block; text-align: center; padding: 15px;
  background: var(--orange); color: #fff;
  font-family: var(--head); font-size: 12px; font-weight: 800;
  letter-spacing: 0.07em; text-transform: uppercase;
  transition: background var(--t);
}
.form-submit-link:hover { background: #b83f00; }

/* ── FOOTER ───────────────────────────────────────────── */
footer { background: #fff; padding: 64px 0 0; border-top: 1px solid var(--g2); }
.footer-inner { max-width: 1240px; margin: 0 auto; padding: 0 32px 48px; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; border-bottom: 1px solid var(--g2); }
.footer-brand-name { font-family: var(--head); font-size: 16px; font-weight: 900; text-transform: uppercase; color: var(--navy); letter-spacing: 0.04em; }
.footer-brand-name span { color: var(--orange); }
.footer-brand-desc { font-size: 13.5px; color: var(--g4); line-height: 1.75; margin-top: 14px; max-width: 230px; }
.footer-col h4 { font-family: var(--head); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--g3); margin-bottom: 18px; }
.footer-col li { margin-bottom: 10px; }
.footer-col li a { font-size: 13.5px; color: var(--g4); cursor: pointer; transition: color var(--t); }
.footer-col li a:hover { color: var(--orange); }
.site-map-section { width: 100%; line-height: 0; }
.site-map-section iframe { display: block; width: 100%; height: 520px; border: 0; }
.footer-bottom { background: var(--g1); padding: 20px 32px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.footer-bottom p { font-size: 12px; color: var(--g4); }

/* ── RESPONSIVE ───────────────────────────────────────── */
@media (max-width: 1024px) {
  .home-svc-grid { grid-template-columns: repeat(3, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .batt-why-grid { grid-template-columns: repeat(2, 1fr); }
  .price-grid { grid-template-columns: 1fr; max-width: 440px; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .tiles-grid { grid-template-columns: repeat(2, 1fr); }
  .repair-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 960px) {
  .hamburger { display: flex; }
  .header-cta-btns { display: none; }
  .mobile-header-btns { display: flex; }
  .logo-img { height: 70px !important; }
  .main-nav { display: none; flex: 0; position: fixed; top: 72px; left: 0; width: 100%; background: #fff; border-top: 2px solid var(--orange); flex-direction: column; align-items: stretch; height: auto; z-index: 99; padding: 8px 0 16px; }
  .main-nav.open { display: flex; }
  .nav-item { height: auto; }
  .nav-link { height: auto; padding: 12px 24px; border-bottom: none; }
  .dropdown { position: static; border: none; border-top: none; padding-left: 16px; display: none; }
  .nav-item.open .dropdown { display: block; }
  .nav-item:hover .dropdown { display: none; }
  .nav-item.open .nav-link svg { transform: rotate(180deg); }
  .belt-block, .belt-block.flip { grid-template-columns: 1fr; direction: ltr; gap: 36px; }
  .tires-grid { grid-template-columns: 1fr; }
  .batt-showcase { flex-direction: column; }
  .batt-showcase-img { flex: none; max-width: 100%; }
}
@media (max-width: 768px) {
  .home-svc-grid { grid-template-columns: repeat(2, 1fr); }
  .top-bar { display: none; }
  #site-header { top: 0; }
  .page-wrapper { padding-top: 72px; }
  .main-nav { top: 72px; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .hero-stat { border-right: none; padding-right: 0; margin-right: 0; min-width: 120px; }
  .cta-banner-inner { flex-direction: column; }
  .header-inner { height: 64px; padding: 0 16px; overflow: hidden; }
  .logo-img { height: 52px !important; }
  .mobile-book-btn, .mobile-call-btn { padding: 8px 10px; font-size: 10px; }
  .bst-inner { flex-direction: column; align-items: stretch; gap: 0; }
  .bst-photo { display: none !important; margin: 0; }
  .bst-item { padding: 18px 0; flex: none; min-width: 0; }
  .bst-divider { width: 100%; height: 1px; flex-shrink: 0; }
  .bst-cta { padding: 20px 0 4px; }
}
@media (max-width: 600px) {
  .home-svc-grid, .why-grid, .services-grid, .batt-why-grid, .feature-grid, .tiles-grid, .repair-grid { grid-template-columns: 1fr; }
  .hoses-list { grid-template-columns: 1fr; }
  .hoses-list li { border-right: none; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero h1 { font-size: 38px; }
}
