/*
Theme Name: Randburg Second V12
Description: Randburg Second theme for Fangio Auto Service Randburg - bold, professional automotive workshop design
Author: Fangio Auto
Version: 12.3
*/

:root {
  --red:    #E8000E;
  --red2:   #c5000b;
  --black:  #111111;
  --dark:   #1C1C1C;
  --body:   #F7F7F7;
  --white:  #FFFFFF;
  --grey1:  #EFEFEF;
  --grey2:  #E2E2E2;
  --grey3:  #AAAAAA;
  --text:   #222222;
  --muted:  #666666;
  --border: #DDDDDD;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--body);
  color: var(--text);
  font-family: "Barlow", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}

.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.red { color: var(--red); }

.tag {
  display: inline-block;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  height: 84px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.nav-logo img { height: 56px; width: auto; display: block; }
.footer-brand img { height: 48px; width: auto; display: block; }

.nav-logo {
  text-decoration: none;
  color: var(--black);
  display: inline-flex;
  align-items: center;
}
.nav-logo .custom-logo-link {
  display: inline-flex;
  align-items: center;
}
.nav-logo .custom-logo {
  height: 56px;
  width: auto;
}
.footer-brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.footer-brand:hover {
  opacity: 0.85;
}
.nav-right { display: flex; align-items: center; gap: 20px; }
.nav-phone {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: var(--black);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.2s;
  line-height: 1;
}
.nav-phone:hover { color: var(--red); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 11px 22px;
  border-radius: 3px;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
  white-space: nowrap;
}
.btn-red   { background: var(--red);    color: #fff; }
.btn-red:hover { background: var(--red2); transform: translateY(-1px); }
.btn-black { background: var(--black);  color: #fff; }
.btn-black:hover { background: #333; }
.btn-outline {
  background: transparent;
  color: var(--black);
  border: 2px solid var(--black);
}
.btn-outline:hover { background: var(--black); color: #fff; }
.btn-wa    { background: #25D366; color: #fff; }
.btn-wa:hover { background: #1ebe5a; transform: translateY(-1px); }
.btn-white { background: #fff; color: var(--black); }
.btn-white:hover { background: var(--grey1); }

/* HERO */
.hero {
  min-height: 100vh;
  padding-top: 84px;
  display: flex;
  align-items: center;
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 45%;
  height: 100%;
  background: var(--grey1);
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0% 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
  animation: fadeUp 0.7s ease both;
}
@keyframes fadeUp {
  from { opacity:0; transform:translateY(28px); }
  to   { opacity:1; transform:translateY(0); }
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}
.hero-line { width: 36px; height: 3px; background: var(--red); }
.hero-eyebrow span {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--red);
}
.hero h1,
.hero-title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(56px, 8vw, 100px);
  font-weight: 900;
  line-height: 0.93;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--black);
  margin-bottom: 26px;
}
.hero-title span {
  display: block;
}
.hero-title-top {
  color: var(--black);
}
.hero-title-bottom {
  display: flex !important;
  align-items: baseline;
  gap: 0.16em;
  flex-wrap: wrap;
}
.hero-title em {
  font-style: normal;
  color: var(--red);
}
.hero-amp {
  color: var(--black);
}
.hero-repairs {
  -webkit-text-stroke: 2.5px var(--black);
  color: transparent;
}


.hero-repairs-outline {
  -webkit-text-stroke: 2.5px var(--black);
  color: transparent;
}
.hero-repairs-solid {
  color: #B8B8B8;
}
.hero-sub {
  font-size: 17px;
  font-weight: 400;
  color: var(--muted);
  max-width: 500px;
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 52px; }
.hero-stats {
  display: flex;
  gap: 36px;
  padding-top: 36px;
  border-top: 2px solid var(--grey2);
  flex-wrap: wrap;
}
.stat-num {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 38px;
  font-weight: 900;
  color: var(--black);
  line-height: 1;
}
.stat-num span { color: var(--red); }
.stat-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--grey3);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}

/* RED STRIP / TICKER */
.strip { background: var(--red); padding: 13px 0; overflow: hidden; }
.strip-track {
  display: flex;
  gap: 48px;
  animation: ticker 22s linear infinite;
  white-space: nowrap;
  width: max-content;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.strip-item {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.92);
  display: flex;
  align-items: center;
  gap: 14px;
}
.strip-item::after { content: "//"; opacity: 0.45; }

/* SECTIONS */
section { padding: 96px 0; }
.section-head { margin-bottom: 56px; }
.section-head h2 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--black);
}
.section-head p {
  font-size: 16px;
  color: var(--muted);
  margin-top: 14px;
  max-width: 480px;
}


/* SEO INTRO */
.seo-intro {
  background: var(--white);
  padding: 74px 0;
  border-top: 1px solid var(--border);
}
.seo-intro-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 48px;
  align-items: start;
}
.seo-intro h2 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(36px, 4vw, 58px);
  line-height: 0.95;
  text-transform: uppercase;
  color: var(--black);
}
.seo-intro-copy {
  display: grid;
  gap: 18px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

/* TRUST */
.trust { background: var(--white); }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 2px solid var(--grey2);
}
.trust-card {
  padding: 40px 28px;
  text-align: center;
  border-right: 1px solid var(--grey2);
  transition: background 0.2s;
  position: relative;
}
.trust-card:last-child { border-right: none; }
.trust-card::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform 0.3s;
}
.trust-card:hover { background: var(--body); }
.trust-card:hover::after { transform: scaleX(1); }
.trust-ico { font-size: 30px; margin-bottom: 14px; }
.trust-title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--black);
  margin-bottom: 7px;
}
.trust-desc { font-size: 13px; color: var(--muted); line-height: 1.55; }

