:root {
  --ink: #080808;
  --ink-2: #101010;
  --ink-3: #191919;
  --paper: #0d0d0d;
  --paper-2: #141414;
  --white: #f5f5f2;
  --gold: #f4c400;
  --gold-2: #ffdc35;
  --red: #d71920;
  --red-2: #ff3338;
  --green: #d71920;
  --text: #e7e7e3;
  --muted: #a8a8a3;
  --line: rgba(244, 196, 0, .16);
  --radius: 22px;
  --shadow: 0 22px 70px rgba(11, 16, 22, .14);
  --container: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(215,25,32,.1), transparent 28%),
    radial-gradient(circle at 88% 72%, rgba(244,196,0,.06), transparent 30%),
    var(--paper);
  color: var(--text);
  font-family: "Tajawal", sans-serif;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
}
body.dialog-open { overflow: hidden; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.skip-link { position: fixed; top: -80px; right: 20px; z-index: 9999; background: var(--gold); color: var(--ink); padding: 10px 18px; border-radius: 0 0 10px 10px; font-weight: 800; }
.skip-link:focus { top: 0; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  border-bottom: 1px solid rgba(244,196,0,.15);
  color: var(--white);
  transition: background .25s, box-shadow .25s;
}
.site-header.scrolled { background: rgba(11,16,22,.96); box-shadow: 0 12px 40px rgba(0,0,0,.2); backdrop-filter: blur(14px); }
.site-header.solid-header { background: rgba(11,16,22,.98); box-shadow: 0 12px 40px rgba(0,0,0,.18); }
.nav-wrap { min-height: 92px; display: flex; align-items: center; gap: 26px; }
.brand { display: inline-flex; align-items: center; gap: 17px; flex-shrink: 0; }
.brand-mark {
  width: 72px; height: 72px; display: grid; place-items: center;
  color: var(--gold-2); font-size: 23px; font-weight: 900;
}
.brand-mark-image {
  padding: 3px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(244,196,0,.5);
  border-radius: 15px;
  background: #020202;
  box-shadow: 0 8px 24px rgba(0,0,0,.35);
}
.brand-mark-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: none;
  transform-origin: center;
  filter: none;
}
.brand > span:last-child { display: grid; line-height: 1.25; }
.brand strong { font-size: 20px; letter-spacing: -.35px; }
.brand small { color: #b7b7b2; font-size: 12px; letter-spacing: .02em; }
.desktop-nav { display: flex; align-items: center; gap: 28px; margin-inline: auto; }
.desktop-nav a { color: #c9d0d7; font-weight: 600; font-size: 15px; transition: color .2s; }
.desktop-nav a:hover { color: var(--white); }
.desktop-nav a.active { color: var(--gold-2); }
.nav-actions { display: flex; align-items: center; gap: 16px; }
.phone-link { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 15px; }
.phone-link i { color: var(--gold-2); }
.button {
  min-height: 50px; padding: 0 22px; border: 0; border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  cursor: pointer; font-weight: 800; transition: transform .2s, background .2s, box-shadow .2s;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--red); color: #fff; box-shadow: 0 10px 28px rgba(215,25,32,.26); }
.button-primary:hover { background: var(--red-2); }
.button-whatsapp { background: var(--red); color: #fff; box-shadow: 0 12px 32px rgba(215,25,32,.25); }
.button-whatsapp:hover { background: var(--red-2); }
.button-ghost { background: rgba(244,196,0,.06); border: 1px solid rgba(244,196,0,.36); color: var(--white); backdrop-filter: blur(10px); }
.menu-toggle { display: none; background: transparent; border: 0; color: var(--white); font-size: 22px; padding: 10px; }
.mobile-nav { display: none; }
.mobile-nav a.active { color: var(--gold-2) !important; }

.page-hero {
  min-height: 390px;
  padding: 155px 0 68px;
  display: flex;
  align-items: center;
  color: var(--white);
  background:
    radial-gradient(circle at 18% 30%, rgba(215,25,32,.22), transparent 30%),
    linear-gradient(135deg, #161616, #050505 70%);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: auto -8% -65% auto;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(244,196,0,.17);
  border-radius: 50%;
  box-shadow: 0 0 0 60px rgba(215,25,32,.035), 0 0 0 120px rgba(244,196,0,.02);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 {
  margin: 8px 0 13px;
  font-size: clamp(42px, 4.4vw, 62px);
  line-height: 1.08;
  letter-spacing: -1.4px;
}
.page-hero h1 em { color: var(--gold-2); font-style: normal; }
.page-hero p { max-width: 650px; margin: 0; color: #c2cad2; font-size: 19px; }
.page-section { min-height: 0; }

.hero {
  min-height: 690px; height: auto; position: relative; overflow: hidden;
  display: flex; align-items: center; color: var(--white); background: var(--ink);
}
.hero-media {
  position: absolute; inset: 0;
  background: url("assets/workshop-hero-v2.webp") center center / cover no-repeat;
  transform: scale(1.01);
}
.hero-shade {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(8,8,8,.28) 0%, rgba(8,8,8,.62) 52%, rgba(8,8,8,.97) 100%),
    linear-gradient(0deg, rgba(8,8,8,.78) 0%, transparent 42%);
}
.hero-content { position: relative; z-index: 2; padding: 130px 0 88px; }
.hero-copy { width: min(650px, 58%); margin-inline-start: auto; }
.eyebrow, .kicker { color: var(--gold-2); font-size: 15px; font-weight: 800; letter-spacing: .02em; }
.eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.eyebrow span { width: 28px; height: 2px; background: var(--gold); }
.hero h1, .section-heading h2, .diagnostic-content h2, .contact-copy h2, .booking-dialog h2 {
  margin: 0; line-height: 1.08; letter-spacing: -1.8px;
}
.hero h1 { font-size: clamp(46px, 4.6vw, 66px); font-weight: 900; }
.hero h1 em { color: var(--gold-2); font-style: normal; }
.hero-copy > p { max-width: 650px; margin: 22px 0 26px; color: #dadad6; font-size: 20px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-actions .button { min-height: 58px; padding-inline: 26px; }
.hero-meta { display: flex; gap: 38px; margin-top: 30px; padding-top: 19px; border-top: 1px solid rgba(244,196,0,.23); }
.hero-meta > div { display: flex; align-items: center; gap: 12px; }
.hero-meta i { color: var(--gold-2); font-size: 19px; }
.hero-meta span { display: grid; }
.hero-meta b { font-size: 16px; }
.hero-meta small { color: #aeb8c2; font-size: 13px; }
.scroll-cue { position: absolute; z-index: 3; bottom: 28px; left: 50%; transform: translateX(-50%); display: flex; align-items: center; gap: 9px; color: #aeb8c2; font-size: 11px; }
.scroll-cue i { color: var(--gold); animation: bounce 1.8s infinite; }
@keyframes bounce { 50% { transform: translateY(5px); } }

.trust-strip {
  background: linear-gradient(90deg, #190506, #101010 48%, #171300);
  border-bottom: 1px solid rgba(244,196,0,.14);
  border-top: 1px solid rgba(215,25,32,.2);
}
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-grid > div { display: flex; align-items: center; gap: 14px; padding: 20px 18px; border-inline-start: 1px solid var(--line); }
.trust-grid > div:first-child { border-inline-start: 0; }
.trust-grid i { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; background: var(--red); color: var(--gold-2); }
.trust-grid span { display: grid; line-height: 1.3; }
.trust-grid b { font-size: 16px; }
.trust-grid small { color: var(--muted); font-size: 13px; margin-top: 3px; }

.section { padding: 78px 0; }
.section-heading { display: flex; justify-content: space-between; align-items: end; gap: 52px; margin-bottom: 38px; }
.section-heading > div { flex: 1; }
.section-heading h2, .contact-copy h2 { font-size: clamp(37px, 3.6vw, 50px); font-weight: 900; color: var(--white); margin-top: 7px; }
.section-heading h2 span, .contact-copy h2 span, .booking-dialog h2 span { color: var(--gold-2); }
.section-heading > p { width: min(500px, 46%); color: var(--muted); font-size: 18px; margin: 0; }
.brand-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.brand-card {
  min-height: 214px; border: 1px solid rgba(244,196,0,.13);
  background: linear-gradient(155deg, #1a1a1a 0%, #0d0d0d 100%);
  border-radius: 20px; padding: 18px; display: grid;
  grid-template-columns: 1fr auto; grid-template-rows: auto 1fr auto;
  align-items: center; cursor: pointer; text-align: start; color: var(--text);
  position: relative; overflow: hidden;
  transition: transform .25s, border-color .25s, box-shadow .25s, background .25s;
}
.brand-card::after {
  content: ""; position: absolute; right: 0; bottom: 0; width: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-2)); transition: width .3s ease;
}
.brand-card:hover { transform: translateY(-5px); border-color: rgba(244,196,0,.42); box-shadow: 0 18px 48px rgba(0,0,0,.3); }
.brand-card.active { border-color: var(--red); background: linear-gradient(155deg, #270708 0%, #111 100%); box-shadow: 0 20px 54px rgba(0,0,0,.34); }
.brand-card:hover::after, .brand-card.active::after { width: 100%; }
.brand-card-index { align-self: start; color: #756c5d; font: 700 11px/1 sans-serif; letter-spacing: .12em; }
.brand-logo-box {
  grid-column: 1 / -1; width: 100%; height: 90px; padding: 16px 24px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(145deg, #070707, #161616);
  border: 1px solid rgba(244,196,0,.1); border-radius: 14px;
}
.brand-logo-box.wide { width: 100%; }
.brand-logo-box img { width: auto; max-width: 138px; max-height: 58px; object-fit: contain; filter: none; transition: transform .25s; }
.brand-logo-box.logo-light img { filter: invert(.88) sepia(.1) saturate(.4); }
.brand-card:hover .brand-logo-box img, .brand-card.active .brand-logo-box img { transform: scale(1.06); }
.brand-card-name { display: flex; align-items: baseline; gap: 8px; line-height: 1; color: var(--text); }
.brand-card b { font-size: 19px; direction: ltr; color: var(--white); }
.brand-card small { color: var(--muted); font-size: 13px; }
.brand-card-arrow {
  width: 30px; height: 30px; border: 1px solid rgba(244,196,0,.18); border-radius: 50%;
  display: grid; place-items: center; color: #776f61; font-size: 11px; transition: color .2s, background .2s;
}
.brand-card.active .brand-card-arrow, .brand-card:hover .brand-card-arrow { color: #fff; background: var(--red); border-color: var(--red); }
.brand-detail {
  margin-top: 20px; padding: 26px 28px; background: linear-gradient(120deg, #080808, #1b0809); color: var(--white);
  border: 1px solid rgba(215,25,32,.32); border-radius: 20px; display: grid;
  grid-template-columns: 150px 1.25fr 1fr auto; align-items: center; gap: 28px;
  box-shadow: 0 20px 60px rgba(0,0,0,.24);
}
.brand-detail-logo { height: 92px; display: grid; place-items: center; padding: 18px; border-radius: 14px; background: var(--gold-2); }
.brand-detail-logo img { max-width: 112px; max-height: 55px; object-fit: contain; }
.detail-label { color: var(--gold-2); font-size: 13px; font-weight: 800; }
.brand-detail h3 { margin: 2px 0 7px; font-size: 24px; }
.brand-detail p { margin: 0; color: #aeb8c2; font-size: 15px; max-width: 520px; }
.model-list { display: flex; gap: 7px; flex-wrap: wrap; }
.model-list span { padding: 5px 9px; border: 1px solid rgba(244,196,0,.2); border-radius: 7px; color: #f1d65b; font: 600 13px/1.4 sans-serif; direction: ltr; }
.text-button { border: 0; background: transparent; color: var(--gold-2); font-weight: 800; cursor: pointer; white-space: nowrap; }
.text-button i { margin-right: 6px; transition: transform .2s; }
.text-button:hover i { transform: translateX(-4px); }
.more-brands { text-align: center; color: var(--muted); font-size: 15px; margin: 24px 0 0; padding: 15px 20px; border: 1px solid rgba(244,196,0,.12); border-radius: 12px; background: rgba(0,0,0,.28); }

.engine-focus { background: #090909; }
.engine-focus-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.engine-focus-card {
  min-height: 330px; padding: 30px; border-radius: 20px; position: relative; overflow: hidden;
  display: flex; flex-direction: column; align-items: flex-start;
  border: 1px solid rgba(244,196,0,.14); box-shadow: 0 20px 50px rgba(0,0,0,.25);
}
.engine-focus-card::after {
  content: ""; position: absolute; width: 230px; height: 230px; left: -75px; top: -75px;
  border-radius: 50%; border: 1px solid currentColor; opacity: .1;
  box-shadow: 0 0 0 45px currentColor, 0 0 0 90px currentColor;
}
.turbo-card { background: linear-gradient(135deg, #3b080a, #160405 68%, #090909); color: var(--red-2); }
.natural-card { background: linear-gradient(135deg, #342a00, #161200 68%, #090909); color: var(--gold-2); }
.overhaul-card { background: linear-gradient(135deg, #351305, #160803 68%, #090909); color: #ff8746; }
.engine-tag { font: 800 11px/1 sans-serif; letter-spacing: .12em; color: currentColor; }
.engine-focus-card > i { font-size: 52px; margin: 42px 0 26px; color: currentColor; }
.engine-focus-card h3 { margin: 0 0 8px; color: var(--white); font-size: 28px; }
.engine-focus-card p { margin: 0; max-width: 520px; color: #bdbdb8; font-size: 16px; }
.engine-focus-card > a { margin-top: auto; padding-top: 24px; color: var(--white); font-weight: 800; }
.engine-focus-card > a i { margin-right: 7px; color: currentColor; }

.home-brands {
  background:
    radial-gradient(circle at 90% 0%, rgba(215,25,32,.14), transparent 30%),
    var(--paper-2);
  border-block: 1px solid rgba(244,196,0,.1);
}
.home-brand-list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.home-brand-list a {
  min-height: 150px; padding: 20px; border-radius: 16px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px;
  background: linear-gradient(145deg, #191919, #0c0c0c);
  border: 1px solid rgba(244,196,0,.13); transition: transform .22s, border-color .22s, background .22s;
}
.home-brand-list a:hover { transform: translateY(-4px); border-color: var(--red); background: linear-gradient(145deg, #260607, #0c0c0c); }
.home-brand-list img { width: auto; max-width: 130px; max-height: 54px; object-fit: contain; }
.home-brand-list .dark-logo img { filter: invert(.92) grayscale(1); }
.home-brand-list span { color: var(--muted); font: 700 13px/1 sans-serif; direction: ltr; }
.brands-all-link {
  width: fit-content; margin: 22px auto 0; padding: 11px 18px; display: flex; align-items: center; gap: 10px;
  color: var(--gold-2); font-weight: 800; border-bottom: 1px solid var(--red);
}

.home-overview {
  background:
    linear-gradient(135deg, rgba(215,25,32,.08), transparent 45%),
    var(--paper);
}
.overview-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.overview-card {
  min-height: 128px;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 18px;
  background: linear-gradient(145deg, #191919, #101010);
  border: 1px solid var(--line);
  border-radius: 16px;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.overview-card:hover { transform: translateY(-3px); box-shadow: 0 16px 38px rgba(0,0,0,.3); border-color: var(--red); }
.overview-card > i:first-child {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--red);
  color: var(--gold-2);
  font-size: 20px;
  flex: 0 0 auto;
}
.overview-card span { display: grid; line-height: 1.4; }
.overview-card b { font-size: 20px; }
.overview-card small { color: var(--muted); font-size: 15px; }
.overview-card > i:last-child { margin-inline-start: auto; color: var(--gold); }

.services-section { background: var(--ink); color: var(--white); }
.section-heading.light h2 { color: var(--white); }
.section-heading.light h2 span { color: var(--gold-2); }
.section-heading.light > p { color: #aeb8c2; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(244,196,0,.12); border: 1px solid rgba(244,196,0,.14); }
.service-card { min-height: 270px; background: var(--ink); padding: 30px 30px; position: relative; overflow: hidden; }
.service-card.featured { background: linear-gradient(145deg, var(--red), #9e0d12); color: #fff; }
.service-number { position: absolute; top: 22px; left: 24px; font: 700 11px/1 sans-serif; color: #64707b; }
.featured .service-number { color: rgba(255,255,255,.55); }
.service-card > i { font-size: 27px; color: var(--gold-2); margin-bottom: 35px; }
.service-card.featured > i { color: var(--gold-2); }
.service-card h3 { font-size: 23px; margin: 0 0 9px; }
.service-card p { color: #aeb6be; font-size: 16px; margin: 0; }
.service-card.featured p { color: rgba(255,255,255,.82); }
.service-card ul { padding: 11px 18px 0 0; margin: 0; font-size: 14px; font-weight: 700; }

.diagnostic { min-height: 570px; display: grid; grid-template-columns: 1.1fr .9fr; background: #101010; }
.diagnostic-photo { background: linear-gradient(90deg, transparent 70%, rgba(16,16,16,.97)), url("assets/workshop-hero-v2.webp") 27% center / cover no-repeat; min-height: 570px; }
.diagnostic-content { padding: 70px clamp(34px, 6vw, 88px); align-self: center; }
.diagnostic-content h2 { font-size: clamp(40px, 4vw, 54px); color: var(--white); margin-top: 8px; }
.diagnostic-content > p { color: var(--muted); max-width: 540px; margin: 20px 0 24px; font-size: 17px; }
.diagnostic-points { display: grid; gap: 4px; }
.diagnostic-points > div { display: flex; align-items: center; gap: 18px; padding: 12px 0; border-top: 1px solid var(--line); }
.diagnostic-points > div > span { font: 800 12px/1 sans-serif; color: var(--red-2); }
.diagnostic-points p { display: grid; margin: 0; }
.diagnostic-points b { font-size: 16px; }
.diagnostic-points small { color: var(--muted); font-size: 13px; }

.process-section {
  background:
    linear-gradient(125deg, rgba(215,25,32,.09), transparent 40%),
    var(--paper-2);
}
.section-heading.compact { margin-bottom: 32px; }
.process-grid { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; counter-reset: step; }
.process-grid li { min-height: 220px; background: linear-gradient(145deg, #191919, #0f0f0f); padding: 23px; border-radius: 16px; position: relative; border: 1px solid var(--line); box-shadow: 0 10px 30px rgba(0,0,0,.22); }
.process-grid li > span { position: absolute; top: 18px; left: 18px; width: 28px; height: 28px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--muted); font-size: 11px; }
.process-grid li > i { display: block; color: var(--red-2); font-size: 27px; margin: 38px 0 18px; }
.process-grid h3 { margin: 0 0 7px; font-size: 21px; color: var(--white); }
.process-grid p { color: var(--muted); font-size: 15px; margin: 0; }

.cta-band { background: var(--gold); color: var(--ink); padding: 46px 0; }
.cta-inner { display: flex; justify-content: space-between; align-items: center; gap: 40px; }
.cta-inner > div:first-child > span { font-weight: 800; font-size: 12px; }
.cta-inner h2 { font-size: clamp(30px, 3vw, 44px); line-height: 1.15; margin: 8px 0 0; }
.cta-actions { display: flex; align-items: center; gap: 22px; }
.button-light { background: var(--ink); color: var(--white); min-height: 58px; }
.cta-phone { display: grid; line-height: 1.25; }
.cta-phone small { font-size: 11px; opacity: .7; }
.cta-phone b { font-size: 18px; }

.contact-section { background: linear-gradient(135deg, #1b0708, #0c0c0c 62%); }
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px; align-items: center; }
.contact-copy > p { color: var(--muted); max-width: 560px; margin: 19px 0 25px; font-size: 17px; }
.contact-list { border-top: 1px solid var(--line); }
.contact-list > a, .contact-list > div { min-height: 72px; display: flex; align-items: center; gap: 16px; border-bottom: 1px solid var(--line); }
.contact-list > * > i:first-child { width: 38px; color: var(--red-2); }
.contact-list > * > i:last-child { margin-inline-start: auto; color: var(--muted); font-size: 12px; }
.contact-list span { display: grid; }
.contact-list small { color: var(--muted); font-size: 13px; }
.contact-list b { font-size: 16px; }
.map-card { height: 450px; border-radius: var(--radius); background: #211a00; overflow: hidden; position: relative; box-shadow: 0 22px 70px rgba(0,0,0,.32); border: 1px solid rgba(244,196,0,.18); }
.map-pattern { position: absolute; inset: 0; opacity: .72; background:
  linear-gradient(28deg, transparent 46%, rgba(244,196,0,.55) 47%, rgba(244,196,0,.55) 51%, transparent 52%),
  linear-gradient(108deg, transparent 38%, rgba(215,25,32,.5) 39%, rgba(215,25,32,.5) 42%, transparent 43%),
  linear-gradient(165deg, transparent 62%, rgba(244,196,0,.4) 63%, rgba(244,196,0,.4) 66%, transparent 67%),
  repeating-linear-gradient(90deg, transparent 0 70px, rgba(255,255,255,.03) 71px 72px);
}
.map-pin { position: absolute; top: 42%; left: 48%; width: 76px; height: 76px; border-radius: 50%; background: var(--red); color: var(--gold-2); display: grid; place-items: center; font-size: 27px; box-shadow: 0 15px 35px rgba(0,0,0,.35); }
.map-pin::after { content: ""; position: absolute; inset: -12px; border: 1px solid rgba(11,16,22,.2); border-radius: 50%; }
.road { position: absolute; color: #6d746f; font-size: 10px; font-weight: 700; transform: rotate(-28deg); }
.road-one { top: 20%; left: 24%; }
.road-two { bottom: 25%; right: 18%; transform: rotate(14deg); }
.map-label { position: absolute; top: calc(42% + 88px); left: 50%; transform: translateX(-50%); background: #111; padding: 10px 16px; display: grid; text-align: center; border: 1px solid rgba(244,196,0,.2); border-radius: 8px; box-shadow: 0 8px 24px rgba(0,0,0,.26); white-space: nowrap; }
.map-label b { font-size: 13px; }
.map-label small { color: var(--muted); font-size: 9px; }
.map-card > a { position: absolute; bottom: 20px; right: 20px; left: 20px; min-height: 50px; background: var(--ink); color: var(--white); border-radius: 10px; display: flex; align-items: center; justify-content: center; gap: 10px; font-weight: 800; font-size: 13px; }

footer { background: #030303; color: var(--white); padding: 52px 0 20px; border-top: 3px solid var(--red); }
.footer-grid { display: grid; grid-template-columns: 1.65fr 1fr 1fr; gap: 70px; padding-bottom: 46px; }
.footer-brand { width: fit-content; }
.footer-brand .brand {
  display: inline-flex;
  align-items: center;
  padding: 12px;
  border: 1px solid rgba(244,196,0,.22);
  border-radius: 22px;
  background: radial-gradient(circle at 50% 35%, rgba(215,25,32,.13), transparent 62%), #050505;
  box-shadow: 0 18px 48px rgba(0,0,0,.28);
}
.footer-brand .brand-mark {
  width: 210px;
  height: 210px;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 14px;
  box-shadow: none;
  background: #000;
}
.footer-brand .brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: none;
  transform-origin: center;
  filter: none;
}
.footer-brand .brand > span:last-child { display: none; }
.footer-brand p { max-width: 236px; color: #9da6ae; font-size: 14px; margin: 15px auto 0; text-align: center; }
.footer-grid > div:not(:first-child) { display: flex; flex-direction: column; gap: 9px; }
.footer-grid h3 { color: var(--gold-2); font-size: 12px; margin: 0 0 8px; }
.footer-grid a, .footer-grid span { color: #aab3bc; font-size: 15px; }
.footer-bottom { border-top: 1px solid rgba(244,196,0,.14); padding-top: 20px; display: flex; justify-content: space-between; gap: 30px; color: #8f8f89; font-size: 10px; }
.footer-bottom p { margin: 0; }
.mobile-sticky { display: none; }

.booking-dialog {
  width: min(92vw, 560px); max-height: 90vh; border: 0; border-radius: 22px; padding: 42px;
  background: #131313; color: var(--text); box-shadow: 0 30px 100px rgba(0,0,0,.56); overflow: auto;
}
.booking-dialog::backdrop { background: rgba(5,8,12,.76); backdrop-filter: blur(7px); }
.booking-dialog h2 { font-size: 42px; color: var(--white); margin: 8px 0 28px; }
.dialog-close { position: absolute; top: 18px; left: 18px; width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--line); background: var(--red); color: var(--white); cursor: pointer; }
.booking-dialog form { display: grid; gap: 14px; }
.booking-dialog label { display: grid; gap: 6px; color: var(--muted); font-size: 11px; font-weight: 700; }
.booking-dialog input, .booking-dialog textarea { width: 100%; border: 1px solid rgba(244,196,0,.16); background: #1d1d1d; border-radius: 10px; padding: 13px 14px; color: var(--text); outline: 0; resize: vertical; }
.booking-dialog input:focus, .booking-dialog textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(244,196,0,.14); }
.booking-dialog form .button { margin-top: 6px; }
.booking-dialog form > p { text-align: center; color: var(--muted); font-size: 10px; margin: 0; }

/* Reference-inspired home experience */
.site-header { background: rgba(5,5,5,.94); backdrop-filter: blur(16px); }
.site-header.scrolled, .site-header.solid-header { background: rgba(5,5,5,.98); }
.desktop-nav {
  padding: 7px 11px; gap: 5px; border: 1px solid rgba(255,255,255,.1);
  border-radius: 999px; background: rgba(255,255,255,.025);
}
.desktop-nav a { padding: 6px 12px; border-radius: 999px; font-weight: 700; }
.desktop-nav a.active { color: #fff; box-shadow: inset 0 -2px 0 var(--red-2); }
.nav-actions .button-primary,
.hero-primary {
  background: linear-gradient(135deg, #ff9f43 0%, #ff5e36 50%, #ff3b30 100%);
  box-shadow: 0 12px 34px rgba(255,75,48,.25);
}
.button-outline {
  color: #fff; background: rgba(8,8,8,.74); border: 1px solid rgba(255,91,55,.72);
}

.reference-hero { min-height: 780px; background: #000; }
.reference-hero .hero-media {
  background-image: url("assets/workshop-hero-v2.webp");
  background-position: center;
  transform: none;
  filter: contrast(1.06) saturate(.88) brightness(.78);
}
.reference-hero .hero-shade {
  background:
    linear-gradient(90deg, rgba(0,0,0,.14) 0%, rgba(0,0,0,.34) 48%, rgba(0,0,0,.93) 100%),
    linear-gradient(0deg, #050505 0%, rgba(0,0,0,.12) 34%, rgba(0,0,0,.3) 100%);
}
.reference-hero .hero-content { padding: 142px 0 48px; }
.reference-hero .hero-copy { width: min(690px, 58%); margin-right: 0; margin-left: auto; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 9px;
  width: fit-content; padding: 8px 16px; margin-bottom: 18px;
  border: 1px solid rgba(244,196,0,.22); border-radius: 999px;
  color: #ffb04c; background: rgba(40,24,3,.45); font-size: 14px; font-weight: 800;
  white-space: nowrap;
}
.hero-badge i { color: var(--gold-2); }
.hero-badge strong { color: #ffb04c; font-size: 14px; }
.reference-hero h1 { font-size: clamp(48px, 5.1vw, 72px); }
.reference-hero h1 em {
  background: linear-gradient(135deg, #ffb14d 0%, #ff5e36 55%, #ff3434 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.reference-hero .hero-copy > p { max-width: 680px; color: #d7d7d3; }
.reference-hero .hero-actions .button { min-width: 190px; min-height: 60px; border-radius: 12px; }
.reference-hero .hero-meta { width: fit-content; min-width: 500px; }
.hero-stats {
  width: min(760px, 100%); margin: 44px auto 0; padding: 22px 24px;
  display: grid; grid-template-columns: repeat(4, 1fr);
  color: #fff; background: linear-gradient(135deg, rgba(39,31,19,.82), rgba(10,10,10,.8));
  border: 1px solid rgba(244,196,0,.18); border-radius: 18px;
  box-shadow: 0 20px 70px rgba(0,0,0,.42); backdrop-filter: blur(18px);
}
.hero-stats > div { display: grid; text-align: center; padding: 3px 14px; border-inline-start: 1px solid rgba(255,255,255,.09); }
.hero-stats > div:first-child { border-inline-start: 0; }
.hero-stats strong {
  font: 900 34px/1.1 "Tajawal", sans-serif;
  background: linear-gradient(135deg, #ffb14d, #ff3b38);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-stats strong span { font-size: 18px; }
.hero-stats small { margin-top: 6px; color: #b7b7b2; font-size: 12px; }

.brand-showcase { padding: 30px 0 34px; background: #080808; border-block: 1px solid rgba(255,255,255,.07); }
.brand-showcase-head { display: flex; justify-content: space-between; margin-bottom: 19px; color: #a9a9a4; font-weight: 800; }
.brand-showcase-head a { color: #ff7541; font-size: 13px; }
.brand-showcase-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px; }
.brand-showcase-grid a,
.brand-showcase-grid button {
  min-height: 88px; padding: 12px 10px; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 10px; border-radius: 12px;
  border: 1px solid rgba(255,255,255,.08); background: linear-gradient(145deg, #171717, #0c0c0c);
  color: inherit; cursor: pointer; font: inherit; transition: transform .2s, border-color .2s, background .2s;
}
.brand-showcase-grid a:hover,
.brand-showcase-grid button:hover,
.brand-showcase-grid button.active { transform: translateY(-3px); border-color: rgba(255,91,55,.8); background: linear-gradient(145deg, #2b0909, #0c0c0c); }
.brand-showcase-grid img { max-width: 88px; max-height: 34px; object-fit: contain; }
.brand-showcase-grid .invert-logo img { filter: invert(.9) grayscale(1); }
.brand-showcase-grid span { color: #969691; font: 700 11px/1 sans-serif; direction: ltr; }
.brand-showcase-head small { color: #73736f; font-size: 12px; }
.home-brand-detail { margin-top: 18px; }

.chinese-cars {
  background:
    radial-gradient(circle at 80% 12%, rgba(255,77,48,.1), transparent 30%),
    #070707;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.cars-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.car-shot {
  margin: 0; min-width: 0; overflow: hidden; border-radius: 22px;
  background: linear-gradient(145deg, #191919, #090909);
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 22px 60px rgba(0,0,0,.42), 0 0 0 1px rgba(255,255,255,.025) inset;
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.car-shot:hover {
  transform: translateY(-5px);
  border-color: rgba(255,177,0,.38);
  box-shadow: 0 28px 70px rgba(0,0,0,.52);
}
.car-shot-media {
  position: relative; height: 270px; padding: 22px; display: grid; place-items: center; overflow: hidden;
  background: radial-gradient(circle at 50% 55%, rgba(255,122,62,.14), transparent 52%), #050505;
}
.car-shot-media > .car-vehicle { width: 100%; height: 100%; object-fit: contain; transition: transform .4s ease; }
.car-shot:hover .car-shot-media > .car-vehicle { transform: scale(1.025); }
.car-shot-photo .car-shot-media {
  padding: 0;
  background:
    radial-gradient(circle at 50% 25%, rgba(255,175,0,.12), transparent 48%),
    #0b0b0b;
  border: 0;
}
.car-shot-photo .car-shot-media > .car-vehicle {
  position: relative; z-index: 1; object-fit: cover; object-position: center;
  filter: saturate(1.08) contrast(1.04);
}
.car-shot-photo .car-shot-media::before {
  content: ""; position: absolute; z-index: 2; inset: 0;
  border: 1px solid rgba(255,196,0,.18);
  box-shadow: inset 0 0 38px rgba(0,0,0,.22);
  pointer-events: none;
}
.car-shot-photo .car-shot-media::after {
  content: ""; position: absolute; z-index: 2; inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.04) 35%, rgba(0,0,0,.8) 100%),
    linear-gradient(90deg, rgba(211,31,25,.15), transparent 28%, transparent 72%, rgba(255,190,0,.1));
  pointer-events: none;
}
.car-market-badge {
  position: absolute; z-index: 2; top: 14px; right: 14px;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 11px; border: 1px solid rgba(255,255,255,.12); border-radius: 999px;
  color: #fff; background: rgba(9,9,9,.88);
  box-shadow: 0 8px 20px rgba(0,0,0,.14);
  font-size: 10px; font-weight: 800;
}
.car-market-badge i { color: #ffc400; }
.car-brand-mark {
  position: absolute; z-index: 3; top: 13px; left: 13px;
  width: auto; max-width: 74px; height: 27px; object-fit: contain;
  padding: 5px 8px; border-radius: 9px;
  background: rgba(255,255,255,.92); box-shadow: 0 8px 24px rgba(0,0,0,.28);
  opacity: 1; filter: grayscale(1) contrast(1.15);
}
.car-shot-mg .car-brand-mark { height: 36px; max-width: 50px; top: 10px; }
.car-shot-changan .car-brand-mark { height: 34px; max-width: 43px; top: 11px; }
.car-card-number {
  position: absolute; z-index: 3; left: 16px; bottom: 13px;
  color: rgba(255,255,255,.34); font: 900 42px/1 sans-serif; letter-spacing: -.06em;
}
.car-service-tags {
  position: absolute; z-index: 4; right: 13px; bottom: 13px;
  display: flex; gap: 6px; flex-wrap: wrap; justify-content: flex-end;
}
.car-service-tags span {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 7px 9px; border: 1px solid rgba(255,255,255,.13); border-radius: 8px;
  color: #fff; background: rgba(12,12,12,.9);
  box-shadow: 0 7px 18px rgba(0,0,0,.14);
  font-size: 10px; font-weight: 800;
}
.car-service-tags span:last-child { color: #171006; background: #ffc400; }
.car-service-tags i { color: #ff4b36; font-size: 10px; }
.car-service-tags span:last-child i { color: #d9271d; }
.car-shot-mg .car-vehicle { object-position: center; }
.car-shot-haval .car-vehicle { object-position: center; }
.car-shot-changan .car-vehicle { object-position: center; }
.car-shot figcaption {
  padding: 20px 22px 23px; display: grid; position: relative;
  background: linear-gradient(135deg, #151515, #090909);
  border-top: 1px solid rgba(255,255,255,.08);
}
.car-shot figcaption::before {
  content: ""; position: absolute; top: -2px; right: 22px; width: 42px; height: 3px;
  background: linear-gradient(90deg, #ffc400, #ff3b30);
}
.car-shot figcaption span { color: #ff7440; font: 800 11px/1 sans-serif; letter-spacing: .12em; }
.car-shot figcaption strong { margin-top: 6px; color: #fff; font: 900 25px/1.1 sans-serif; direction: ltr; }
.car-shot figcaption small { margin-top: 8px; color: var(--muted); font-size: 13px; }

.reference-section { padding: 92px 0; }
.reference-heading { max-width: 760px; margin: 0 auto 42px; text-align: center; }
.reference-heading .kicker { color: #ff7944; }
.reference-heading h2 {
  margin: 10px 0 14px; font-size: clamp(42px, 4vw, 58px); line-height: 1.08; color: #fff;
}
.reference-heading h2 em {
  font-style: normal; background: linear-gradient(135deg, #ffad49, #ff3937);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.reference-heading p { margin: 0 auto; max-width: 640px; color: var(--muted); font-size: 18px; }
.reference-section .engine-focus-card { min-height: 380px; padding: 36px; }
.turbo-card { background: linear-gradient(145deg, #34090a, #100304 70%, #070707); }
.natural-card { background: linear-gradient(145deg, #332006, #110b02 70%, #070707); }

.workshop-values {
  background:
    radial-gradient(circle at 20% 20%, rgba(255,74,48,.12), transparent 30%),
    #090909;
  border-block: 1px solid rgba(255,255,255,.06);
}
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.values-grid article {
  min-height: 285px; padding: 28px; position: relative; border-radius: 18px;
  background: linear-gradient(145deg, rgba(30,30,30,.96), rgba(10,10,10,.98));
  border: 1px solid rgba(255,255,255,.08); transition: transform .22s, border-color .22s;
}
.values-grid article:hover { transform: translateY(-4px); border-color: rgba(255,90,54,.55); }
.values-grid article > span { position: absolute; top: 22px; left: 23px; color: #666; font: 700 11px/1 sans-serif; }
.values-grid article > i {
  width: 58px; height: 58px; display: grid; place-items: center; margin: 28px 0 24px;
  color: #ffbd43; font-size: 24px; border-radius: 16px;
  background: linear-gradient(135deg, #d71920, #841014);
}
.values-grid h3 { margin: 0 0 9px; font-size: 23px; color: #fff; }
.values-grid p { margin: 0; color: var(--muted); }

.explore-center { background: #050505; }
.explore-center .overview-card { min-height: 150px; border-radius: 18px; }

.booking-section {
  scroll-margin-top: 94px;
  background:
    radial-gradient(circle at 88% 12%, rgba(255,61,48,.17), transparent 30%),
    radial-gradient(circle at 12% 86%, rgba(255,185,0,.11), transparent 27%),
    #090909;
  border-top: 1px solid rgba(255,255,255,.07);
}
.booking-section-top { border-top-color: rgba(255,177,0,.18); border-bottom: 1px solid rgba(255,255,255,.07); }
.booking-layout { display: grid; grid-template-columns: .82fr 1.18fr; align-items: center; gap: 68px; }
.booking-copy h2 {
  margin: 10px 0 18px; color: #fff; font-size: clamp(42px, 4vw, 60px); line-height: 1.08;
}
.booking-copy h2 em {
  font-style: normal; background: linear-gradient(135deg, #ffb14d, #ff3937);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.booking-copy > p { margin: 0; color: var(--muted); font-size: 18px; }
.booking-benefits { display: grid; gap: 13px; margin-top: 30px; }
.booking-benefits > div {
  display: flex; align-items: center; gap: 14px; padding: 14px;
  border: 1px solid rgba(255,255,255,.08); border-radius: 14px;
  background: rgba(255,255,255,.025);
}
.booking-benefits i {
  width: 44px; height: 44px; flex: 0 0 auto; display: grid; place-items: center;
  color: #ffbf35; border-radius: 12px; background: linear-gradient(145deg, #8d1014, #d72121);
}
.booking-benefits span { display: grid; }
.booking-benefits b { color: #fff; font-size: 15px; }
.booking-benefits small { color: #8f8f89; font-size: 12px; }
.booking-form {
  padding: 30px; border: 1px solid rgba(255,180,0,.22); border-radius: 24px;
  background: linear-gradient(145deg, rgba(27,27,27,.98), rgba(10,10,10,.98));
  box-shadow: 0 28px 80px rgba(0,0,0,.42), 0 0 0 1px rgba(255,255,255,.025) inset;
}
.form-heading { display: flex; align-items: center; gap: 13px; margin-bottom: 22px; }
.form-heading > span {
  width: 48px; height: 48px; display: grid; place-items: center; color: #171006;
  border-radius: 14px; background: linear-gradient(135deg, #ffd12b, #ff8d31);
}
.form-heading > div { display: grid; }
.form-heading strong { color: #fff; font-size: 20px; }
.form-heading small { color: #888883; font-size: 11px; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 15px; }
.booking-form label { display: grid; gap: 7px; color: #bcbcb6; font-size: 12px; font-weight: 800; }
.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%; min-height: 50px; padding: 12px 14px; color: #fff;
  border: 1px solid rgba(255,255,255,.12); border-radius: 11px;
  background: #111; outline: 0; resize: vertical; transition: border-color .2s, box-shadow .2s;
}
.booking-form select { cursor: pointer; color-scheme: dark; }
.booking-form input::placeholder,
.booking-form textarea::placeholder { color: #656560; }
.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  border-color: #ff9f32; box-shadow: 0 0 0 3px rgba(255,159,50,.13);
}
.booking-form textarea { min-height: 116px; }
.form-wide { grid-column: 1 / -1; }
.booking-submit { width: 100%; min-height: 58px; margin-top: 18px; font-size: 16px; }
.form-note {
  display: flex; justify-content: center; align-items: center; gap: 7px;
  margin: 12px 0 0; color: #777772; font-size: 10px;
}
.form-note i { color: #d4a623; }
.cta-band { background: linear-gradient(135deg, #ff9f43 0%, #ff5e36 52%, #ff3b30 100%); }

@media (max-width: 1240px) {
  .desktop-nav, .nav-actions { display: none; }
  .menu-toggle { display: block; margin-inline-start: auto; cursor: pointer; }
  .mobile-nav {
    display: grid; gap: 0; max-height: 0; overflow: hidden; opacity: 0;
    background: rgba(8,8,8,.98); transition: max-height .3s, opacity .3s; padding-inline: 20px;
  }
  .mobile-nav.open { max-height: 420px; opacity: 1; padding-bottom: 20px; }
  .mobile-nav a:not(.button) { padding: 13px 0; border-bottom: 1px solid rgba(244,196,0,.14); }
  .mobile-nav .button { margin-top: 14px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid > div:nth-child(3) { border-inline-start: 0; border-top: 1px solid var(--line); }
  .trust-grid > div:nth-child(4) { border-top: 1px solid var(--line); }
  .brand-grid { grid-template-columns: repeat(4, 1fr); }
  .home-brand-list { grid-template-columns: repeat(4, 1fr); }
  .brand-showcase-grid { grid-template-columns: repeat(4, 1fr); }
  .engine-focus-grid { grid-template-columns: repeat(2, 1fr); }
  .overhaul-card { grid-column: 1 / -1; }
  .brand-detail { grid-template-columns: 120px 1fr auto; }
  .brand-detail .model-list { grid-column: 2 / -1; grid-row: 2; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .diagnostic { grid-template-columns: 1fr; }
  .diagnostic-photo { min-height: 430px; background-image: linear-gradient(0deg, rgba(21,29,36,.96), transparent 35%), url("assets/workshop-hero-v2.webp"); }
  .diagnostic-content { padding-block: 58px 68px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { gap: 40px; }
}

@media (max-width: 720px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .site-header { background: rgba(8,8,8,.95); }
  .nav-wrap { min-height: 80px; }
  .brand { gap: 11px; }
  .brand-mark { width: 60px; height: 60px; font-size: 20px; }
  .brand strong { font-size: 16px; }
  .brand small { font-size: 9px; }
  .hero { min-height: 640px; height: auto; padding: 108px 0 68px; }
  .hero-media { background-position: 35% center; opacity: .58; }
  .hero-shade { background: linear-gradient(0deg, rgba(8,8,8,.96), rgba(8,8,8,.5) 55%, rgba(8,8,8,.82)); }
  .hero-copy { width: 100%; }
  .hero h1 { font-size: 41px; letter-spacing: -1px; }
  .hero-copy > p { font-size: 18px; }
  .hero-actions { display: grid; }
  .hero-actions .button { width: 100%; }
  .hero-meta { gap: 20px; justify-content: space-between; }
  .scroll-cue { display: none; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-grid > div { border-inline-start: 0; border-top: 1px solid var(--line); padding-inline: 8px; }
  .trust-grid > div:first-child { border-top: 0; }
  .page-hero { min-height: 320px; padding: 122px 0 48px; }
  .page-hero h1 { font-size: 39px; }
  .page-hero p { font-size: 17px; }
  .section { padding: 56px 0; }
  .section-heading { display: block; margin-bottom: 28px; }
  .section-heading h2, .contact-copy h2 { font-size: 36px; letter-spacing: -1px; }
  .section-heading > p { width: 100%; margin-top: 15px; font-size: 17px; }
  .brand-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .reference-hero { min-height: 750px; }
  .reference-hero .hero-media { background-position: 34% center; opacity: .58; }
  .reference-hero .hero-copy { width: 100%; }
  .reference-hero .hero-content { padding-top: 122px; }
  .reference-hero h1 { font-size: 43px; }
  .reference-hero .hero-meta { min-width: 0; width: 100%; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); padding: 18px; gap: 16px 0; }
  .hero-stats > div:nth-child(3) { border-inline-start: 0; }
  .brand-showcase-grid { grid-template-columns: repeat(3, 1fr); }
  .brand-showcase-grid a,
  .brand-showcase-grid button { min-height: 82px; padding-inline: 7px; }
  .reference-section { padding: 64px 0; }
  .reference-heading { margin-bottom: 30px; text-align: right; }
  .reference-heading h2 { font-size: 38px; }
  .reference-heading p { font-size: 16px; }
  .values-grid { grid-template-columns: 1fr; }
  .cars-gallery { grid-template-columns: 1fr; }
  .car-shot-media { height: 250px; }
  .car-service-tags { right: 10px; bottom: 10px; }
  .car-service-tags span { padding: 6px 8px; font-size: 9px; }
  .car-card-number { left: 12px; bottom: 11px; font-size: 34px; }
  .engine-focus-grid { grid-template-columns: 1fr; }
  .overhaul-card { grid-column: auto; }
  .engine-focus-card { min-height: 300px; padding: 24px; }
  .engine-focus-card > i { margin: 34px 0 22px; }
  .home-brand-list { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .home-brand-list a { min-height: 128px; padding: 15px; }
  .home-brand-list img { max-width: 105px; max-height: 44px; }
  .brand-card { min-height: 178px; padding: 13px; }
  .brand-logo-box { height: 72px; padding: 12px 16px; }
  .brand-logo-box img { max-width: 105px; max-height: 44px; }
  .brand-card-name { display: grid; gap: 5px; }
  .brand-card b { font-size: 16px; }
  .brand-detail { grid-template-columns: 1fr; padding: 24px; }
  .brand-detail-logo { width: 100%; height: 82px; }
  .brand-detail .model-list { grid-column: auto; grid-row: auto; }
  .text-button { text-align: start; }
  .services-grid { grid-template-columns: 1fr; }
  .overview-grid { grid-template-columns: 1fr; }
  .overview-card { min-height: 108px; padding: 18px; }
  .overview-card b { font-size: 18px; }
  .overview-card small { font-size: 14px; }
  .service-card { min-height: 250px; }
  .diagnostic-photo { min-height: 330px; background-position: 25% center; }
  .diagnostic-content { padding: 48px 20px 56px; }
  .diagnostic-content h2 { font-size: 38px; }
  .process-grid { grid-template-columns: 1fr; }
  .process-grid li { min-height: 205px; }
  .cta-inner { display: block; }
  .cta-actions { display: grid; margin-top: 28px; }
  .cta-phone { text-align: center; }
  .contact-grid { grid-template-columns: 1fr; }
  .booking-layout { grid-template-columns: 1fr; gap: 34px; }
  .booking-copy { text-align: right; }
  .booking-copy h2 { font-size: 39px; }
  .booking-copy > p { font-size: 16px; }
  .booking-form { padding: 22px 16px; border-radius: 18px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-wide { grid-column: auto; }
  .map-card { height: 360px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-brand { margin-inline: auto; }
  .footer-brand .brand-mark { width: 184px; height: 184px; }
  .footer-bottom { display: block; padding-bottom: 74px; }
  .footer-bottom p + p { margin-top: 8px; }
  .mobile-sticky {
    position: fixed; z-index: 1200; bottom: 0; right: 0; left: 0; height: 62px;
    display: grid; grid-template-columns: 1fr 1.25fr; background: var(--ink); box-shadow: 0 -10px 35px rgba(0,0,0,.24);
  }
  .mobile-sticky a { display: flex; align-items: center; justify-content: center; gap: 8px; color: var(--white); font-weight: 800; }
  .mobile-sticky a:last-child { background: var(--green); }
  .booking-dialog { padding: 34px 20px 24px; }
  .booking-dialog h2 { font-size: 35px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
