/*
Theme Name: Hermanus First V36
Description: Single-page landing page for Fangio Auto Service Hermanus
Author: Fangio Auto
Version: 1.52
*/

/* ============================================================
   CSS VARIABLES
   ============================================================ */
:root {
  --red: #E8000E;
  --red-hover: #c5000b;
  --red-dark: #8a000a;
  --black: #111;
  --white: #fff;
  --grey-bg: #f5f5f5;
  --grey-muted: #666;
  --border: #e8e8e8;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 400;
  color: var(--black);
  background: var(--white);
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }

/* ============================================================
   ACCESSIBILITY -- SKIP LINK & FOCUS STATES
   ============================================================ */
.skip-link {
  position: absolute;
  top: -60px;
  left: 16px;
  z-index: 10000;
  background: var(--red);
  color: var(--white);
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 3px;
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 12px;
  outline: 3px solid var(--white);
  outline-offset: 2px;
}

/* Hide the default focus ring for mouse users, keep it for keyboard users */
:focus { outline: none; }
:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 2px;
  border-radius: 2px;
}
/* Buttons/CTAs get a softer ring that stands out against red backgrounds */
.btn-primary:focus-visible,
.btn-whatsapp:focus-visible,
.btn-outline:focus-visible,
.nav-cta:focus-visible,
.brand-card-cta:focus-visible,
.reviews-btn:focus-visible,
.reviews-dot:focus-visible {
  outline: 3px solid var(--black);
  outline-offset: 3px;
}

/* Respect users who've asked for less motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .ticker-track { animation: none !important; }
}

/* ============================================================
   NAV
   ============================================================ */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 2px solid var(--red);
  padding: 10px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  height: 52px;
  width: auto;
}

.nav-wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1;
  text-decoration: none;
  gap: 3px;
}

.nav-wordmark-main {
  font-size: 22px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--black);
}

.nav-wordmark-sub {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 5px;
  color: var(--red);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-phone {
  font-size: 26px;
  font-weight: 800;
  color: var(--black);
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.nav-phone:hover { color: var(--red); }

.nav-cta {
  background: var(--red);
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 10px 22px;
  border-radius: 3px;
  transition: background 0.2s;
  white-space: nowrap;
}

.nav-cta:hover { background: var(--red-hover); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: var(--white);
  color: var(--black);
  padding: 70px 40px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  min-height: 480px;
  border-bottom: 1px solid var(--border);
}

.hero-content { max-width: 580px; }

.hero-eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 18px;
}

/* Hero title */
.hero-title {
  font-size: clamp(52px, 6vw, 88px);
  font-weight: 900;
  line-height: 0.92;
  text-transform: uppercase;
  letter-spacing: 0;
  margin-bottom: 24px;
}

.hero-title .hero-service { color: var(--black); }
.hero-title .hero-amp { color: var(--red); font-size: 0.75em; }
.hero-title .hero-repairs-solid { color: #757575; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero-sub {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--grey-muted);
  margin-bottom: 32px;
  max-width: 460px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 14px 28px;
  border-radius: 3px;
  transition: background 0.2s;
}

.btn-primary:hover { background: var(--red-hover); }

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 14px 28px;
  border-radius: 3px;
  transition: background 0.2s;
}

.btn-whatsapp:hover { background: #1da851; }

.btn-outline {
  background: transparent;
  color: var(--black);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 14px 28px;
  border: 2px solid #bbb;
  border-radius: 3px;
  transition: border-color 0.2s, color 0.2s;
}

.btn-outline:hover { border-color: var(--black); color: var(--black); }

/* Hero stats strip */
.hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.hero-stat-number {
  font-size: 36px;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
}

.hero-stat-label {
  font-size: 13px;
  font-weight: 400;
  color: var(--grey-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 2px;
}

/* Hero right panel */
.hero-panel {
  background: #1a1a1a;
  border-radius: 6px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-panel-title {
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 4px;
}

.hero-panel-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid #2a2a2a;
}

.hero-panel-item:last-child { border-bottom: none; }

.hero-panel-icon {
  width: 40px;
  height: 40px;
  background: var(--red);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-panel-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--white);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-panel-text-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #777;
}

.hero-panel-text-value {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
}

/* ============================================================
   TICKER / SERVICES STRIP
   ============================================================ */
.ticker-strip {
  background: var(--red);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}

.ticker-track {
  display: inline-flex;
  animation: ticker 30s linear infinite;
}

.ticker-track span {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--white);
  padding: 0 28px;
}

.ticker-track span::after {
  content: '•';
  margin-left: 28px;
  opacity: 0.5;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================================
   SERVICES GRID
   ============================================================ */
.services-section {
  background: var(--white);
  padding: 80px 40px;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--red);
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: var(--grey-bg);
  padding: 32px 24px;
  text-align: center;
  transition: background 0.2s, transform 0.2s;
  cursor: default;
}

.service-card:hover {
  background: var(--black);
}

.service-card:hover .service-name { color: var(--white); }
.service-card:hover .service-icon svg { stroke: var(--red); color: var(--red); }

.service-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 16px;
}

.service-icon svg {
  width: 52px;
  height: 52px;
  fill: none;
  stroke: var(--black);
  color: var(--black);
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.2s, color 0.2s;
}

.service-name {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.2s;
}

.service-card--more {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--black);
  cursor: default;
}

.service-card--more .service-more-amp {
  font-size: 52px;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
  margin-bottom: 8px;
}

.service-card--more .service-name {
  color: var(--white);
}

.service-card--more:hover {
  background: var(--red);
}

.service-card--more:hover .service-more-amp {
  color: var(--white);
}

/* ============================================================
   SEO INTRO
   ============================================================ */
.seo-intro {
  padding: 72px 24px;
  background: var(--white);
}

.seo-intro-inner {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 48px;
  align-items: start;
}

.seo-intro-title {
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
}

