/* =============================================
   AK TYRES — Dark & Sleek Landing Page
   ============================================= */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #0a0a0b;
  --bg2:       #111113;
  --bg3:       #18181c;
  --surface:   #1e1e24;
  --surface2:  #26262e;
  --border:    #2a2a34;
  --accent:    #f5a623;
  --accent2:   #e8941a;
  --accent-dim:#f5a62320;
  --text:      #f0f0f2;
  --text-muted:#8888a0;
  --text-dim:  #5a5a70;
  --green:     #22c55e;
  --whatsapp:  #25d366;
  --radius:    12px;
  --radius-lg: 20px;
  --shadow:    0 4px 24px rgba(0,0,0,0.4);
  --shadow-lg: 0 8px 48px rgba(0,0,0,0.6);
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden; /* moved here — keeps position:fixed working on iOS */
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  position: relative; /* helps iOS honour fixed children */
}

/* ── UTILITIES ── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.accent { color: var(--accent); }
.accent-bg { background: var(--accent-dim); color: var(--accent); }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; border-radius: var(--radius);
  font-size: 15px; font-weight: 600; text-decoration: none;
  cursor: pointer; border: none; transition: all 0.2s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-primary {
  background: var(--accent); color: #0a0a0b;
  box-shadow: 0 0 12px rgba(245,166,35,0.5), 0 0 28px rgba(245,166,35,0.25), 0 0 50px rgba(245,166,35,0.1);
  animation: btnGlow 1.8s ease-in-out infinite;
}
.btn-primary:hover {
  background: var(--accent2);
  transform: translateY(-2px);
  box-shadow: 0 0 16px rgba(245,166,35,0.8), 0 0 40px rgba(245,166,35,0.5), 0 0 80px rgba(245,166,35,0.25);
  animation: none;
}
@keyframes btnGlow {
  0%, 100% {
    box-shadow: 0 0 10px rgba(245,166,35,0.5),
                0 0 24px rgba(245,166,35,0.25),
                0 0 48px rgba(245,166,35,0.10);
  }
  50% {
    box-shadow: 0 0 18px rgba(245,166,35,0.85),
                0 0 40px rgba(245,166,35,0.45),
                0 0 80px rgba(245,166,35,0.20);
  }
}
.btn-outline { background: transparent; color: var(--text); border: 1.5px solid var(--border); }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.btn-whatsapp { background: var(--whatsapp); color: #fff; }
.btn-whatsapp:hover { background: #1db954; transform: translateY(-1px); box-shadow: 0 4px 20px rgba(37,211,102,0.35); }
.btn-lg { padding: 16px 32px; font-size: 16px; border-radius: 14px; }
.btn-full { width: 100%; justify-content: center; }

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(10,10,11,0.8);
  backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}
.nav-inner {
  display: flex; align-items: center; gap: 32px;
  height: 64px;
}
.logo { text-decoration: none; display: flex; align-items: center; }
.logo-img { height: 42px; width: auto; object-fit: contain; display: block; }
.nav-links { display: flex; gap: 28px; margin-left: auto; }
.nav-links a { color: var(--text-muted); text-decoration: none; font-size: 14px; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--text); }
.nav-cta { margin-left: 8px; padding: 9px 20px; font-size: 14px; }
.nav-toggle { display: none; background: none; border: none; color: var(--text); font-size: 22px; cursor: pointer; margin-left: auto; }

.mobile-menu {
  display: none; flex-direction: column; gap: 4px;
  padding: 16px 24px 20px;
  border-top: 1px solid var(--border);
}
.mobile-menu a { color: var(--text); text-decoration: none; padding: 10px 0; font-weight: 500; border-bottom: 1px solid var(--border); }
.mobile-menu .btn { margin-top: 8px; justify-content: center; }
.mobile-menu.open { display: flex; }

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: block; }
}

/* ── HERO ── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  padding: 160px 0 120px;
  overflow: hidden;
}

/* Subtle ambient glow overlay */
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 70% 50% at 20% 50%, rgba(245,166,35,0.07) 0%, transparent 70%);
}

/* Two-column hero layout */
.hero-inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
}

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

/* Hero logo above the headline */
.hero-logo {
  width: 160px; height: auto;
  object-fit: contain;
  margin-bottom: 28px;
  display: block;
  filter: drop-shadow(0 4px 20px rgba(0,0,0,0.5));
}

/* Van image column */
.hero-van-col {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-van-img {
  width: 100%;
  max-width: 620px;
  height: auto;
  object-fit: contain;
  border-radius: 16px;
  filter: drop-shadow(0 16px 48px rgba(0,0,0,0.7));
  animation: floatVan 5s ease-in-out infinite;
}

@keyframes floatVan {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-10px); }
}

@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-content { max-width: 100%; }
  .hero-logo { margin-left: auto; margin-right: auto; }
  .hero-badge { display: inline-flex; }
  .hero-ctas { justify-content: center; }
  .hero-stats { margin: 0 auto; }
  .hero-van-col { order: -1; }
  .hero-van-img { max-width: 480px; border-radius: 12px; }
}
@media (max-width: 600px) {
  .hero-logo { width: 120px; }
  .hero-van-img { max-width: 100%; }
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--surface); border: 1px solid var(--border);
  padding: 6px 14px; border-radius: 100px;
  font-size: 13px; font-weight: 500; color: var(--text-muted);
  margin-bottom: 28px;
}
.hero h1 {
  font-size: clamp(44px, 7vw, 80px);
  font-weight: 900; line-height: 1.05; letter-spacing: -2px;
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 18px; color: var(--text-muted); line-height: 1.7;
  max-width: 560px; margin-bottom: 40px;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 64px; }
.hero-stats {
  display: flex; align-items: center; gap: 32px;
  padding: 24px 32px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); width: fit-content;
}
.stat { display: flex; flex-direction: column; }
.stat-num { font-size: 28px; font-weight: 800; line-height: 1; }
.stat-num .accent { font-size: 14px; margin-left: 2px; }
.stat-label { font-size: 12px; color: var(--text-muted); margin-top: 4px; }
.stat-divider { width: 1px; height: 40px; background: var(--border); }
.hero-scroll-hint {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  color: var(--text-dim); animation: bounce 2s infinite;
}
.hero-scroll-hint svg { width: 28px; height: 28px; }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

@media (max-width: 600px) {
  .hero-stats { flex-direction: column; align-items: flex-start; gap: 16px; }
  .stat-divider { width: 40px; height: 1px; }
}

