/* ============================================================
   DC TYRES — official van palette
   ============================================================
   Sampled from the van wrap, signage, and tyre tread:
     ~50% royal blue   #1240D0   primary
     ~40% white        #FFFFFF   page surface
     ~ 5% yellow       #F5C842   bright accent (logo flame swoosh)
     ~ 5% light grey   #C5CAD2   tyre-tread cool grey
   Edit the :root block below to swap any colour everywhere.
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #14172A;
  background: #FFFFFF;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

:root {
  /* Brand blue */
  --blue:        #1240D0;
  --blue-deep:   #0A2B95;
  --blue-darker: #061C6C;
  --blue-soft:   #E8EEFB;

  /* Brand yellow — single bright value, no darker variant */
  --yellow:      #F5C842;
  --yellow-soft: #FDF3D1;

  /* Tyre-tread grey — visible 5% */
  --grey:        #C5CAD2;
  --grey-mid:    #D7DCE3;
  --grey-soft:   #ECEFF4;

  /* Surfaces */
  --bg:          #FFFFFF;
  --bg-alt:      #ECEFF4;       /* now a real visible cool grey */
  --surface:     #FFFFFF;
  --line:        #D7DCE3;
  --line-soft:   #E8EBF0;

  /* Ink */
  --ink:         #14172A;
  --ink-muted:   #4A5168;
  --ink-faded:   #7B8299;

  /* Utility */
  --whatsapp:    #25D366;

  --radius:      10px;
  --shadow-sm:   0 1px 3px rgba(10,28,108,.06), 0 1px 2px rgba(10,28,108,.04);
  --shadow-md:   0 8px 24px -8px rgba(10,28,108,.18), 0 2px 6px rgba(10,28,108,.06);
  --shadow-lg:   0 22px 50px -18px rgba(10,28,108,.30);
  --shadow-blue: 0 8px 22px rgba(18,64,208,.30);
}

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

h1, h2, h3, .display {
  font-family: 'Barlow Condensed', 'Inter', sans-serif;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.05;
}

