/* ═══════════════════════════════════════════════
   DESIGN TOKENS
═══════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --black:      #111111;
  --black2:     #1a1a1a;
  --charcoal:   #242424;
  --red:        #c8102e;
  --red2:       #a50d25;
  --grey-light: #f2f2f2;
  --white:      #ffffff;
  --muted:      #8a8a8a;
  --border:     #333333;
  --light-bg:   #f5f5f5;
  --container:  1200px;
  --r:          3px;
}
body { font-family: 'Source Sans 3', sans-serif; background: var(--white); color: var(--black); font-size: 16px; line-height: 1.5; }
img  { max-width: 100%; height: auto; display: block; }
a    { text-decoration: none; }

/* ═══════════════════════════════════════════════
   TOPBAR
═══════════════════════════════════════════════ */
.topbar {
  background: var(--black);
  padding: 7px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.topbar-left { display: flex; gap: 20px; align-items: center; }
/* Permanently white; bold on hover */
.topbar-item {
  font-size: 13px;
  color: var(--white);          /* always white */
  display: flex; align-items: center; gap: 6px;
  transition: font-weight 0.1s;
  font-weight: 400;
}
.topbar-item:hover { font-weight: 700; }
.topbar-right { display: flex; align-items: center; gap: 14px; }
/* Dealer Login — prominent CTA in topbar */
.topbar-dealer-btn {
  font-family: 'Oswald', sans-serif; font-weight: 600; font-size: 15px;
  letter-spacing: 0.1em; text-transform: uppercase;
  background: var(--red); color: var(--white);
  padding: 10px 24px; border-radius: var(--r);
  border: none; cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s;
  display: inline-flex; align-items: center; gap: 7px;
}
.topbar-dealer-btn:hover { background: var(--red2); }
/* Phone — white */
.topbar-phone {
  font-family: 'Oswald', sans-serif; font-size: 17px; font-weight: 600;
  color: var(--white);           /* white */
  letter-spacing: 0.03em; white-space: nowrap;
}
.topbar-phone:hover { color: #ddd; }

@media (max-width: 840px) {
  .topbar { padding: 7px 16px; gap: 8px; }
  .topbar-item.tb-hide { display: none; }
}
@media (max-width: 500px) {
  .topbar-dealer-btn .dealer-label { display: none; }
  .topbar-dealer-btn { padding: 7px 12px; font-size: 12px; }
}

/* ═══════════════════════════════════════════════
   NAV  (Auto Repair removed; Dealer Login in topbar)
═══════════════════════════════════════════════ */
nav {
  background: var(--white);
  border-bottom: 3px solid var(--red);
  padding: 0 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 72px;
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 2px 18px rgba(0,0,0,0.10);
}
.logo-wrap { display: flex; align-items: center; flex-shrink: 0; }
.logo-img  { height: 50px; width: auto; }

.nav-links { list-style: none; display: flex; gap: 2px; align-items: center; }
.nav-links li a {
  font-family: 'Oswald', sans-serif; font-weight: 500; font-size: 14px;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--black);
  padding: 8px 11px; border-radius: var(--r);
  transition: background 0.15s, color 0.15s; white-space: nowrap; display: block;
}
.nav-links li a:hover { background: var(--grey-light); color: var(--red); }

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

@media (max-width: 960px) {
  nav { padding: 0 16px; }
  .nav-toggle { display: flex; }
  .nav-links {
    display: none; position: absolute; top: 72px; left: 0; right: 0;
    background: var(--white); border-top: 1px solid #eee;
    border-bottom: 3px solid var(--red); flex-direction: column; gap: 0;
    padding: 6px 0; box-shadow: 0 8px 24px rgba(0,0,0,0.12); z-index: 199;
  }
  .nav-links.open { display: flex; }
  .nav-links li a { padding: 14px 20px; border-radius: 0; font-size: 15px; border-bottom: 1px solid #f0f0f0; }
  .nav-links li:last-child a { border-bottom: none; }
}

/* ═══════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════ */
.hero {
  background: var(--black); min-height: 500px;
  display: grid; grid-template-columns: 1fr 1fr;
  position: relative; overflow: hidden;
}
.hero-left {
  padding: 72px 56px 72px 48px;
  display: flex; flex-direction: column; justify-content: center;
  position: relative; z-index: 2;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(200,16,46,0.15); border: 1px solid rgba(200,16,46,0.35);
  color: var(--red); font-family: 'Oswald', sans-serif; font-size: 11px;
  font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  padding: 6px 14px; border-radius: var(--r); margin-bottom: 20px; width: fit-content;
}
.hero h1 {
  font-family: 'Oswald', sans-serif; font-weight: 700;
  font-size: clamp(40px, 5vw, 66px); line-height: 0.97;
  text-transform: uppercase; letter-spacing: -0.01em;
  color: var(--white); margin-bottom: 20px;
}
.hero h1 span { color: var(--red); display: block; }
.hero-sub {
  font-size: clamp(15px, 1.4vw, 17px); color: var(--muted);
  max-width: 420px; line-height: 1.7; margin-bottom: 32px;
}
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-primary {
  background: var(--red); color: var(--white);
  font-family: 'Oswald', sans-serif; font-weight: 600; font-size: 15px;
  letter-spacing: 0.08em; text-transform: uppercase; padding: 13px 28px;
  border: none; cursor: pointer; display: inline-block; border-radius: var(--r);
  transition: background 0.15s, transform 0.1s;
}
.btn-primary:hover { background: var(--red2); transform: translateY(-1px); }
.btn-white {
  background: var(--white); color: var(--black);
  font-family: 'Oswald', sans-serif; font-weight: 600; font-size: 15px;
  letter-spacing: 0.08em; text-transform: uppercase; padding: 13px 28px;
  border: none; cursor: pointer; display: inline-block; border-radius: var(--r);
  transition: background 0.15s, transform 0.1s;
}
.btn-white:hover { background: #e8e8e8; transform: translateY(-1px); }
.btn-ghost {
  background: transparent; color: var(--white);
  font-family: 'Oswald', sans-serif; font-weight: 600; font-size: 15px;
  letter-spacing: 0.08em; text-transform: uppercase; padding: 13px 28px;
  border: 2px solid var(--border); cursor: pointer; display: inline-block;
  border-radius: var(--r); transition: border-color 0.15s, transform 0.1s;
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.5); transform: translateY(-1px); }

.hero-right {
  display: flex; align-items: center; justify-content: center;
  padding: 56px 48px;
}

/* ═══════════════════════════════════════════════
   HERO VERTICAL TIRE SEARCH CARD
═══════════════════════════════════════════════ */
.hero-search-card {
  background: var(--white);
  border-radius: 6px;
  padding: 26px 22px 28px;
  width: clamp(320px, 38vw, 480px);
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}
.hero-search-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 700; font-size: 15px;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--black); text-align: center;
  padding-bottom: 12px;
  border-bottom: 1px solid #e0e0e0;
  margin-bottom: 2px;
}
.hero-search-tabs { display: flex; gap: 3px; }
.hero-search-tab {
  flex: 1; background: var(--grey-light); color: #555;
  font-family: 'Oswald', sans-serif; font-weight: 600; font-size: 12px;
  letter-spacing: 0.1em; text-transform: uppercase; padding: 8px 10px;
  border: 1px solid #ddd; cursor: pointer; border-radius: var(--r); transition: background 0.15s;
  text-align: center;
}
.hero-search-tab.active { background: var(--black); color: var(--white); border-color: var(--black); }
.hero-search-tab:hover:not(.active)  { background: #e5e5e5; }
.hero-search-row { display: flex; flex-direction: column; gap: 8px; }
.hero-search-field select {
  width: 100%;
  background: var(--white);
  border: 1px solid #ccc;
  color: var(--black);
  padding: 10px 12px;
  font-family: 'Source Sans 3', sans-serif; font-size: 14px;
  outline: none; cursor: pointer; appearance: none; -webkit-appearance: none;
  border-radius: var(--r); transition: border-color 0.15s;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='rgba(0,0,0,0.4)'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center; padding-right: 32px;
}
.hero-search-field select:focus { border-color: #888; }
.hero-search-field select option { background: #fff; color: #111; }
.btn-search-hero {
  width: 100%; background: var(--black); color: var(--white);
  font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 14px;
  letter-spacing: 0.1em; text-transform: uppercase; padding: 12px;
  border: none; cursor: pointer; border-radius: var(--r);
  transition: background 0.15s; margin-top: 4px;
}
.btn-search-hero:hover { background: #000; }

.hero-tread {
  position: absolute; bottom: 0; left: 0; right: 0; height: 5px;
  background: repeating-linear-gradient(90deg, var(--red) 0, var(--red) 18px, transparent 18px, transparent 26px);
  opacity: 0.4; grid-column: 1 / -1;
}

@media (max-width: 860px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 48px 20px; text-align: center; align-items: center; }
  .hero-sub  { max-width: 100%; }
  .hero-right { padding: 0 20px 48px; }
  .hero-search-card { width: 100%; max-width: 420px; }
}
@media (max-width: 480px) {
  .hero-right { padding: 0 16px 36px; }
  .hero-search-card { width: 100%; }
}

/* ═══════════════════════════════════════════════
   STATS BAR
═══════════════════════════════════════════════ */
.stats-bar { background: var(--grey-light); border-bottom: 1px solid #ddd; display: flex; overflow-x: auto; }
.stat-item { flex: 1; min-width: 110px; padding: 18px 20px; display: flex; align-items: center; gap: 12px; border-right: 1px solid #ddd; }
.stat-item:last-child { border-right: none; }
.stat-num { font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 32px; color: var(--red); line-height: 1; white-space: nowrap; }
.stat-label { font-size: 12px; color: #666; line-height: 1.4; }

/* ═══════════════════════════════════════════════
   REBATES SECTION  (narrow carousel, below stats)
═══════════════════════════════════════════════ */
.rebates-section {
  background: var(--white);
  padding: 20px 48px 24px;
  border-bottom: 1px solid #e8e8e8;
}
.rebates-section-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 14px;
}
.rebates-section-left .rebates-eyebrow {
  font-family: 'Oswald', sans-serif; font-size: 11px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--red);
  margin-bottom: 2px;
}
.rebates-section-left .rebates-title {
  font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 20px;
  text-transform: uppercase; color: var(--black); line-height: 1;
}
.rebates-view-all {
  font-family: 'Oswald', sans-serif; font-size: 12px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--red); border: 1.5px solid var(--red);
  padding: 6px 14px; border-radius: var(--r);
  transition: background 0.15s;
}
.rebates-view-all:hover { background: rgba(200,16,46,0.06); }
.rebates-carousel-wrap {
  display: flex; align-items: center; gap: 10px;
}
.rebates-track-outer {
  flex: 1; overflow: hidden; border-radius: var(--r);
}
.rebates-track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.4,0,0.2,1);
}
/* Each card takes full track width */
.rebate-card {
  min-width: 100%;
  display: grid; grid-template-columns: 280px 1fr;
  border: 1px solid #d8d8d8;
  border-radius: var(--r);
  overflow: hidden;
  height: 148px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.07);
}
.rebate-card-left {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 14px 20px; text-align: center; gap: 4px;
}
.rebate-brand {
  font-family: 'Oswald', sans-serif; font-weight: 700;
  font-size: 15px; text-transform: uppercase; letter-spacing: 0.1em;
  color: rgba(255,255,255,0.9); line-height: 1.1; margin-bottom: 4px;
}
.rebate-amount-prefix {
  font-family: 'Oswald', sans-serif; font-size: 11px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.7); display: block; margin-bottom: 1px;
}
.rebate-amount {
  font-family: 'Oswald', sans-serif; font-weight: 700;
  font-size: clamp(30px, 3.5vw, 40px); color: var(--white);
  line-height: 1;
}
.rebate-amount-suffix {
  font-family: 'Oswald', sans-serif; font-size: 12px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.75); margin-top: 3px;
}
.rebate-card-right {
  background: var(--white); padding: 16px 22px;
  display: flex; flex-direction: column; justify-content: center; gap: 5px;
}
.rebate-offer-desc {
  font-size: 15px; color: #111; font-weight: 600; line-height: 1.4; margin-bottom: 4px;
}
.rebate-meta-row {
  display: flex; gap: 20px; flex-wrap: wrap; font-size: 13px; color: #555;
}
.rebate-meta-row strong { color: #222; font-weight: 600; }
.rebate-ctas {
  display: flex; gap: 8px; flex-wrap: wrap; margin-top: 8px;
}
.rebate-btn {
  font-family: 'Oswald', sans-serif; font-size: 11px; font-weight: 700;
  letter-spacing: 0.09em; text-transform: uppercase;
  padding: 7px 13px; border-radius: var(--r);
  border: 1.5px solid; cursor: pointer; transition: all 0.15s;
  display: inline-flex; align-items: center; gap: 5px;
}
.rebate-btn-fill { background: var(--red); color: var(--white); border-color: var(--red); }
.rebate-btn-fill:hover { background: var(--red2); border-color: var(--red2); }
.rebate-btn-outline { background: transparent; color: #333; border-color: #bbb; }
.rebate-btn-outline:hover { border-color: #888; color: #111; }

/* Carousel nav buttons (shared with brands carousel) */
.carousel-btn {
  background: var(--grey-light); border: 1px solid #d0d0d0; color: #444;
  font-size: 24px; width: 38px; height: 38px;
  border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
  flex-shrink: 0; line-height: 1; padding: 0;
}
.carousel-btn:hover {
  background: var(--red); border-color: var(--red); color: var(--white);
}
.carousel-btn.dark {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border); color: var(--white);
}
.carousel-btn.dark:hover {
  background: rgba(200,16,46,0.2); border-color: var(--red); color: var(--red);
}

/* Rebate dots */
.rebate-dots {
  display: flex; justify-content: center; gap: 6px; margin-top: 12px;
}
.rebate-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #ccc; border: none; cursor: pointer; padding: 0;
  transition: background 0.2s, transform 0.2s;
}
.rebate-dot.active { background: var(--red); transform: scale(1.35); }

@media (max-width: 900px) {
  .rebates-section { padding: 18px 20px 20px; }
  .rebate-card { grid-template-columns: 200px 1fr; height: auto; min-height: 140px; }
  .rebate-card-left { padding: 12px 14px; }
}
@media (max-width: 620px) {
  .rebate-card { grid-template-columns: 1fr; height: auto; }
  .rebate-card-left { padding: 14px 16px; min-height: 90px; }
  .rebate-card-right { padding: 12px 14px; }
  .rebate-amount { font-size: 28px; }
  .rebates-section-header { flex-wrap: wrap; gap: 8px; }
}

/* ═══════════════════════════════════════════════
   SHARED SECTION TYPOGRAPHY
═══════════════════════════════════════════════ */
.sec-eyebrow { font-family: 'Oswald', sans-serif; font-size: 11px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--red); margin-bottom: 8px; }
.sec-title   { font-family: 'Oswald', sans-serif; font-weight: 700; font-size: clamp(28px, 4vw, 42px); text-transform: uppercase; line-height: 1; letter-spacing: -0.01em; margin-bottom: 36px; color: var(--black); }

