/* ────────────────────────────────────────────────
   Siberian Auto Repair — Shared Design System
   ──────────────────────────────────────────────── */

:root {
  --bg: #ffffff;
  --bg-dark: #0b1220;
  --bg-navy: #111a2e;
  --bg-navy-2: #1a2440;
  --panel: #f8fafc;
  --border: #e5e7eb;
  --border-dark: #1f2b47;
  --ink: #0f172a;
  --ink-2: #1e293b;
  --ink-inv: #f1f5f9;
  --muted: #64748b;
  --muted-dark: #94a3b8;

  --gold: #eab308;
  --gold-2: #ca8a04;
  --gold-soft: rgba(234, 179, 8, 0.14);
  --gold-ink: #422006;

  --green: #059669;
  --green-2: #047857;
  --red: #dc2626;
  --blue: #2563eb;

  --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.08);
  --shadow-md: 0 6px 20px rgba(15, 23, 42, 0.10);
  --shadow-lg: 0 20px 50px rgba(15, 23, 42, 0.18);
  --shadow-gold: 0 8px 24px rgba(234, 179, 8, 0.32);

  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 18px;
  --r-xl: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: 'kern', 'liga';
}
h1, h2, h3, h4, h5 {
  font-family: 'Bebas Neue', 'Inter', sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.1;
  margin: 0;
  text-transform: uppercase;
}
h1 { font-size: clamp(38px, 6vw, 72px); }
h2 { font-size: clamp(30px, 4.4vw, 48px); }
h3 { font-size: clamp(22px, 2.5vw, 30px); }
h4 { font-size: clamp(18px, 1.8vw, 22px); }
p { margin: 0 0 12px; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 900px; margin: 0 auto; padding: 0 24px; }

