/* ============================================================
   GT MOTORS CENTRE — SHARED STYLESHEET
   Brand: #e10a17 red · #0e0e10 asphalt · #f4f1ea bone
   Fonts: Antonio (display) · Manrope (body) · Fraunces (edit)
   ============================================================ */

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
img, svg { display: block; max-width: 100%; height: auto; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* ---------- DESIGN TOKENS ---------- */
:root {
  --asphalt:    #0e0e10;
  --asphalt-2:  #15151a;
  --asphalt-3:  #1d1d23;
  --line:       #2a2a32;
  --bone:       #f4f1ea;
  --bone-dim:   #d9d5cc;
  --muted:      #8a8a92;
  --signal:     #e10a17;
  --signal-soft:#ff2733;
  --signal-deep:#b50812;
  --white:      #ffffff;

  --f-display: "Antonio", "Arial Narrow", sans-serif;
  --f-body:    "Manrope", -apple-system, system-ui, sans-serif;
  --f-edit:    "Fraunces", Georgia, serif;

  --container: 1280px;
  --gutter:    clamp(20px, 4vw, 48px);
  --section-pad: clamp(70px, 8vw, 110px);
}

/* ---------- BASE ---------- */
body {
  font-family: var(--f-body);
  background: var(--asphalt);
  color: var(--bone);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ---------- LAYOUT ---------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

section { padding: var(--section-pad) 0; position: relative; }

.section-head { margin-bottom: 56px; }
.section-head h2 { font-size: clamp(38px, 5.5vw, 68px); margin: 16px 0 18px; }
.section-head p  { font-size: 17px; color: var(--bone-dim); max-width: 620px; line-height: 1.7; }

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4 {
  font-family: var(--f-display);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.02;
  text-transform: uppercase;
}

.eyebrow {
  font-family: var(--f-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--signal);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--signal);
  flex-shrink: 0;
}

.editorial {
  font-family: var(--f-edit);
  font-style: italic;
  font-weight: 300;
  text-transform: none;
  letter-spacing: -0.02em;
}

/* ---------- BUTTONS ---------- */
.btn-primary, .btn-ghost, .btn-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 26px;
  font-family: var(--f-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--signal);
  color: var(--white);
}
.btn-primary:hover { background: var(--bone); transform: translateY(-2px); }

.btn-ghost {
  border: 1px solid var(--line);
  color: var(--bone);
  background: transparent;
}
.btn-ghost:hover { border-color: var(--signal); color: var(--signal); }

.btn-white {
  background: var(--white);
  color: var(--asphalt);
}
.btn-white:hover { background: var(--bone); transform: translateY(-2px); }

.btn-arrow { transition: transform 0.2s; }
.btn-primary:hover .btn-arrow,
.btn-ghost:hover  .btn-arrow,
.btn-white:hover  .btn-arrow { transform: translateX(4px); }

/* ---------- TOP STRIP ---------- */
.topstrip {
  background: var(--signal);
  color: var(--asphalt);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 8px var(--gutter);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.topstrip a { text-decoration: underline; text-underline-offset: 3px; }

/* ---------- NAV ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(14,14,16,0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px var(--gutter);
  max-width: var(--container);
  margin: 0 auto;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.logo-img  { height: 63px; width: auto; }
.logo-text {
  font-family: var(--f-display);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.1;
  color: var(--bone);
}
.logo-text small {
  display: block;
  font-family: var(--f-body);
  font-size: 14px;
  letter-spacing: 0.22em;
  color: var(--muted);
  font-weight: 500;
  margin-top: 3px;
}
.nav-links {
  display: flex;
  gap: 28px;
  font-size: 14px;
  font-weight: 500;
}
.nav-links a { color: var(--bone-dim); transition: color 0.2s; }
.nav-links a:hover,
.nav-links a.active { color: var(--signal); }
.nav-cta {
  background: var(--signal);
  color: var(--white);
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-cta:hover { background: var(--bone); transform: translateY(-1px); }

/* Hamburger (mobile) */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  cursor: pointer;
}
.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--bone);
  transition: all 0.3s;
}
.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--asphalt-2);
  border-bottom: 1px solid var(--line);
  padding: 20px var(--gutter);
  gap: 18px;
}
.nav-mobile a {
  font-size: 16px;
  font-weight: 500;
  color: var(--bone-dim);
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
}
.nav-mobile a:hover { color: var(--signal); }
.nav-mobile .nav-cta {
  align-self: flex-start;
  margin-top: 6px;
}
.nav-mobile.open { display: flex; }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-cta   { display: none; }
  .nav-burger { display: flex; }
  .logo-text { display: none; }
}
@media (max-width: 400px) {
  .logo-img { height: 36px; }
}