/* ═══════════════════════════════════════════════
   COMMON EFFECTS
═══════════════════════════════════════════════ */
.hover-card-effect {
  position: relative;
  overflow: hidden; 
  transition: box-shadow 0.2s, transform 0.15s;
}
.hover-card-effect::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
  background: var(--red); transform: scaleY(0); transform-origin: bottom; transition: transform 0.2s;
}
.hover-card-effect:hover { box-shadow: 0 6px 26px rgba(0,0,0,0.09); transform: translateY(-2px); }
.hover-card-effect:hover::before { transform: scaleY(1); }

/* ═══════════════════════════════════════════════
   SERVICES
═══════════════════════════════════════════════ */
.services-section { padding: 72px 48px; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.svc-card {
  border: 1px solid #e0e0e0; padding: 30px 22px;
  background: var(--white); border-radius: var(--r);
  display: block; text-decoration: none; color: inherit;
}
.svc-icon { font-size: 34px; margin-bottom: 12px; display: block; line-height: 1; }
.svc-card h3 { font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 17px; text-transform: uppercase; letter-spacing: 0.04em; color: var(--black); margin-bottom: 8px; }
.svc-card p  { font-size: 14px; color: #666; line-height: 1.65; margin-bottom: 14px; }
.svc-link    { font-family: 'Oswald', sans-serif; font-weight: 600; font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--red); }
.svc-link:hover { text-decoration: underline; }

@media (max-width: 860px) { .services-section { padding: 56px 20px; } .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .services-grid { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════════════
   BRANDS CAROUSEL
═══════════════════════════════════════════════ */
.brands-carousel-section {
  background: var(--black2);
  padding: 44px 48px;
  border-top: 1px solid #2a2a2a;
}
.brands-carousel-header { text-align: center; margin-bottom: 28px; }
.brands-carousel-eyebrow {
  font-family: 'Oswald', sans-serif; font-size: 11px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase; color: #777; margin-bottom: 6px;
}
.brands-carousel-title {
  font-family: 'Oswald', sans-serif; font-weight: 700;
  font-size: clamp(20px, 2.5vw, 28px); text-transform: uppercase;
  color: var(--white); letter-spacing: -0.01em;
}
.brands-carousel-title span { color: var(--red); }
.brands-carousel-wrapper { display: flex; align-items: center; gap: 16px; max-width: 960px; margin: 0 auto; }
.brands-carousel-track-wrap { flex: 1; overflow: hidden; }
.brands-carousel-track { display: flex; gap: 14px; transition: transform 0.45s cubic-bezier(0.4,0,0.2,1); }
.brand-carousel-item {
  flex: 0 0 calc((100% - 28px) / 3);
  background: rgba(255,255,255,0.05); border: 1px solid var(--border);
  color: var(--white); font-family: 'Oswald', sans-serif;
  font-weight: 600; font-size: 15px; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 22px 16px; border-radius: var(--r); transition: all 0.2s; text-align: center;
}
.brand-carousel-item:hover { border-color: var(--red); color: var(--red); background: rgba(200,16,46,0.08); }
.carousel-dots { display: flex; justify-content: center; gap: 6px; margin-top: 20px; }
.carousel-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,0.2); border: none; cursor: pointer; padding: 0;
  transition: background 0.2s, transform 0.2s;
}
.carousel-dot.active { background: var(--red); transform: scale(1.3); }

@media (max-width: 720px) { .brands-carousel-section { padding: 36px 20px; } }
@media (max-width: 500px) {
  .brand-carousel-item { flex: 0 0 calc((100% - 14px) / 2); font-size: 13px; padding: 16px 10px; }
  .brands-carousel-track { gap: 10px; }
}

/* ═══════════════════════════════════════════════
   WHY KERLE
═══════════════════════════════════════════════ */
.why-section { padding: 72px 48px; display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.why-content .sec-title { margin-bottom: 16px; }
.why-content > p { color: #555; font-size: 16px; line-height: 1.75; margin-bottom: 26px; }
.why-list { list-style: none; margin-bottom: 32px; }
.why-list li { display: flex; align-items: flex-start; gap: 10px; padding: 11px 0; border-bottom: 1px solid #ebebeb; font-size: 15px; color: var(--black); }
.why-list li:last-child { border-bottom: none; }
.why-list li::before { content: '✓'; background: var(--red); color: var(--white); width: 20px; height: 20px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; flex-shrink: 0; margin-top: 2px; }
.why-visual { display: grid; grid-template-columns: 1fr 1fr; gap: 3px; background: #ccc; }
.why-stat { background: var(--black); padding: 32px 20px; text-align: center; }
.why-stat-num { font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 42px; color: var(--red); line-height: 1; margin-bottom: 6px; }
.why-stat-label { font-family: 'Oswald', sans-serif; font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
@media (max-width: 860px) {
  .why-section { grid-template-columns: 1fr; gap: 40px; padding: 56px 20px; }
  .why-visual { max-width: 400px; }
}

/* ═══════════════════════════════════════════════
   REVIEWS
═══════════════════════════════════════════════ */
.reviews-section { background: var(--light-bg); padding: 72px 48px; border-top: 1px solid #e0e0e0; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 36px; }
.review-card { background: var(--white); padding: 28px 24px; border: 1px solid #e0e0e0; border-radius: var(--r); }
.review-stars { color: var(--red); font-size: 16px; letter-spacing: 2px; margin-bottom: 12px; }
.review-text  { font-size: 15px; color: #444; line-height: 1.7; margin-bottom: 18px; font-style: italic; }
.review-author { font-family: 'Oswald', sans-serif; font-weight: 600; font-size: 13px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--black); }
@media (max-width: 860px) { .reviews-section { padding: 56px 20px; } .reviews-grid { grid-template-columns: 1fr; } }
@media (max-width: 600px) { .reviews-grid { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════════════
   CONTACT / HOURS / FORM
═══════════════════════════════════════════════ */
.contact-section { background: var(--black); padding: 72px 48px; display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 48px; }
.contact-block h3 { font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 16px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--red); margin-bottom: 18px; padding-bottom: 10px; border-bottom: 1px solid var(--border); }
.contact-block p { color: var(--muted); font-size: 15px; line-height: 1.8; }
.contact-block a { color: var(--white); }
.contact-block a:hover { color: var(--red); }
.hours-row { display: flex; justify-content: space-between; font-size: 14px; padding: 7px 0; border-bottom: 1px solid var(--border); color: var(--muted); }
.hours-row .day { color: var(--white); font-weight: 600; }
.hours-row:last-child { border-bottom: none; }
.contact-form { display: flex; flex-direction: column; gap: 10px; }
.contact-form input, .contact-form select, .contact-form textarea {
  background: rgba(255,255,255,0.06); border: 1px solid var(--border);
  color: var(--white); padding: 12px 14px;
  font-family: 'Source Sans 3', sans-serif; font-size: 15px;
  outline: none; border-radius: var(--r); transition: border-color 0.15s; resize: vertical;
}
.contact-form input::placeholder, .contact-form textarea::placeholder { color: rgba(255,255,255,0.3); }
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus { border-color: rgba(200,16,46,0.6); }
.contact-form select option { background: #1a1a1a; }
.btn-submit {
  background: var(--red); color: var(--white);
  font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 14px;
  letter-spacing: 0.1em; text-transform: uppercase; padding: 14px;
  border: none; cursor: pointer; border-radius: var(--r); transition: background 0.15s;
}
.btn-submit:hover { background: var(--red2); }
@media (max-width: 900px) { .contact-section { grid-template-columns: 1fr 1fr; padding: 56px 20px; gap: 36px; } }
@media (max-width: 600px) { .contact-section { grid-template-columns: 1fr; padding: 48px 20px; } }

/* ═══════════════════════════════════════════════
   FOOTER — PAYMENT BAR + BOTTOM ROW
═══════════════════════════════════════════════ */
footer { background: #0a0a0a; border-top: 3px solid var(--red); }
.footer-payments {
  background: #111; border-bottom: 1px solid #222;
  padding: 18px 48px;
  display: flex; align-items: center; justify-content: center;
  gap: 32px; flex-wrap: wrap;
}
.footer-payments-label {
  font-family: 'Oswald', sans-serif; font-size: 11px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase; color: #555; white-space: nowrap;
}
.footer-payment-methods { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.payment-chip {
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.05); border: 1px solid #2a2a2a;
  border-radius: 5px; padding: 8px 18px; transition: border-color 0.15s, background 0.15s;
}
.payment-chip:hover { border-color: #3a3a3a; background: rgba(255,255,255,0.08); }
.payment-chip-icon { font-size: 18px; line-height: 1; }
.payment-chip-label {
  font-family: 'Oswald', sans-serif; font-weight: 600; font-size: 13px;
  text-transform: uppercase; letter-spacing: 0.06em; color: var(--white);
}
.payment-chip-sub { font-size: 11px; color: #666; font-family: 'Source Sans 3', sans-serif; }
.footer-bottom {
  padding: 28px 48px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
}
.footer-logo { font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 20px; text-transform: uppercase; color: var(--white); letter-spacing: 0.04em; }
.footer-logo span { color: var(--red); }
.footer-copy  { font-size: 13px; color: #555; }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-links a { font-size: 13px; color: #555; }
.footer-links a:hover { color: var(--muted); }
@media (max-width: 720px) {
  .footer-payments { padding: 18px 20px; gap: 16px; }
  .footer-bottom { padding: 24px 20px; flex-direction: column; align-items: flex-start; gap: 12px; }
}
@media (max-width: 500px) {
  .footer-payment-methods { gap: 8px; }
  .payment-chip { padding: 7px 12px; }
}

/* ── Inline SVG icons (replace emoji) ─────────────────────── */
.kt-icon { width: 1em; height: 1em; display: inline-block; vertical-align: -0.14em; flex-shrink: 0; }
.topbar-item .kt-icon, .topbar-dealer-btn .kt-icon { width: 15px; height: 15px; }
.svc-icon .kt-icon, .svc-tile-icon .kt-icon, .info-card-icon .kt-icon,
.included-card-icon .kt-icon, .payment-chip-icon .kt-icon,
.hero-search-title .kt-icon { color: var(--red); }
.rebate-btn .kt-icon { vertical-align: -0.12em; }