/* ── SECTIONS ── */
.section { padding: 96px 0; }
.section--dark { background: var(--bg2); }
.section--contact { background: var(--bg3); }
.section-header { text-align: center; margin-bottom: 64px; }
.section-tag {
  display: inline-block;
  background: var(--accent-dim); color: var(--accent);
  padding: 4px 14px; border-radius: 100px;
  font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  margin-bottom: 16px;
}
.section-header h2 {
  font-size: clamp(32px, 4vw, 48px); font-weight: 800; letter-spacing: -1px;
  margin-bottom: 16px;
}
.section-header p { font-size: 17px; color: var(--text-muted); max-width: 480px; margin: 0 auto; }

/* ── SERVICES ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}
.service-card {
  position: relative;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px;
  transition: all 0.25s ease;
}
.service-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(245,166,35,0.12);
}
.service-card--featured {
  border-color: var(--accent);
  background: linear-gradient(135deg, var(--surface) 0%, rgba(245,166,35,0.06) 100%);
}
.service-badge {
  display: inline-block;
  background: var(--accent); color: #0a0a0b;
  padding: 3px 10px; border-radius: 100px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.5px;
  margin-bottom: 16px;
}
.service-icon {
  width: 56px; height: 56px;
  background: var(--accent-dim); border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; color: var(--accent);
}
.service-icon svg { width: 28px; height: 28px; }
.service-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.service-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* ── WHY US ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}
.why-card {
  display: flex; align-items: flex-start; gap: 20px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px;
  transition: all 0.25s ease;
}
.why-card:hover { border-color: var(--border); transform: translateY(-2px); }
.why-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
}
.why-icon svg { width: 22px; height: 22px; }
.why-card h4 { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.why-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* ── COVERAGE ── */
.coverage-layout {
  display: grid; grid-template-columns: 1fr 380px; gap: 48px; align-items: start;
}
.coverage-areas {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 12px;
}
.area-item {
  display: flex; align-items: center; gap: 10px;
  background: var(--surface); border: 1px solid var(--border);
  padding: 12px 16px; border-radius: 10px;
  font-size: 14px; font-weight: 500;
  text-decoration: none; color: var(--text);
  transition: border-color 0.2s, transform 0.2s;
}
a.area-item:hover { border-color: var(--accent); transform: translateY(-2px); color: var(--accent); }
.area-dot {
  width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0;
  background: var(--accent);
  box-shadow: 0 0 8px rgba(245,166,35,0.6);
}
.coverage-cta-box {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px;
  position: sticky; top: 84px;
}
.coverage-cta-box h3 { font-size: 20px; font-weight: 700; margin-bottom: 12px; }
.coverage-cta-box p { font-size: 14px; color: var(--text-muted); margin-bottom: 24px; line-height: 1.6; }
.coverage-cta-box .btn { width: 100%; justify-content: center; margin-bottom: 10px; }

@media (max-width: 900px) {
  .coverage-layout { grid-template-columns: 1fr; }
  .coverage-cta-box { position: static; }
}

/* ── MAP ── */
.map-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 32px;
  align-items: start;
}
.map-wrap { display: flex; flex-direction: column; gap: 12px; }
.map-wrap iframe {
  box-shadow: 0 8px 40px rgba(0,0,0,0.5);
  border: 1px solid var(--border);
}
.map-business-link {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--surface); border: 1.5px solid var(--border);
  padding: 12px 20px; border-radius: var(--radius);
  color: var(--text); text-decoration: none;
  font-size: 14px; font-weight: 600;
  transition: all 0.2s ease; align-self: flex-start;
}
.map-business-link:hover { border-color: #4285F4; transform: translateY(-1px); }

.map-sidebar { display: flex; flex-direction: column; gap: 20px; }
.map-sidebar h3 { font-size: 18px; font-weight: 700; margin-bottom: 4px; }
.map-sidebar .coverage-areas {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
}
.map-sidebar .area-item {
  padding: 9px 12px; font-size: 13px;
}
.map-cta-box {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 20px;
}
.map-cta-box p { font-size: 13px; color: var(--text-muted); margin-bottom: 14px; line-height: 1.6; }

@media (max-width: 900px) {
  .map-layout { grid-template-columns: 1fr; }
  .map-sidebar .coverage-areas { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 560px) {
  .map-sidebar .coverage-areas { grid-template-columns: repeat(2, 1fr); }
}

/* ── CONTACT ── */
.contact-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start;
}
.contact-info .section-tag { display: inline-block; margin-bottom: 16px; }
.contact-info h2 { font-size: clamp(32px, 4vw, 48px); font-weight: 800; letter-spacing: -1px; margin-bottom: 16px; }
.contact-info > p { color: var(--text-muted); margin-bottom: 40px; font-size: 16px; line-height: 1.7; }
.contact-items { display: flex; flex-direction: column; gap: 12px; }
.contact-item {
  display: flex; align-items: center; gap: 16px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 16px 20px;
  text-decoration: none; color: var(--text);
  transition: all 0.2s ease;
}
.contact-item:hover { border-color: var(--accent); transform: translateX(4px); }
.contact-item-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--accent-dim); color: var(--accent);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
}
.contact-item-icon svg { width: 20px; height: 20px; }
.contact-item-label { display: block; font-size: 12px; color: var(--text-muted); margin-bottom: 2px; }
.contact-item-value { font-size: 15px; font-weight: 600; }

.contact-cta-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 40px;
}
.contact-cta-card h3 { font-size: 24px; font-weight: 800; margin-bottom: 12px; }
.contact-cta-card > p { color: var(--text-muted); font-size: 14px; margin-bottom: 28px; line-height: 1.6; }
.cta-steps { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.cta-step { display: flex; align-items: center; gap: 14px; font-size: 14px; font-weight: 500; }
.step-num {
  width: 28px; height: 28px; flex-shrink: 0;
  background: var(--accent); color: #0a0a0b;
  border-radius: 50%; font-size: 13px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}
.cta-btns { display: flex; flex-direction: column; gap: 10px; }

@media (max-width: 900px) {
  .contact-layout { grid-template-columns: 1fr; }
}

/* ── FOOTER ── */
.footer { background: var(--bg); border-top: 1px solid var(--border); padding: 64px 0 0; }
.footer-inner {
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px;
  padding-bottom: 48px;
}
.footer-brand .logo { margin-bottom: 12px; display: block; }
.footer-brand .logo-img { height: 52px; }
.footer-brand p { font-size: 14px; color: var(--text-muted); line-height: 1.6; max-width: 280px; }
.footer-links, .footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-links h5, .footer-contact h5 { font-size: 13px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--text-dim); margin-bottom: 6px; }
.footer-links a, .footer-contact a { color: var(--text-muted); text-decoration: none; font-size: 14px; transition: color 0.2s; }
.footer-links a:hover, .footer-contact a:hover { color: var(--accent); }
.footer-contact span { font-size: 14px; color: var(--text-muted); }
.footer-bottom {
  border-top: 1px solid var(--border); padding: 20px 24px;
  text-align: center; font-size: 13px; color: var(--text-dim);
}