/* Topbar */
.topbar { background: var(--blue-darker); color: #D7DCEE; font-size: 13px; }
.topbar__inner { display: flex; justify-content: space-between; align-items: center; padding: 8px 24px; }
.topbar__item { display: inline-flex; align-items: center; gap: 8px; }
.topbar__phone { color: var(--yellow); font-weight: 600; }
.topbar__phone:hover { color: #fff; }
.dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; }
.dot--live { background: #4ADE80; box-shadow: 0 0 0 0 rgba(74,222,128,.6); animation: pulse 2s infinite; }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(74,222,128,.6); }
  70% { box-shadow: 0 0 0 8px rgba(74,222,128,0); }
  100% { box-shadow: 0 0 0 0 rgba(74,222,128,0); }
}

/* Header */
.header {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  background-color: rgba(255,255,255,.94);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 24px; gap: 24px; }
.logo { display: inline-flex; align-items: center; gap: 12px; }
.logo__mark {
  background: var(--blue); color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-size: 24px;
  padding: 4px 10px; border-radius: 4px;
  letter-spacing: 1px;
  box-shadow: 0 2px 6px rgba(18,64,208,.30);
  border-bottom: 3px solid var(--yellow);
}
.logo__text { font-weight: 700; font-size: 15px; display: flex; flex-direction: column; line-height: 1.2; color: var(--ink); }
.logo__text small { font-weight: 500; font-size: 11px; color: var(--ink-faded); }
.nav { display: flex; gap: 28px; }
.nav a { color: var(--ink-muted); font-size: 14px; font-weight: 500; transition: color .15s; }
.nav a:hover { color: var(--blue); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 20px; font-weight: 600; font-size: 14px;
  border-radius: 8px;
  transition: transform .12s, box-shadow .15s, background .15s, color .15s, border-color .15s;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn--small { padding: 8px 14px; font-size: 13px; }
.btn--large { padding: 15px 28px; font-size: 16px; }
.btn--block { width: 100%; }
.btn--primary { background: var(--blue); color: #fff; box-shadow: var(--shadow-blue); }
.btn--primary:hover { background: var(--blue-deep); transform: translateY(-1px); box-shadow: 0 12px 28px rgba(18,64,208,.40); }
.btn--outline { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--outline:hover { background: var(--grey-soft); border-color: var(--ink-muted); }

/* Hero */
.hero {
  padding: 56px 0 80px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 85% 30%, rgba(18,64,208,.08), transparent 55%),
    radial-gradient(ellipse at 10% 90%, rgba(197,202,210,.20), transparent 50%),
    var(--bg);
}
.hero__inner { display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: center; }
.badge {
  display: inline-block;
  background: var(--blue-soft); color: var(--blue-deep);
  font-size: 12px; font-weight: 700;
  padding: 6px 12px; border-radius: 6px;
  letter-spacing: 1.5px;
  border: 1px solid #C9D5F3;
  margin-bottom: 22px;
}
.hero h1 { font-size: clamp(44px, 6vw, 78px); margin-bottom: 22px; text-transform: uppercase; color: var(--ink); }
.accent { color: var(--blue); }
.hero__lead { font-size: 18px; color: var(--ink-muted); margin-bottom: 32px; max-width: 520px; }
.hero__cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }
.hero__stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; padding-top: 28px; border-top: 1px solid var(--line); }
.hero__stats div { display: flex; flex-direction: column; }
.hero__stats strong { font-family: 'Barlow Condensed', sans-serif; font-size: 30px; font-weight: 800; color: var(--blue); line-height: 1; }
.hero__stats span { font-size: 13px; color: var(--ink-faded); margin-top: 4px; }

.hero__photo { position: relative; border-radius: var(--radius); }
.hero__photo-inner {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3;
  background: var(--bg-alt);
  border: 6px solid var(--surface);
  outline: 1px solid var(--grey);
}
.hero__photo-inner img { width: 100%; height: 100%; object-fit: cover; }
.hero__photo-caption {
  position: absolute; bottom: -16px; left: 16px;
  background: var(--blue); color: #fff;
  padding: 10px 18px;
  border-radius: 6px;
  font-size: 13px; font-weight: 600;
  box-shadow: var(--shadow-md);
}
.hero__photo::before {
  content: '';
  position: absolute; top: -10px; right: 30px;
  width: 110px; height: 22px;
  background: var(--yellow);
  opacity: 0.95;
  transform: rotate(8deg);
  border-radius: 1px;
  z-index: 1;
  box-shadow: 0 4px 10px rgba(245,200,66,.30);
}

/* Sections */
.section { padding: 90px 0; }
.section--alt { background: var(--bg-alt); }
.section__head { text-align: center; margin-bottom: 56px; max-width: 700px; margin-left: auto; margin-right: auto; }
.eyebrow { display: inline-block; font-size: 12px; font-weight: 700; color: var(--blue); letter-spacing: 2px; margin-bottom: 14px; text-transform: uppercase; }
.section h2 { font-size: clamp(36px, 5vw, 56px); text-transform: uppercase; color: var(--ink); }

/* Services */
.services { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.service-card {
  background: var(--surface);
  padding: 30px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--blue); }
.service-card__icon {
  width: 52px; height: 52px;
  background: var(--grey-soft);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
  border-bottom: 3px solid var(--blue);
}
.service-card h3 { font-size: 22px; margin-bottom: 8px; font-family: 'Barlow Condensed', sans-serif; font-weight: 700; text-transform: uppercase; letter-spacing: 0.02em; color: var(--ink); }
.service-card p { color: var(--ink-muted); font-size: 15px; }

/* Mobile fitting */
.mobile { padding: 90px 0; background: var(--bg); }
.mobile__inner { display: grid; grid-template-columns: 1fr 1.05fr; gap: 60px; align-items: center; }
.mobile__photo {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3;
  background: var(--bg-alt);
  position: relative;
  border: 6px solid var(--surface);
  outline: 1px solid var(--grey);
}
.mobile__photo img { width: 100%; height: 100%; object-fit: cover; }
.mobile__photo::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--blue) 0%, var(--blue) 70%, var(--yellow) 70%, var(--yellow) 100%);
}
.mobile h2 { font-size: clamp(34px, 4.5vw, 52px); text-transform: uppercase; margin-bottom: 20px; margin-top: 8px; color: var(--ink); }
.mobile__text > p { font-size: 17px; color: var(--ink-muted); margin-bottom: 28px; }
.checklist { list-style: none; margin-bottom: 32px; }
.checklist li {
  padding: 12px 0 12px 36px;
  position: relative;
  font-weight: 500;
  border-bottom: 1px solid var(--line-soft);
  color: var(--ink);
}
.checklist li::before {
  content: '✓';
  position: absolute; left: 0; top: 11px;
  width: 24px; height: 24px;
  background: var(--blue); color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 800;
}
.mobile__cta { display: flex; gap: 12px; flex-wrap: wrap; }