.seo-intro-copy {
  display: grid;
  gap: 18px;
  font-family: Arial, sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: #333;
}

/* ============================================================
   TRUST / STATS SECTION
   ============================================================ */
.trust-section {
  background: var(--black);
  color: var(--white);
  padding: 70px 40px;
  text-align: center;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 40px;
  max-width: 900px;
  margin: 0 auto 50px;
}

.trust-item-number {
  font-size: 56px;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
}

.trust-item-label {
  font-size: 14px;
  font-weight: 400;
  color: #aaa;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 8px;
}

.trust-badges {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.trust-badge {
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 4px;
  padding: 14px 24px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #ccc;
}

/* ============================================================
   AREAS SECTION
   ============================================================ */
.areas-section {
  background: var(--grey-bg);
  padding: 70px 40px;
  text-align: center;
}

.areas-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 900px;
  margin: 0 auto;
}

.area-tag {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 8px 18px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--black);
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-section {
  background: var(--white);
  padding: 80px 40px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}

.contact-details { display: flex; flex-direction: column; gap: 24px; }

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-item-icon {
  width: 44px;
  height: 44px;
  background: var(--red);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--white);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-item-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--grey-muted);
  margin-bottom: 4px;
}

.contact-item-value {
  font-size: 18px;
  font-weight: 700;
  color: var(--black);
}