@media (max-width: 768px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 480px) {
  .footer-inner { grid-template-columns: 1fr; }
}

/* ── GOOGLE REVIEWS ── */
.rating-summary {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px 32px;
  margin-bottom: 40px;
}
.rating-big { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.rating-number {
  font-size: 56px; font-weight: 900; line-height: 1; color: var(--accent);
}
.rating-stars { display: flex; gap: 4px; }
.rating-stars svg { width: 26px; height: 26px; color: var(--accent); }
.rating-count { font-size: 15px; color: var(--text-muted); margin-top: 4px; display: block; }
.btn-google {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 22px; border-radius: var(--radius);
  font-size: 14px; font-weight: 600; text-decoration: none;
  background: var(--surface2); border: 1.5px solid var(--border);
  color: var(--text); transition: all 0.2s ease;
}
.btn-google:hover { border-color: #4285F4; transform: translateY(-1px); }
.google-icon { width: 20px; height: 20px; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}
.review-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px;
  transition: all 0.25s ease;
}
.review-card:hover { border-color: var(--accent); transform: translateY(-3px); }
.review-header { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.review-avatar {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  background: var(--accent); color: #0a0a0b;
  font-size: 18px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}
.review-name { font-size: 15px; font-weight: 700; }
.review-stars { color: var(--accent); font-size: 14px; margin-top: 2px; }
.review-google-logo { margin-left: auto; }
.review-google-logo svg { width: 20px; height: 20px; }
.review-text { font-size: 14px; color: var(--text-muted); line-height: 1.75; font-style: italic; margin-bottom: 16px; }
.review-source { font-size: 12px; color: var(--text-dim); }

.review-card--cta {
  background: linear-gradient(135deg, var(--surface) 0%, rgba(245,166,35,0.05) 100%);
  border-color: var(--accent);
  display: flex; align-items: center; justify-content: center;
}
.review-cta-inner { text-align: center; }
.review-cta-stars { font-size: 28px; color: var(--accent); margin-bottom: 12px; }
.review-cta-inner h3 { font-size: 20px; font-weight: 800; margin-bottom: 8px; }
.review-cta-inner p { font-size: 14px; color: var(--text-muted); margin-bottom: 20px; }
.review-cta-inner .btn { width: 100%; justify-content: center; }

/* ── GOOGLE BADGE (footer) ── */
.footer-google-badge {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 14px;
  background: var(--surface); border: 1px solid var(--border);
  padding: 7px 14px; border-radius: 8px;
  text-decoration: none; font-size: 13px; font-weight: 600; color: var(--text);
  transition: border-color 0.2s;
}
.footer-google-badge:hover { border-color: #4285F4; }

/* ─────────────────────────────────────────────
   EMERGENCY EFFECTS
   ───────────────────────────────────────────── */

/* Ambient amber page flash (like light bouncing off walls) */
.amber-overlay {
  position: fixed; inset: 0; z-index: 46;
  pointer-events: none;
  background: transparent;
  animation: amberPageFlash 3s ease-in-out infinite;
}
@keyframes amberPageFlash {
  0%,  60%, 100% { background: transparent; }
  8%             { background: rgba(245,140,0,0.028); }
  12%            { background: transparent; }
  18%            { background: rgba(245,140,0,0.022); }
  22%            { background: transparent; }
}

/* ── EMERGENCY LIGHT BAR ── */
.emergency-bar {
  position: fixed;
  top: 64px; left: 0; right: 0; z-index: 98;
  height: 36px;
  background: rgba(8,8,10,0.97);
  border-bottom: 1px solid rgba(245,166,35,0.25);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  overflow: hidden;
}

/* Scanner sweep */
.emergency-bar::before {
  content: '';
  position: absolute;
  top: 0; left: -120px; width: 120px; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(245,166,35,0.18), transparent);
  animation: barSweep 3s linear infinite;
  pointer-events: none;
}
@keyframes barSweep {
  from { transform: translateX(0); }
  to   { transform: translateX(calc(100vw + 240px)); }
}

.ebar-side { display: flex; gap: 7px; align-items: center; }

/* Each LED light */
.elight {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: #1a0a00;
  box-shadow: inset 0 0 3px rgba(0,0,0,0.8);
}

/* LEFT side — chase left→right */
.ebar-left .elight:nth-child(1) { animation: ledFlash 0.5s step-end 0.00s infinite; }
.ebar-left .elight:nth-child(2) { animation: ledFlash 0.5s step-end 0.10s infinite; }
.ebar-left .elight:nth-child(3) { animation: ledFlash 0.5s step-end 0.20s infinite; }
.ebar-left .elight:nth-child(4) { animation: ledFlash 0.5s step-end 0.30s infinite; }
.ebar-left .elight:nth-child(5) { animation: ledFlash 0.5s step-end 0.40s infinite; }

/* RIGHT side — opposite phase (right→left chase) */
.ebar-right .elight:nth-child(1) { animation: ledFlash 0.5s step-end 0.25s infinite; }
.ebar-right .elight:nth-child(2) { animation: ledFlash 0.5s step-end 0.15s infinite; }
.ebar-right .elight:nth-child(3) { animation: ledFlash 0.5s step-end 0.05s infinite; }
.ebar-right .elight:nth-child(4) { animation: ledFlash 0.5s step-end 0.35s infinite; }
.ebar-right .elight:nth-child(5) { animation: ledFlash 0.5s step-end 0.45s infinite; }

@keyframes ledFlash {
  0%, 40% {
    background: #f5a623;
    box-shadow: 0 0 5px #f5a623, 0 0 12px #f5a62399, 0 0 22px #f5a62344;
  }
  41%, 100% {
    background: #1a0a00;
    box-shadow: inset 0 0 3px rgba(0,0,0,0.8);
  }
}

/* Centre text */
.ebar-center {
  display: flex; align-items: center; gap: 8px;
  color: #f5a623;
  font-size: 11px; font-weight: 800;
  letter-spacing: 2px; text-transform: uppercase;
  text-decoration: none;
  animation: ebarPulse 1s ease-in-out infinite;
  white-space: nowrap;
}
@keyframes ebarPulse {
  0%, 100% { opacity: 1; text-shadow: 0 0 10px rgba(245,166,35,0.6); }
  50%       { opacity: 0.75; text-shadow: none; }
}
.ebar-icon { font-size: 13px; }

/* ── ROLLING TYRE ── */
.tyre-track {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  height: 114px;
  z-index: 50;
  pointer-events: none;
  overflow: hidden;
}

.tyre-ground-line {
  position: absolute;
  bottom: 5px; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent 0%,
    rgba(245,166,35,0.15) 20%,
    rgba(245,166,35,0.15) 80%,
    transparent 100%
  );
}

.tyre-roller {
  position: absolute;
  bottom: 6px;
  width: 104px; height: 104px;
  animation: tyreMove 13s linear infinite;
  will-change: transform;
}

/* Glow shadow under tyre (contact patch) */
.tyre-roller::after {
  content: '';
  position: absolute;
  bottom: -5px; left: 8px; right: 8px;
  height: 10px;
  background: radial-gradient(ellipse at center, rgba(245,166,35,0.45) 0%, transparent 70%);
  border-radius: 50%;
  animation: contactGlow 0.25s ease-in-out infinite alternate;
}
@keyframes contactGlow {
  from { opacity: 0.6; transform: scaleX(0.88); }
  to   { opacity: 1.0; transform: scaleX(1.12); }
}

/* Amber light trail behind the tyre */
.tyre-trail {
  position: absolute;
  top: 12px; left: -55px;
  width: 60px; height: 80px;
  background: radial-gradient(ellipse at right center, rgba(245,166,35,0.18) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.tyre-svg {
  width: 104px; height: 104px;
  animation: tyreSpin 13s linear infinite;
  will-change: transform;
  filter: drop-shadow(0 0 10px rgba(245,166,35,0.5))
          drop-shadow(0 4px 16px rgba(0,0,0,0.8));
}

/* Rolling physics:
   tyre visual radius ≈ 104/120 × 57 ≈ 49.4 px
   circumference ≈ 2π × 49.4 ≈ 310 px
   travel ≈ 100vw + 265px ≈ ~1705 px (1440 screen)
   rotations ≈ 1705 / 310 ≈ 5.5  →  1980°
*/
@keyframes tyreMove {
  0%   { transform: translateX(calc(100vw + 120px)); }
  100% { transform: translateX(-160px); }
}
@keyframes tyreSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(1980deg); }
}

/* Hero padding bump to clear emergency bar */
.hero { padding-top: 160px; }

/* ═══════════════════════════════════════════
   MOBILE RESPONSIVE FIXES
   ═══════════════════════════════════════════ */

/* ── Emergency bar: shorter text on small screens ── */
@media (max-width: 600px) {
  .emergency-bar { padding: 0 8px; height: 32px; }
  .ebar-text-inner { font-size: 9px; letter-spacing: 1px; }
  .ebar-side { gap: 4px; }
  .elight { width: 9px; height: 9px; }
  .ebar-icon { display: none; }
  .hero { padding-top: 148px; }
}

/* ── Hero: full-width stack on mobile ── */
@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 32px;
  }
  .hero-content { max-width: 100%; }
  .hero-logo { margin: 0 auto 24px; }
  .hero-badge { justify-content: center; }
  .hero-ctas { justify-content: center; }
  .hero-stats { justify-content: center; flex-wrap: wrap; gap: 16px; margin: 0 auto; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-van-col { order: -1; }
}

