/* ===============
   Theme variables
   =============== */
:root {
  --bg: #0b0f14;           /* asphalt */
  --bg-2: #121922;         /* tunnel */
  --text: #e6eef6;
  --muted: #9fb0c0;
  --accent: #49d1ff;       /* electric blue */
  --accent-2: #ff4d6d;     /* brake light */
  --card: #11161e;
  --tire: rgba(255,255,255,0.025);
  --outline: rgba(255,255,255,0.08);
  --shadow: rgba(0,0,0,0.4);
  color-scheme: dark light;  /* helps forms/scrollbars */
}

:root[data-theme="light"] {
  --bg: #f6f9fc;
  --bg-2: #ffffff;
  --text: #0b0f14;
  --muted: #526170;
  --accent: #006dff;
  --accent-2: #ff2a4f;
  --card: #ffffff;
  --tire: rgba(0,0,0,0.04);
  --outline: rgba(0,0,0,0.1);
  --shadow: rgba(0,0,0,0.08);
}

/* Optional “Garage Mode” (Konami egg) */
:root[data-garage] {
  --accent: #00ffa3;
  --accent-2: #ff7aa2;
  --tire: rgba(255,255,255,0.05);
}

/* ===============
   Global reset
   =============== */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--text);
  background:
    /* tire tread pattern */
    radial-gradient(circle at 25px 25px, var(--tire) 24px, transparent 25px) 0 0/50px 50px,
    radial-gradient(circle at 0 0, transparent 23px, var(--tire) 24px) 25px 25px/50px 50px,
    linear-gradient(180deg, var(--bg-2), var(--bg) 240px);
  min-height: 100vh;
  line-height: 1.55;
}

/* ===============
   Layout helpers
   =============== */
.container { width: min(1100px, 92%); margin-inline: auto; }
.section { padding: 4rem 0; }
.section-title {
  font-size: clamp(1.6rem, 1.2rem + 2vw, 2.2rem);
  margin: 0 0 1rem;
}
.lead { color: var(--muted); max-width: 65ch; }
.center { text-align: center; }

/* ===============
   Header / Nav
   =============== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  display: grid; grid-template-columns: auto 1fr auto auto;
  align-items: center; gap: .75rem;
  padding: .7rem 1rem;
  background: color-mix(in oklab, var(--bg) 96%, transparent);
  border-bottom: 1px solid var(--outline);
  backdrop-filter: blur(6px);
}
.brand { display: inline-flex; align-items: center; gap: .65rem; text-decoration: none; color: var(--text); font-weight: 700; }
.brand img, .site-logo { width: 36px; height: 36px; display: block; }
.site-nav { display: flex; gap: 1rem; align-items: center; justify-self: center; }
.site-nav a { color: var(--text); text-decoration: none; padding: .4rem .6rem; border-radius: .5rem; position: relative; transition: transform .18s ease, background-color .18s ease, color .18s ease; }
.site-nav a:hover { background: var(--outline); transform: translateY(-2px); }
.site-nav a::after {
  content: ""; position: absolute; left: 10%; right: 10%; bottom: .2rem; height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, var(--accent), color-mix(in oklab, var(--accent) 40%, transparent));
  transform: scaleX(0); transform-origin: center; transition: transform .18s ease;
}
.site-nav a:hover::after { transform: scaleX(1); }
.site-nav .cta { background: var(--accent); color: #001; font-weight: 700; border-radius: .5rem; padding: .4rem .75rem; }
.site-nav a[aria-current="page"] { background: var(--outline); }
.nav-toggle { display: none; }

/* Theme toggle pill (visual only here; your JS handles switching) */
.theme-toggle {
  position: relative; width: 44px; height: 28px;
  border: 2px solid var(--outline); border-radius: 999px; background: var(--card);
}
.theme-toggle .bulb { position:absolute; right:4px; top:3px; width:18px; height:18px; border-radius:50%; background: var(--accent); box-shadow: 0 0 14px var(--accent); }
.theme-toggle .beam { position:absolute; left:-10px; top:5px; width:24px; height:12px; border-radius: 0 12px 12px 0; background: linear-gradient(90deg, color-mix(in oklab, var(--accent) 25%, transparent), transparent); opacity:.6; }