/* ---------- FOOTER ---------- */
footer {
  background: #08080a;
  border-top: 1px solid var(--line);
  padding: 70px 0 28px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.foot-col h5 {
  font-family: var(--f-display);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--signal);
  margin-bottom: 16px;
}
.foot-col p,
.foot-col li,
.foot-col a {
  font-size: 14px;
  color: var(--bone-dim);
  line-height: 1.9;
}
.foot-col a:hover { color: var(--signal); }
.foot-col .logo { margin-bottom: 16px; }
.foot-bottom {
  border-top: 1px solid var(--line);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: var(--muted);
}
@media (max-width: 880px) {
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 540px) {
  .foot-grid { grid-template-columns: 1fr; }
}

/* ---------- WHATSAPP STICKY BUTTON ---------- */
.wa-sticky {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #25d366;
  color: #fff;
  padding: 14px 20px;
  font-family: var(--f-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 4px 24px rgba(37,211,102,0.35);
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
}
.wa-sticky:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(37,211,102,0.45); }
.wa-sticky svg { width: 22px; height: 22px; flex-shrink: 0; }
.wa-sub { font-size: 10px; font-weight: 500; letter-spacing: 0.08em; opacity: 0.85; margin-top: 2px; }
@media (max-width: 540px) {
  .wa-sticky { padding: 12px 16px; bottom: 18px; right: 18px; }
  .wa-sticky .wa-label { display: none; }
}