.contact-item-value a { color: inherit; }
.contact-item-value a:hover { color: var(--red); }
.hero-panel-text-value a { color: var(--white); }
.hero-panel-text-value a:hover { color: #ccc; }

.contact-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.map-container {
  border-radius: 6px;
  overflow: hidden;
  border: 2px solid var(--border);
  height: 400px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #0a0a0a;
  color: #666;
  padding: 30px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-logo img { height: 38px; width: auto; opacity: 0.7; }

.footer-copy {
  font-size: 13px;
  text-align: center;
}

.footer-links {
  font-size: 13px;
  display: flex;
  gap: 20px;
}

.footer-links a:hover { color: var(--white); }

/* ============================================================
   WHATSAPP FLOW
   ============================================================ */
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.whatsapp-flow {
  background: var(--white);
  padding: 80px 40px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.whatsapp-flow::before {
  content: 'WHATSAPP';
  position: absolute;
  left: -40px; top: 60px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900; font-size: 280px;
  line-height: 0.8; color: rgba(0,0,0,0.03);
  letter-spacing: -12px; pointer-events: none; white-space: nowrap;
}

.wa-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center; position: relative;
}

.wa-text .eyebrow {
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 3px;
  color: var(--red); margin-bottom: 20px;
  display: inline-flex; align-items: center; gap: 12px;
}

.wa-text .eyebrow::before {
  content: ''; width: 28px; height: 1px; background: var(--red);
}

.wa-text h2 {
  font-weight: 900;
  font-size: clamp(42px, 5.5vw, 78px);
  line-height: 0.92; text-transform: uppercase;
  color: var(--black); letter-spacing: -1.5px; margin-bottom: 28px;
}

.wa-text h2 .red { color: var(--red); }

.wa-text h2 .stroke {
  -webkit-text-stroke: 1.5px var(--black);
  color: transparent; font-style: italic;
}

.wa-text p {
  font-size: 17px; line-height: 1.65;
  color: var(--grey-muted); margin-bottom: 24px;
}

.wa-steps {
  display: flex; flex-direction: column;
  gap: 14px; margin-top: 40px;
}

.wa-step {
  display: grid; grid-template-columns: auto 1fr;
  gap: 20px; padding: 18px 0;
  border-top: 1px solid var(--border);
}

.wa-step:last-child { border-bottom: 1px solid var(--border); }

.wa-step .step-num {
  font-weight: 900; font-size: 26px;
  color: var(--red); line-height: 1; padding-top: 2px; min-width: 40px;
}

.wa-step .step-body h4 {
  font-weight: 800; font-size: 16px;
  text-transform: uppercase; letter-spacing: 1px;
  color: var(--black); margin-bottom: 4px;
}

.wa-step .step-body p {
  font-size: 14px; color: var(--grey-muted);
  margin: 0; line-height: 1.5;
}

.wa-phone-wrap { display: flex; justify-content: center; position: relative; }

.wa-phone {
  width: 320px; background: #111;
  border: 10px solid #1f1f1f; border-radius: 40px;
  padding: 0; position: relative;
  box-shadow: 0 0 0 2px #2a2a2a, 0 30px 60px rgba(0,0,0,0.18);
  overflow: hidden;
}

.wa-phone::before {
  content: ''; position: absolute;
  top: 10px; left: 50%; transform: translateX(-50%);
  width: 90px; height: 22px; background: #000;
  border-radius: 12px; z-index: 3;
}

.wa-header {
  background: #1f2c34; padding: 44px 14px 14px;
  display: flex; align-items: center; gap: 12px;
  color: #e9edef; font-size: 13px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.wa-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 900; font-size: 16px;
}

.wa-header .info .name { font-weight: 600; color: #fff; font-size: 14px; }
.wa-header .info .status { font-size: 11px; color: #8696a0; margin-top: 2px; }

.wa-header .info .status .dot {
  display: inline-block; width: 6px; height: 6px;
  border-radius: 50%; background: #4ade80; margin-right: 4px;
  animation: pulse 2s infinite;
}

.wa-chat {
  background: radial-gradient(ellipse at center, rgba(232,0,14,0.015), transparent 60%), #0b141a;
  padding: 18px 14px 24px;
  min-height: 440px;
  display: flex; flex-direction: column; gap: 10px;
  font-size: 13px; color: #e9edef;
}

.wa-day {
  align-self: center;
  background: rgba(43,57,66,0.85);
  color: #8696a0; font-size: 10px;
  padding: 4px 10px; border-radius: 4px; margin: 4px 0;
}

.wa-bubble {
  max-width: 82%; padding: 8px 10px 16px 10px;
  border-radius: 8px; position: relative;
  line-height: 1.4; font-size: 13px;
}

.wa-bubble.them {
  background: #202c33; align-self: flex-start;
  border-top-left-radius: 2px; width: 82%;
}

.wa-bubble.us {
  background: #005c4b; align-self: flex-end;
  border-top-right-radius: 2px;
}

.wa-bubble .time {
  position: absolute; right: 8px; bottom: 3px;
  font-size: 9px; color: #8696a0;
}

.wa-bubble.us .time { color: #a4c5bf; }
.wa-bubble .ticks { color: #53bdeb; font-size: 10px; margin-left: 2px; }

.wa-bubble.wa-pdf {
  display: flex; align-items: center; gap: 10px; padding-bottom: 20px;
}

.wa-bubble.wa-pdf .pdf-icon {
  background: #c0392b; color: #fff;
  font-size: 9px; font-weight: 700; letter-spacing: 1px;
  padding: 6px 8px; border-radius: 4px; flex-shrink: 0;
}

.wa-bubble.wa-pdf .pdf-info { flex: 1; min-width: 0; }

.wa-bubble.wa-pdf .pdf-name {
  font-size: 12px; font-weight: 600; color: #e9edef;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

.wa-bubble.wa-pdf .pdf-meta { font-size: 10px; color: #8696a0; margin-top: 2px; }
.wa-bubble.wa-optional { opacity: 0.85; font-size: 12px; }

/* ============================================================
   REVIEWS CAROUSEL
   ============================================================ */
.reviews-section {
  background: var(--grey-bg);
  padding: 80px 40px;
  overflow: hidden;
}

.reviews-rating-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 12px;
}

.reviews-stars {
  display: flex;
  gap: 3px;
}

.reviews-stars svg {
  width: 20px;
  height: 20px;
  fill: #F5A623;
}

.reviews-score {
  font-size: 15px;
  font-weight: 700;
  color: var(--grey-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.reviews-cta-link {
  display: inline-block;
  margin-top: 14px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--red);
  text-decoration: none;
}
.reviews-cta-link:hover { color: var(--red-hover); }

.reviews-carousel-wrap {
  position: relative;
  max-width: 1200px;
  margin: 40px auto 0;
  overflow: hidden;
}

.reviews-track {
  display: flex;
  gap: 20px;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 32px 28px;
  flex: 0 0 calc(33.333% - 14px);
  min-width: calc(33.333% - 14px);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.review-stars {
  color: #F5A623;
  font-size: 18px;
  letter-spacing: 2px;
}

.review-text {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.65;
  color: #444;
  flex: 1;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 4px;
}

.review-avatar {
  width: 40px;
  height: 40px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 800;
  flex-shrink: 0;
}

.review-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--black);
}

.review-source {
  font-size: 12px;
  font-weight: 400;
  color: var(--grey-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Carousel buttons */
.reviews-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
  z-index: 10;
}

.reviews-btn:hover { background: var(--red); border-color: var(--red); color: var(--white); }
.reviews-btn svg { width: 18px; height: 18px; }
.reviews-prev { left: -22px; }
.reviews-next { right: -22px; }

/* Dots */
.reviews-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}

.reviews-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ccc;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}

.reviews-dot.active {
  background: var(--red);
  transform: scale(1.3);
}

/* ============================================================
   BRAND SPOTLIGHT -- RENAULT + NISSAN SPLIT
   ============================================================ */
.brand-spotlight {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 90px 40px;
  overflow: hidden;
  position: relative;
}

/* Shared header */
.brand-spotlight-header {
  max-width: 900px;
  margin: 0 auto 64px;
  text-align: center;
}

.brand-spotlight-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}

.brand-spotlight-eyebrow::before,
.brand-spotlight-eyebrow::after {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--red);
}

.brand-spotlight-heading {
  font-size: clamp(38px, 4.8vw, 64px);
  font-weight: 900;
  line-height: 0.98;
  text-transform: uppercase;
  letter-spacing: -1px;
  color: var(--black);
  margin-bottom: 22px;
}

.brand-spotlight-red {
  color: var(--red);
}

.brand-spotlight-intro {
  font-size: 17px;
  line-height: 1.65;
  color: var(--grey-muted);
  max-width: 680px;
  margin: 0 auto;
}

/* Split grid */
.brand-spotlight-split {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: stretch;
}

/* Individual brand card */
.brand-card {
  background: var(--grey-bg);
  border: 1px solid var(--border);
  padding: 44px 40px 40px;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.brand-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.brand-card-logo-wrap {
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
}

.brand-card-logo {
  width: auto;
  object-fit: contain;
  display: block;
}

/* Per-brand sizing. Renault is a tall diamond, Nissan is a wide wordmark,
   so they get sized for equal optical weight rather than equal height. */
.brand-card-logo--renault {
  height: 110px;
  max-width: 110px;
}

.brand-card-logo--nissan {
  height: 70px;
  max-width: 220px;
}

.brand-card-title {
  font-size: clamp(34px, 3.6vw, 52px);
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  color: var(--black);
  margin-bottom: 24px;
}

.brand-card-body {
  font-size: 16px;
  line-height: 1.65;
  color: var(--grey-muted);
  margin-bottom: 20px;
}

.brand-card-body strong {
  color: var(--black);
  font-weight: 700;
}

.brand-card-models {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #666;
  text-transform: uppercase;
  margin-bottom: 32px;
  line-height: 1.55;
}

.brand-card-cta {
  display: inline-block;
  align-self: flex-start;
  margin-top: auto;
  background: var(--red);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 15px 30px;
  border-radius: 3px;
  transition: background 0.2s;
}

.brand-card-cta:hover {
  background: var(--red-hover);
}

/* ============================================================
   RESPONSIVE -- 920px (tablet)
   ============================================================ */
@media (max-width: 920px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 50px 24px 48px;
    min-height: auto;
  }

  .hero-panel { display: none; }

  .hero-title {
    font-size: clamp(48px, 10vw, 72px);
    font-weight: 900;
    line-height: 0.92;
    text-transform: uppercase;
    letter-spacing: 0;
    margin-bottom: 24px;
  }

  .hero-title .hero-service { color: var(--black); }
  .hero-title .hero-amp { color: var(--red); font-size: 0.85em; }
  .hero-title .hero-repairs-solid { color: #757575; font-size: 1em; }

  .seo-intro-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .map-container { height: 300px; }
  .wa-inner { grid-template-columns: 1fr; gap: 56px; }
  .whatsapp-flow { padding: 60px 24px; }
  .whatsapp-flow::before { display: none; }
  .brand-spotlight-split { grid-template-columns: 1fr; gap: 24px; }
  .brand-spotlight { padding: 70px 24px; }
  .brand-spotlight-header { margin-bottom: 48px; }
  .brand-card { padding: 38px 32px 34px; }
  .brand-card-logo-wrap { height: 116px; margin-bottom: 26px; }
  .brand-card-logo--renault { height: 96px; max-width: 96px; }
  .brand-card-logo--nissan { height: 60px; max-width: 200px; }
}

/* ============================================================
   RESPONSIVE -- 767px (mobile)
   ============================================================ */
@media (max-width: 767px) {
  .site-nav {
    min-height: 66px;
    padding: 10px 16px;
    gap: 8px;
  }
  .nav-logo {
    flex: 0 1 auto;
    min-width: 0;
  }
  .nav-logo img {
    height: 36px;
    width: auto;
    max-width: 48vw;
    object-fit: contain;
  }
  .nav-right {
    gap: 8px;
    flex-shrink: 0;
  }
  .nav-phone {
    font-size: 17px;
    line-height: 1;
  }
  .nav-cta { display: none; }

  .hero { padding: 40px 16px 36px; }
  .hero-content { max-width: 100%; }
  .hero-eyebrow {
    font-size: 10px;
    line-height: 1.35;
    letter-spacing: 1.2px;
    margin-bottom: 14px;
  }

  .hero-title {
    font-size: 38px;
    line-height: 0.98;
    margin-bottom: 18px;
  }

  .hero-sub {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 22px;
  }

  .hero-buttons { gap: 10px; flex-direction: column; }
  .btn-primary, .btn-whatsapp, .btn-outline {
    font-size: 14px;
    padding: 12px 20px;
    width: 100%;
    text-align: center;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
  .hero-stat-number { font-size: 24px; }
  .hero-stat-label {
    font-size: 9px;
    line-height: 1.25;
  }

  .services-section { padding: 50px 16px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .review-card { flex: 0 0 calc(100% - 0px); min-width: calc(100% - 0px); }
  .reviews-prev { left: 0; }
  .reviews-next { right: 0; }

  .trust-section { padding: 50px 16px; }

  .brand-spotlight { padding: 50px 16px; }
  .brand-spotlight-heading { font-size: 34px; }
  .brand-spotlight-intro { font-size: 15px; }
  .brand-card { padding: 32px 24px 28px; }
  .brand-card-title { font-size: 32px; }
  .brand-card-logo-wrap { height: 100px; margin-bottom: 22px; }
  .brand-card-logo--renault { height: 80px; max-width: 80px; }
  .brand-card-logo--nissan { height: 52px; max-width: 180px; }
  .brand-card-body { font-size: 15px; }
  .brand-card-models { font-size: 12px; letter-spacing: 0.8px; }
  .brand-card-cta { width: 100%; text-align: center; padding: 14px 20px; }

  .areas-section { padding: 50px 16px; }

  .contact-section { padding: 50px 16px; }
  .contact-ctas { display: none; }
  .whatsapp-flow { padding: 50px 16px; }
  .wa-phone { width: 280px; }

  .site-footer {
    flex-direction: column;
    text-align: center;
    padding: 24px 16px;
  }

  .footer-links { justify-content: center; }
}

@media (max-width: 430px) {
  .site-nav {
    min-height: 60px;
    padding: 10px 12px;
  }
  .nav-logo img {
    height: 32px;
    max-width: 46vw;
  }
  .nav-phone { font-size: 15px; }
  .hero { padding: 34px 16px 30px; }
  .hero-eyebrow {
    font-size: 9px;
    letter-spacing: 1px;
  }
  .hero-title {
    font-size: 34px;
    line-height: 1;
    margin-bottom: 16px;
  }
  .hero-sub { font-size: 13px; }
}

@media (max-width: 380px) {
  .nav-logo img {
    height: 30px;
    max-width: 44vw;
  }
  .nav-phone { font-size: 14px; }
  .hero-title { font-size: 31px; }
  .hero-sub { font-size: 12.5px; }
}

/* ============================================================
   BLOG SECTION
   ============================================================ */
.blog-section {
  background: var(--white);
  padding: 80px 40px;
  border-top: 1px solid var(--border);
}

.blog-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.blog-card {
  border: 1px solid var(--border);
  border-radius: 3px;
  overflow: hidden;
  background: var(--white);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s ease;
}

.blog-card:hover { box-shadow: 0 6px 20px rgba(0,0,0,0.08); }

.blog-card-img-link { display: block; overflow: hidden; }

.blog-card-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--grey-bg);
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.blog-card:hover .blog-card-img img { transform: scale(1.03); }

.blog-card-fallback {
  width: 100%;
  height: 100%;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.blog-card-fallback img {
  width: auto;
  height: 36px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.blog-card-body {
  padding: 20px 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.blog-tag {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 3px 10px;
  border-radius: 2px;
  white-space: nowrap;
}

.blog-tag--hermanus { background: var(--red); color: var(--white); }
.blog-tag--general  { background: var(--black); color: var(--white); }

.blog-card-date {
  font-size: 12px;
  color: var(--grey-muted);
  font-weight: 400;
}

.blog-card-title {
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.3px;
  line-height: 1.15;
  color: var(--black);
  margin-bottom: 12px;
}

.blog-card-title a { color: inherit; }
.blog-card-title a:hover { color: var(--red); }

.blog-card-excerpt {
  font-size: 14px;
  line-height: 1.6;
  color: var(--grey-muted);
  font-family: Georgia, serif;
  margin-bottom: 20px;
  flex: 1;
}

.blog-card-more {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s ease;
}

.blog-card-more::after { content: '\2192'; font-size: 14px; }
.blog-card-more:hover  { gap: 10px; }

/* Blog skeleton loaders */
@keyframes blog-shimmer {
  0%   { background-position: -400px 0; }
  100% { background-position: 400px 0; }
}
.blog-skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 800px 100%;
  animation: blog-shimmer 1.4s infinite linear;
  border-radius: 4px;
  display: block;
}
.blog-card--skeleton .blog-card-img { border-radius: 6px; }
.blog-skeleton--tag   { width: 70px;  height: 22px; border-radius: 20px; }
.blog-skeleton--date  { width: 80px;  height: 14px; margin-left: 8px; }
.blog-skeleton--title { height: 22px; width: 90%;   margin: 10px 0 8px; }
.blog-skeleton--excerpt { height: 14px; width: 100%; margin-bottom: 6px; }
.blog-skeleton--short   { width: 65%; }
.blog-skeleton--more  { height: 14px; width: 80px;  margin-top: 14px; }
.blog-card--skeleton .blog-card-meta { display: flex; align-items: center; }

.blog-footer { text-align: center; margin-top: 48px; }

.btn-outline {
  display: inline-block;
  border: 2px solid var(--black);
  color: var(--black);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 13px 32px;
  border-radius: 3px;
  transition: background 0.2s, color 0.2s;
}

.btn-outline:hover { background: var(--black); color: var(--white); }

@media (max-width: 900px) {
  .blog-section { padding: 60px 24px; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }

}


/* ============================================================
   CAR SERVICE PAGE (page-car-service.php, body class
   page-template-page-car-service). Added 1.42, 5 Sep 2026.
   ============================================================ */
.page-template-page-car-service .hero-title .hero-repairs-solid { font-size: 0.72em; }

.page-template-page-car-service .cs-section {
  padding: 72px 24px;
  background: var(--white);
}

.page-template-page-car-service .cs-section--grey { background: var(--grey-bg); }

.page-template-page-car-service .cs-inner {
  max-width: 1040px;
  margin: 0 auto;
}

.page-template-page-car-service .cs-inner--narrow { max-width: 760px; }

.page-template-page-car-service .cs-inner--split {
  max-width: 960px;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 48px;
  align-items: start;
}

.page-template-page-car-service .cs-title {
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
}

.page-template-page-car-service .cs-copy {
  display: grid;
  gap: 18px;
  font-family: Arial, sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: #333;
}

.page-template-page-car-service .cs-copy a {
  color: var(--red);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.page-template-page-car-service .cs-section-header { margin-bottom: 40px; }

.page-template-page-car-service .cs-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.page-template-page-car-service .cs-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 4px solid var(--red);
  border-radius: 4px;
  padding: 32px 30px 28px;
}

.page-template-page-car-service .cs-card-title {
  font-size: 30px;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 8px;
}

.page-template-page-car-service .cs-card-lead {
  font-family: Arial, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: var(--grey-muted);
  margin-bottom: 18px;
}

.page-template-page-car-service .cs-list {
  list-style: none;
  display: grid;
  gap: 10px;
  font-family: Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #333;
}

.page-template-page-car-service .cs-list li {
  position: relative;
  padding-left: 22px;
}

.page-template-page-car-service .cs-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 10px;
  height: 10px;
  background: var(--red);
  border-radius: 2px;
}

.page-template-page-car-service .cs-note {
  max-width: 760px;
  margin: 32px auto 0;
  text-align: center;
  font-family: Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--grey-muted);
}

.page-template-page-car-service .cs-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px 32px;
}

.page-template-page-car-service .cs-point-title {
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 8px;
  padding-top: 12px;
  border-top: 3px solid var(--red);
}

.page-template-page-car-service .cs-point p {
  font-family: Arial, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: #333;
}

.page-template-page-car-service .cs-faq h3 {
  font-size: 24px;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.05;
  margin: 28px 0 8px;
}

.page-template-page-car-service .cs-faq h3:first-child { margin-top: 0; }

.page-template-page-car-service .cs-faq p {
  font-family: Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: #333;
}

.page-template-page-car-service .cs-cta {
  background: var(--black);
  color: var(--white);
  padding: 80px 24px;
  text-align: center;
}

.page-template-page-car-service .cs-cta-title {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.95;
  margin-bottom: 16px;
}

.page-template-page-car-service .cs-cta-copy {
  font-family: Arial, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: #ccc;
  max-width: 560px;
  margin: 0 auto 32px;
}

.page-template-page-car-service .cs-cta-buttons { justify-content: center; }

.page-template-page-car-service .cs-cta .btn-outline {
  border-color: #666;
  color: var(--white);
}

.page-template-page-car-service .cs-cta .btn-outline:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

.page-template-page-car-service .cs-cta-back { margin-top: 28px; }

.page-template-page-car-service .cs-cta-back a {
  color: #ccc;
  font-family: Arial, sans-serif;
  font-size: 15px;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 920px) {
  .page-template-page-car-service .cs-inner--split {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .page-template-page-car-service .cs-grid-3 { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 767px) {
  .page-template-page-car-service .cs-section { padding: 56px 20px; }
  .page-template-page-car-service .cs-grid-2 { grid-template-columns: 1fr; }
  .page-template-page-car-service .cs-grid-3 { grid-template-columns: 1fr; gap: 22px; }
  .page-template-page-car-service .cs-card { padding: 26px 22px 22px; }
  .page-template-page-car-service .cs-cta { padding: 60px 20px; }
}

/* Auto electrical: same section system as car service. Codex, 2026-09-07. */
.page-template-page-auto-electrical .hero-title .hero-repairs-solid { font-size: 0.72em; }

.page-template-page-auto-electrical .cs-section {
  padding: 72px 24px;
  background: var(--white);
}

.page-template-page-auto-electrical .cs-section--grey { background: var(--grey-bg); }

.page-template-page-auto-electrical .cs-inner {
  max-width: 1040px;
  margin: 0 auto;
}

.page-template-page-auto-electrical .cs-inner--narrow { max-width: 760px; }

.page-template-page-auto-electrical .cs-inner--split {
  max-width: 960px;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 48px;
  align-items: start;
}

.page-template-page-auto-electrical .cs-title {
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
}

.page-template-page-auto-electrical .cs-copy {
  display: grid;
  gap: 18px;
  font-family: Arial, sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: #333;
}

.page-template-page-auto-electrical .cs-copy a {
  color: var(--red);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.page-template-page-auto-electrical .cs-section-header { margin-bottom: 40px; }

.page-template-page-auto-electrical .cs-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.page-template-page-auto-electrical .cs-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 4px solid var(--red);
  border-radius: 4px;
  padding: 32px 30px 28px;
}

.page-template-page-auto-electrical .cs-card-title {
  font-size: 30px;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 8px;
}

.page-template-page-auto-electrical .cs-card-lead {
  font-family: Arial, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: var(--grey-muted);
  margin-bottom: 18px;
}

.page-template-page-auto-electrical .cs-list {
  list-style: none;
  display: grid;
  gap: 10px;
  font-family: Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #333;
}

.page-template-page-auto-electrical .cs-list li {
  position: relative;
  padding-left: 22px;
}

.page-template-page-auto-electrical .cs-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 10px;
  height: 10px;
  background: var(--red);
  border-radius: 2px;
}

.page-template-page-auto-electrical .cs-note {
  max-width: 760px;
  margin: 32px auto 0;
  text-align: center;
  font-family: Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--grey-muted);
}

.page-template-page-auto-electrical .cs-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px 32px;
}

.page-template-page-auto-electrical .cs-point-title {
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 8px;
  padding-top: 12px;
  border-top: 3px solid var(--red);
}

.page-template-page-auto-electrical .cs-point p {
  font-family: Arial, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: #333;
}

.page-template-page-auto-electrical .cs-faq h3 {
  font-size: 24px;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.05;
  margin: 28px 0 8px;
}

.page-template-page-auto-electrical .cs-faq h3:first-child { margin-top: 0; }

.page-template-page-auto-electrical .cs-faq p {
  font-family: Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: #333;
}

.page-template-page-auto-electrical .cs-cta {
  background: var(--black);
  color: var(--white);
  padding: 80px 24px;
  text-align: center;
}

.page-template-page-auto-electrical .cs-cta-title {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.95;
  margin-bottom: 16px;
}

.page-template-page-auto-electrical .cs-cta-copy {
  font-family: Arial, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: #ccc;
  max-width: 560px;
  margin: 0 auto 32px;
}

.page-template-page-auto-electrical .cs-cta-buttons { justify-content: center; }

.page-template-page-auto-electrical .cs-cta .btn-outline {
  border-color: #666;
  color: var(--white);
}

.page-template-page-auto-electrical .cs-cta .btn-outline:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

.page-template-page-auto-electrical .cs-cta-back { margin-top: 28px; }

.page-template-page-auto-electrical .cs-cta-back a {
  color: #ccc;
  font-family: Arial, sans-serif;
  font-size: 15px;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 920px) {
  .page-template-page-auto-electrical .cs-inner--split {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .page-template-page-auto-electrical .cs-grid-3 { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 767px) {
  .page-template-page-auto-electrical .cs-section { padding: 56px 20px; }
  .page-template-page-auto-electrical .cs-grid-2 { grid-template-columns: 1fr; }
  .page-template-page-auto-electrical .cs-grid-3 { grid-template-columns: 1fr; gap: 22px; }
  .page-template-page-auto-electrical .cs-card { padding: 26px 22px 22px; }
  .page-template-page-auto-electrical .cs-cta { padding: 60px 20px; }
}

.page-template-page-auto-electrical .hero-title { font-size: 72px; }
.page-template-page-auto-electrical .hero-stat-number { font-size: 42px; }
.page-template-page-auto-electrical #electrical-work { scroll-margin-top: 72px; }
.service-card[href]:focus-visible { outline: 3px solid var(--red); outline-offset: 4px; }
@media (max-width: 1100px) {
  .page-template-page-auto-electrical .hero-title { font-size: 58px; }
}
@media (max-width: 767px) {
  .page-template-page-auto-electrical .hero-title { font-size: 48px; }
  .page-template-page-auto-electrical .hero-stat-number { font-size: 36px; }
  .page-template-page-auto-electrical .hero-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
}
@media (max-width: 374px) {
  .page-template-page-auto-electrical .hero-title { font-size: 40px; }
}

/* ============================================================
   ARABELLA ARRIVAL-READY CAR CARE
   ============================================================ */
.ar-page {
  --ar-paper: #f5f2ec;
  --ar-mist: #e5e0d8;
  --ar-muted: #625f5a;
  background: var(--white);
}

.ar-page .ar-inner {
  width: min(calc(100% - 48px), 1180px);
  margin: 0 auto;
}

.ar-page .ar-kicker {
  margin: 0 0 18px;
  color: var(--red);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.ar-page .ar-hero {
  position: relative;
  overflow: hidden;
  background: var(--ar-paper);
  border-bottom: 1px solid var(--ar-mist);
}

.ar-page .ar-hero::after {
  content: '';
  position: absolute;
  right: -120px;
  bottom: -200px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(232, 0, 14, 0.18);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(232, 0, 14, 0.035), 0 0 0 140px rgba(17, 17, 17, 0.025);
  pointer-events: none;
}

.ar-page .ar-hero-grid {
  position: relative;
  z-index: 1;
  min-height: 650px;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(360px, 0.75fr);
  align-items: center;
  gap: 72px;
  padding-top: 86px;
  padding-bottom: 86px;
}

.ar-page .ar-hero h1 {
  max-width: 720px;
  margin: 0 0 28px;
  font-size: clamp(54px, 7vw, 88px);
  font-weight: 900;
  line-height: 0.96;
  text-transform: uppercase;
}

.ar-page .ar-hero h1 span {
  display: block;
  color: var(--red);
}

.ar-page .ar-hero-lead {
  max-width: 710px;
  margin: 0 0 30px;
  color: #34312e;
  font-family: Arial, sans-serif;
  font-size: 20px;
  line-height: 1.65;
}

.ar-page .ar-hero-note {
  margin: 18px 0 0;
  color: var(--ar-muted);
  font-family: Arial, sans-serif;
  font-size: 14px;
}

.ar-page .ar-arrival-card {
  position: relative;
  padding: 38px;
  color: var(--white);
  background: var(--black);
  border-radius: 18px;
  box-shadow: 0 22px 50px rgba(17, 17, 17, 0.12);
}

.ar-page .ar-arrival-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 38px;
  width: 74px;
  height: 5px;
  background: var(--red);
}

.ar-page .ar-card-label {
  margin: 0 0 22px;
  color: #aaa7a3;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.ar-page .ar-arrival-card h2 {
  margin: 0 0 26px;
  font-size: 36px;
  font-weight: 900;
  line-height: 1.02;
  text-transform: uppercase;
}

.ar-page .ar-card-list {
  counter-reset: ar-card;
  display: grid;
  gap: 22px;
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
}

.ar-page .ar-card-list li {
  counter-increment: ar-card;
  position: relative;
  min-height: 38px;
  padding-left: 50px;
  color: #cecbc6;
  font-family: Arial, sans-serif;
  font-size: 14px;
  line-height: 1.45;
}

.ar-page .ar-card-list li::before {
  content: counter(ar-card);
  position: absolute;
  top: 0;
  left: 0;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--red);
  border-radius: 50%;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 800;
}

.ar-page .ar-card-list span {
  display: block;
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
}

.ar-page .ar-card-button { width: 100%; }

.ar-page .ar-trust {
  color: var(--white);
  background: var(--red);
}

.ar-page .ar-trust-grid {
  min-height: 86px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
}

.ar-page .ar-trust-grid div {
  padding: 8px 26px;
  border-right: 1px solid rgba(255, 255, 255, 0.32);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-align: center;
  text-transform: uppercase;
}

.ar-page .ar-trust-grid div:last-child { border-right: 0; }

.ar-page .ar-section { padding: 96px 0; }
.ar-page .ar-section--grey { background: #f7f7f6; }

.ar-page .ar-heading {
  max-width: 760px;
  margin-bottom: 50px;
}

.ar-page .ar-heading h2,
.ar-page .ar-check-intro h2,
.ar-page .ar-approval h2,
.ar-page .ar-enquiry-copy h2 {
  margin: 0 0 20px;
  font-size: clamp(40px, 5vw, 62px);
  font-weight: 900;
  line-height: 0.98;
  text-transform: uppercase;
}

.ar-page .ar-heading > p:last-child,
.ar-page .ar-check-intro > p:last-child,
.ar-page .ar-enquiry-copy > p:last-of-type {
  margin-bottom: 0;
  color: var(--ar-muted);
  font-family: Arial, sans-serif;
  font-size: 18px;
  line-height: 1.65;
}

.ar-page .ar-process {
  counter-reset: ar-step;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 17px;
}

.ar-page .ar-process-step {
  counter-increment: ar-step;
  min-height: 228px;
  padding: 26px 22px 22px;
  background: var(--white);
  border: 1px solid var(--ar-mist);
  border-top: 5px solid var(--black);
  box-shadow: 0 12px 24px rgba(17, 17, 17, 0.04);
}

.ar-page .ar-process-step::before {
  content: '0' counter(ar-step);
  display: block;
  margin-bottom: 26px;
  color: var(--red);
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
}

.ar-page .ar-process-step h3 {
  margin: 0 0 10px;
  font-family: Arial, sans-serif;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.25;
}

.ar-page .ar-process-step p {
  margin: 0;
  color: var(--ar-muted);
  font-family: Arial, sans-serif;
  font-size: 14px;
  line-height: 1.55;
}

.ar-page .ar-check-layout {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 72px;
  align-items: start;
}

.ar-page .ar-check-intro {
  position: sticky;
  top: 118px;
}

.ar-page .ar-check-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.ar-page .ar-check-item {
  min-height: 150px;
  padding: 24px;
  background: var(--ar-paper);
  border: 1px solid var(--ar-mist);
  border-radius: 10px;
}

.ar-page .ar-check-item span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  color: var(--white);
  background: var(--red);
  border-radius: 50%;
  font-family: Arial, sans-serif;
  font-weight: 800;
}

.ar-page .ar-check-item h3 {
  margin: 0;
  font-family: Arial, sans-serif;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.35;
}

.ar-page .ar-approval {
  position: relative;
  overflow: hidden;
  padding: 90px 0;
  color: var(--white);
  background: var(--black);
}

.ar-page .ar-approval-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 72px;
  align-items: center;
}

.ar-page .ar-approval-mark {
  width: 150px;
  height: 150px;
  display: grid;
  place-items: center;
  border: 2px solid var(--red);
  border-radius: 50%;
  color: var(--red);
  font-family: Arial, sans-serif;
  font-size: 58px;
  font-weight: 800;
}

.ar-page .ar-approval p:last-child {
  max-width: 700px;
  margin: 0;
  color: #cecbc6;
  font-family: Arial, sans-serif;
  font-size: 19px;
  line-height: 1.65;
}

.ar-page .ar-enquiry { background: var(--ar-paper); }

.ar-page .ar-enquiry-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 68px;
  align-items: start;
}

.ar-page .ar-contact-links {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.ar-page .ar-contact-links a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  color: var(--black);
  background: var(--white);
  border: 1px solid var(--ar-mist);
  font-family: Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
}

.ar-page .ar-contact-links span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--white);
  background: var(--red);
  border-radius: 50%;
  font-size: 13px;
}

.ar-page .ar-form {
  padding: 38px;
  background: var(--white);
  border: 1px solid var(--ar-mist);
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(17, 17, 17, 0.11);
}

.ar-page .ar-form-note {
  margin: 0 0 26px;
  padding: 13px 15px;
  color: #4f4c47;
  background: var(--ar-paper);
  border-left: 4px solid var(--red);
  font-family: Arial, sans-serif;
  font-size: 14px;
}

.ar-page .ar-field-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 20px;
}

