/* ============================================================
   VITAL MOBILE TYRES — Production CSS
   Palette: #F5C400 | #111317 | #232A32 | #EEF1F4 | #FFFFFF
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@700;800;900&family=Barlow:wght@400;500;600;700;800&display=swap');

:root {
  --yellow:   #F5C400;
  --yellow2:  #FFD740;
  --yellow-dim: rgba(245,196,0,.14);
  --yellow-border: rgba(245,196,0,.32);
  --charcoal: #111317;
  --graphite: #232A32;
  --graphite2:#1B2028;
  --panel:    #1C2229;
  --panel2:   #151B22;
  --line:     #2C343D;
  --lgrey:    #EEF1F4;
  --muted:    #8D9BAA;
  --text:     #DDE3EA;
  --white:    #FFFFFF;
  --green:    #2ECC71;
  --radius:   16px;
  --radius-lg:24px;
  --radius-xl:32px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Barlow', system-ui, sans-serif;
  background: var(--charcoal);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
}

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

.container { width: min(1140px, 92%); margin: 0 auto; }
.small { font-size: 13px; color: var(--muted); }

/* TOP BAR */
.topbar {
  background: var(--charcoal);
  border-bottom: 1px solid var(--line);
  font-size: 13px; font-weight: 600; color: var(--muted);
}
.topbar .container {
  display: flex; justify-content: space-between;
  align-items: center; padding: 9px 0; gap: 12px; flex-wrap: wrap;
}
.topbar strong { color: var(--yellow); }
.topbar-alert { display: inline-flex; align-items: center; gap: 6px; color: var(--text); }
.topbar-alert::before {
  content: ''; width: 8px; height: 8px; border-radius: 50%;
  background: var(--green); animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.35} }

/* HEADER */
.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(17,19,23,.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; gap: 16px; }
.logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900; font-size: 22px;
  letter-spacing: .02em; text-transform: uppercase; color: var(--white);
}
.logo-mark {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--yellow);
  display: grid; place-items: center;
  color: var(--charcoal); font-size: 20px; font-weight: 900; flex-shrink: 0;
}
.nav-links { display: flex; align-items: center; gap: 24px; font-size: 15px; font-weight: 600; color: var(--muted); }
.nav-links a:hover { color: var(--white); }

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border-radius: 999px; padding: 14px 24px;
  font-family: 'Barlow', sans-serif; font-weight: 800; font-size: 15px;
  border: 2px solid transparent; cursor: pointer; white-space: nowrap;
  transition: transform .15s, box-shadow .15s, background .15s;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--yellow); color: var(--charcoal); box-shadow: 0 8px 28px rgba(245,196,0,.28); }
.btn-primary:hover { background: var(--yellow2); box-shadow: 0 12px 36px rgba(245,196,0,.38); }
.btn-whatsapp { background: #128C7E; color: #fff; box-shadow: 0 6px 20px rgba(18,140,126,.25); }
.btn-whatsapp:hover { background: #0FA893; }
.btn-dark { background: var(--charcoal); color: var(--white); }
.btn-dark:hover { background: var(--graphite); }
.btn-lg { padding: 18px 32px; font-size: 17px; }

/* HERO */
.hero { position: relative; overflow: hidden; background: var(--graphite2); }
.hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 90% 10%, rgba(245,196,0,.22) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 10% 90%, rgba(245,196,0,.08) 0%, transparent 50%);
  pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 52px; align-items: center; padding: 80px 0 72px; position: relative; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--yellow-dim); border: 1px solid var(--yellow-border);
  color: var(--yellow); padding: 7px 14px; border-radius: 999px;
  font-weight: 800; font-size: 13px; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 20px;
}
.eyebrow-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--yellow); animation: pulse 2s infinite; }

h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900; font-size: clamp(42px, 6.5vw, 74px);
  line-height: .95; letter-spacing: -.01em;
  text-transform: uppercase; color: var(--white); margin-bottom: 20px;
}
h1 .accent { color: var(--yellow); }
h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-size: clamp(28px, 4vw, 46px);
  line-height: 1.0; text-transform: uppercase; color: var(--white); margin-bottom: 16px;
}
h3 { font-weight: 800; font-size: 19px; color: var(--white); margin-bottom: 10px; }
p { color: var(--text); line-height: 1.65; }
.lead { font-size: 19px; color: #C8D0DA; line-height: 1.6; max-width: 540px; }

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin: 28px 0 24px; }