/* ---------- PAGE HERO (shared) ---------- */
.page-hero {
  padding: clamp(80px, 10vw, 130px) 0 clamp(60px, 7vw, 100px);
  background:
    radial-gradient(ellipse at 80% 20%, rgba(225,10,23,0.14), transparent 50%),
    radial-gradient(ellipse at 10% 90%, rgba(225,10,23,0.06), transparent 60%),
    var(--asphalt);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(45deg, rgba(255,255,255,0.01) 0 2px, transparent 2px 4px),
    repeating-linear-gradient(-45deg, rgba(255,255,255,0.01) 0 2px, transparent 2px 4px);
  pointer-events: none;
}
.page-hero .eyebrow { margin-bottom: 18px; }
.page-hero h1 {
  font-size: clamp(48px, 7vw, 100px);
  line-height: 0.94;
  margin-bottom: 24px;
}
.page-hero p {
  font-size: 18px;
  color: var(--bone-dim);
  max-width: 580px;
  line-height: 1.65;
  margin-bottom: 36px;
}
.page-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- SECTION DIVIDERS ---------- */
.section-dark  { background: var(--asphalt-2); }
.section-ruled { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-red-glow {
  background:
    linear-gradient(135deg, rgba(225,10,23,0.07), transparent 60%),
    var(--asphalt);
}

/* ---------- PROOF BAR ---------- */
.proof-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-bottom: 0;
}
.proof-bar-item {
  background: var(--asphalt-2);
  padding: 32px 28px;
  text-align: center;
}
.proof-bar-item .num {
  font-family: var(--f-display);
  font-size: 44px;
  line-height: 1;
  color: var(--bone);
  margin-bottom: 8px;
}
.proof-bar-item .lbl {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
@media (max-width: 720px) {
  .proof-bar { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- CARD GRID ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.card {
  background: var(--asphalt);
  padding: 38px 30px;
  transition: background 0.25s;
  position: relative;
}
.card:hover { background: var(--asphalt-2); }
.card-num {
  font-family: var(--f-display);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--signal);
  margin-bottom: 20px;
}
.card svg {
  width: 44px; height: 44px;
  color: var(--signal);
  margin-bottom: 20px;
}
.card h3 { font-size: 24px; margin-bottom: 12px; }
.card p  { font-size: 15px; color: var(--bone-dim); line-height: 1.65; }

@media (max-width: 880px) { .card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .card-grid { grid-template-columns: 1fr; } }

/* ---------- FORMS ---------- */
.form-wrap {
  background: var(--asphalt);
  border: 1px solid var(--line);
  padding: 38px;
  position: relative;
}
.form-wrap::after {
  content: "";
  position: absolute;
  bottom: -1px; left: -1px;
  width: 60px; height: 60px;
  border-bottom: 2px solid var(--signal);
  border-left: 2px solid var(--signal);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.field    { display: flex; flex-direction: column; gap: 6px; }
.field-full { grid-column: 1 / -1; }

label {
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--muted);
  text-transform: uppercase;
  font-weight: 600;
}
input, select, textarea {
  background: var(--asphalt-2);
  border: 1px solid var(--line);
  color: var(--bone);
  padding: 13px 14px;
  font-family: var(--f-body);
  font-size: 15px;
  transition: border-color 0.2s;
  width: 100%;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--signal);
}
select { appearance: none; cursor: pointer; }
textarea { resize: vertical; min-height: 110px; }
.form-note { font-size: 12px; color: var(--muted); text-align: center; margin-top: 14px; }
.form-note a { color: var(--signal); }
.form-success {
  display: none;
  background: var(--asphalt-2);
  border: 1px solid var(--signal);
  padding: 28px;
  text-align: center;
  font-size: 16px;
  color: var(--bone);
}

@media (max-width: 540px) {
  .form-row { grid-template-columns: 1fr; }
  .form-wrap { padding: 24px 20px; }
}

/* ---------- CORNER ACCENT ---------- */
.corner-accent {
  position: relative;
}
.corner-accent::before {
  content: "";
  position: absolute;
  top: -1px; right: -1px;
  width: 50px; height: 50px;
  border-top: 2px solid var(--signal);
  border-right: 2px solid var(--signal);
  pointer-events: none;
}

/* ---------- REVIEW CARD ---------- */
.review-card {
  background: var(--asphalt-2);
  border: 1px solid var(--line);
  padding: 30px;
}
.stars { color: var(--signal); font-size: 18px; letter-spacing: 4px; margin-bottom: 14px; }
.review-text { font-size: 15px; color: var(--bone-dim); line-height: 1.65; margin-bottom: 14px; }
.review-author { font-size: 12px; color: var(--muted); letter-spacing: 0.08em; text-transform: uppercase; }

/* ---------- B2B LIST ---------- */
.b2b-list { display: grid; gap: 16px; }
.b2b-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  padding: 22px;
  background: var(--asphalt-2);
  border: 1px solid var(--line);
  transition: border-color 0.2s, transform 0.2s;
}
.b2b-item:hover { border-color: var(--signal); transform: translateX(4px); }
.b2b-marker {
  font-family: var(--f-display);
  font-size: 26px;
  color: var(--signal);
  line-height: 1;
}
.b2b-item h4 { font-size: 17px; margin-bottom: 6px; letter-spacing: 0.02em; }
.b2b-item p  { font-size: 14px; color: var(--bone-dim); line-height: 1.55; }