@media (max-width: 860px) {
  .site-nav { display: none; position: absolute; left: 0; right: 0; top: 60px; background: var(--bg-2); padding: 1rem; border-bottom: 1px solid var(--outline); }
  .site-nav.open { display: grid; grid-auto-rows: min-content; gap: .5rem; }
  .nav-toggle { display: inline-grid; place-items: center; border: 1px solid var(--outline); background: var(--card); border-radius: .5rem; padding: .35rem .55rem; color: var(--text); }
}

/* ===============
   HERO (vector version baseline)
   =============== */
.hero {
  position: relative; display: grid; place-items: center; overflow: clip;
  min-height: 68vh; padding: 3rem 0;
}
.hero-art { position: absolute; inset: 0; pointer-events: none; }
.hero-car { position: absolute; bottom: -20px; right: 5%; width: clamp(220px, 32vw, 500px); opacity: .9; filter: drop-shadow(0 20px 40px var(--shadow)); animation: bob 6s ease-in-out infinite; }
@keyframes bob { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-6px)} }
.lane { position: absolute; inset: auto 0 0; height: 6px; background: linear-gradient(90deg, var(--accent) 50%, transparent 50%) 0/40px 6px; opacity: .25; }
.lane-1 { bottom: 24px; } .lane-2 { bottom: 40px; animation: dash 1.4s linear infinite; } .lane-3{ bottom:56px; animation: dash 1.8s linear infinite reverse; }
@keyframes dash { to { background-position-x: 40px; } }
.speedlines { position:absolute; inset: 0; background: repeating-linear-gradient(170deg, transparent 0 60px, color-mix(in oklab, var(--accent) 12%, transparent) 60px 64px); opacity:.2; }

.hero-content { position: relative; z-index: 1; text-align: left; width: min(1100px,92%); }
.hero-content h1 { font-weight: 800; line-height: 1.1; }
.accent { color: var(--accent); }
.hero-ctas { display: flex; gap: .75rem; margin-top: 1rem; flex-wrap: wrap; }
.trust-badges { display:grid; grid-auto-flow: column; gap: 1rem; list-style:none; padding:0; margin-top: 1rem; width: fit-content; }
@media (max-width:700px){ .trust-badges{ grid-auto-flow: row; } }

/* ===============
   HERO (photo version)
   =============== */
.hero.hero-photo {
  position: relative;
  min-height: 72vh;
  padding: clamp(3rem, 5vw, 6rem) 1rem 3rem;
  display: grid;
  place-items: center;
  text-align: center;
  color: #fff;
  background:
    /* darker overlay for legibility */
    linear-gradient(180deg, rgba(0,0,0,.75), rgba(0,0,0,.55) 40%, rgba(0,0,0,.75)),
    url('../img/shop-hero.JPEG') center / cover no-repeat;
}
/* dark “cap” behind header so links never blend at the very top */
.hero.hero-photo::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 120px;
  background: linear-gradient(180deg, rgba(0,0,0,.72), rgba(0,0,0,.45) 60%, rgba(0,0,0,0));
  pointer-events: none; z-index: 0;
}
/* boost text contrast over bright areas */
.hero-photo h1, .hero-photo p, .hero-photo .trust-badges li { text-shadow: 0 2px 4px rgba(0,0,0,.8); }
/* hide vector lanes when photo hero is active */
.hero .hero-art { display: none; }

/* ===============
   Cards / Grids
   =============== */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(220px,1fr)); gap: 1rem; }
.card {
  padding: 1rem; background: var(--card);
  border: 1px solid var(--outline); border-radius: 1rem;
  box-shadow: 0 10px 30px var(--shadow);
  transition: transform .2s ease, border-color .2s ease;
}
.card:hover { transform: translateY(-4px); border-color: color-mix(in oklab, var(--accent) 40%, var(--outline)); }
.arrow-link { display:inline-flex; gap:.4rem; align-items:center; color: var(--accent); text-decoration: none; }
.arrow-link::after { content: "→"; transition: transform .18s ease; }
.arrow-link:hover::after { transform: translateX(3px); }