/* ── Hero stats: wrap neatly on mobile ── */
@media (max-width: 600px) {
  .hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 16px;
    width: 100%;
  }
  .stat-divider { display: none; }
  .stat { align-items: center; }
  .hero h1 { letter-spacing: -1px; }
}

/* ── Buttons: full-width & large tap targets on mobile ── */
@media (max-width: 600px) {
  .hero-ctas { flex-direction: column; width: 100%; }
  .hero-ctas .btn-lg { width: 100%; justify-content: center; font-size: 15px; padding: 16px 20px; }
  .btn { min-height: 44px; }
}

/* ── Services grid: 1 column on small screens ── */
@media (max-width: 500px) {
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
}

/* ── Reviews grid ── */
@media (max-width: 700px) {
  .reviews-grid { grid-template-columns: 1fr; }
  .rating-summary { flex-direction: column; align-items: flex-start; gap: 16px; }
  .rating-number { font-size: 44px; }
}

/* ── Rolling tyre: smaller on mobile ── */
@media (max-width: 600px) {
  .tyre-track { height: 72px; }
  .tyre-roller { width: 64px; height: 64px; bottom: 4px; }
  .tyre-svg { width: 64px; height: 64px; }
}

/* ── Contact layout ── */
@media (max-width: 700px) {
  .contact-layout { grid-template-columns: 1fr; gap: 32px; }
  .contact-cta-card { padding: 24px; }
}

/* ── Coverage/Map ── */
@media (max-width: 700px) {
  .map-layout { grid-template-columns: 1fr; }
  .map-wrap iframe { height: 300px; }
  .map-sidebar .coverage-areas { grid-template-columns: 1fr 1fr; }
}

/* ── Footer ── */
@media (max-width: 600px) {
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { font-size: 11px; }
}

/* ── Nav: make logo smaller on mobile ── */
@media (max-width: 400px) {
  .logo-img { height: 34px; }
  .nav-inner { height: 56px; }
  .emergency-bar { top: 56px; }
  .hero { padding-top: 136px; }
}

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; }
}

/* ═══════════════════════════════════════════
   MOBILE STICKY CTA BAR
   ═══════════════════════════════════════════ */