/* ---------- AREAS GRID ---------- */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.area {
  background: var(--asphalt-2);
  padding: 28px 22px;
  transition: background 0.25s;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.area:hover { background: var(--asphalt-3); }
.area .pc   { font-family: var(--f-display); color: var(--signal); font-size: 13px; letter-spacing: 0.1em; }
.area .name { font-family: var(--f-display); font-size: 20px; text-transform: uppercase; letter-spacing: 0.02em; }
.area .dist { font-size: 12px; color: var(--muted); margin-top: 3px; }
@media (max-width: 880px) { .areas-grid { grid-template-columns: repeat(2, 1fr); } }

.areas-catchall {
  margin-top: 24px;
  padding: 24px 28px;
  background: var(--asphalt);
  border: 1px solid var(--line);
  border-left: 3px solid var(--signal);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.areas-catchall p { font-size: 14px; color: var(--bone-dim); line-height: 1.6; margin: 0; }
.areas-catchall strong { color: var(--bone); font-weight: 600; }
.catchall-cta { font-size: 14px; color: var(--bone) !important; font-weight: 500; }
.catchall-cta a { color: var(--signal); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; margin-left: 4px; }

/* ---------- TESTIMONIAL PULLQUOTE ---------- */
.pullquote { text-align: center; padding: var(--section-pad) 0; }
.pullquote blockquote {
  font-family: var(--f-edit);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(26px, 4vw, 46px);
  line-height: 1.3;
  max-width: 860px;
  margin: 20px auto;
  color: var(--bone);
}
.pullquote blockquote::before { content: "\201C"; color: var(--signal); }
.pullquote blockquote::after  { content: "\201D"; color: var(--signal); }
.pullquote cite {
  display: block;
  font-style: normal;
  font-family: var(--f-body);
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 20px;
}

/* ---------- BEFORE/AFTER SLIDER ---------- */
.ba-slider {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  cursor: ew-resize;
  user-select: none;
  border: 1px solid var(--line);
  background: var(--asphalt-3);
}
.ba-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.ba-after-wrap {
  position: absolute;
  inset: 0;
  width: 50%;
  overflow: hidden;
}
.ba-after-wrap .ba-img { width: 200%; max-width: none; }
.ba-handle {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 2px;
  background: var(--signal);
  transform: translateX(-50%);
  pointer-events: none;
}
.ba-handle::after {
  content: "⇄";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 42px; height: 42px;
  background: var(--signal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--asphalt);
  font-size: 16px;
  font-weight: 700;
}
.ba-label {
  position: absolute;
  top: 14px;
  padding: 5px 11px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  z-index: 2;
}
.ba-label.before { left: 14px; background: rgba(14,14,16,0.85); color: var(--bone); }
.ba-label.after  { right: 14px; background: var(--signal); color: var(--asphalt); }
.ba-thumbs { display: flex; gap: 10px; margin-top: 14px; }
.ba-thumb {
  flex: 1;
  aspect-ratio: 4/3;
  background: var(--asphalt-3);
  border: 1px solid var(--line);
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.2s, transform 0.2s;
}
.ba-thumb:hover  { transform: translateY(-2px); }
.ba-thumb.active { border-color: var(--signal); }
.ba-thumb img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- GALLERY GRID ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}
.gallery-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 3px; }
.gallery-img  { aspect-ratio: 4/3; overflow: hidden; background: var(--asphalt-3); position: relative; }
.gallery-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.gallery-img:hover img { transform: scale(1.04); }
.gallery-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 8px 10px;
  background: rgba(14,14,16,0.82);
  font-size: 11px;
  color: var(--bone-dim);
  letter-spacing: 0.04em;
}
.gallery-label span { color: var(--signal); font-weight: 600; }
@media (max-width: 880px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .gallery-grid { grid-template-columns: 1fr; } }