/* SERVICES */
.services { background: var(--body); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.svc-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 44px 36px;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.3s, transform 0.3s;
}
.svc-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform 0.3s;
  transform-origin: left;
}
.svc-card:hover { box-shadow: 0 12px 48px rgba(0,0,0,0.1); transform: translateY(-4px); }
.svc-card:hover::before { transform: scaleX(1); }
.svc-num {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 80px;
  font-weight: 900;
  color: var(--grey1);
  position: absolute;
  top: 8px; right: 16px;
  line-height: 1;
  user-select: none;
}
.svc-ico { font-size: 36px; margin-bottom: 18px; display: block; }
.svc-title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--black);
  margin-bottom: 12px;
}
.svc-desc { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* AREAS */
.areas { background: var(--white); }
.areas-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.areas-text h2 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1;
  color: var(--black);
  margin-bottom: 18px;
}
.areas-text p { font-size: 15px; color: var(--muted); margin-bottom: 30px; line-height: 1.7; }
.area-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.area-tag {
  background: var(--body);
  border: 1.5px solid var(--grey2);
  padding: 8px 16px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--black);
  border-radius: 2px;
  transition: all 0.2s;
}
.area-tag:hover { background: var(--red); border-color: var(--red); color: #fff; }
.map-wrap {
  border: 2px solid var(--grey2);
  border-radius: 4px;
  overflow: hidden;
  height: 380px;
}
.map-wrap iframe { width:100%; height:100%; border:none; display:block; }

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

.whatsapp-flow {
  background: var(--white);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
  border-top: 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.025);
  letter-spacing: -12px;
  pointer-events: none;
  white-space: nowrap;
}
.wa-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
}
.wa-text .eyebrow {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  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-family: "Barlow Condensed", sans-serif;
  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 .wa-red { color: var(--red); }
.wa-text h2 .wa-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(--muted);
  margin-bottom: 24px;
}
.wa-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  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-family: "Barlow Condensed", sans-serif;
  font-weight: 900;
  font-size: 26px;
  color: var(--red);
  line-height: 1;
  padding-top: 2px;
  min-width: 40px;
}
.wa-step .step-body h4 {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--black);
  margin-bottom: 4px;
}
.wa-step .step-body p {
  font-size: 14px;
  color: var(--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.15);
  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), #8a000a);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: "Barlow Condensed", sans-serif;
  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: #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;
  font-family: "Barlow", sans-serif;
}
.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;
  font-family: "Barlow Condensed", sans-serif;
}
.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; }

