/* ===================================================
   GROVEPORT AUTO PARTS – Custom Theme CSS v2.0
   Local SEO optimized | No plugins | Fully responsive
   =================================================== */

/* ── Variables ──────────────────────────────────────── */
:root {
  --red:       #C41C1C;
  --red-dark:  #9B1515;
  --red-light: #F5E0E0;
  --dark:      #141414;
  --dark-2:    #1E1E1E;
  --dark-3:    #2A2A2A;
  --mid:       #4B4B4B;
  --muted:     #7A7A7A;
  --border:    #E4E4E4;
  --light:     #F6F6F4;
  --white:     #FFFFFF;
  --yellow:    #F5C518;

  --font-head: 'Barlow Condensed', 'Arial Black', sans-serif;
  --font-body: 'Barlow', 'Segoe UI', Arial, sans-serif;

  --radius:    6px;
  --radius-lg: 12px;
  --shadow:    0 4px 24px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 48px rgba(0,0,0,0.18);

  --container: 1160px;
}

/* ── Reset ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--dark); background: var(--white); line-height: 1.65; font-size: 16px; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
input, select, textarea, button { font-family: inherit; }

/* ── Typography ─────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.5px;
}
h1 { font-size: clamp(36px, 6vw, 72px); }
h2 { font-size: clamp(28px, 4vw, 52px); }
h3 { font-size: clamp(20px, 3vw, 32px); }
h4 { font-size: 20px; }
p  { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ── Layout Utilities ───────────────────────────────── */
.container       { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container-wide  { max-width: 1320px; margin: 0 auto; padding: 0 24px; }
.section-label   {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}
.section-label.light { color: #F5A5A5; }
.section-intro   { max-width: 680px; margin: 0 auto 48px; text-align: center; color: var(--muted); font-size: 18px; }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }

/* ── Buttons ────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn-call {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-call:hover { background: var(--red-dark); border-color: var(--red-dark); box-shadow: 0 8px 32px rgba(196,28,28,0.35); }

.btn-xl { padding: 18px 38px; font-size: 22px; }

.btn-outline {
  background: transparent;
  color: var(--dark);
  border-color: var(--dark);
}
.btn-outline:hover { background: var(--dark); color: var(--white); }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline-white:hover { background: var(--white); color: var(--red); }

.btn-white {
  background: var(--white);
  color: var(--red);
  border-color: var(--white);
}
.btn-white:hover { background: var(--yellow); border-color: var(--yellow); color: var(--dark); }

/* ── Top Bar ────────────────────────────────────────── */
.top-bar {
  background: var(--dark);
  color: #AAA;
  font-size: 13px;
  padding: 8px 0;
  border-bottom: 1px solid var(--dark-3);
}
.top-bar .container-wide {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.top-bar-phone {
  color: var(--yellow);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
}
.top-bar-phone:hover { color: var(--white); }

/* ── Header ─────────────────────────────────────────── */
.site-header {
  background: var(--dark-2);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 16px rgba(0,0,0,0.4);
  transition: background 0.3s;
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  justify-content: space-between;
}
.site-logo { display: flex; align-items: center; }
.logo-text {
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.logo-text em { color: var(--red); font-style: normal; font-size: 14px; letter-spacing: 3px; }

/* Nav */
.nav-list { display: flex; gap: 4px; align-items: center; }
.nav-list li a {
  color: #CCC;
  font-size: 15px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: var(--radius);
  transition: color 0.2s, background 0.2s;
}
.nav-list li a:hover,
.nav-list li.current-menu-item a { color: var(--white); background: rgba(255,255,255,0.08); }

.header-cta { margin-left: auto; }

/* Hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ───────────────────────────────────────────── */
.hero {
  background: var(--dark);
  color: var(--white);
  padding: 100px 0 120px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(196,28,28,0.15) 0%, transparent 60%);
  pointer-events: none;
}
.hero-bg-text {
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-head);
  font-size: clamp(80px, 18vw, 260px);
  font-weight: 900;
  color: rgba(255,255,255,0.03);
  line-height: 1;
  pointer-events: none;
  white-space: nowrap;
  letter-spacing: -4px;
}
.hero-content { position: relative; z-index: 1; max-width: 820px; }
.hero-eyebrow {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}
.hero h1 { margin-bottom: 20px; }
.hero h1 span { color: var(--red); display: block; }
.hero-sub { font-size: 20px; color: #CCC; margin-bottom: 28px; max-width: 600px; }
.hero-price-badge {
  display: inline-block;
  background: var(--yellow);
  color: var(--dark);
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 900;
  padding: 10px 28px;
  border-radius: var(--radius);
  margin-bottom: 36px;
  letter-spacing: 0.5px;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 28px; }
.hero-trust { color: #999; font-size: 14px; }

/* ── Trust Bar ──────────────────────────────────────── */
.trust-bar {
  background: var(--red);
  padding: 20px 0;
}
.trust-bar-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 40px;
  color: var(--white);
}
.trust-item strong {
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 900;
  line-height: 1;
}
.trust-item span { font-size: 13px; opacity: 0.85; letter-spacing: 1px; text-transform: uppercase; }
.trust-divider { width: 1px; height: 48px; background: rgba(255,255,255,0.3); }

/* ── Sections ───────────────────────────────────────── */
.section-light { background: var(--white); padding: 96px 0; }
.section-dark  { background: var(--dark);  padding: 96px 0; color: var(--white); }
.section-red   { background: var(--red);   padding: 80px 0; color: var(--white); }

.section-light h2 { color: var(--dark); }
.section-dark  h2 { color: var(--white); }
.section-dark  .section-label { color: #F5A5A5; }
.section-dark  p { color: #CCC; }
.section-red   h2 { color: var(--white); }
.section-red   p  { color: rgba(255,255,255,0.85); }

/* ── Check List ─────────────────────────────────────── */
.check-list { margin: 20px 0 32px; display: flex; flex-direction: column; gap: 10px; }
.check-list li {
  padding-left: 28px;
  position: relative;
  color: var(--mid);
  font-size: 15px;
}
.section-dark .check-list li { color: #CCC; }
.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 700;
}

/* ── Two Column images ──────────────────────────────── */
.col-image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  object-fit: cover;
}

/* ── Cars Grid ──────────────────────────────────────── */
.section-cars { text-align: center; }
.section-cars h2 { color: var(--white); margin-bottom: 12px; }
.cars-grid {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 48px;
}
.car-card {
  background: var(--dark-3);
  border-radius: var(--radius-lg);
  overflow: hidden;
  width: 180px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.car-card:hover { transform: scale(1.04); box-shadow: var(--shadow-lg); }
.car-card img { width: 100%; height: 150px; object-fit: cover; }
.car-card p { color: #AAA; font-size: 13px; padding: 12px; }

/* ── About Strip ────────────────────────────────────── */
.about-strip-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 64px;
  align-items: center;
}
.about-strip-cta { text-align: center; min-width: 200px; }
.big-number {
  font-family: var(--font-head);
  font-size: 72px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}
.about-strip-cta p { color: rgba(255,255,255,0.85); margin-bottom: 20px; }

/* ── Quote Form ─────────────────────────────────────── */
.quote-form { display: flex; flex-direction: column; gap: 14px; }
.form-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 14px; }
.quote-form input,
.quote-form select,
.quote-form textarea {
  padding: 14px 16px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  color: var(--white);
  font-size: 15px;
  transition: border-color 0.2s;
}
.quote-form input::placeholder,
.quote-form textarea::placeholder { color: rgba(255,255,255,0.4); }
.quote-form input:focus,
.quote-form textarea:focus { outline: none; border-color: var(--red); }
.quote-form textarea { resize: vertical; }
.form-note { font-size: 13px; color: #999; text-align: center; margin-top: 8px; }
.form-note a { color: var(--red); }

/* ── Map ────────────────────────────────────────────── */
.map-wrapper { border-radius: var(--radius-lg); overflow: hidden; margin-top: 16px; }
.contact-chips { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 16px; }
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 100px;
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  transition: background 0.2s;
}
.chip:hover { background: rgba(255,255,255,0.14); }
.chip-call { background: var(--red); border-color: var(--red); }
.chip-call:hover { background: var(--red-dark); }

/* ── Service Areas ──────────────────────────────────── */
.section-areas { text-align: center; }
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px;
  margin-top: 32px;
}
.areas-grid li {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--mid);
}
.areas-grid li::before { content: '📍 '; }

/* ── Page Hero ──────────────────────────────────────── */
.page-hero {
  background: var(--dark);
  color: var(--white);
  padding: 72px 0;
  text-align: center;
}
.page-hero h1 { margin-bottom: 12px; }
.page-hero p { color: #999; font-size: 18px; }
.page-hero-about {
  background-image: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)),
    url('https://groveportautoparts.com/wp-content/uploads/2023/04/junkyard.jpeg');
  background-size: cover;
  background-position: center;
}