.trust-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.trust-pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.06); border: 1px solid var(--line);
  border-radius: 999px; padding: 8px 14px; font-weight: 700; font-size: 13px; color: var(--text);
}
.trust-pill::before { content: '✓'; color: var(--green); font-weight: 900; }

.hero-card {
  background: linear-gradient(160deg, var(--panel) 0%, var(--panel2) 100%);
  border: 1px solid var(--line); border-radius: var(--radius-xl);
  padding: 24px; box-shadow: 0 32px 80px rgba(0,0,0,.45);
}
.van-placeholder {
  aspect-ratio: 4/3; border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(245,196,0,.15) 0%, transparent 50%),
    repeating-linear-gradient(-38deg, #1E2730, #1E2730 16px, #232C36 16px, #232C36 32px);
  border: 1px solid var(--line); display: grid; place-items: center;
  text-align: center; padding: 28px;
}
.van-placeholder strong { font-size: 20px; color: var(--white); display: block; margin-bottom: 8px; }
.van-placeholder p { font-size: 14px; color: var(--muted); margin: 0; }
.notice {
  margin-top: 14px; border-left: 3px solid var(--yellow);
  background: rgba(245,196,0,.07); padding: 14px 16px;
  border-radius: 0 12px 12px 0; color: var(--white); font-size: 14px; font-weight: 600;
}

/* STATS BAR */
.stats-bar { background: var(--yellow); padding: 20px 0; }
.stats-inner { display: grid; grid-template-columns: repeat(4,1fr); }
.stat-item { text-align: center; padding: 8px 12px; border-right: 1px solid rgba(0,0,0,.12); }
.stat-item:last-child { border-right: none; }
.stat-num { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 32px; color: var(--charcoal); line-height: 1; }
.stat-label { font-size: 11px; font-weight: 800; color: rgba(0,0,0,.6); text-transform: uppercase; letter-spacing: .04em; margin-top: 2px; }

/* SECTIONS */
.section { padding: 72px 0; border-bottom: 1px solid var(--line); }
.section-tag { display: inline-block; font-size: 12px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--yellow); margin-bottom: 10px; }

/* SERVICE CARDS */
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.card { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px; transition: border-color .2s, transform .2s; }
.card:hover { border-color: rgba(245,196,0,.35); transform: translateY(-2px); }
.card-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--yellow-dim); border: 1px solid var(--yellow-border);
  display: grid; place-items: center; font-size: 22px; margin-bottom: 16px;
}
.card h3 { font-size: 18px; margin-bottom: 8px; }
.card p { font-size: 15px; color: var(--muted); margin: 0; }
.card-time { display: inline-block; margin-top: 12px; font-size: 13px; font-weight: 700; color: var(--yellow); background: var(--yellow-dim); border-radius: 999px; padding: 4px 12px; }

/* WHY US */
.check { list-style: none; display: grid; gap: 0; }
.check li { display: flex; align-items: flex-start; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--line); color: var(--text); font-weight: 500; }
.check li:last-child { border-bottom: none; }
.check-icon { width: 24px; height: 24px; flex-shrink: 0; border-radius: 50%; background: rgba(46,204,113,.12); border: 1px solid rgba(46,204,113,.28); display: grid; place-items: center; font-size: 12px; color: var(--green); }

/* FORM */
.form { display: grid; gap: 12px; }
input, textarea, select { width: 100%; background: var(--graphite2); border: 1px solid var(--line); border-radius: 12px; padding: 14px 16px; color: var(--white); font: inherit; font-size: 15px; transition: border-color .2s; }
input:focus, textarea:focus { outline: none; border-color: var(--yellow); }
input::placeholder, textarea::placeholder { color: var(--muted); }
textarea { min-height: 110px; resize: vertical; }