/* Two column & extras */
.two-col { display:grid; grid-template-columns: 1.2fr .8fr; gap: 2rem; align-items: start; }
@media (max-width: 900px){ .two-col { grid-template-columns: 1fr; } }
.stat-cards { display:grid; gap: .75rem; }
.stat { background: var(--card); border:1px solid var(--outline); padding: 1rem; border-radius: 1rem; text-align:center; }
.stat .num { font-weight:800; font-size:1.6rem; display:block; }
.stat .label { color: var(--muted); }

/* Before & After slider */
.ba-slider { position: relative; border-radius: 1rem; overflow: hidden; background: var(--bg-2); border: 1px solid var(--outline); }
.ba-slider img { display:block; width:100%; height:auto; }
.ba-slider .resize { position:absolute; inset:0; width:50%; overflow:hidden; border-right: 2px solid var(--accent); }
.ba-slider .handle { position:absolute; top:0; bottom:0; left:50%; width: 18px; background: color-mix(in oklab, var(--accent) 30%, transparent); border-right: 2px solid var(--accent); cursor: ew-resize; }
.ba-grid { display:grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 800px){ .ba-grid { grid-template-columns: 1fr 1fr; } }

/* Estimator (legacy section styles, safe to keep) */
.estimator { background: linear-gradient(180deg, var(--bg-2), var(--bg)); border-top: 1px solid var(--outline); border-bottom: 1px solid var(--outline); }
.estimator-grid { display:grid; grid-template-columns: 1fr .85fr; gap: 2rem; align-items: start; }
@media (max-width: 980px){ .estimator-grid { grid-template-columns: 1fr; } }

/* Forms & inputs */
.form-grid { display: grid; gap: .75rem; }
.form-grid .full { grid-column: 1 / -1; }
label, fieldset, legend { display:block; }
input, select, textarea {
  width: 100%; padding: .7rem; border-radius: .6rem; border: 1px solid var(--outline);
  background: var(--bg-2); color: var(--text);
}
fieldset { border: 1px dashed var(--outline); padding: .7rem; border-radius: .6rem; }
.note { color: var(--muted); font-size: .95rem; }