/* Mobile sticky bar — always defined, hidden on desktop */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  padding: 10px 12px 16px;
  padding-bottom: calc(16px + env(safe-area-inset-bottom));
  gap: 10px;
  background: #0a0a0b;
  border-top: 1px solid rgba(245,166,35,0.2);
  -webkit-transform: translate3d(0,0,0);
  transform: translate3d(0,0,0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.mobile-cta-btn {
  flex: 1;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 15px 10px;
  border-radius: 14px;
  font-size: 15px; font-weight: 700;
  text-decoration: none;
  transition: transform 0.15s;
}
.mobile-cta-btn svg { width: 20px; height: 20px; flex-shrink: 0; }
.mobile-cta-btn:active { transform: scale(0.97); }
.mobile-cta-call {
  background: var(--accent); color: #0a0a0b;
  animation: btnGlow 1.8s ease-in-out infinite;
}
.mobile-cta-whatsapp {
  background: #25d366; color: #fff;
  animation: waGlow 1.8s ease-in-out infinite;
}
@keyframes waGlow {
  0%, 100% {
    box-shadow: 0 0 12px rgba(37,211,102,0.5),
                0 0 28px rgba(37,211,102,0.25),
                0 0 48px rgba(37,211,102,0.1);
  }
  50% {
    box-shadow: 0 0 20px rgba(37,211,102,0.8),
                0 0 44px rgba(37,211,102,0.45),
                0 0 80px rgba(37,211,102,0.2);
  }
}

@media (max-width: 768px) {
  .mobile-cta-bar { display: flex !important; }
  .footer-bottom  { padding-bottom: 90px; }
  .chat-widget    { bottom: 90px; }
  .tyre-track     { bottom: 72px; }
}

/* ═══════════════════════════════════════════
   AI CHAT WIDGET
   ═══════════════════════════════════════════ */

.chat-widget {
  position: fixed;
  bottom: 130px; right: 24px;
  z-index: 200;
  display: flex; flex-direction: column; align-items: flex-end;
}

/* ── Toggle button ── */
.chat-toggle {
  position: relative;
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--accent); color: #0a0a0b;
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(245,166,35,0.5), 0 0 0 0 rgba(245,166,35,0.4);
  animation: chatBtnPulse 2.5s ease-in-out infinite;
  transition: transform 0.2s;
}
.chat-toggle:hover { transform: scale(1.08); }

@keyframes chatBtnPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(245,166,35,0.5), 0 0 0 0 rgba(245,166,35,0.35); }
  50%       { box-shadow: 0 4px 28px rgba(245,166,35,0.7), 0 0 0 12px rgba(245,166,35,0); }
}

.chat-badge {
  position: absolute; top: -4px; right: -4px;
  width: 20px; height: 20px; border-radius: 50%;
  background: #e53e3e; color: #fff;
  font-size: 11px; font-weight: 800;
  display: none; align-items: center; justify-content: center;
  border: 2px solid var(--bg);
  animation: badgeBounce 0.6s ease infinite alternate;
}
@keyframes badgeBounce {
  from { transform: scale(1); }
  to   { transform: scale(1.2); }
}

/* ── Chat window ── */
.chat-window {
  position: absolute;
  bottom: 74px; right: 0;
  width: 340px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: 0 16px 60px rgba(0,0,0,0.6), 0 0 0 1px rgba(245,166,35,0.1);
  display: flex; flex-direction: column;
  overflow: hidden;
  opacity: 0; transform: translateY(16px) scale(0.96);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  max-height: 520px;
}
.chat-window.open {
  opacity: 1; transform: translateY(0) scale(1);
  pointer-events: all;
}

/* ── Header ── */
.chat-header {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 16px;
  background: linear-gradient(135deg, #1a1a20 0%, #1e1e26 100%);
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.chat-header-av {
  position: relative;
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  background: var(--accent-dim);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  border: 1.5px solid rgba(245,166,35,0.3);
}
.chat-online-dot {
  position: absolute; bottom: 1px; right: 1px;
  width: 10px; height: 10px; border-radius: 50%;
  background: #22c55e;
  border: 2px solid var(--surface);
  animation: onlinePulse 2s ease-in-out infinite;
}
@keyframes onlinePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34,197,94,0.5); }
  50%       { box-shadow: 0 0 0 4px rgba(34,197,94,0); }
}
.chat-header-name { font-size: 14px; font-weight: 700; color: var(--text); }
.chat-header-status { font-size: 11px; color: #22c55e; margin-top: 1px; }
.chat-close-btn {
  margin-left: auto;
  background: none; border: none; color: var(--text-muted);
  font-size: 22px; line-height: 1; cursor: pointer; padding: 4px 6px;
  border-radius: 6px; transition: background 0.2s, color 0.2s;
}
.chat-close-btn:hover { background: var(--surface2); color: var(--text); }

/* ── Messages area ── */
.chat-messages {
  flex: 1; overflow-y: auto; padding: 16px 12px 8px;
  display: flex; flex-direction: column; gap: 10px;
  scroll-behavior: smooth;
  max-height: 300px;
}
.chat-messages::-webkit-scrollbar { width: 4px; }
.chat-messages::-webkit-scrollbar-track { background: transparent; }
.chat-messages::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }

/* Message rows */
.cm { display: flex; align-items: flex-end; gap: 8px; }
.cm--user { flex-direction: row-reverse; }

.cm-avatar {
  width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0;
  background: var(--accent-dim); color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(245,166,35,0.2);
}

.cm-bubble {
  max-width: 240px;
  padding: 10px 14px;
  border-radius: 16px;
  font-size: 13px; line-height: 1.6;
  word-break: break-word;
  animation: msgPop 0.2s ease;
}
@keyframes msgPop {
  from { transform: scale(0.9); opacity: 0; }
  to   { transform: scale(1);   opacity: 1; }
}
.cm--bot  .cm-bubble { background: var(--surface2); color: var(--text); border-bottom-left-radius: 4px; }
.cm--user .cm-bubble { background: var(--accent); color: #0a0a0b; border-bottom-right-radius: 4px; font-weight: 500; }
.cm--user .cm-bubble strong { color: #0a0a0b; }
.cm--bot  .cm-bubble a { color: var(--accent); font-weight: 700; text-decoration: none; }
.cm--bot  .cm-bubble a:hover { text-decoration: underline; }

/* Typing indicator */
.cm-bubble--typing {
  display: flex; align-items: center; gap: 5px;
  padding: 12px 16px; min-width: 52px;
}
.cm-bubble--typing span {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--text-muted);
  animation: typingDot 1.2s ease-in-out infinite;
}
.cm-bubble--typing span:nth-child(2) { animation-delay: 0.2s; }
.cm-bubble--typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typingDot {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30%            { transform: translateY(-6px); opacity: 1; }
}

/* ── Quick replies ── */
.chat-quick-replies {
  display: flex; flex-wrap: wrap; gap: 6px;
  padding: 4px 12px 8px;
  flex-shrink: 0;
}
.cqr-btn {
  background: var(--surface2); border: 1px solid var(--border);
  color: var(--text); font-size: 12px; font-weight: 600;
  padding: 6px 12px; border-radius: 100px; cursor: pointer;
  transition: all 0.2s ease; white-space: nowrap;
}
.cqr-btn:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-1px); }