/* MAKES MARQUEE */
.makes { background: var(--black); padding: 52px 0; }
.makes-label {
  text-align: center;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 28px;
}
.makes-scroll {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}
.makes-track {
  display: flex;
  gap: 40px;
  animation: marq 28s linear infinite;
  width: max-content;
}
@keyframes marq {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.make-item {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.18);
  white-space: nowrap;
  padding: 6px 0;
  transition: color 0.2s;
}
.make-item:hover { color: #fff; }

/* CTA BANNER */
.cta-band {
  background: var(--red);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "BOOK NOW";
  position: absolute;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 200px;
  font-weight: 900;
  color: rgba(0,0,0,0.08);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  white-space: nowrap;
  pointer-events: none;
}
.cta-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-text h2 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1;
  color: #fff;
  margin-bottom: 8px;
}
.cta-text p { font-size: 15px; color: rgba(255,255,255,0.8); }
.cta-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* CONTACT */
.contact { background: var(--body); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.contact h2 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 44px;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--black);
  line-height: 1;
  margin-bottom: 36px;
}
.c-rows { display: flex; flex-direction: column; gap: 0; }
.c-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.c-row:first-child { border-top: 1px solid var(--border); }
.c-ico {
  width: 42px; height: 42px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
}
.c-lbl {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey3);
  margin-bottom: 3px;
}
.c-val {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--black);
  text-decoration: none;
  line-height: 1.3;
}
.c-val:hover { color: var(--red); }
.contact-map {
  border: 2px solid var(--grey2);
  border-radius: 4px;
  overflow: hidden;
  height: 440px;
}
.contact-map iframe { width:100%; height:100%; border:none; display:block; }