.ar-page .ar-field {
  margin: 0 0 20px;
  padding: 0;
  border: 0;
}

.ar-page .ar-field--full { grid-column: 1 / -1; }

.ar-page .ar-field label,
.ar-page .ar-field legend {
  display: block;
  margin: 0 0 8px;
  color: var(--black);
  font-family: Arial, sans-serif;
  font-size: 14px;
  font-weight: 800;
}

.ar-page .ar-field input,
.ar-page .ar-field textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 14px;
  color: var(--black);
  background: var(--white);
  border: 1px solid #cbc7c0;
  border-radius: 4px;
  font-family: Arial, sans-serif;
  font-size: 16px;
}

.ar-page .ar-field textarea {
  min-height: 126px;
  resize: vertical;
}

.ar-page .ar-field input:focus,
.ar-page .ar-field textarea:focus {
  border-color: var(--red);
  outline: 3px solid rgba(232, 0, 14, 0.13);
}

.ar-page .ar-radio-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ar-page .ar-radio-row label {
  min-width: 104px;
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0;
  padding: 12px 13px;
  border: 1px solid #cbc7c0;
  border-radius: 4px;
  cursor: pointer;
}

.ar-page .ar-radio-row input {
  width: 18px;
  min-height: 18px;
  margin: 0;
  accent-color: var(--red);
}