/* ── Input row ── */
.chat-input-row {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 12px;
  border-top: 1px solid var(--border);
  flex-shrink: 0;
}
.chat-input {
  flex: 1;
  background: var(--surface2); border: 1px solid var(--border);
  color: var(--text); font-size: 13px; font-family: inherit;
  padding: 10px 14px; border-radius: 100px; outline: none;
  transition: border-color 0.2s;
}
.chat-input:focus { border-color: var(--accent); }
.chat-input::placeholder { color: var(--text-dim); }
.chat-send-btn {
  width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0;
  background: var(--accent); color: #0a0a0b; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s ease;
}
.chat-send-btn:hover { background: var(--accent2); transform: scale(1.08); }

/* ── Mobile adjustments ── */
@media (max-width: 400px) {
  .chat-widget { right: 12px; bottom: 100px; }
  .chat-window { width: calc(100vw - 24px); right: -12px; }
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { opacity: 0; }
.fade-up.visible { animation: fadeUp 0.6s ease forwards; }

/* ── NAV DROPDOWN ── */
.nav-dropdown { position: relative; display: flex; align-items: center; }
.nav-dropdown-trigger {
  background: none; border: none; cursor: pointer;
  color: var(--text-muted); font-size: 14px; font-weight: 500;
  display: flex; align-items: center; gap: 5px;
  padding: 0; font-family: inherit; line-height: 1;
  transition: color 0.2s;
}
.nav-dropdown-trigger:hover { color: var(--text); }
.nav-chevron { font-size: 11px; transition: transform 0.2s; display: inline-block; }
.nav-dropdown:hover .nav-chevron { transform: rotate(180deg); }
.nav-dropdown-menu {
  position: absolute; top: calc(100% + 12px); left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 8px;
  min-width: 264px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.15s ease, transform 0.15s ease;
  box-shadow: var(--shadow-lg);
  z-index: 200;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1; pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu a {
  color: var(--text-muted); text-decoration: none;
  font-size: 13px; font-weight: 500;
  padding: 8px 12px; border-radius: 6px;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}
.nav-dropdown-menu a:hover { background: var(--surface2); color: var(--accent); }

/* Mobile areas expandable */
.mobile-areas-btn {
  background: none; border: none; border-bottom: 1px solid var(--border);
  color: var(--text); font-size: 15px; font-weight: 500;
  padding: 10px 0; cursor: pointer; text-align: left;
  width: 100%; font-family: inherit;
  display: flex; justify-content: space-between; align-items: center;
}
.mobile-areas-list {
  display: none; flex-direction: column;
  padding: 4px 0 8px 12px;
}
.mobile-areas-list.open { display: flex; }
.mobile-areas-list a {
  color: var(--text-muted); text-decoration: none;
  font-size: 14px; padding: 7px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.mobile-areas-list a:hover { color: var(--accent); }

/* ── PAGE HEADER ── */
.page-header {
  padding: 120px 0 40px;
  border-bottom: 1px solid var(--border);
  background: var(--bg2);
}
.breadcrumb {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; color: var(--text-dim);
  margin-bottom: 14px;
}
.breadcrumb a { color: var(--text-dim); text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb-sep { font-size: 11px; }
.page-header h1 {
  font-size: clamp(28px, 4vw, 44px); font-weight: 900;
  letter-spacing: -1.5px; margin-bottom: 10px; line-height: 1.1;
}
.page-header p {
  font-size: 16px; color: var(--text-muted); max-width: 560px; line-height: 1.6;
}

/* ── CTA STRIP ── */
.cta-strip {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 36px 48px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap; margin: 64px 0 0;
}
.cta-strip-text h3 { font-size: 20px; font-weight: 800; margin-bottom: 4px; }
.cta-strip-text p { font-size: 14px; color: var(--text-muted); }
.cta-strip-btns { display: flex; gap: 12px; flex-wrap: wrap; }

@media (max-width: 700px) {
  .cta-strip { padding: 24px 20px; flex-direction: column; align-items: flex-start; }
  .cta-strip-btns { width: 100%; }
  .cta-strip-btns .btn { flex: 1; justify-content: center; }
  .page-header { padding: 110px 0 32px; }
}

/* ── FAQ ── */
.faq-list { display:flex; flex-direction:column; gap:10px; }
.faq-item { background:var(--surface); border:1px solid var(--border); border-radius:var(--radius); overflow:hidden; }
.faq-question { width:100%; background:none; border:none; cursor:pointer; color:var(--text); font-size:15px; font-weight:600; padding:18px 24px; text-align:left; font-family:inherit; display:flex; justify-content:space-between; align-items:center; gap:16px; transition:background 0.2s; }
.faq-question:hover { background:var(--surface2); }
.faq-icon { font-size:22px; color:var(--accent); flex-shrink:0; transition:transform 0.25s; line-height:1; }
.faq-item.open .faq-icon { transform:rotate(45deg); }
.faq-answer { display:none; padding:0 24px 18px; color:var(--text-muted); font-size:15px; line-height:1.75; }
.faq-item.open .faq-answer { display:block; }

/* ═══════════════════════════════════════════════════════════
   COMPREHENSIVE MOBILE RESPONSIVE FIXES
   ═══════════════════════════════════════════════════════════ */

/* Service page: what's included + booking card grid */
.svc-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 56px;
}

/* Pricing tiers: 3 cards */
.pricing-tiers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 56px;
}

/* About intro: text + stats */
.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

/* About stats inner: 2x2 */
.about-stats-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* Responsive table wrapper */
.table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--border);
  border-radius: 16px;
  margin-bottom: 56px;
}
.table-scroll table {
  min-width: 500px;
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}