/* Booking calendar */
.calendar-card { margin-top: 1rem; background: var(--card); border: 1px solid var(--outline); border-radius: 1rem; padding: 1rem; }
.calendar { display: grid; gap: .5rem; }
.cal-header { display: flex; justify-content: space-between; align-items: center; }
.cal-header .cal-title { font-weight: 700; }
.cal-header button { border: 1px solid var(--outline); background: var(--bg-2); border-radius: .5rem; padding: .25rem .5rem; cursor: pointer; }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: .25rem; }
.cal-grid .dow { text-align: center; font-size: .85rem; color: var(--muted); }
.day { color: var(--text); background: var(--bg-2); }
.day.today { color: var(--accent); font-weight: 700; }
.day.selected { background: var(--accent); color: #001; }
.day.disabled { opacity: .4; pointer-events: none; }
.time-slots { display: grid; grid-template-columns: repeat(auto-fit, minmax(90px, 1fr)); gap: .35rem; margin-top: .5rem; }
.time-slots button { background: var(--card); color: var(--text); }
.time-slots button:hover, .time-slots button.selected { background: var(--accent); color: #001; border-color: var(--accent); font-weight: 600; }

/* Inline errors */
.help-error { color: var(--accent-2); margin-top: .35rem; font-size: .95rem; }
.field-error-msg { color: var(--accent-2); margin-top: .35rem; font-size: .95rem; }
.field-error { border-color: var(--accent-2) !important; box-shadow: 0 0 0 2px color-mix(in oklab, var(--accent-2) 40%, transparent); }
.calendar-card.invalid { outline: 2px solid var(--accent-2); outline-offset: 2px; animation: wiggle .28s ease-in-out; }
@keyframes wiggle { 0% { transform: translateX(0) } 25% { transform: translateX(-3px) } 50% { transform: translateX(3px) } 75% { transform: translateX(-2px) } 100% { transform: translateX(0) } }

/* Buttons */
.btn { display:inline-block; text-decoration:none; padding:.75rem 1rem; border-radius:.8rem; border:1px solid var(--outline); background: var(--card); color: var(--text); font-weight:700; transition: transform .12s ease, box-shadow .12s ease, filter .12s ease; will-change: transform; }
.btn:hover { transform: translateY(-1px); box-shadow: 0 6px 18px var(--shadow); }
.btn:active { transform: translateY(0); filter: brightness(0.98); }
.btn.primary { background: linear-gradient(180deg, var(--accent), color-mix(in oklab, var(--accent) 75%, black)); color: #001; border-color: transparent; }
.btn.ghost { background: transparent; border-color: var(--accent); color: var(--accent); }

/* Footer */
.site-footer { border-top: 1px solid var(--outline); padding: 2rem 1rem; background: var(--bg-2); }
.footer-grid { display:grid; grid-template-columns: 2fr 1fr 1fr; gap: 2rem; }
.hours, .quick-links { list-style:none; padding:0; margin:0; }
.fineprint { color: var(--muted); text-align:center; margin-top: 1rem; }
@media (max-width: 900px){ .footer-grid { grid-template-columns: 1fr; } }

/* Map */
.map-embed iframe { width: 100%; height: 280px; border: 0; border-radius: 1rem; }

/* Accessibility focus */
:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

/* Upload drop zone (used on Home + Contact) */
.upload-zone { position: relative; border: 2px dashed color-mix(in oklab, white 60%, transparent); border-radius: 12px; padding: 1.25rem; text-align: center; cursor: pointer; }
.upload-zone input[type="file"] { position: absolute; inset: 0; opacity: 0; cursor: pointer; width: 100%; height: 100%; }
.upload-zone.dragover { background: rgba(73, 209, 255, .12); border-color: var(--accent); }
.file-list { margin:.5rem 0 0; padding:0; list-style:none; font-size:.95rem; }
.file-list li { display:flex; justify-content:space-between; gap:.5rem; padding:.35rem .5rem; border:1px solid rgba(255,255,255,.08); border-radius:8px; margin:.25rem 0; }
.linklike { text-decoration: underline; }

/* ===============
   Adaptive “glass” header (used on Home when header has .glass)
   =============== */
.site-header.glass {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(0,0,0,.35);
  backdrop-filter: saturate(140%) blur(6px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: background .3s ease, box-shadow .3s ease, border-color .3s ease;
}

/* After scrolling past the hero */
body.scrolled .site-header.glass {
  background: var(--header-bg, rgba(255,255,255,.92));
  border-bottom: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 2px 10px rgba(0,0,0,.08);
}
body.scrolled .site-nav a { color: #222; }
body.scrolled .site-nav a:hover { color: var(--accent); }
body.scrolled .theme-toggle { filter: brightness(0.2); }

/* Light mode top-of-page (over bright photo) */
html[data-theme="light"] .site-header.glass {
  background: rgba(0,0,0,.35);
  border-bottom: 1px solid rgba(255,255,255,.12);
}
html[data-theme="light"] .site-header.glass .site-nav a { color: #fff; text-shadow: 0 1px 2px rgba(0,0,0,.45); }
/* Light mode when scrolled (solid light bar) */
html[data-theme="light"] body.scrolled .site-header.glass {
  background: rgba(255,255,255,.92);
  border-bottom: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 2px 10px rgba(0,0,0,.08);
}
html[data-theme="light"] body.scrolled .site-header.glass .site-nav a { color: #111; text-shadow: none; }

/* ===============
   Fun UI FX & animations
   =============== */
.estimate-result { background: var(--card); border:1px solid var(--outline); border-radius: 1rem; padding: 1rem; position: sticky; top: 88px; }
.price { display:grid; gap:.25rem; }
.price-range { font-size: clamp(1.4rem, 1rem + 2vw, 2rem); font-weight: 800; }
.price-caption { color: var(--muted); }
.breakdown { list-style: none; padding: 0; margin: .5rem 0 0; display:grid; gap:.4rem; }
.breakdown li { display:flex; justify-content: space-between; border-bottom: 1px dashed var(--outline); padding-bottom: .25rem; }

.hero-car.nitro { animation: nitro 1.2s cubic-bezier(.2,.7,.1,1) forwards; filter: drop-shadow(0 24px 50px color-mix(in oklab, var(--accent) 45%, black)); }
@keyframes nitro { 0% { transform: translateX(0) scale(1); opacity: 1; } 70% { transform: translateX(60vw) scale(1.06); opacity: .95; } 100% { transform: translateX(110vw) scale(1.08); opacity: 0; } }

.reveal { opacity: 0; transform: translateY(16px); transition: opacity .5s ease, transform .5s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

.confetti-canvas { position: fixed; inset: 0; pointer-events: none; z-index: 9999; }
.spark { display: inline-block; width: .6rem; height: .6rem; border-radius: 50%; background: var(--accent); box-shadow: 0 0 10px var(--accent); animation: spark 1s ease infinite; vertical-align: middle; margin-right: .35rem; }
@keyframes spark { 0% { transform: scale(.9); opacity: .8; } 50% { transform: scale(1.15); opacity: 1; } 100% { transform: scale(.9); opacity: .8; } }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}

/* --- Hero button alignment + color unified fix --- */
.hero.hero-photo .hero-ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 1.25rem;
  width: 100%;
  text-align: center;
}

/* keep the bright gradient style for both buttons */
.hero.hero-photo .hero-ctas .btn {
  background: linear-gradient(180deg, var(--accent), color-mix(in oklab, var(--accent) 75%, black));
  color: #001;
  border-color: transparent;
  font-weight: 700;
  box-shadow: 0 6px 16px rgba(0,0,0,0.3);
  flex: 0 1 auto;
  min-width: 220px;
  text-align: center;
  transition: transform .15s ease, box-shadow .15s ease;
}
.hero.hero-photo .hero-ctas .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.4);
}

/* brighten hero tagline */
.hero.hero-photo .lead {
  color: rgba(255,255,255,0.92);
  font-weight: 500;
  text-shadow: 0 2px 6px rgba(0,0,0,0.55);
}

/* --- Align hero buttons to the LEFT on desktop, center on mobile --- */
@media (min-width: 900px) {
  .hero.hero-photo .hero-ctas {
    display: flex !important;
    justify-content: flex-start !important; /* left align */
    align-items: center;
    gap: 1rem;
    text-align: left;
    width: 100%;
  }
  .hero.hero-photo .hero-ctas .btn {
    min-width: 0;           /* let buttons size naturally */
    margin-inline: 0;       /* no auto-centering margins */
  }
}

/* Keep them centered on small screens */
@media (max-width: 899.98px) {
  .hero.hero-photo .hero-ctas {
    display: flex !important;
    justify-content: center !important;
    gap: 1rem;
  }
}

/* === Location strip (always above footer) === */
.location-strip {
  background: var(--bg-2);
  border-top: 1px solid var(--outline);
}

.loc-bar {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  padding: 1rem 0;
}

.loc-item {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: .75rem;
  align-items: center;
  padding: .85rem 1rem;
  border: 1px solid var(--outline);
  border-radius: .75rem;
  background: var(--card);
  color: var(--text);
  text-decoration: none;
  transition: transform .15s ease, border-color .15s ease, box-shadow .15s ease;
}
.loc-item:hover {
  transform: translateY(-1px);
  border-color: color-mix(in oklab, var(--accent) 40%, var(--outline));
  box-shadow: 0 8px 22px var(--shadow);
}

.loc-ico {
  display: inline-grid;
  place-items: center;
  width: 40px; height: 40px;
  border-radius: 999px;
  background: color-mix(in oklab, var(--accent) 20%, transparent);
  box-shadow: 0 0 0 2px color-mix(in oklab, var(--accent) 35%, transparent);
  font-size: 20px;
}

.loc-text { line-height: 1.25; }
.loc-text strong { font-weight: 800; }

.loc-map iframe {
  width: 100%;
  height: 330px;              /* adjust 300–380px if you want */
  border: 0;
  display: block;
  border-top: 1px solid var(--outline);
}

/* Responsive layout tweaks */
@media (max-width: 900px) {
  .loc-bar { grid-template-columns: 1fr; }
  .loc-item { padding: .85rem; }
}


/* --- Services hero --- */
.service-hero {
  background: var(--bg);
  padding: clamp(2.25rem, 2.5vw + 1rem, 4rem) 0;
  border-bottom: 1px solid var(--outline);
}
.service-hero .hero-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 2rem;
  align-items: center;
}
.service-hero .hero-copy .feature-list {
  margin: 1rem 0 0;
  display: grid;
  gap: .35rem;
  color: var(--text-2);
}
.service-hero .hero-cta { display: flex; gap: .75rem; margin-top: 1rem; }
.service-hero .hero-art img { width: 100%; height: auto; }

/* --- Quick cards --- */
.service-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 1rem;
}
.service-cards .card {
  background: var(--card);
  border: 1px solid var(--outline);
  border-radius: 1rem;
  padding: 1.1rem 1rem;
  box-shadow: 0 8px 20px var(--shadow);
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.service-cards .card:hover {
  transform: translateY(-2px);
  border-color: color-mix(in oklab, var(--accent) 35%, var(--outline));
  box-shadow: 0 14px 28px var(--shadow);
}

/* --- Detail rows (image + copy) --- */
.service-details .detail {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: 2.5rem;
}
.service-details .detail.reverse { grid-template-columns: .95fr 1.05fr; }
.service-details .detail-media img { width: 100%; height: auto; border-radius: .85rem; }
.service-details .detail-copy .bullets { margin: .75rem 0 1rem; display:grid; gap:.35rem; color: var(--text-2); }

/* Make BA slider respect rounded corners in this context */
.service-details .ba-slider { border-radius: .85rem; overflow: hidden; }

/* --- How it works --- */
.process-steps {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 1rem;
}
.process-steps .step {
  background: var(--card);
  border: 1px solid var(--outline);
  border-radius: 1rem;
  padding: 1rem;
  box-shadow: 0 8px 20px var(--shadow);
}
.process-steps .step .num {
  display: inline-grid; place-items: center;
  width: 36px; height: 36px; border-radius: 999px;
  background: color-mix(in oklab, var(--accent) 20%, transparent);
  box-shadow: 0 0 0 2px color-mix(in oklab, var(--accent) 35%, transparent);
  margin-bottom: .5rem; font-weight: 700;
}

/* --- FAQ --- */
.faq { display:grid; gap:.65rem; }
.faq details {
  border: 1px solid var(--outline);
  background: var(--card);
  border-radius: .75rem;
  padding: .7rem .9rem;
}
.faq summary { cursor: pointer; font-weight: 700; }
.faq p { margin: .5rem 0 0; color: var(--text-2); }

/* --- CTA band --- */
.cta-band .cta-inner{
  background: linear-gradient(0deg, color-mix(in oklab, var(--accent) 10%, transparent), transparent),
              var(--card);
  border: 1px solid var(--outline);
  border-radius: 1rem;
  padding: 1.25rem;
  text-align: center;
  box-shadow: 0 10px 26px var(--shadow);
}

/* --- Location strip reuse (if not already in your file) --- */
.location-strip { background: var(--bg-2); border-top: 1px solid var(--outline); }
.location-strip .loc-bar {
  display: grid; gap: 1rem; grid-template-columns: repeat(3,1fr);
  align-items: stretch; padding: 1rem 0;
}
.location-strip .loc-item {
  display: grid; grid-template-columns: 40px 1fr; gap: .75rem; align-items: center;
  padding: .9rem 1rem; border: 1px solid var(--outline); border-radius: .75rem;
  background: var(--card); color: var(--text); text-decoration: none;
  transition: transform .15s ease, border-color .15s ease, box-shadow .15s ease;
}
.location-strip .loc-item:hover {
  transform: translateY(-1px);
  border-color: color-mix(in oklab, var(--accent) 40%, var(--outline));
  box-shadow: 0 8px 22px var(--shadow);
}
.location-strip .loc-ico {
  display:inline-grid; place-items:center; width:40px; height:40px; border-radius:999px;
  background: color-mix(in oklab, var(--accent) 20%, transparent);
  box-shadow: 0 0 0 2px color-mix(in oklab, var(--accent) 35%, transparent);
  font-size: 18px;
}
.location-strip .loc-text { line-height:1.25; }
.location-strip .loc-map iframe { width: 100%; height: 340px; border: 0; display: block; }

/* --- Responsive --- */
@media (max-width: 1100px) {
  .service-hero .hero-grid { grid-template-columns: 1fr; }
  .service-cards { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .service-details .detail,
  .service-details .detail.reverse { grid-template-columns: 1fr; }
}
@media (max-width: 740px) {
  .service-cards { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .location-strip .loc-bar { grid-template-columns: 1fr; }
}


/* ===== SERVICES (distinct look) ===== */
.svc-hero{
  display:grid; grid-template-columns: 1.2fr .8fr; gap:2rem; align-items:center;
}
@media (max-width: 960px){ .svc-hero{ grid-template-columns: 1fr; } }
.svc-quick{ display:flex; flex-wrap:wrap; gap:.5rem; margin:.6rem 0 0; }
.chip{ padding:.35rem .6rem; border-radius:999px; border:1px solid rgba(73,209,255,.35);
  background: rgba(73,209,255,.10); font-size:.9rem; }
.paint-stroke{
  height:10px; border-radius:999px;
  background: linear-gradient(90deg, #49d1ff, #2b8bff, #49d1ff);
  filter: blur(.2px); animation: strokeMove 3.5s ease-in-out infinite;
}
@keyframes strokeMove{ 0%,100%{transform:translateX(0)} 50%{transform:translateX(8%)}}

/* Tabs */
.svc-tabs{ position:relative; display:grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap:.5rem; }
.svc-tab{
  position:relative; padding:.7rem .8rem; border-radius:12px; border:1px solid rgba(0,0,0,.08);
  background: var(--card-bg, #fff); font-weight:600; cursor:pointer;
}
[data-theme="dark"] .svc-tab{ --card-bg: rgba(255,255,255,.05); border-color: rgba(255,255,255,.08); }
.svc-tab.is-active{ box-shadow:0 8px 22px rgba(0,0,0,.10); }
.svc-ink{
  position:absolute; height:4px; background: linear-gradient(to right, #49d1ff, #2b8bff);
  border-radius:999px; bottom:-6px; left:0; width:calc(25% - .375rem); transform:translateX(0);
  transition: transform .3s ease, width .3s ease;
}
.svc-panels{ margin-top:1rem; }
.svc-panel{ display:none; }
.svc-panel.is-active{ display:block; animation: fadeIn .25s ease; }
@keyframes fadeIn{ from{opacity:0; transform:translateY(6px)} to{opacity:1; transform:none} }

/* Panel layout */
.svc-grid{ display:grid; grid-template-columns: 1fr .65fr; gap:1.2rem; }
@media (max-width: 960px){ .svc-grid{ grid-template-columns: 1fr; } }
.fact{
  background: var(--card-bg, #fff); border:1px solid rgba(0,0,0,.08);
  border-radius:16px; padding:1rem; box-shadow:0 8px 24px rgba(0,0,0,.06);
}
[data-theme="dark"] .fact{ --card-bg: rgba(255,255,255,.06); border-color: rgba(255,255,255,.08); }
.ticklist{ margin:.6rem 0; padding-left:1rem; line-height:1.7; }
.tagwall{ display:flex; flex-wrap:wrap; gap:.4rem; margin:.4rem 0 .6rem; }
.pill{ padding:.35rem .6rem; border-radius:999px; border:1px solid rgba(73,209,255,.35);
  background: rgba(73,209,255,.14); font-size:.9rem; }
.note{ opacity:.75; font-size:.9rem; }

/* Steps line */
.stepsline{ display:grid; grid-template-columns: repeat(5, 1fr); gap:.35rem; margin:.4rem 0 .8rem; }
.stepsline li{
  list-style:none; background: linear-gradient(180deg, rgba(73,209,255,.18), rgba(73,209,255,.06));
  border:1px solid rgba(73,209,255,.28); border-radius:10px; padding:.5rem .3rem; text-align:center;
}

/* “Meter” bars */
.meter{ display:grid; grid-template-columns: repeat(3,1fr); gap:.5rem; margin:.4rem 0 .8rem; }
.meter span{
  --v:60%;
  position:relative; display:block; background: rgba(73,209,255,.14); border:1px solid rgba(73,209,255,.28);
  border-radius:10px; padding:.5rem .5rem .8rem; text-align:center; overflow:hidden;
}
.meter span::after{
  content:""; position:absolute; left:0; bottom:0; height:6px; width:var(--v);
  background: linear-gradient(90deg, #49d1ff, #2b8bff);
}

/* Timeline */
.timeline{ display:grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap:1rem; }
@media (max-width: 900px){ .timeline{ grid-template-columns:1fr; } }
.titem{ position:relative; background: var(--card-bg, #fff); border:1px solid rgba(0,0,0,.08);
  border-radius:16px; padding:1rem; box-shadow:0 8px 24px rgba(0,0,0,.06); }
.titem .dot{
  position:absolute; top:-10px; left:14px; width:18px; height:18px; border-radius:50%;
  background: radial-gradient(circle at 35% 35%, #49d1ff, #2b8bff);
  box-shadow:0 0 0 4px rgba(73,209,255,.25);
  animation: pulse 2.2s ease-in-out infinite;
}
@keyframes pulse{ 0%,100%{transform:scale(1)} 50%{transform:scale(1.1)} }

/* Stats */
.stats-bar{
  display:flex; flex-wrap:wrap; gap:.75rem; align-items:center; justify-content:space-between;
  background: linear-gradient(90deg, rgba(73,209,255,.16), rgba(73,209,255,.06));
  border:1px solid rgba(73,209,255,.28); border-radius:16px; padding:.9rem 1rem;
}
.stats-bar .stat{
  font-weight:700; background: var(--card-bg, #fff); border-radius:12px; padding:.55rem .75rem;
  box-shadow:0 6px 18px rgba(0,0,0,.06);
}
[data-theme="dark"] .stats-bar .stat{ --card-bg: rgba(255,255,255,.06); }

/* Reveal helper (if you don’t already have it) */
.reveal{ opacity:0; transform: translateY(10px); transition:.45s ease; }
.reveal.in{ opacity:1; transform:none; }

/* Upload UI polish */
.upload-controls {
  display: flex;
  gap: .5rem;
  align-items: center;
  margin-top: .5rem;
}
.file-list .upload-item {
  display: flex;
  justify-content: space-between;
  gap: .5rem;
  align-items: center;
}
.file-list .remove-file {
  border: 1px solid var(--outline);
  background: var(--card);
  color: var(--text);
  border-radius: 8px;
  padding: .15rem .45rem;
  cursor: pointer;
}
.file-list .remove-file:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #001;
  font-weight: 600;
}


/* Upload list rows */
.file-list { list-style: none; margin: .5rem 0 0; padding: 0; }
.file-list .file-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: .35rem .5rem; border: 1px dashed var(--outline); border-radius: .5rem;
  background: var(--card); margin-bottom: .35rem;
}
.file-list .file-row:hover { border-color: var(--accent, #49d1ff); }

/* Remove button shows on hover for a cleaner look */
.file-list .file-row .remove-file {
  border: 1px solid var(--outline);
  background: var(--card);
  color: var(--text);
  border-radius: .5rem;
  padding: .15rem .45rem;
  margin-left: .5rem;
  cursor: pointer;
  opacity: .0;
  transition: opacity .15s ease;
}
.file-list .file-row:hover .remove-file { opacity: 1; }
.file-list .file-row .remove-file:hover { background: var(--outline); }

/* Inline actions bar sits inside the drop zone, below the hover message */
.upload-zone { position: relative; }
.upload-zone .upload-actions {
  display: none; /* shown when files exist */
  gap: .5rem; align-items: center;
  margin-top: .5rem;
}
.upload-zone .upload-actions .add-more { padding: .4rem .65rem; }
.upload-zone .upload-actions .count { opacity: .85; }