/* ── Team ───────────────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 28px;
  margin-top: 48px;
}
.team-card { text-align: center; }
.team-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin-bottom: 16px;
  filter: grayscale(20%);
  transition: filter 0.3s;
}
.team-card:hover img { filter: none; }
.team-card h3 { color: var(--white); font-size: 22px; margin-bottom: 4px; }
.team-card p { color: #999; font-size: 14px; }

/* ── Contact Page ───────────────────────────────────── */
.contact-cards { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }
.contact-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
}
.contact-icon { font-size: 28px; flex-shrink: 0; }
.contact-card strong { display: block; font-weight: 700; margin-bottom: 4px; }
.contact-card a { color: var(--red); font-weight: 600; }
.contact-card span { display: block; color: var(--muted); font-size: 14px; }
.contact-social { display: flex; gap: 16px; margin-bottom: 32px; }
.contact-social a {
  color: var(--mid);
  font-size: 15px;
  font-weight: 600;
  padding: 8px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all 0.2s;
}
.contact-social a:hover { background: var(--red); color: var(--white); border-color: var(--red); }
.contact-form-box {
  background: var(--dark-2);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-top: 32px;
}
.contact-form-box h3 { color: var(--white); margin-bottom: 24px; }
.contact-col { align-items: start; }
.cta-block { margin-top: 24px; }