/* ─────── TOPBAR (top strip with phone/hours) ─────── */
.topstrip {
  background: #050912;
  color: #cbd5e1;
  font-size: 12.5px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.topstrip-inner {
  max-width: 1200px; margin: 0 auto; padding: 8px 24px;
  display: flex; justify-content: space-between; align-items: center;
  gap: 20px;
}
.topstrip-left { display: flex; gap: 20px; }
.topstrip-item { display: inline-flex; align-items: center; gap: 6px; }
.topstrip-item svg { width: 13px; height: 13px; color: var(--gold); }
.topstrip a { color: #cbd5e1; }
.topstrip a:hover { color: var(--gold); }
@media (max-width: 720px) { .topstrip { display: none; } }

/* ─────── MAIN NAV ─────── */
.mainnav {
  position: sticky; top: 0; z-index: 60;
  background: rgba(11, 18, 32, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mainnav-inner {
  max-width: 1200px; margin: 0 auto; padding: 12px 24px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.logo {
  display: inline-flex; align-items: center; gap: 12px;
  color: #fff;
  min-width: 0;
}
.logo-mark {
  height: 46px; width: auto;
  display: block;
}
.logo-fallback {
  height: 46px; padding: 4px 14px 4px 6px;
  border-radius: 8px;
  background: linear-gradient(135deg, #1a2440, #0b1220);
  border: 1px solid rgba(234, 179, 8, 0.4);
  display: inline-flex; align-items: center; gap: 10px;
}
.logo-fallback .badge {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--gold);
  color: var(--gold-ink);
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 16px;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.02em;
}
.logo-fallback .txt { line-height: 1.05; }
.logo-fallback .txt .a {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px; letter-spacing: 0.04em; color: #fff;
}
.logo-fallback .txt .b {
  font-size: 9px; font-weight: 700; color: var(--gold);
  letter-spacing: 0.24em;
}

.mainnav ul {
  list-style: none; margin: 0; padding: 0;
  display: flex; gap: 2px;
}
.mainnav ul a {
  display: inline-block; padding: 10px 14px;
  color: #e2e8f0; font-size: 13.5px; font-weight: 600;
  letter-spacing: 0.03em; text-transform: uppercase;
  border-radius: 8px;
  transition: background 0.15s ease, color 0.15s ease;
}
.mainnav ul a:hover, .mainnav ul a.active {
  background: rgba(234, 179, 8, 0.14);
  color: var(--gold);
}

.mainnav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 22px;
  background: var(--gold);
  color: var(--gold-ink);
  border-radius: 999px;
  font-weight: 800; font-size: 13.5px;
  letter-spacing: 0.04em; text-transform: uppercase;
  transition: transform 0.15s ease, background 0.15s ease;
}
.mainnav-cta:hover { background: #fde047; transform: translateY(-1px); }
.mainnav-cta svg { width: 14px; height: 14px; }

/* Mobile menu */
.menu-toggle {
  display: none;
  background: none; border: 0; padding: 6px;
  color: #fff; cursor: pointer;
}
.menu-toggle svg { width: 26px; height: 26px; }

@media (max-width: 960px) {
  .mainnav ul { display: none; }
  .mainnav-cta span { display: none; }
  .mainnav-cta { padding: 10px 14px; }
  .menu-toggle { display: inline-flex; }
  .mainnav.open ul {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--bg-dark);
    padding: 12px 24px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .mainnav.open ul a { padding: 12px; border-bottom: 1px solid rgba(255,255,255,0.05); }
}

/* ─────── SECTION SHELL ─────── */
.sec { padding: 90px 0; }
.sec-tight { padding: 60px 0; }
.sec-dark { background: var(--bg-dark); color: var(--ink-inv); }
.sec-panel { background: var(--panel); }
@media (max-width: 720px) { .sec { padding: 64px 0; } .sec-tight { padding: 48px 0; } }

.eyebrow {
  display: inline-block;
  font-size: 12px; font-weight: 800;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.sec-header { text-align: center; margin-bottom: 48px; }
.sec-header h2 { margin-bottom: 14px; }
.sec-header p { max-width: 640px; margin: 0 auto; color: var(--ink-2); font-size: 16.5px; }
.sec-dark .sec-header p { color: var(--muted-dark); }

/* ─────── HERO ─────── */
.hero {
  position: relative;
  min-height: 620px;
  color: #fff;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  background-color: var(--bg-dark);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(115deg, rgba(11,18,32,0.92) 0%, rgba(11,18,32,0.78) 50%, rgba(11,18,32,0.4) 100%);
}
.hero-inner {
  position: relative; z-index: 2;
  padding: 100px 0;
  max-width: 1200px; margin: 0 auto;
  padding-left: 24px; padding-right: 24px;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px;
  background: rgba(234, 179, 8, 0.14);
  border: 1px solid rgba(234, 179, 8, 0.45);
  border-radius: 999px;
  font-size: 12px; font-weight: 700; color: var(--gold);
  letter-spacing: 0.24em; text-transform: uppercase;
  margin-bottom: 20px;
}
.hero h1 {
  max-width: 780px;
  color: #fff;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.hero h1 .accent { color: var(--gold); }
.hero-lead {
  margin-top: 22px;
  max-width: 620px;
  font-size: 17px; line-height: 1.6;
  color: #d1d5db;
}
.hero-ctas {
  margin-top: 34px;
  display: inline-flex; gap: 12px; flex-wrap: wrap;
}

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 700; font-size: 14.5px;
  letter-spacing: 0.04em; text-transform: uppercase;
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
  cursor: pointer;
  border: 0;
  font-family: inherit;
}
.btn svg { width: 16px; height: 16px; }
/* Book = orange, Call = green, Free Estimate = blue */
.btn-gold { background: #f97316; color: #fff; box-shadow: 0 10px 24px rgba(249, 115, 22, 0.42); }
.btn-gold:hover { background: #ea580c; transform: translateY(-2px); }
.btn-green { background: #059669; color: #fff; box-shadow: 0 10px 24px rgba(5, 150, 105, 0.4); }
.btn-green:hover { background: #047857; transform: translateY(-2px); }
.btn-ghost {
  background: #059669; color: #fff;
  border: none;
  box-shadow: 0 10px 24px rgba(5, 150, 105, 0.4);
}
.btn-ghost:hover { background: #047857; transform: translateY(-2px); }
.btn-blue { background: #2563eb; color: #fff; box-shadow: 0 10px 24px rgba(37, 99, 235, 0.42); }
.btn-blue:hover { background: #1d4ed8; transform: translateY(-2px); }
.btn-outline {
  background: transparent; color: var(--ink);
  border: 1px solid var(--border);
}
.btn-outline:hover { border-color: var(--ink); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: var(--bg-navy-2); }

/* ─────── TRUST STRIP (below hero) ─────── */
.trust-strip {
  background: #050912;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.trust-inner {
  max-width: 1200px; margin: 0 auto; padding: 22px 24px;
  display: flex; justify-content: space-around; gap: 24px; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  color: #cbd5e1; font-size: 13.5px; font-weight: 600;
}
.trust-item .icon {
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(234, 179, 8, 0.12);
  color: var(--gold);
  display: inline-flex; align-items: center; justify-content: center;
}
.trust-item .icon svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* ─────── SERVICE CARDS ─────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .services-grid { grid-template-columns: 1fr; } }

.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 26px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
  display: flex; flex-direction: column;
  min-height: 260px;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(234, 179, 8, 0.5);
}
.service-card .ico {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--gold-soft); color: var(--gold-2);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.service-card .ico svg { width: 26px; height: 26px; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.service-card h3 { margin: 0 0 10px; color: var(--ink); }
.service-card p { color: var(--muted); font-size: 14.5px; line-height: 1.6; flex: 1 1 auto; }
.service-card .learn {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 18px;
  color: var(--gold-2); font-weight: 700; font-size: 13px;
  letter-spacing: 0.04em; text-transform: uppercase;
}
.service-card .learn svg { width: 12px; height: 12px; }
.service-card:hover .learn { color: var(--gold); }

/* ─────── FEATURE ROW (why choose us) ─────── */
.feature-row {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}
.feature-row .media img { border-radius: var(--r-xl); box-shadow: var(--shadow-lg); }
.feature-row .body h2 { margin-bottom: 20px; }
.feature-list {
  list-style: none; padding: 0; margin: 24px 0 32px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px 24px;
}
.feature-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14.5px; font-weight: 600; color: var(--ink);
}
.feature-list .tick {
  flex-shrink: 0;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--gold);
  color: var(--gold-ink);
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 12px;
}
@media (max-width: 900px) {
  .feature-row { grid-template-columns: 1fr; gap: 36px; }
  .feature-list { grid-template-columns: 1fr; }
}

/* ─────── STATS ─────── */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat {
  text-align: center;
  padding: 30px 20px;
  border-right: 1px solid var(--border-dark);
}
.stat:last-child { border-right: 0; }
.stat .n {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 54px; line-height: 1;
  color: var(--gold);
  letter-spacing: 0.02em;
}
.stat .l {
  margin-top: 8px;
  font-size: 12px; font-weight: 800;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--muted-dark);
}
@media (max-width: 720px) {
  .stats { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .stat { border-right: 0; padding: 20px; }
}

/* ─────── TESTIMONIALS ─────── */
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .review-grid { grid-template-columns: 1fr; } }
.review-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 26px;
}
.review-card .stars { color: var(--gold); font-size: 16px; letter-spacing: 2px; margin-bottom: 12px; }
.review-card p { color: var(--ink-2); font-size: 15px; font-style: italic; }
.review-card .who {
  margin-top: 16px; padding-top: 16px;
  border-top: 1px solid var(--border);
  font-size: 13px; color: var(--muted); font-weight: 600;
}
.review-card .who strong { color: var(--ink); font-weight: 800; }

/* ─────── CTA BAND ─────── */
.cta-band {
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-navy-2) 100%);
  color: #fff;
  border-radius: var(--r-xl);
  padding: 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute; top: -80px; right: -60px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(234,179,8,0.20) 0%, transparent 70%);
  pointer-events: none;
}
.cta-band h2 { color: #fff; margin-bottom: 14px; }
.cta-band p { max-width: 560px; margin: 0 auto 28px; color: var(--muted-dark); font-size: 17px; }
.cta-band .btns { display: inline-flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
@media (max-width: 720px) { .cta-band { padding: 44px 24px; } }

/* ─────── FOOTER ─────── */
footer {
  background: #050912;
  color: #cbd5e1;
  padding: 60px 0 24px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.foot-grid h4 {
  font-family: 'Inter', sans-serif;
  font-size: 12px; font-weight: 800;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.foot-grid a { color: #cbd5e1; font-size: 14px; }
.foot-grid a:hover { color: var(--gold); }
.foot-grid ul { list-style: none; padding: 0; margin: 0; }
.foot-grid ul li { margin-bottom: 8px; }
.foot-brand p { font-size: 14px; color: var(--muted-dark); margin: 14px 0; line-height: 1.6; }
.foot-contact-item {
  display: flex; align-items: flex-start; gap: 10px;
  margin-bottom: 12px;
  font-size: 14px;
}
.foot-contact-item svg {
  flex-shrink: 0;
  width: 16px; height: 16px; color: var(--gold);
  margin-top: 2px;
}
.foot-social { display: flex; gap: 10px; margin-top: 20px; }
.foot-social a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: inline-flex; align-items: center; justify-content: center;
  transition: background 0.15s ease;
}
.foot-social a:hover { background: rgba(234, 179, 8, 0.2); }
.foot-social svg { width: 16px; height: 16px; color: #fff; }
.foot-fine {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 22px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 14px;
  color: var(--muted-dark); font-size: 12.5px;
}
.foot-fine a { color: var(--muted-dark); }
.foot-fine a:hover { color: var(--gold); }
@media (max-width: 900px) {
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 600px) {
  .foot-grid { grid-template-columns: 1fr; }
  .foot-fine { flex-direction: column; }
}

/* ─────── PAGE HEADER (interior pages) ─────── */
.page-hero {
  position: relative;
  background: var(--bg-dark);
  color: #fff;
  padding: 90px 0 70px;
  text-align: center;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at top, rgba(234,179,8,0.18) 0%, transparent 55%);
}
.page-hero-inner { position: relative; z-index: 2; }
.page-hero h1 { color: #fff; }
.page-hero p { color: var(--muted-dark); font-size: 17px; max-width: 600px; margin: 18px auto 0; }
.crumbs {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; color: var(--muted-dark);
  margin-bottom: 18px;
  letter-spacing: 0.1em; text-transform: uppercase;
}
.crumbs a { color: var(--gold); }
.crumbs a:hover { text-decoration: underline; }

/* ─────── CONTACT / FORMS ─────── */
.form-wrap {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}
.form-row { margin-bottom: 18px; }
.form-row.two { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 600px) { .form-row.two { grid-template-columns: 1fr; } }
.form-row label {
  display: block; margin-bottom: 6px;
  font-size: 12.5px; font-weight: 800;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-2);
}
.form-row input, .form-row select, .form-row textarea {
  width: 100%; padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  font-family: inherit; font-size: 15px;
  background: #fff; color: var(--ink);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  outline: 0;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(234, 179, 8, 0.15);
}
.form-row textarea { min-height: 120px; resize: vertical; }
.form-row .hint { font-size: 12px; color: var(--muted); margin-top: 4px; }

/* ─────── UTILITY ─────── */
.text-center { text-align: center; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
@media (max-width: 900px) { .grid-2 { grid-template-columns: 1fr; } }

.info-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .info-cards { grid-template-columns: 1fr; } }
.info-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 30px;
}
.info-card .ico {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--gold-soft); color: var(--gold-2);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.info-card .ico svg { width: 24px; height: 24px; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.info-card h3 { margin: 0 0 8px; }
.info-card .rows { margin-top: 12px; }
.info-card .rows div { display: flex; justify-content: space-between; padding: 6px 0; font-size: 14px; color: var(--ink-2); }
.info-card .rows div:first-child { padding-top: 0; }
.info-card .rows div span:last-child { color: var(--muted); font-weight: 600; }

/* ────────────────────────────────────────────────
   UPDATES: bigger logo, services dropdown,
   specials, gallery, FAQ accordion, quad-dark
   ──────────────────────────────────────────────── */

/* Bigger logo */
.logo-mark {
  height: 74px;
  border-radius: 10px;
  background: #fff;
  padding: 4px;
}
@media (max-width: 720px) {
  .logo-mark { height: 58px; }
}

.mainnav-inner { padding-top: 10px; padding-bottom: 10px; }

/* Footer logo */
.logo-foot img {
  height: 62px;
  border-radius: 10px;
  background: #fff;
  padding: 4px;
  margin-bottom: 8px;
}

/* Services dropdown */
.mainnav-list { position: relative; align-items: center; }
.mainnav-list .has-dd { position: relative; }
.mainnav-list .has-dd::after {
  content: "";
  position: absolute;
  top: 100%; left: 0; right: 0;
  height: 12px;
}
.mainnav-list .has-dd > a .chev { width: 12px; height: 12px; margin-left: 2px; vertical-align: middle; display: inline-block; }
.mainnav-list .dd {
  display: none;
  position: absolute;
  top: 100%; left: 0;
  min-width: 260px;
  margin-top: 8px;
  padding: 8px;
  background: #0f172a;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.4);
  list-style: none;
  z-index: 100;
}
.mainnav-list .has-dd:hover .dd,
.mainnav-list .has-dd:focus-within .dd {
  display: block;
}
.mainnav-list .dd a {
  display: block;
  padding: 9px 12px;
  color: #e2e8f0;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: none;
  border-radius: 6px;
}
.mainnav-list .dd a:hover {
  background: rgba(234, 179, 8, 0.14);
  color: var(--gold);
}

@media (max-width: 960px) {
  .mainnav-list .dd { position: static; display: block; margin: 6px 0 0; background: transparent; border: 0; box-shadow: none; padding: 0 0 0 16px; }
}

/* Service detail hero panel */
.svc-hero-panel {
  background: linear-gradient(135deg, #111a2e, #1a2440);
  border-radius: 24px;
  aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center; flex-direction: column;
  color: #eab308;
  gap: 14px;
  padding: 30px;
}
.svc-hero-icon {
  width: 96px; height: 96px;
  border-radius: 24px;
  background: rgba(234, 179, 8, 0.14);
  display: inline-flex; align-items: center; justify-content: center;
}
.svc-hero-icon svg { width: 48px; height: 48px; }
.svc-hero-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  letter-spacing: 0.1em;
  text-align: center;
}

/* About shop panel placeholder */
.about-panel {
  background: linear-gradient(135deg, #111a2e, #1a2440);
  border-radius: 24px;
  aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center;
  color: #eab308;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  letter-spacing: 0.1em;
}

/* Dark cards (used on About page) */
.services-grid.quad-dark { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1000px) { .services-grid.quad-dark { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .services-grid.quad-dark { grid-template-columns: 1fr; } }
.dark-card {
  background: rgba(255,255,255,0.04) !important;
  border-color: rgba(255,255,255,0.08) !important;
  color: #fff !important;
}
.dark-card h3 { color: #fff !important; }
.dark-card p { color: #cbd5e1 !important; }

/* Specials */
.specials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .specials-grid { grid-template-columns: 1fr; } }
.special-card {
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  border: 1px solid #f59e0b;
  border-radius: var(--r-xl);
  padding: 36px 30px;
  text-align: center;
  box-shadow: var(--shadow-md);
  display: flex; flex-direction: column; align-items: center;
  gap: 8px;
}
.special-card .special-tag {
  display: inline-block;
  background: #0f172a; color: var(--gold);
  padding: 6px 18px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px; letter-spacing: 0.06em;
  border-radius: 999px;
  margin-bottom: 12px;
}
.special-card h3 { color: var(--ink); margin: 0; }
.special-card p { color: var(--ink-2); font-size: 14.5px; margin: 8px 0 20px; }

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
@media (max-width: 900px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
.gallery-tile {
  aspect-ratio: 1/1;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
  border: 1px solid var(--border);
  overflow: hidden;
}
.gallery-inner {
  height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  color: var(--muted);
}
.gallery-inner svg { width: 28px; height: 28px; opacity: 0.5; }
.gallery-label { font-size: 12px; font-weight: 600; }

/* FAQ accordion */
.faq {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  margin-bottom: 10px;
  overflow: hidden;
  transition: border-color 0.15s ease;
}
.faq[open] { border-color: var(--gold); }
.faq summary {
  cursor: pointer;
  padding: 18px 22px;
  font-weight: 700;
  color: var(--ink);
  font-size: 15.5px;
  list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .chev { width: 14px; height: 14px; color: var(--muted); transition: transform 0.15s ease; }
.faq[open] summary .chev { transform: rotate(180deg); color: var(--gold); }
.faq p {
  padding: 0 22px 20px;
  margin: 0;
  color: var(--ink-2);
  font-size: 14.5px;
  line-height: 1.65;
}

/* ─── Vehicles hub + landing ─── */
.makes-featured {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 900px) { .makes-featured { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .makes-featured { grid-template-columns: 1fr; } }

.make-card.featured {
  display: flex; flex-direction: column;
  padding: 30px 26px;
  background: linear-gradient(135deg, #111a2e, #1a2440);
  border: 1px solid rgba(234, 179, 8, 0.35);
  border-radius: var(--r-lg);
  color: #fff;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
  min-height: 190px;
}
.make-card.featured:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}
.make-card .make-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px; letter-spacing: 0.04em; line-height: 1;
  color: #fff;
}
.make-card .make-sub {
  margin-top: 6px;
  font-size: 12px; font-weight: 800;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold);
}
.make-card .learn {
  margin-top: auto;
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12.5px; font-weight: 700; color: #e2e8f0;
  letter-spacing: 0.04em; text-transform: uppercase;
}
.make-card .learn svg { width: 12px; height: 12px; }

.makes-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}
@media (max-width: 1000px) { .makes-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 600px)  { .makes-grid { grid-template-columns: repeat(2, 1fr); } }
.make-tile {
  display: flex; align-items: center; justify-content: center;
  padding: 14px 10px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  font-size: 14px; font-weight: 700; color: var(--ink);
  text-align: center;
  transition: border-color 0.15s ease, background 0.15s ease, transform 0.15s ease;
}
.make-tile:hover {
  border-color: var(--gold);
  background: var(--gold-soft);
  color: var(--gold-2);
  transform: translateY(-2px);
}

/* City cloud on per-make landing pages */
.city-cloud {
  display: flex; flex-wrap: wrap; gap: 8px;
  justify-content: center;
  max-width: 900px; margin: 0 auto;
}
.city-chip {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 8px 14px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 13px; font-weight: 600; color: var(--ink-2);
}
.city-chip svg { width: 13px; height: 13px; color: var(--gold); }

/* Dropdown divider (Other Collision Repair link) */
.mainnav-list .dd .dd-divider {
  margin-top: 4px; padding-top: 8px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.mainnav-list .dd .dd-divider a {
  color: var(--gold);
  font-weight: 700;
}

/* ─── Nav CTAs (Book + Free Photo Estimate) ─── */
.mainnav-ctas {
  display: flex;
  gap: 8px;
  align-items: center;
}
.mainnav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 16px;
  border-radius: var(--r-md);
  background: #f97316;
  color: #fff;
  font-size: 13px; font-weight: 800;
  letter-spacing: 0.02em;
  border: none;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}
.mainnav-cta:hover {
  background: #ea580c;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(249, 115, 22, 0.35);
}
.mainnav-cta svg { width: 16px; height: 16px; }
.mainnav-cta.mainnav-photo {
  background: #2563eb;
  color: #fff;
}
.mainnav-cta.mainnav-photo:hover {
  background: #1d4ed8;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.35);
}
@media (max-width: 1100px) {
  .mainnav-cta span { display: none; }
  .mainnav-cta { padding: 10px 12px; }
}
@media (max-width: 900px) {
  .mainnav-ctas { display: none; }
}

/* ─── Hero Free Photo Estimate button ─── */
.btn.btn-photo {
  background: #059669;
  color: #fff;
  border: none;
}
.btn.btn-photo:hover {
  background: #047857;
  box-shadow: 0 12px 26px rgba(5, 150, 105, 0.4);
  transform: translateY(-1px);
}

/* ─── Booking iframe modal ─── */
.book-modal {
  position: fixed; inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}
.book-modal.open { display: flex; }
.book-modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(11, 18, 32, 0.75);
  backdrop-filter: blur(4px);
}
.book-modal-card {
  position: relative;
  width: 100%;
  max-width: 520px;
  height: 100%;
  max-height: 820px;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  animation: modalIn 0.18s ease-out;
  margin: 24px;
}
@keyframes modalIn {
  from { transform: translateY(20px) scale(0.98); opacity: 0; }
  to   { transform: translateY(0) scale(1); opacity: 1; }
}
.book-modal-card iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
@media (max-width: 720px) {
  .book-modal-card {
    max-width: 100%;
    max-height: 100%;
    border-radius: 0;
    margin: 0;
  }
}
.book-modal-close {
  position: absolute;
  top: 12px; right: 12px;
  width: 40px; height: 40px;
  border-radius: 999px;
  background: rgba(11, 18, 32, 0.85);
  color: #fff;
  border: none;
  cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  z-index: 2;
  transition: background 0.15s ease, transform 0.15s ease;
}
.book-modal-close:hover {
  background: #0b1220;
  transform: scale(1.08);
}
.book-modal-close svg { width: 20px; height: 20px; }

/* ─── Contact addresses ─── */
.addr-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 20px;
}
@media (max-width: 700px) { .addr-cards { grid-template-columns: 1fr; } }
.addr-card {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 20px 22px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
}
.addr-card .ico {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(234, 179, 8, 0.14);
  color: var(--gold-2);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.addr-card .ico svg { width: 20px; height: 20px; }
.addr-label {
  font-size: 12px; font-weight: 800;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold-2);
  margin-bottom: 4px;
}
.addr-line {
  font-size: 15px; font-weight: 600; color: var(--ink);
  line-height: 1.5;
}

/* ─── Mobile hero video ─── */
.hero-video-mobile {
  display: none;
}
@media (max-width: 820px) {
  .hero .hero-bg { display: none; }
  .hero-video-mobile {
    display: block;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    background: #0b1220;
  }
}

/* ─── Mobile hero: push content into lower-middle of viewport ─── */
@media (max-width: 820px) {
  .hero {
    min-height: 100svh;
    align-items: flex-end;
  }
  .hero-inner {
    padding-top: 24px;
    padding-bottom: 130px;
    width: 100%;
  }
  .hero-overlay {
    background: linear-gradient(180deg,
      rgba(11,18,32,0.05) 0%,
      rgba(11,18,32,0.10) 35%,
      rgba(11,18,32,0.55) 60%,
      rgba(11,18,32,0.90) 90%);
  }
}

/* ─── Mobile-only Call Us bar (top of viewport) ─── */
.mobile-call-bar {
  display: none;
}
@media (max-width: 820px) {
  .mobile-call-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 16px;
    background: #059669;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 12px rgba(5, 150, 105, 0.35);
    position: relative;
    z-index: 70;
  }
  .mobile-call-bar:hover,
  .mobile-call-bar:active {
    background: #047857;
    color: #fff;
  }
  .mobile-call-bar svg {
    width: 16px;
    height: 16px;
    color: #fff;
  }
}

/* ─── Nav brand text (mobile-only, sits next to logo) ─── */
.nav-brand-mobile {
  display: none;
  font-family: 'Bebas Neue', 'Inter', sans-serif;
  font-size: 22px;
  letter-spacing: 0.04em;
  color: #fff;
  line-height: 1;
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media (max-width: 960px) {
  .nav-brand-mobile { display: inline-block; }
  .mainnav-inner { gap: 12px; }
}
@media (max-width: 400px) {
  .nav-brand-mobile { font-size: 18px; }
}

/* ─── Tri-color hero CTAs (Call / Book / Photo Estimate) ─── */
.btn.btn-tile {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 12px;
  font-size: 14.5px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  color: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}
.btn.btn-tile:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
  color: #fff;
}
.btn.btn-tile svg {
  width: 18px;
  height: 18px;
}

.btn-tile-call  { background: #059669; box-shadow: 0 10px 24px rgba(5, 150, 105, 0.4); }
.call-label-mobile { display: none; }
.call-label-desktop { display: inline; }
@media (max-width: 720px) {
  .call-label-mobile { display: inline; }
  .call-label-desktop { display: none; }
}
.btn-tile-book  { background: #f97316; box-shadow: 0 10px 24px rgba(249, 115, 22, 0.42); }
.btn-tile-photo { background: #2563eb; box-shadow: 0 10px 24px rgba(37, 99, 235, 0.42); }

/* Mobile: three square tiles in a row */
@media (max-width: 820px) {
  .hero-ctas.hero-ctas-tri {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-top: 20px;
  }
  .hero-ctas.hero-ctas-tri .btn.btn-tile {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 16px 8px;
    gap: 8px;
    aspect-ratio: 1 / 1;
    font-size: 11.5px;
    letter-spacing: 0.03em;
    line-height: 1.15;
    border-radius: 14px;
  }
  .hero-ctas.hero-ctas-tri .btn.btn-tile svg {
    width: 26px;
    height: 26px;
  }
  .hero-ctas.hero-ctas-tri .btn.btn-tile span {
    display: block;
  }
}

/* ─── Review card extras (Google review badges, tags, dates) ─── */
.review-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}
.review-when {
  font-size: 12.5px;
  color: var(--muted);
  font-weight: 600;
}
.review-tag {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-2);
  background: var(--gold-soft);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}
.review-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #2563eb;
  background: rgba(37, 99, 235, 0.10);
  padding: 3px 8px;
  border-radius: 999px;
  margin: 0 6px;
  vertical-align: middle;
}