/* ---------- ABOUT TEAM ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.team-card {
  background: var(--asphalt-2);
  border: 1px solid var(--line);
  padding: 32px 28px;
  position: relative;
}
.team-card::after {
  content: "";
  position: absolute;
  top: -1px; right: -1px;
  width: 40px; height: 40px;
  border-top: 2px solid var(--signal);
  border-right: 2px solid var(--signal);
}
.team-avatar {
  width: 72px; height: 72px;
  background: var(--asphalt-3);
  border: 2px solid var(--signal);
  border-radius: 50%;
  margin-bottom: 20px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-display);
  font-size: 28px;
  color: var(--signal);
}
.team-avatar img { width: 100%; height: 100%; object-fit: cover; }
.team-card h3 { font-size: 24px; margin-bottom: 6px; }
.team-role { font-size: 12px; color: var(--signal); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 14px; }
.team-card p { font-size: 15px; color: var(--bone-dim); line-height: 1.65; }
@media (max-width: 880px) { .team-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .team-grid { grid-template-columns: 1fr; } }

/* ---------- CONTACT PAGE ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}
.contact-path {
  padding: 28px;
  background: var(--asphalt-2);
  border: 1px solid var(--line);
  margin-bottom: 20px;
}
.contact-path h3 { font-size: 20px; margin-bottom: 10px; }
.contact-path p  { font-size: 15px; color: var(--bone-dim); line-height: 1.6; margin-bottom: 18px; }
.contact-path-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 10px;
  margin-bottom: 14px;
}
.tag-b2c { background: #25d366; color: var(--asphalt); }
.tag-b2b { background: var(--signal); color: var(--asphalt); }

.map-embed {
  width: 100%;
  aspect-ratio: 16/9;
  border: 1px solid var(--line);
  filter: grayscale(1) invert(0.9) contrast(0.9);
  margin-bottom: 28px;
}
.contact-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: 32px;
}
.contact-detail {
  background: var(--asphalt-2);
  padding: 22px 20px;
}
.contact-detail h5 {
  font-family: var(--f-display);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--signal);
  margin-bottom: 10px;
}
.contact-detail p, .contact-detail a, .contact-detail li {
  font-size: 14px;
  color: var(--bone-dim);
  line-height: 1.8;
}
.contact-detail a:hover { color: var(--signal); }
@media (max-width: 980px) { .contact-grid { grid-template-columns: 1fr; gap: 50px; } }
@media (max-width: 540px) { .contact-detail-grid { grid-template-columns: 1fr; } }

/* ---------- SERVICE SECTIONS ---------- */
.service-section {
  padding: 60px 0;
  border-bottom: 1px solid var(--line);
}
.service-section:last-child { border-bottom: none; }
.service-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: start;
}
.service-inner.reverse { direction: rtl; }
.service-inner.reverse > * { direction: ltr; }
.service-content h2 { font-size: clamp(32px, 4vw, 52px); margin: 14px 0 16px; }
.service-content p  { font-size: 16px; color: var(--bone-dim); line-height: 1.7; margin-bottom: 16px; }
.service-includes {
  margin: 20px 0 28px;
  display: grid;
  gap: 10px;
}
.service-includes li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--bone-dim);
}
.service-includes li::before {
  content: "→";
  color: var(--signal);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.service-turnaround {
  font-size: 13px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  padding-top: 16px;
  margin-top: 16px;
  letter-spacing: 0.04em;
}
.service-turnaround span { color: var(--signal); font-weight: 600; }
.service-img {
  aspect-ratio: 4/3;
  background: var(--asphalt-3);
  border: 1px solid var(--line);
  overflow: hidden;
  position: relative;
}
.service-img img { width: 100%; height: 100%; object-fit: cover; }
.service-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.service-img-placeholder svg { width: 48px; height: 48px; color: var(--line); }
@media (max-width: 880px) {
  .service-inner { grid-template-columns: 1fr; gap: 36px; }
  .service-inner.reverse { direction: ltr; }
}

/* ---------- SCROLL REVEAL ---------- */
.iv {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.iv.in { opacity: 1; transform: translateY(0); }

/* ---------- MISC ---------- */
.text-red  { color: var(--signal); }
.text-muted{ color: var(--muted); }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-32 { margin-bottom: 32px; }

/* Horizontal rule */
.rule { border: none; border-top: 1px solid var(--line); margin: 48px 0; }

/* Fleet quote steps */
.steps { display: grid; gap: 24px; margin-top: 28px; }
.step  { display: grid; grid-template-columns: 40px 1fr; gap: 16px; align-items: start; }
.step-n { font-family: var(--f-display); font-size: 28px; color: var(--signal); line-height: 1; }
.step h4 { font-size: 16px; margin-bottom: 5px; letter-spacing: 0.03em; }
.step p  { font-size: 14px; color: var(--bone-dim); line-height: 1.6; }