/* Reviews */
.reviews-layout { display: grid; grid-template-columns: 1fr 1.3fr; gap: 40px; align-items: start; }
.reviews__photo {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 5;
  background: var(--surface);
  position: sticky; top: 90px;
  border: 6px solid var(--surface);
  outline: 1px solid var(--grey);
}
.reviews__photo img { width: 100%; height: 100%; object-fit: cover; }
.reviews { display: flex; flex-direction: column; gap: 20px; }
.review {
  background: var(--surface);
  padding: 26px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  border-left: 4px solid var(--blue);
}
.review__stars { color: var(--yellow); margin-bottom: 12px; letter-spacing: 2px; font-size: 16px; text-shadow: 0 1px 0 rgba(0,0,0,.05); }
.review p { font-size: 15px; margin-bottom: 14px; line-height: 1.65; color: var(--ink); }
.review cite { font-style: normal; font-size: 13px; color: var(--ink-faded); font-weight: 600; }

/* Contact */
.contact { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact__info h2 { margin-bottom: 14px; }
.contact__lead { font-size: 16px; color: var(--ink-muted); margin-bottom: 28px; }
.contact__list { list-style: none; }
.contact__list li {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 4px;
}
.contact__list li:last-child { border-bottom: none; }
.contact__label { font-size: 11px; color: var(--ink-faded); font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; }
.contact__list a { color: var(--ink); font-weight: 600; font-size: 16px; }
.contact__list a:hover { color: var(--blue); }

.contact-form {
  background: var(--surface);
  padding: 36px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  border-top: 4px solid var(--blue);
}
.contact-form h3 { font-size: 26px; margin-bottom: 22px; text-transform: uppercase; font-family: 'Barlow Condensed', sans-serif; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; color: var(--ink); }
.field input, .field textarea {
  width: 100%; padding: 12px 14px; font: inherit;
  border: 1.5px solid var(--line); border-radius: 8px;
  background: var(--grey-soft);
  transition: border-color .15s, background .15s, box-shadow .15s;
  color: var(--ink);
}
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--blue); background: #fff;
  box-shadow: 0 0 0 3px rgba(18,64,208,.15);
}
.field textarea { resize: vertical; min-height: 100px; }
.hp { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }
.form-status { margin-top: 16px; font-size: 14px; min-height: 20px; }
.form-status.success { color: #15803D; }
.form-status.error { color: #DC2626; }

/* Footer */
.footer { background: var(--blue-darker); color: #B7BFD8; padding: 48px 0 32px; font-size: 14px; }
.footer__inner { display: grid; grid-template-columns: 2fr 1fr; gap: 32px; padding: 0 24px; }
.footer strong { color: #fff; display: block; margin-bottom: 6px; font-size: 16px; }
.footer__links { display: flex; flex-direction: column; gap: 8px; align-items: flex-end; }
.footer__links a { color: #D7DCEE; }
.footer__links a:hover { color: var(--yellow); }
.footer small { grid-column: 1 / -1; padding-top: 24px; border-top: 1px solid #1B2C70; display: block; color: #8993B8; }

/* WhatsApp FAB */
.fab {
  position: fixed; bottom: 24px; right: 24px;
  width: 60px; height: 60px;
  background: var(--whatsapp); color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 25px -5px rgba(37,211,102,.5);
  z-index: 40;
  transition: transform .2s;
}
.fab:hover { transform: scale(1.08); }

/* Responsive */
@media (max-width: 960px) {
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero__photo { max-width: 500px; margin: 0 auto; width: 100%; }
  .mobile__inner { grid-template-columns: 1fr; gap: 36px; }
  .reviews-layout { grid-template-columns: 1fr; }
  .reviews__photo { aspect-ratio: 16/9; position: static; max-width: 500px; margin: 0 auto; }
  .contact { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 720px) {
  .nav { display: none; }
  .logo__text small { display: none; }
  .hero { padding: 40px 0 56px; }
  .section { padding: 64px 0; }
  .mobile { padding: 64px 0; }
  .hero__stats { grid-template-columns: repeat(3, auto); gap: 14px; }
  .hero__stats strong { font-size: 24px; }
  .hero__stats span { font-size: 11px; }
  .footer__inner { grid-template-columns: 1fr; }
  .footer__links { align-items: flex-start; }
  .topbar__inner { flex-direction: column; gap: 4px; padding: 8px 16px; }
}
@media (max-width: 480px) {
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { width: 100%; }
  .contact-form { padding: 24px; }
  .hero__photo::before { display: none; }
}