/* AREAS */
.area-list { display: grid; grid-template-columns: repeat(5,1fr); gap: 8px; margin-top: 28px; }
.area-list a { display: block; background: var(--panel2); border: 1px solid var(--line); border-radius: 12px; padding: 12px 14px; font-weight: 700; font-size: 13px; color: var(--text); transition: border-color .2s, color .2s; }
.area-list a:hover { border-color: var(--yellow); color: var(--yellow); }

/* REVIEWS */
.reviews-section { padding: 72px 0; border-bottom: 1px solid var(--line); }
.reviews-header { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-bottom: 36px; }
.google-badge { display: inline-flex; align-items: center; gap: 12px; background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 14px 20px; }
.g-logo { font-size: 22px; width: 36px; height: 36px; background: #fff; border-radius: 50%; display: grid; place-items: center; }
.google-badge-title { font-weight: 800; font-size: 15px; color: var(--white); }
.google-badge-sub { font-size: 13px; color: var(--muted); }
.stars { display: flex; gap: 2px; color: var(--yellow); font-size: 18px; }
.stars-sm { font-size: 14px; gap: 1px; }

.reviews-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-bottom: 36px; }
.review-card { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 22px; display: flex; flex-direction: column; gap: 12px; }
.review-card-top { display: flex; align-items: center; gap: 10px; }
.review-avatar { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--yellow), #FF9500); display: grid; place-items: center; font-weight: 900; font-size: 16px; color: var(--charcoal); flex-shrink: 0; }
.review-meta { line-height: 1.3; }
.review-name { font-weight: 800; font-size: 14px; color: var(--white); }
.review-date { font-size: 12px; color: var(--muted); }
.review-body { font-size: 14px; color: var(--muted); line-height: 1.6; flex: 1; font-style: italic; }
.review-placeholder { font-size: 13px; color: #566270; background: rgba(255,255,255,.02); border: 1px dashed #2D3748; border-radius: 8px; padding: 10px; text-align: center; }

.reviews-cta { text-align: center; padding: 36px 28px; background: var(--yellow-dim); border: 1px solid var(--yellow-border); border-radius: var(--radius-xl); }
.reviews-cta h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 30px; text-transform: uppercase; font-weight: 900; }
.reviews-cta p { color: var(--muted); font-size: 15px; margin: 8px 0 22px; }

/* FAQ */
.faq details { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); margin-bottom: 10px; overflow: hidden; transition: border-color .2s; }
.faq details[open] { border-color: rgba(245,196,0,.3); }
.faq summary { cursor: pointer; padding: 18px 22px; font-weight: 700; font-size: 16px; color: var(--white); list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; color: var(--yellow); font-size: 24px; font-weight: 300; flex-shrink: 0; }
.faq details[open] summary::after { content: '−'; }
.faq details p { padding: 0 22px 18px; font-size: 15px; color: var(--muted); }