.ar-page .ar-submit-row {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 6px;
}

.ar-page .ar-submit-row small {
  color: var(--ar-muted);
  font-family: Arial, sans-serif;
  line-height: 1.45;
}

.ar-page .ar-message {
  margin-top: 30px;
  padding-top: 28px;
  border-top: 1px solid var(--ar-mist);
}

.ar-page .ar-message h3 {
  margin: 0 0 8px;
  font-size: 28px;
  text-transform: uppercase;
}

.ar-page .ar-message p {
  margin-bottom: 16px;
  color: var(--ar-muted);
  font-family: Arial, sans-serif;
}

.ar-page .ar-message pre {
  max-height: 280px;
  overflow: auto;
  margin: 0 0 18px;
  padding: 16px;
  white-space: pre-wrap;
  color: var(--black);
  background: var(--ar-paper);
  border: 1px solid var(--ar-mist);
  font-family: Arial, sans-serif;
  font-size: 14px;
  line-height: 1.5;
}

.ar-page #how-it-works,
.ar-page #enquiry { scroll-margin-top: 78px; }

@media (max-width: 1040px) {
  .ar-page .ar-hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 46px;
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .ar-page .ar-arrival-card { max-width: 640px; }
  .ar-page .ar-process { grid-template-columns: repeat(2, 1fr); }
  .ar-page .ar-process-step:last-child { grid-column: 1 / -1; }

  .ar-page .ar-check-layout,
  .ar-page .ar-approval-grid,
  .ar-page .ar-enquiry-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .ar-page .ar-check-intro { position: static; }
  .ar-page .ar-approval-mark { width: 108px; height: 108px; font-size: 46px; }
}