@media (max-width: 768px) {
  /* ── Page header ── */
  .page-header { padding: 96px 0 24px; }
  .page-header h1 { font-size: clamp(20px, 6vw, 32px); letter-spacing: -0.5px; }
  .page-header p { font-size: 14px; line-height: 1.55; }

  /* ── Section padding ── */
  .section { padding: 52px 0; }

  /* ── Container horizontal padding ── */
  .container { padding-left: 18px; padding-right: 18px; }

  /* ── Service page detail grid → stack ── */
  .svc-detail-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 36px;
  }

  /* ── Pricing tiers → stack ── */
  .pricing-tiers-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 36px;
  }

  /* ── About intro → stack ── */
  .about-intro-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  /* ── Why/how-it-works cards ── */
  .why-grid { grid-template-columns: 1fr !important; }

  /* ── CTA strip ── */
  .cta-strip { flex-direction: column; align-items: flex-start; gap: 16px; padding: 24px 18px; }
  .cta-strip-btns { width: 100%; flex-direction: column; }
  .cta-strip-btns .btn { width: 100%; justify-content: center; }

  /* ── Pricing table notes col: hide on mobile ── */
  .table-scroll table th:last-child,
  .table-scroll table td:last-child { display: none; }

  /* ── Area links on about page ── */
  .area-links-grid { grid-template-columns: repeat(2, 1fr) !important; }

  /* ── Nav dropdown menus: don't overflow screen ── */
  .nav-dropdown-menu { min-width: 0 !important; width: 92vw; max-width: 360px; }

  /* ── General text sizing ── */
  h2[style] { font-size: 19px !important; }
  p[style*="font-size:16px"] { font-size: 15px !important; }
}

@media (max-width: 480px) {
  /* ── Page header: extra small ── */
  .page-header h1 { font-size: 22px; }
  .page-header p { font-size: 13px; }

  /* ── Pricing tier cards: tighter padding ── */
  .pricing-tiers-grid > div { padding: 20px 16px !important; }

  /* ── Section padding ── */
  .section { padding: 40px 0; }

  /* ── About stats ── */
  .about-stats-inner { grid-template-columns: 1fr 1fr; gap: 10px; }
  .about-stats-inner > div { padding: 12px !important; }
  .about-stats-inner .stat-num { font-size: 26px !important; }

  /* ── Booking card on service pages ── */
  .svc-booking-card { padding: 20px !important; }

  /* ── Table: reduce padding ── */
  .table-scroll table th,
  .table-scroll table td { padding: 11px 14px !important; font-size: 13px; }

  /* ── FAQ ── */
  .faq-question { font-size: 14px; padding-right: 28px; }

  /* ── Footer ── */
  .footer-inner { grid-template-columns: 1fr !important; }

  /* ── Breadcrumb: truncate long paths ── */
  .breadcrumb { flex-wrap: wrap; gap: 4px; font-size: 12px; }
}

/* ═══════════════════════════════════════════════════════════
   MOBILE FIX v2 — Comprehensive Spacing, Layout & UX Fixes
   ═══════════════════════════════════════════════════════════ */

/* ── FAQ chevron: animate when open (was missing CSS) ── */
.faq-chevron {
  font-size: 18px;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform 0.25s;
  display: inline-block;
  line-height: 1;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }

/* ── Hide rolling tyre on mobile — conflicts with sticky CTA bar ── */
@media (max-width: 768px) {
  .tyre-track { display: none !important; }
}

/* ════════════════════════════════
   ≤ 768px fixes
   ════════════════════════════════ */
@media (max-width: 768px) {

  /* Section header */
  .section-header { margin-bottom: 36px; }
  .section-header h2 { font-size: clamp(22px, 6vw, 32px) !important; letter-spacing: -0.5px; }
  .section-header p { font-size: 14px; }

  /* Service cards */
  .service-card { padding: 20px; }
  .service-card h3 { font-size: 16px; }
  .service-icon { width: 44px; height: 44px; margin-bottom: 14px; }
  .service-icon svg { width: 22px; height: 22px; }

  /* Why / How-it-works cards */
  .why-card { padding: 16px; gap: 12px; }
  .why-card h4 { font-size: 15px; }
  .why-icon { width: 40px; height: 40px; }

  /* Hero */
  .hero-sub { font-size: 15px; margin-bottom: 24px; }
  .hero-ctas { margin-bottom: 24px; }
  .hero-badge { white-space: normal; justify-content: center; font-size: 11px; }

  /* Reviews section */
  .rating-summary { padding: 16px 18px; flex-direction: column; align-items: flex-start; }
  .rating-number { font-size: 40px; }
  .rating-stars svg { width: 22px; height: 22px; }
  .review-card { padding: 18px; }
  .review-card--cta { padding: 24px; }
  .review-cta-inner h3 { font-size: 17px; }

  /* Contact */
  .contact-cta-card { padding: 24px; }
  .contact-cta-card h3 { font-size: 20px; }
  .contact-info h2 { font-size: clamp(22px, 6vw, 36px) !important; }

  /* Coverage CTA box */
  .coverage-cta-box { padding: 20px; }
  .coverage-cta-box h3 { font-size: 17px; }
  .map-cta-box { padding: 16px; }

  /* Services grid: 2 columns on tablet, 1 on phone */
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }

  /* FAQ */
  .faq-question { padding: 14px 18px; font-size: 14px; }
  .faq-answer { padding: 0 18px 14px; font-size: 14px; }

  /* Page header buttons */
  .page-header { padding: 100px 0 24px; }
}

/* ════════════════════════════════
   ≤ 480px fixes
   ════════════════════════════════ */
@media (max-width: 480px) {

  /* Section header */
  .section-header { margin-bottom: 24px; }

  /* Service cards: 1 column */
  .services-grid { grid-template-columns: 1fr; }
  .service-card { padding: 16px; }

  /* Why cards */
  .why-card { padding: 14px; gap: 10px; }

  /* Reviews */
  .rating-number { font-size: 32px; }
  .rating-stars svg { width: 18px; height: 18px; }
  .review-card { padding: 14px; }

  /* Contact */
  .contact-cta-card { padding: 16px; }

  /* Hero badge */
  .hero-badge { font-size: 10px; padding: 5px 12px; }

  /* Hero h1 */
  .hero h1 { font-size: clamp(28px, 8vw, 42px); letter-spacing: -1px; }
}

/* ════════════════════════════════
   ≤ 360px fixes (small phones)
   ════════════════════════════════ */
@media (max-width: 360px) {
  .hero h1 { font-size: 26px; }
  .hero-badge { font-size: 9px; letter-spacing: 0; padding: 4px 10px; }
  .service-card { padding: 14px; }
  .why-card { padding: 12px; }
}

