/* ============ ROOT ============ */
:root {
  --bg: #0a0a0a;
  --bg-card: #1c1c1c;
  --bg-card-2: #292929;
  --text: #e1e7ef;
  --muted: #818b98;
  --orange: #ff4d00;
  --orange-dark: #e64500;
  --green: #25d366;
  --green-dark: #1eb858;
  --yellow: #f6bb06;
  --border: rgba(129, 139, 152, 0.15);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { background: none; border: none; color: inherit; font: inherit; cursor: pointer; }

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

/* ============ TYPOGRAPHY ============ */
h1, h2, h3, h4, .bebas {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.02em;
  font-weight: 400;
  line-height: 1;
}

.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  display: inline-block;
}

.section-title {
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  margin: 12px 0;
}
.section-title .accent { color: var(--orange); }

.section-lead {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 640px;
}
.section-head.center { text-align: center; }
.section-head.center .section-lead { margin: 0 auto; }
.section-head.row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 20px;
}

.section { padding: 100px 0; }
.section-alt { background: #050505; }

/* ============ NAV ============ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
  gap: 24px;
}
.nav-logo img { height: 44px; width: auto; }
.nav-links {
  display: flex;
  gap: 32px;
  font-size: 14px;
  font-weight: 500;
}
.nav-links a {
  color: var(--text);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--orange); }

.nav-cta { display: flex; gap: 10px; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 18px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.05em;
  transition: transform 0.15s, box-shadow 0.2s, background 0.2s;
}
.btn-wa { background: var(--green); color: #fff; }
.btn-wa:hover { background: var(--green-dark); transform: translateY(-1px); }
.btn-call { background: var(--orange); color: #fff; }
.btn-call:hover { background: var(--orange-dark); transform: translateY(-1px); }

/* ============ FLOATING ============ */
.floating {
  position: fixed;
  right: 22px;
  bottom: 24px;
  z-index: 99;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  transition: transform 0.2s;
}
.float-btn:hover { transform: scale(1.08); }
.float-wa { background: var(--green); }
.float-call { background: var(--orange); }

/* ============ HERO ============ */
.hero {
  position: relative;
  padding: 80px 0 100px;
  overflow: hidden;
  min-height: 720px;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0.75) 50%, rgba(10,10,10,0.3) 100%);
  z-index: 1;
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 48px;
  align-items: center;
  width: 100%;
}
.hero-tag-row { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; margin-bottom: 20px; }
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(37, 211, 102, 0.1);
  color: var(--green);
  border: 1px solid rgba(37, 211, 102, 0.3);
}
.pulse-dot {
  width: 8px; height: 8px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0.6); }
  50% { box-shadow: 0 0 0 8px rgba(37,211,102,0); }
}
.badge-call {
  background: rgba(255,77,0,0.1);
  color: var(--orange);
  border-color: rgba(255,77,0,0.3);
}
.hero-title {
  font-size: clamp(4rem, 10vw, 8rem);
  line-height: 0.92;
  margin-bottom: 24px;
}
.hero-title span { display: block; }
.hero-title .accent { color: var(--orange); }
.hero-sub {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 480px;
  margin-bottom: 28px;
}
.hero-meta {
  display: flex;
  gap: 24px;
  align-items: center;
  color: var(--muted);
  font-size: 14px;
  flex-wrap: wrap;
}
.meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--orange);
}
.meta-item strong { color: var(--text); }
.meta-divider {
  padding-left: 24px;
  border-left: 1px solid var(--border);
  color: var(--muted);
}