@media (max-width: 767px) {
  .ar-page .ar-inner { width: min(calc(100% - 32px), 1180px); }
  .ar-page .ar-hero::after { display: none; }

  .ar-page .ar-hero-grid {
    gap: 36px;
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .ar-page .ar-hero h1 { font-size: 50px; }
  .ar-page .ar-hero-lead { font-size: 18px; }

  .ar-page .ar-hero-buttons {
    display: grid;
    grid-template-columns: 1fr;
  }

  .ar-page .ar-hero-buttons a { width: 100%; }

  .ar-page .ar-arrival-card {
    padding: 32px 24px;
    border-radius: 12px;
  }

  .ar-page .ar-arrival-card::before { left: 24px; }

  .ar-page .ar-trust-grid { grid-template-columns: 1fr; }

  .ar-page .ar-trust-grid div {
    padding: 14px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  }

  .ar-page .ar-trust-grid div:last-child { border-bottom: 0; }
  .ar-page .ar-section { padding: 70px 0; }

  .ar-page .ar-process,
  .ar-page .ar-check-grid,
  .ar-page .ar-field-grid {
    grid-template-columns: 1fr;
  }

  .ar-page .ar-process-step:last-child { grid-column: auto; }
  .ar-page .ar-process-step { min-height: 0; }
  .ar-page .ar-field--full { grid-column: auto; }
  .ar-page .ar-approval { padding: 68px 0; }
  .ar-page .ar-approval-mark { width: 86px; height: 86px; font-size: 38px; }

  .ar-page .ar-form {
    padding: 28px 20px;
    border-radius: 12px;
  }

  .ar-page .ar-submit-row {
    align-items: stretch;
    flex-direction: column;
  }

  .ar-page .ar-submit-row .btn-primary { width: 100%; }
}

@media (max-width: 374px) {
  .ar-page .ar-hero h1 { font-size: 42px; }
}