/* FOOTER */
footer {
  background: var(--black);
  padding: 32px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-copy { font-size: 13px; color: rgba(255,255,255,0.35); }
.footer-links { display: flex; gap: 20px; }
.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: #fff; }


/* BLOG */
.blog { background: var(--body); }
.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--randburg { 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; }

/* RESPONSIVE */
@media (max-width: 920px) {
  .trust-grid { grid-template-columns: repeat(2,1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .areas-layout { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero::after { display: none; }
  .seo-intro-inner { grid-template-columns: 1fr; gap: 28px; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .wa-inner { grid-template-columns: 1fr; gap: 56px; }
  .whatsapp-flow { padding: 56px 0; }
  .whatsapp-flow::before { font-size: 140px; top: 20px; }
}

@media (max-width: 767px) {
  .container { padding: 0 16px; }

  .nav-inner {
    height: 66px;
    padding: 0 16px;
    gap: 8px;
  }
  .nav-logo img,
  .nav-logo .custom-logo {
    height: 36px;
    max-width: 48vw;
    object-fit: contain;
  }
  .nav-right {
    gap: 8px;
    flex-shrink: 0;
  }
  .nav-phone {
    font-size: 17px;
    line-height: 1;
    white-space: nowrap;
  }
  .nav-right .btn {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 66px;
    padding-bottom: 44px;
  }
  .hero-content {
    max-width: 100%;
    padding-top: 18px;
  }
  .hero-eyebrow {
    gap: 8px;
    margin-bottom: 14px;
    align-items: center;
  }
  .hero-line {
    display: none;
  }
  .hero-eyebrow span {
    font-size: 9px;
    letter-spacing: 0.08em;
    line-height: 1.4;
  }
  .hero h1,
  .hero-title {
    font-size: 36px;
    line-height: 1;
    margin-bottom: 16px;
    letter-spacing: 0;
    max-width: 100%;
  }
  .hero-title .mobile-line {
    display: block;
  }
  .hero-title .mobile-line + .mobile-line {
    margin-top: 4px;
  }
  .hero-title .mobile-service-line {
    display: flex;
    align-items: baseline;
    gap: 0.1em;
    flex-wrap: nowrap;
  }
  .hero-title .hero-amp {
    font-size: 0.85em;
    color: var(--black);
  }
  .hero-title .hero-repairs-solid {
    font-size: 1em;
    line-height: 1;
    color: #999;
    letter-spacing: 0;
    margin-top: 8px;
  }
  .hero-sub {
    font-size: 14px;
    line-height: 1.65;
    margin-bottom: 22px;
    max-width: 100%;
  }
  .hero-ctas {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 26px;
  }
  .hero-ctas .btn {
    width: 100%;
    justify-content: center;
    padding: 14px 18px;
  }
  .hero-stats {
    gap: 12px;
    padding-top: 18px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
  .stat-num {
    font-size: 24px;
  }
  .stat-label {
    font-size: 9px;
    line-height: 1.25;
  }

  .strip { padding: 10px 0; }
  .strip-item {
    font-size: 10px;
    letter-spacing: 0.1em;
  }

  section { padding: 56px 0; }
  .section-head { margin-bottom: 30px; }
  .section-head h2 { line-height: 0.95; }

  .svc-card {
    padding: 28px 20px;
  }
  .svc-num {
    font-size: 48px;
    top: 10px;
    right: 10px;
  }

  .map-wrap,
  .contact-map {
    height: 260px;
  }

  .cta-band {
    padding: 44px 0;
  }
  .cta-band::before {
    display: none;
  }

  .footer-inner {
    align-items: flex-start;
  }
  .footer-brand img {
    height: 34px;
  }

  /* WhatsApp section mobile */
  .wa-phone {
    width: 100%;
    max-width: 300px;
    border-width: 8px;
    border-radius: 32px;
  }
  .wa-chat {
    min-height: 300px;
    padding: 14px 12px 18px;
  }
  .wa-phone::before {
    width: 70px;
    height: 18px;
  }
  .wa-text > p {
    font-size: 15px;
  }
}

@media (max-width: 600px) {
  .trust-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
}

@media (max-width: 430px) {
  .nav-inner {
    height: 60px;
    padding: 0 12px;
  }
  .nav-logo img,
  .nav-logo .custom-logo {
    height: 32px;
    max-width: 46vw;
  }
  .nav-phone {
    font-size: 15px;
  }
  .hero {
    padding-top: 60px;
    padding-bottom: 28px;
  }
  .hero-eyebrow span {
    font-size: 8px;
    letter-spacing: 0.07em;
  }
  .hero h1,
  .hero-title {
    font-size: 31px;
    line-height: 1.02;
    margin-bottom: 14px;
  }
  .hero-title .hero-amp {
    font-size: 0.85em;
  }
  .hero-title .hero-repairs-solid {
    font-size: 1em;
  }
  .hero-sub {
    font-size: 13px;
    line-height: 1.6;
  }
  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
  }
  .cta-btns {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
  }
  .cta-btns .btn {
    width: 100%;
    justify-content: center;
  }

  /* WhatsApp phone even smaller */
  .wa-phone {
    max-width: 260px;
    border-radius: 28px;
  }
  .wa-chat {
    min-height: 260px;
  }
}

@media (max-width: 380px) {
  .nav-logo img,
  .nav-logo .custom-logo {
    height: 30px;
    max-width: 44vw;
  }
  .nav-phone {
    font-size: 14px;
  }
  .hero h1,
  .hero-title {
    font-size: 28px;
  }
  .hero-title .hero-amp {
    font-size: 0.85em;
  }
  .hero-title .hero-repairs-solid {
    font-size: 1em;
  }
  .hero-sub {
    font-size: 12.5px;
  }
}