/* ── CTA Section ────────────────────────────────────── */
.cta-section { text-align: center; }
.cta-section h2 { color: var(--white); margin-bottom: 16px; }
.cta-section p { color: rgba(255,255,255,0.85); margin-bottom: 32px; font-size: 18px; }

/* ── Footer ─────────────────────────────────────────── */
.site-footer { background: var(--dark); color: var(--white); }
.footer-top { padding: 72px 0 48px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 2fr;
  gap: 48px;
}
.footer-brand {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1;
}
.footer-brand em { color: var(--red); font-style: normal; font-size: 14px; letter-spacing: 3px; display: block; }
.footer-col > p { color: #999; font-size: 14px; margin-bottom: 16px; }
.cert-link { color: var(--yellow); font-size: 13px; font-weight: 600; }
.cert-link:hover { color: var(--white); }
.footer-col h4 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  color: var(--white);
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: #999; font-size: 14px; transition: color 0.2s; }
.footer-links a:hover { color: var(--red); }
address p { color: #999; font-size: 14px; margin-bottom: 12px; }
address strong { color: #CCC; font-size: 12px; letter-spacing: 1px; text-transform: uppercase; display: block; margin-bottom: 4px; }
address a { color: var(--yellow); font-weight: 600; }
address a:hover { color: var(--white); }
.social-links { display: flex; gap: 12px; margin-top: 16px; }
.social-links a {
  color: #999;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border: 1px solid #333;
  border-radius: var(--radius);
  transition: all 0.2s;
}
.social-links a:hover { color: var(--white); border-color: var(--red); background: var(--red); }
.footer-bottom {
  border-top: 1px solid #2A2A2A;
  padding: 24px 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { color: #555; font-size: 13px; margin: 0; }
.footer-seo-note { font-size: 12px !important; color: #444 !important; }

/* ── Floating Call Button (mobile) ─────────────────── */
.float-call {
  display: none;
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  background: var(--red);
  color: var(--white);
  border-radius: 100px;
  padding: 16px 28px;
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0.5px;
  box-shadow: 0 8px 32px rgba(196,28,28,0.5);
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  animation: pulse 2.5s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 8px 32px rgba(196,28,28,0.4); }
  50%       { box-shadow: 0 8px 48px rgba(196,28,28,0.75); }
}

/* ── Responsive ─────────────────────────────────────── */
@media (max-width: 900px) {
  .two-col          { grid-template-columns: 1fr; gap: 40px; }
  .two-col.reverse  { direction: ltr; }
  .footer-grid      { grid-template-columns: 1fr 1fr; }
  .about-strip-inner { grid-template-columns: 1fr; text-align: center; }
  .trust-bar-inner  { gap: 8px; }
  .trust-item       { padding: 0 20px; }
  .trust-divider    { height: 32px; }
}

@media (max-width: 640px) {
  .top-bar          { display: none; }
  .header-cta       { display: none; }
  .menu-toggle      { display: flex; }
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--dark-2);
    padding: 20px 24px;
    border-top: 1px solid #333;
    z-index: 999;
  }
  .main-nav.open    { display: block; }
  .nav-list         { flex-direction: column; gap: 4px; }
  .nav-list li a    { display: block; padding: 12px 16px; font-size: 18px; }
  .hero             { padding: 64px 0 80px; }
  .hero-bg-text     { display: none; }
  .hero-ctas        { flex-direction: column; }
  .btn-xl           { width: 100%; justify-content: center; font-size: 18px; }
  .trust-bar-inner  { flex-direction: column; gap: 16px; }
  .trust-divider    { width: 80px; height: 1px; }
  .footer-grid      { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .float-call       { display: flex; }
  .section-light,
  .section-dark,
  .section-red      { padding: 64px 0; }
  .cars-grid        { gap: 12px; }
  .car-card         { width: 140px; }
}

/* ── Reviews ─────────────────────────────────────────── */
.section-reviews { text-align: center; }
.section-reviews h2 { color: var(--white); margin-bottom: 32px; }
.reviews-rating-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.reviews-big-score {
  font-family: var(--font-head);
  font-size: 80px;
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
}
.reviews-stars-block { text-align: left; }
.star-row {
  font-size: 32px;
  color: var(--yellow);
  letter-spacing: 2px;
  line-height: 1;
  margin-bottom: 6px;
}
.reviews-stars-block p { color: #AAA; font-size: 15px; margin-bottom: 10px; }
.reviews-link {
  color: var(--yellow);
  font-size: 14px;
  font-weight: 600;
  text-decoration: underline;
}
.reviews-link:hover { color: var(--white); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  text-align: left;
}
.review-card {
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: transform 0.2s, border-color 0.2s;
}
.review-card:hover {
  transform: translateY(-3px);
  border-color: rgba(245,197,24,0.3);
}
.review-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.reviewer-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.review-header strong { color: var(--white); font-size: 15px; display: block; }
.review-stars { color: var(--yellow); font-size: 14px; letter-spacing: 1px; }
.review-card > p { color: #CCC; font-size: 14px; line-height: 1.6; font-style: italic; }

/* ── FAQ ─────────────────────────────────────────────── */
.section-faq { padding: 96px 0; }
.faq-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  align-items: start;
}
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.faq-item summary {
  padding: 20px 24px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--dark);
  transition: background 0.2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 22px;
  font-weight: 300;
  color: var(--red);
  flex-shrink: 0;
  margin-left: 12px;
  transition: transform 0.2s;
}
.faq-item[open] summary { background: var(--white); }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item > p {
  padding: 0 24px 20px;
  font-size: 15px;
  color: var(--mid);
  margin: 0;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}
.faq-item > p a { color: var(--red); font-weight: 600; }

/* ── Service Areas (dark variant) ────────────────────── */
.section-dark .areas-grid li {
  background: var(--dark-3);
  border-color: rgba(255,255,255,0.08);
  color: #CCC;
}

/* ── Thank You Page ──────────────────────────────────── */
.thankyou-section {
  min-height: 60vh;
  display: flex;
  align-items: center;
  padding: 80px 0;
  background: var(--dark);
  text-align: center;
}
.thankyou-box { max-width: 600px; margin: 0 auto; }
.thankyou-icon { font-size: 72px; margin-bottom: 24px; }
.thankyou-box h1 { color: var(--white); margin-bottom: 16px; }
.thankyou-box p { color: #AAA; font-size: 18px; margin-bottom: 32px; }

/* ── Responsive additions ────────────────────────────── */
@media (max-width: 900px) {
  .faq-inner { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 640px) {
  .reviews-grid { grid-template-columns: 1fr; }
  .reviews-big-score { font-size: 60px; }
  .section-cars .cars-grid { justify-content: center; }
}

/* ── v4 Additions ────────────────────────────────────── */

/* HubSpot Form Overrides */
.hs-form-wrap { margin-top: 8px; }
.hs-form-wrap .hs-form fieldset { max-width: 100% !important; }
.hs-form-wrap .hs-input {
  width: 100% !important;
  padding: 12px 14px !important;
  background: rgba(255,255,255,0.07) !important;
  border: 1px solid rgba(255,255,255,0.18) !important;
  border-radius: var(--radius) !important;
  color: var(--white) !important;
  font-size: 15px !important;
  font-family: var(--font-body) !important;
  margin-bottom: 4px !important;
}
.section-light .hs-form-wrap .hs-input,
.contact-form-box .hs-form-wrap .hs-input {
  background: var(--light) !important;
  border-color: var(--border) !important;
  color: var(--dark) !important;
}
.hs-form-wrap .hs-input::placeholder { color: rgba(255,255,255,0.4) !important; }
.section-light .hs-form-wrap .hs-input::placeholder { color: var(--muted) !important; }
.hs-form-wrap .hs-button {
  background: var(--red) !important;
  color: var(--white) !important;
  border: none !important;
  border-radius: var(--radius) !important;
  padding: 14px 28px !important;
  font-family: var(--font-head) !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  cursor: pointer !important;
  width: 100% !important;
  margin-top: 8px !important;
  transition: background 0.2s !important;
}
.hs-form-wrap .hs-button:hover { background: var(--red-dark) !important; }
.hs-form-wrap .hs-error-msgs { color: #F5A5A5 !important; font-size: 13px !important; }
.hs-form-wrap .hs-form-field { margin-bottom: 14px !important; }
.hs-form-wrap label { color: #CCC !important; font-size: 13px !important; margin-bottom: 4px !important; display: block !important; }
.section-light .hs-form-wrap label { color: var(--mid) !important; }

/* Breadcrumb */
.breadcrumb {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 16px;
}
.breadcrumb a {
  color: rgba(255,255,255,0.7);
  text-decoration: underline;
}
.breadcrumb a:hover { color: var(--white); }

/* How-It-Works Steps */
.how-steps { display: flex; flex-direction: column; gap: 20px; margin: 24px 0; }
.how-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.how-step h4 { font-size: 17px; margin-bottom: 4px; color: var(--dark); }
.section-dark .how-step h4 { color: var(--white); }
.how-step p { font-size: 14px; color: var(--muted); margin: 0; }
.section-dark .how-step p { color: #AAA; }

/* Price Range Box */
.price-range-box {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--light);
  border: 2px solid var(--red);
  border-radius: var(--radius-lg);
  padding: 20px 28px;
  margin: 24px 0 8px;
  width: fit-content;
}
.price-item { display: flex; flex-direction: column; align-items: center; }
.price-label { font-size: 12px; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); margin-bottom: 4px; }
.price-val { font-family: var(--font-head); font-size: 40px; font-weight: 900; color: var(--red); line-height: 1; }
.price-divider { font-size: 32px; color: var(--mid); }

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  text-decoration: none;
  display: block;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
  color: inherit;
}
.section-light .service-card {
  background: var(--light);
  border-color: var(--border);
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--red);
  box-shadow: 0 12px 40px rgba(196,28,28,0.15);
}
.service-icon { font-size: 40px; margin-bottom: 16px; }
.service-card h3 { font-size: 20px; margin-bottom: 10px; color: var(--white); }
.section-light .service-card h3 { color: var(--dark); }
.service-card p { font-size: 14px; color: #AAA; margin: 0; }
.section-light .service-card p { color: var(--muted); }
.service-link { display: inline-block; margin-top: 16px; color: var(--red); font-weight: 600; font-size: 14px; }

/* Area Info Box */
.area-info-box {
  background: var(--light);
  border: 1px solid var(--border);
  border-left: 4px solid var(--red);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  margin-top: 24px;
}
.area-info-box h4 { font-size: 16px; margin-bottom: 12px; color: var(--dark); }
.area-info-box p { font-size: 14px; color: var(--mid); margin-bottom: 8px; }
.area-info-box p:last-child { margin-bottom: 0; }

/* Info Box */
.info-box {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.info-box strong { display: block; margin-bottom: 8px; font-size: 16px; color: var(--dark); }
.info-box p { font-size: 15px; color: var(--mid); }

/* Dark areas-grid link override */
.section-dark .areas-grid li a { color: #CCC; text-decoration: none; }
.section-dark .areas-grid li a:hover { color: var(--yellow); }
.section-light .areas-grid li a { color: var(--dark); text-decoration: none; }
.section-light .areas-grid li a:hover { color: var(--red); }

/* Blog Layout */
.blog-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: start;
}
.blog-main { display: flex; flex-direction: column; gap: 40px; }
.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.blog-card:hover { box-shadow: var(--shadow); }
.blog-card-img img { width: 100%; height: 240px; object-fit: cover; display: block; }
.blog-card-body { padding: 28px; }
.blog-date { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; display: block; }
.blog-card-title { font-size: 24px; margin-bottom: 12px; }
.blog-card-title a { color: var(--dark); text-decoration: none; }
.blog-card-title a:hover { color: var(--red); }
.blog-excerpt { color: var(--muted); font-size: 15px; margin-bottom: 20px; }
.blog-sidebar { display: flex; flex-direction: column; gap: 24px; position: sticky; top: 100px; }
.sidebar-box {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.sidebar-box h3 { font-size: 18px; margin-bottom: 12px; color: var(--dark); }
.sidebar-box p { font-size: 14px; color: var(--muted); margin-bottom: 16px; }
.sidebar-links { display: flex; flex-direction: column; gap: 8px; }
.sidebar-links a { font-size: 14px; color: var(--mid); text-decoration: none; padding: 6px 0; border-bottom: 1px solid var(--border); transition: color 0.2s; }
.sidebar-links a:hover { color: var(--red); }
.blog-post-body { min-width: 0; }
.post-featured-img { margin-bottom: 32px; border-radius: var(--radius-lg); overflow: hidden; }
.post-featured-img img { width: 100%; height: auto; }
.post-content { font-size: 17px; line-height: 1.8; color: var(--dark); }
.post-content h2 { font-size: 28px; margin: 40px 0 16px; }
.post-content h3 { font-size: 22px; margin: 32px 0 12px; }
.post-content p { margin-bottom: 20px; }
.post-content ul, .post-content ol { padding-left: 24px; margin-bottom: 20px; }
.post-content li { margin-bottom: 8px; }
.post-content a { color: var(--red); }
.post-cta-box {
  background: var(--dark);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin: 40px 0;
  text-align: center;
}
.post-cta-box h3 { color: var(--white); margin-bottom: 10px; }
.post-cta-box p { color: #CCC; margin-bottom: 20px; }
.post-tags { margin-top: 32px; }
.tag-pill {
  display: inline-block;
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 4px 14px;
  font-size: 13px;
  color: var(--mid);
  margin: 4px 4px 4px 0;
  text-decoration: none;
  transition: all 0.2s;
}
.tag-pill:hover { background: var(--red); color: var(--white); border-color: var(--red); }
.page-hero-sm { padding: 48px 0; }
.post-meta-header { color: rgba(255,255,255,0.65); font-size: 14px; margin-top: 8px; }

/* Pagination */
.nav-links { display: flex; gap: 8px; margin-top: 32px; }
.nav-links a, .nav-links span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  text-decoration: none;
  transition: all 0.2s;
}
.nav-links a:hover { background: var(--red); color: var(--white); border-color: var(--red); }
.nav-links .current { background: var(--red); color: var(--white); border-color: var(--red); }

/* Section cars - light variant */
.section-light.section-cars { text-align: center; }
.section-light.section-cars h2 { color: var(--dark); margin-bottom: 12px; }
.section-light .car-card { background: var(--light); border: 1px solid var(--border); }

/* Page hero small variant */
.page-hero { padding: 64px 0; }

/* Responsive blog */
@media (max-width: 900px) {
  .blog-layout { grid-template-columns: 1fr; }
  .blog-sidebar { position: static; }
}
@media (max-width: 640px) {
  .price-range-box { flex-direction: column; gap: 8px; }
  .how-step { flex-direction: row; }
}

/* ── Dropdown Navigation ─────────────────────────────── */
.nav-list { position: relative; }
.nav-list > li { position: relative; }
.nav-list > li > a .nav-arrow {
  font-size: 10px;
  margin-left: 4px;
  opacity: 0.6;
  transition: transform 0.2s;
  display: inline-block;
}
.nav-list > li:hover > a .nav-arrow { transform: rotate(180deg); }

.sub-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  min-width: 220px;
  padding: 8px 0;
  z-index: 1000;
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
  list-style: none;
}
.sub-menu::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid rgba(255,255,255,0.1);
}
.sub-menu li a {
  display: block;
  padding: 10px 20px;
  color: #CCC;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  transition: background 0.15s, color 0.15s;
}
.sub-menu li a:hover { background: rgba(255,255,255,0.06); color: var(--white); }
.nav-list > li:hover .sub-menu,
.nav-list > li:focus-within .sub-menu { display: block; }

/* Mobile: sub-menu becomes stacked */
@media (max-width: 640px) {
  .sub-menu {
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    border-radius: 0;
    background: rgba(255,255,255,0.04);
    padding: 0 0 0 16px;
    display: none;
  }
  .sub-menu li a { padding: 10px 16px; font-size: 15px; }
  .nav-list > li.open .sub-menu { display: block; }
  .nav-list > li > a .nav-arrow { float: right; margin-top: 4px; }
}

/* ── Breadcrumb extra ────────────────────────────────── */
.breadcrumb { margin-bottom: 16px; }