.hero-card {
  background: rgba(28,28,28,0.9);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.card-img { width: 100%; height: 180px; object-fit: cover; }
.card-body { padding: 24px; }
.card-head h2 {
  font-size: 1.9rem;
  margin-bottom: 6px;
}
.card-head p { color: var(--muted); font-size: 0.9rem; margin-bottom: 20px; }
.card-actions { display: flex; flex-direction: column; gap: 12px; }

.action-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  border-radius: 10px;
  color: #fff;
  font-weight: 700;
  transition: transform 0.15s, background 0.2s;
}
.action-orange { background: var(--orange); }
.action-orange:hover { background: var(--orange-dark); transform: translateY(-2px); }
.action-green { background: var(--green); }
.action-green:hover { background: var(--green-dark); transform: translateY(-2px); }
.action-inner { display: flex; gap: 12px; align-items: center; }
.action-text { display: flex; flex-direction: column; align-items: flex-start; line-height: 1.2; }
.action-title { font-size: 14px; letter-spacing: 0.05em; }
.action-sub { font-size: 11px; opacity: 0.85; font-weight: 500; }

.card-foot {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
  margin-top: 16px;
  justify-content: center;
}

/* ============ SIZE SELECTOR ============ */
.size-section { padding-top: 80px; }
.size-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 50px;
}
.size-form, .size-result {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
}
.size-preview {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  text-align: center;
  padding: 28px;
  background: #0d0d0d;
  border-radius: 12px;
  margin-bottom: 28px;
  letter-spacing: 0.05em;
  color: var(--muted);
}
.size-preview span { color: var(--muted); }
.size-preview span.active { color: var(--orange); }
.size-preview .slash, .size-preview .r { color: var(--orange); margin: 0 6px; }

.form-row { margin-bottom: 18px; }
.form-row label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.form-row select {
  width: 100%;
  padding: 14px 16px;
  background: #0d0d0d;
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%23818b98' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  cursor: pointer;
}
.form-row select:focus { outline: 2px solid var(--orange); border-color: var(--orange); }

.result-box { margin-bottom: 24px; }
.result-head { text-align: center; margin-bottom: 16px; }
.result-size {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.4rem;
  color: var(--text);
  margin-top: 6px;
}
.result-help { text-align: center; color: var(--muted); font-size: 0.9rem; margin-bottom: 24px; }
.result-actions { display: flex; flex-direction: column; gap: 12px; }

.info-box {
  background: rgba(255,77,0,0.06);
  border: 1px solid rgba(255,77,0,0.2);
  border-radius: 10px;
  padding: 16px;
}
.info-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.info-box p { font-size: 13px; color: var(--muted); }
.info-box strong { color: var(--text); }

/* ============ STATS ============ */
.stats {
  padding: 60px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}
.stat svg { color: var(--orange); margin-bottom: 12px; }
.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  color: var(--text);
  line-height: 1;
}
.stat-unit { font-size: 1.2rem; color: var(--muted); margin-left: 2px; }
.stat-label {
  font-size: 12px;
  color: var(--muted);
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ============ SERVICES ============ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 50px;
}
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
  transition: transform 0.2s, border-color 0.2s;
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,77,0,0.4);
}
.service-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.service-icon {
  width: 52px;
  height: 52px;
  background: rgba(255,77,0,0.12);
  color: var(--orange);
  border-radius: 12px;
  display: grid;
  place-items: center;
}
.service-badge {
  background: rgba(255,77,0,0.12);
  color: var(--orange);
  font-size: 11px;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 6px;
  letter-spacing: 0.06em;
}
.service-card h3 { font-size: 1.4rem; margin-bottom: 10px; }
.service-card p { color: var(--muted); font-size: 0.9rem; margin-bottom: 18px; }
.service-link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ============ STEPS ============ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 50px;
}
.step {
  text-align: center;
  position: relative;
}
.step-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 16px;
  background: rgba(255,77,0,0.1);
  color: var(--orange);
  border-radius: 18px;
  display: grid;
  place-items: center;
}
.step-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.2rem;
  color: var(--orange);
  margin-bottom: 6px;
}
.step h3 { font-size: 1.3rem; margin-bottom: 10px; }
.step p { color: var(--muted); font-size: 0.92rem; }