/* CTA BAND */
.cta-band { background: var(--yellow); padding: 64px 0; }
.cta-band-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.cta-band h2 { color: var(--charcoal); margin-bottom: 6px; }
.cta-band p { color: rgba(0,0,0,.65); font-weight: 600; font-size: 16px; margin: 0; }
.cta-band-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* FOOTER */
.footer { background: #0C0E12; padding: 48px 0 32px; border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; padding-bottom: 36px; border-bottom: 1px solid var(--line); margin-bottom: 28px; }
.footer-brand p { font-size: 14px; color: var(--muted); margin-top: 12px; max-width: 280px; }
.footer-col h4 { font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); margin-bottom: 14px; }
.footer-col a { display: block; font-size: 14px; color: var(--text); font-weight: 500; margin-bottom: 8px; }
.footer-col a:hover { color: var(--yellow); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; font-size: 13px; color: var(--muted); }
.footer-disclaimer { font-size: 12px; color: #3D4A58; margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--line); line-height: 1.6; }

/* STICKY BAR */
.sticky-mobile { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 40; background: rgba(13,15,18,.97); backdrop-filter: blur(12px); border-top: 1px solid var(--line); padding: 10px 12px; gap: 8px; }
.sticky-mobile .btn { flex: 1; padding: 14px 10px; font-size: 15px; }

/* RESPONSIVE */
@media (max-width: 1020px) {
  .area-list { grid-template-columns: repeat(4,1fr); }
  .reviews-grid { grid-template-columns: repeat(2,1fr); }
  .stats-inner { grid-template-columns: repeat(2,1fr); }
  .stat-item:nth-child(2) { border-right: none; }
}
@media (max-width: 860px) {
  .hero-grid, .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .hero-grid { padding: 52px 0 44px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .cta-band-inner { flex-direction: column; text-align: center; }
  .sticky-mobile { display: flex; }
  body { padding-bottom: 80px; }
  .reviews-header { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 600px) {
  .area-list { grid-template-columns: repeat(2,1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .hero-actions .btn { flex: 1 1 100%; }
  .topbar .container { justify-content: center; text-align: center; }
  .stats-inner { grid-template-columns: repeat(2,1fr); }
}

/* VAN PHOTO STYLES */
.van-photo {
  width: 100%; border-radius: var(--radius-lg);
  object-fit: cover; aspect-ratio: 16/10;
  display: block;
}

/* VAN STRIP SECTION */
.van-strip {
  padding: 0;
  background: var(--graphite2);
  border-bottom: 1px solid var(--line);
}
.van-strip-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 0;
  min-height: 320px;
}
.van-strip-main {
  position: relative;
  overflow: hidden;
}
.van-strip-main img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.van-strip-secondary {
  display: grid;
  grid-template-rows: 1fr 1fr;
}
.van-strip-card {
  position: relative;
  overflow: hidden;
  border-left: 2px solid var(--charcoal);
  border-bottom: 1px solid var(--charcoal);
}
.van-strip-card:last-child { border-bottom: none; }
.van-strip-card img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.van-strip-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,.75) 0%, transparent 100%);
  color: #fff; font-size: 12px; font-weight: 600;
  padding: 20px 14px 10px;
}

@media (max-width: 860px) {
  .van-strip-grid { grid-template-columns: 1fr; }
  .van-strip-secondary { grid-template-rows: auto; grid-template-columns: 1fr 1fr; }
  .van-strip-card { border-left: none; border-top: 2px solid var(--charcoal); }
  .van-strip-main img { aspect-ratio: 16/9; height: auto; }
}
@media (max-width: 520px) {
  .van-strip-secondary { grid-template-columns: 1fr; }
}

/* Slideshow removed — using V1 split hero */

/* ── GALLERY SECTION ─────────────────────────────────────── */
.gallery-section {
  padding: 72px 0;
  border-bottom: 1px solid var(--line);
  background: var(--graphite2);
}
.gallery-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 12px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--panel);
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  transition: transform .4s ease;
}
.gallery-item:hover img { transform: scale(1.03); }
.gallery-tall {
  grid-row: span 2;
}
.gallery-item:not(.gallery-tall) { aspect-ratio: 16/10; }
.gallery-tall { min-height: 480px; }
.gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,.72) 0%, transparent 100%);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 24px 14px 12px;
}

/* ── ABOUT SECTION ───────────────────────────────────────── */
.about-section { background: var(--panel2); }
.about-img-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: visible;
}
.about-img-wrap img {
  width: 100%;
  border-radius: var(--radius-xl);
  object-fit: cover;
  aspect-ratio: 4/5;
  display: block;
}
.about-badge {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: var(--yellow);
  border-radius: var(--radius);
  padding: 16px 20px;
  text-align: center;
  box-shadow: 0 8px 28px rgba(245,196,0,.35);
}
.about-badge-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 32px;
  color: var(--charcoal);
  line-height: 1;
}
.about-badge-text {
  font-size: 12px;
  font-weight: 800;
  color: rgba(0,0,0,.65);
  text-transform: uppercase;
  letter-spacing: .05em;
}

@media (max-width: 860px) {

  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-tall { grid-row: span 1; min-height: auto; }
  .about-img-wrap img { aspect-ratio: 16/10; }
}
@media (max-width: 560px) {
  .gallery-grid { grid-template-columns: 1fr; }
}