/* ── Page hero image ── */
.page-hero-img {
  width: 100%;
  background: #0a0a0b;
  display: block;
  text-align: center;
}
.page-hero-img img {
  width: 100%;
  max-height: 520px;
  object-fit: contain;
  object-position: center;
  display: block;
}
@media (max-width: 768px) {
  .page-hero-img img { max-height: 280px; }
}

/* ═══════════════════════════════════════════════════════════════
   BLOG PAGE NAVBAR  (.navbar / .nav-menu / .nav-link structure)
   ═══════════════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10,10,11,0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  height: 64px;
  display: flex;
  align-items: center;
  padding: 0 24px;
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
}
.nav-logo {
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
  text-decoration: none;
  white-space: nowrap;
  margin-right: auto;
}
.nav-logo span { color: var(--accent); }
.nav-menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2px;
  margin: 0;
  padding: 0;
}
.nav-menu li { position: relative; }
a.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
  display: block;
}
a.nav-link:hover { color: var(--text); background: var(--surface2); }
.nav-menu .nav-cta {
  background: var(--accent);
  color: #fff !important;
  padding: 9px 18px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  font-size: 14px;
  margin-left: 8px;
  transition: opacity 0.2s;
  white-space: nowrap;
}
.nav-menu .nav-cta:hover { opacity: 0.85; }
/* Dropdown */
.nav-menu li.nav-dropdown > .dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: var(--card-bg);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 8px;
  min-width: 210px;
  list-style: none;
  z-index: 1001;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}
.nav-menu li.nav-dropdown:hover > .dropdown-menu,
.nav-menu li.nav-dropdown.open > .dropdown-menu { display: block; }
.nav-menu li.nav-dropdown .dropdown-menu li a {
  display: block;
  padding: 7px 12px;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  border-radius: 6px;
  transition: background 0.15s, color 0.15s;
}
.nav-menu li.nav-dropdown .dropdown-menu li a:hover {
  background: var(--surface2);
  color: var(--text);
}
/* Hamburger toggle button */
.navbar .nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-direction: column;
  gap: 5px;
  margin-left: 16px;
}
.navbar .nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}
/* Mobile */
@media (max-width: 900px) {
  .navbar .nav-toggle { display: flex; }
  .nav-menu {
    display: none;
    position: fixed;
    top: 64px; left: 0; right: 0; bottom: 0;
    background: var(--dark);
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 20px;
    overflow-y: auto;
    gap: 0;
    z-index: 999;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .nav-menu.open { display: flex; }
  .nav-menu li { width: 100%; }
  a.nav-link { padding: 14px 12px; font-size: 16px; width: 100%; box-sizing: border-box; }
  .nav-menu li.nav-dropdown > .dropdown-menu {
    display: none;
    position: static;
    border: none;
    border-radius: 0;
    padding: 0 0 8px 16px;
    background: transparent;
    box-shadow: none;
    min-width: unset;
  }
  .nav-menu li.nav-dropdown.open > .dropdown-menu { display: block; }
  .nav-menu .nav-cta { margin: 12px 0 0; width: 100%; text-align: center; padding: 14px 18px; }
}

/* ═══════════════════════════════════════
   BLOG CONTENT STYLES
   ═══════════════════════════════════════ */
/* Breadcrumb */
.breadcrumb ol {
  list-style: none;
  padding: 0; margin: 0 0 20px;
  display: flex; flex-wrap: wrap; gap: 4px;
  font-size: 13px; color: var(--text-muted);
}
.breadcrumb ol li:not(:last-child)::after { content: " /"; margin-left: 4px; }
.breadcrumb ol li a { color: var(--accent); text-decoration: none; }
.breadcrumb ol li a:hover { text-decoration: underline; }

/* Blog article typography */
.blog-article h2 { margin: 36px 0 12px; font-size: 1.35rem; color: var(--text); }
.blog-article h3 { margin: 28px 0 10px; font-size: 1.1rem; color: var(--text); }
.blog-article p { line-height: 1.8; margin-bottom: 16px; color: var(--text-muted); }
.blog-article ul, .blog-article ol { padding-left: 24px; margin-bottom: 16px; line-height: 1.8; color: var(--text-muted); }
.blog-article li { margin-bottom: 6px; }
.blog-article strong { color: var(--text); }
.blog-article a { color: var(--accent); }
.intro-text { color: var(--text-muted); }

/* Related articles grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 24px;
}
.blog-card {
  background: var(--card-bg);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: var(--text);
  transition: border-color 0.2s, transform 0.2s;
  display: block;
}
.blog-card:hover { border-color: var(--accent); transform: translateY(-3px); }
.blog-card-body { padding: 20px; }
.blog-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent);
  margin-bottom: 10px;
}
.blog-card h3 { font-size: 15px; margin: 0 0 8px; color: var(--text); line-height: 1.4; }
.blog-card p { font-size: 14px; color: var(--text-muted); margin: 0 0 12px; line-height: 1.6; }
.read-more { font-size: 13px; color: var(--accent); font-weight: 600; }

/* FAQ accordion */
.faq-section { margin-top: 48px; }
.faq-section h2 { margin-bottom: 24px; }
.faq-container { border-top: 1px solid rgba(255,255,255,0.08); }
.faq-item { border-bottom: 1px solid rgba(255,255,255,0.08); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 0;
  color: var(--text);
  font-size: 15px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  line-height: 1.5;
}
.faq-question span { font-size: 20px; flex-shrink: 0; color: var(--accent); }
.faq-answer { display: none; padding-bottom: 18px; color: var(--text-muted); line-height: 1.75; font-size: 15px; }
.faq-answer p { margin: 0; }
.faq-item.open .faq-answer { display: block; }
.faq-item.open .faq-question span { content: "−"; transform: rotate(45deg); }

/* ═══════════════════════════════════════
   BLOG PAGE FOOTER  (.footer-grid / .footer-col)
   ═══════════════════════════════════════ */
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer-col h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--text);
  margin: 0 0 12px;
}
.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-dim, #888);
  margin: 0 0 14px;
}
.footer-col > p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}
.footer-col ul {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-col ul li { font-size: 14px; color: var(--text-muted); }
.footer-col ul li a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
}
.footer-bottom a { color: var(--text-muted); text-decoration: none; }
.footer-bottom a:hover { color: var(--accent); }
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}