/* ============ TYRES ============ */
.carousel-nav { display: flex; gap: 10px; }
.cnav {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text);
  display: grid;
  place-items: center;
  transition: background 0.2s;
}
.cnav:hover { background: var(--orange); border-color: var(--orange); color: #fff; }

.tyres-carousel {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 8px;
  margin-top: 50px;
  scrollbar-width: none;
}
.tyres-carousel::-webkit-scrollbar { display: none; }
.tyre-card {
  flex: 0 0 calc(25% - 18px);
  min-width: 280px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  scroll-snap-align: start;
  transition: transform 0.2s;
}
.tyre-card:hover { transform: translateY(-4px); }
.tyre-img-wrap {
  position: relative;
  aspect-ratio: 3 / 4;
  background: linear-gradient(180deg, #1f1f1f, #0d0d0d);
}
.tyre-img-wrap img {
  width: 100%; height: 100%;
  object-fit: contain;
}
.tyre-stats {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.ts {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  background: rgba(10,10,10,0.8);
  backdrop-filter: blur(8px);
  padding: 4px 8px;
  border-radius: 6px;
  color: var(--muted);
}
.ts svg { color: var(--orange); flex-shrink: 0; }
.ts span:nth-child(2) { flex: 1; }
.ts-grade { color: var(--orange) !important; font-weight: 700; }
.tyre-body { padding: 18px; }
.tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.tyre-body h3 { font-size: 1.4rem; }

/* ============ COVERAGE ============ */
.coverage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.coverage-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.cov-pin {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 13px;
  color: var(--text);
  transition: background 0.2s, border-color 0.2s;
}
.cov-pin.major { background: rgba(255,77,0,0.08); border-color: rgba(255,77,0,0.3); color: var(--orange); cursor: pointer; }
.cov-pin.major:hover { background: rgba(255,77,0,0.18); }
.cov-pin svg:first-child { color: var(--orange); }
.cov-pin.major svg:last-child { color: var(--yellow); }

.coverage-right {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}
.coverage-right img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}
.eta-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid var(--border);
}
.eta-label { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; }
.eta-time { font-family: 'Bebas Neue', sans-serif; font-size: 1.8rem; color: var(--orange); }
.eta-overlay svg { color: var(--orange); }

/* ============ ABOUT ============ */
.about-section { background: var(--bg); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-image {
  position: relative;
  padding: 0 24px 24px 0;
}
.about-image img {
  width: 100%;
  border-radius: 4px;
  position: relative;
  z-index: 2;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.about-frame {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 70%;
  height: 70%;
  border: 1px solid rgba(255, 77, 0, 0.5);
  border-radius: 4px;
  z-index: 1;
}
.about-content { max-width: 560px; }
.eyebrow-line {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow-line::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--orange);
}
.about-title { line-height: 0.95; }
.about-body { margin: 24px 0 40px; }
.about-body p { color: var(--muted); margin-bottom: 16px; font-size: 1rem; }
.about-stats {
  display: flex;
  gap: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.about-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.6rem;
  color: var(--orange);
  line-height: 1;
}
.about-lbl {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}

/* ============ GALLERY ============ */
.gallery-wrap { position: relative; margin-top: 50px; }
.gallery {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding-bottom: 8px;
}
.gallery::-webkit-scrollbar { display: none; }
.gallery img {
  flex: 0 0 calc(33.333% - 11px);
  min-width: 320px;
  height: 320px;
  object-fit: cover;
  border-radius: 14px;
  scroll-snap-align: start;
  cursor: pointer;
  transition: transform 0.3s;
}
.gallery img:hover { transform: scale(1.02); }
.cnav-floating {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(10,10,10,0.85);
  z-index: 2;
}
.cnav-left { left: -8px; }
.cnav-right { right: -8px; }

/* ============ REVIEWS ============ */
.reviews-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 50px;
  flex-wrap: wrap;
  gap: 24px;
}
.reviews-meta { text-align: right; }
.rating-block {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.stars {
  display: inline-flex;
  align-items: center;
  gap: 2px;
}
.stars strong { margin-left: 8px; color: var(--text); font-size: 16px; }
.stars-sm { gap: 1px; margin-bottom: 12px; }
.review-count { color: var(--muted); font-size: 13px; }
.google-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
}
.review-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.review-top .goog { margin-left: auto; }
.reviewer-avatar {
  width: 40px; height: 40px;
  background: var(--orange);
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 1rem;
}
.reviewer-name { font-weight: 600; font-size: 14px; }
.reviewer-date { font-size: 12px; color: var(--muted); }
.review-card p { color: var(--muted); font-size: 0.92rem; line-height: 1.65; }

/* ============ CTA STRIP ============ */
.cta-strip {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  text-align: center;
  padding: 80px 0;
}
.cta-strip .section-title { color: #fff; }
.cta-strip .section-title .accent { color: #0a0a0a; }
.cta-strip p {
  color: rgba(255,255,255,0.9);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 12px auto 32px;
}
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.btn-big {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 32px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.04em;
  transition: transform 0.15s, background 0.2s;
}
.btn-orange { background: #0a0a0a; color: #fff; }
.btn-orange:hover { transform: translateY(-2px); background: #1c1c1c; }
.btn-green { background: var(--green); color: #fff; }
.btn-green:hover { transform: translateY(-2px); background: var(--green-dark); }

/* ============ CONTACT ============ */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 50px;
}
.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
  text-align: center;
  transition: transform 0.2s, border-color 0.2s;
}
.contact-card:hover { transform: translateY(-4px); border-color: rgba(255,77,0,0.4); }
.contact-card svg { color: var(--orange); margin-bottom: 14px; }
.contact-label {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}
.contact-value { font-weight: 600; font-size: 1rem; color: var(--text); word-break: break-all; }

/* ============ FOOTER ============ */
footer {
  background: #050505;
  border-top: 1px solid var(--border);
  padding: 60px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}
.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  color: var(--orange);
  letter-spacing: 0.05em;
  margin-bottom: 14px;
}
.footer-grid p { color: var(--muted); font-size: 0.92rem; }
.footer-grid h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  margin-bottom: 16px;
  letter-spacing: 0.1em;
}
.footer-grid ul { list-style: none; }
.footer-grid li { margin-bottom: 10px; }
.footer-grid a {
  color: var(--muted);
  font-size: 0.92rem;
  transition: color 0.2s;
}
.footer-grid a:hover { color: var(--orange); }
.footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-contact a {
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
}
.footer-bottom p { color: var(--muted); font-size: 0.88rem; }
.back-top {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text);
  display: grid;
  place-items: center;
  transition: background 0.2s;
}
.back-top:hover { background: var(--orange); border-color: var(--orange); }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .services-grid, .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .coverage-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-image { padding: 0; max-width: 520px; }
  .about-frame { display: none; }
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .reviews-head { flex-direction: column; align-items: flex-start; }
  .reviews-meta { text-align: left; }
  .rating-block { justify-content: flex-start; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .tyre-card { flex: 0 0 calc(50% - 12px); }
  .gallery img { flex: 0 0 calc(50% - 8px); }
}

@media (max-width: 640px) {
  .section { padding: 60px 0; }
  .nav-cta .btn span:not(:first-child) { display: none; }
  .nav-cta .btn { padding: 10px 12px; font-size: 11px; }
  .nav-logo img { height: 36px; }
  .hero { min-height: 560px; padding: 40px 0 60px; }
  .hero-title { font-size: 3.5rem; }
  .size-grid { grid-template-columns: 1fr; }
  .services-grid, .steps-grid, .stats-grid, .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .tyre-card { flex: 0 0 85%; }
  .gallery img { flex: 0 0 85%; min-width: 260px; }
  .about-stats { gap: 20px; flex-wrap: wrap; }
  .cnav-floating { display: none; }
  .floating { right: 12px; bottom: 12px; }
  .float-btn { width: 50px; height: 50px; }
}
