/* ==========================================================================
   Las Vegas Express Detailing — service pages
   Loads AFTER homepage.css and depends on its tokens (--lv-*). Everything
   shared (buttons, eyebrows, bands, lists, form card, hero canvas motifs)
   stays in homepage.css; this file only carries what service pages add:
   a shorter hero with a breadcrumb, the intro + quote-form row, H3 sub-block
   cards, numbered process steps, fact rows, and the closing CTA card.
   ========================================================================== */

/* Grid columns must be free to shrink below their content's intrinsic width. */
.lv-band [class*="col-"],
.lv-cta [class*="col-"],
.sv-quote [class*="col-"] { min-width: 0; }

/* ==========================================================================
   1. Hero — same canvas as the homepage, less vertical drama
   ========================================================================== */
.sv-hero { padding: 62px 0 150px; }

/* Breadcrumb sits above the kicker and reads as a hairline trail. */
.sv-crumbs {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
  font-size: .82rem;
  letter-spacing: .01em;
  color: rgba(255, 255, 255, .55);
}

.sv-crumbs a {
  color: rgba(255, 255, 255, .74);
  border-bottom: 1px solid transparent;
  transition: color .25s, border-color .25s;
}

.sv-crumbs a:hover { color: var(--lv-accent-lt); border-bottom-color: rgba(127, 212, 255, .5); }

.sv-crumbs i { font-size: .7rem; color: rgba(255, 255, 255, .32); }

.sv-crumbs [aria-current] { color: var(--lv-white); font-weight: 500; }

/* Service H1s are full sentences, so they need a calmer display size than the
   two-line brand headline on the homepage. */
.sv-hero-h1 {
  margin: 0 0 4px;
  font-size: clamp(2rem, 4.4vw, 3.05rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.03em;
  color: var(--lv-white);
}

.sv-hero-h1 .sv-h1-accent {
  background: linear-gradient(120deg, var(--lv-accent-lt) 0%, var(--lv-accent) 58%, var(--lv-accent-2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ==========================================================================
   2. Intro + quote form
   ========================================================================== */
.sv-quote { padding: 40px 0 96px; }

/* Prose column of the form row. */
.sv-body > :last-child { margin-bottom: 0; }

/* Full-width continuation under the form row, still inside the same section. */
.sv-below { margin-top: 54px; }

/* Prose that resumes after a bullet list inside the copy column: the list has
   no bottom margin of its own, so give the paragraph the gap. */
.sv-after-list { margin-top: 28px; }

/* The copy column carries the section's closing note, so it must not add the
   band-level top margin that a standalone note uses. */
.sv-body > .lv-band-note { margin-top: 26px; }

/* ==========================================================================
   3. H3 sub-blocks — one card per H3, keeping its own text
   ========================================================================== */
.sv-sub-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.sv-sub-grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.sv-sub-card {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 28px 28px 30px;
  border: 1px solid var(--lv-line);
  border-radius: var(--lv-radius);
  background: var(--lv-white);
  box-shadow: 0 6px 22px rgba(5, 9, 14, .05);
  transition: transform .35s var(--lv-ease), border-color .35s, box-shadow .35s;
}

.sv-sub-card:hover {
  transform: translateY(-5px);
  border-color: rgba(46, 139, 255, .45);
  box-shadow: 0 22px 50px rgba(5, 9, 14, .1);
}

.sv-sub-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  border-radius: 13px;
  border: 1px solid rgba(46, 139, 255, .28);
  background: linear-gradient(140deg, rgba(46, 139, 255, .14), rgba(127, 212, 255, .09));
  color: var(--lv-accent-dk);
  font-size: 1.15rem;
}

.sv-sub-card h3 {
  margin: 0 0 10px;
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--lv-ink);
}

.sv-sub-card p {
  margin: 0 0 14px;
  color: var(--lv-muted);
  font-size: .97rem;
  line-height: 1.75;
}

.sv-sub-card p:last-child { margin-bottom: 0; }

/* A lead-in line that introduces the card's own list. */
.sv-sub-card .sv-cue { color: var(--lv-ink-3); font-weight: 500; margin-bottom: 12px; }

/* Bullet list inside a light card. */
.sv-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 9px;
}

.sv-list li {
  position: relative;
  padding-left: 20px;
  color: var(--lv-muted);
  font-size: .94rem;
  line-height: 1.65;
}

.sv-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .6em;
  width: 7px;
  height: 7px;
  border-radius: 2px;
  background: var(--lv-accent);
  transform: rotate(45deg);
}

.sv-list-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 9px 18px; }

.sv-sub-card .sv-list:last-child { margin-top: auto; }

/* Dark-band variant of the sub-block card. */
.sv-sub-card-dark {
  border-color: rgba(255, 255, 255, .09);
  background: rgba(255, 255, 255, .035);
  backdrop-filter: blur(10px);
  box-shadow: none;
}

.sv-sub-card-dark:hover {
  border-color: rgba(46, 139, 255, .38);
  background: rgba(46, 139, 255, .06);
  box-shadow: none;
}

.sv-sub-card-dark .sv-sub-icon {
  border-color: rgba(46, 139, 255, .4);
  background: rgba(46, 139, 255, .12);
  color: var(--lv-accent-lt);
}

.sv-sub-card-dark h3 { color: var(--lv-white); }
.sv-sub-card-dark p  { color: rgba(255, 255, 255, .74); }
.sv-sub-card-dark .sv-cue { color: rgba(255, 255, 255, .86); }
.sv-sub-card-dark .sv-list li { color: rgba(255, 255, 255, .8); }

/* ==========================================================================
   4. Process steps — numbered, for the "how it works" sections
   ========================================================================== */
.sv-steps {
  position: relative;
  z-index: 2;
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
  counter-reset: svstep;
}

.sv-steps li {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 22px 26px;
  border: 1px solid var(--lv-line);
  border-radius: var(--lv-radius);
  background: var(--lv-white);
  box-shadow: 0 6px 22px rgba(5, 9, 14, .05);
  transition: transform .35s var(--lv-ease), border-color .35s, box-shadow .35s;
}

.sv-steps li:hover {
  transform: translateY(-4px);
  border-color: rgba(46, 139, 255, .45);
  box-shadow: 0 22px 50px rgba(5, 9, 14, .1);
}

.sv-steps li::before {
  counter-increment: svstep;
  content: counter(svstep, decimal-leading-zero);
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 13px;
  border: 1px solid rgba(46, 139, 255, .28);
  background: linear-gradient(140deg, rgba(46, 139, 255, .14), rgba(127, 212, 255, .09));
  font-family: var(--lv-head);
  font-size: .95rem;
  font-weight: 700;
  color: var(--lv-accent-dk);
}

.sv-steps p {
  margin: 0;
  color: var(--lv-muted);
  font-size: .97rem;
  line-height: 1.75;
}

.sv-steps strong {
  display: block;
  margin-bottom: 4px;
  font-family: var(--lv-head);
  font-size: 1.03rem;
  font-weight: 600;
  letter-spacing: -.02em;
  color: var(--lv-ink);
}

/* Dark-band variant. */
.sv-steps-dark li {
  border-color: rgba(255, 255, 255, .09);
  background: rgba(255, 255, 255, .035);
  backdrop-filter: blur(10px);
  box-shadow: none;
}

.sv-steps-dark li:hover {
  border-color: rgba(46, 139, 255, .38);
  background: rgba(46, 139, 255, .06);
  box-shadow: none;
}

.sv-steps-dark li::before {
  border-color: rgba(46, 139, 255, .4);
  background: rgba(46, 139, 255, .12);
  color: var(--lv-accent-lt);
}

.sv-steps-dark strong { color: var(--lv-white); }
.sv-steps-dark p { color: rgba(255, 255, 255, .74); }

/* ==========================================================================
   5. Fact rows — hours, phone, address
   ========================================================================== */
.sv-facts {
  position: relative;
  z-index: 2;
  list-style: none;
  margin: 30px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.sv-facts li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  border: 1px solid var(--lv-line);
  border-radius: 14px;
  background: var(--lv-white);
  box-shadow: 0 6px 22px rgba(5, 9, 14, .05);
}

.sv-facts i { color: var(--lv-accent-dk); font-size: 1.05rem; }

.sv-facts span {
  font-family: var(--lv-head);
  font-size: .97rem;
  font-weight: 600;
  letter-spacing: -.015em;
  color: var(--lv-ink);
}

/* A value that follows a label in the same chip. Making it inline-block gives
   it its own box, so a <br> inside ADDRESS wraps under the first line of the
   address rather than back under the "Business Address:" label. */
.sv-fact-value { display: inline-block; vertical-align: top; }

.sv-facts a { color: var(--lv-accent-dk); }
.sv-facts a:hover { text-decoration: underline; }

.sv-facts-dark li {
  border-color: rgba(255, 255, 255, .1);
  background: rgba(255, 255, 255, .04);
  box-shadow: none;
}

.sv-facts-dark i { color: var(--lv-accent-lt); }
.sv-facts-dark span { color: var(--lv-white); }
.sv-facts-dark a { color: var(--lv-accent-lt); }

/* ==========================================================================
   6. Closing CTA band extras
   ========================================================================== */
.sv-cta-card {
  padding: 30px 32px 32px;
  border: 1px solid var(--lv-line);
  border-radius: var(--lv-radius);
  background: var(--lv-white);
  box-shadow: var(--lv-shadow);
}

.sv-cta-card p {
  margin: 0 0 16px;
  color: var(--lv-ink-3);
  font-family: var(--lv-head);
  font-size: 1.02rem;
  font-weight: 600;
  letter-spacing: -.02em;
}

.sv-cta-card .sv-list li { font-size: .97rem; }

.sv-cta-card .sv-facts { margin-top: 22px; }

/* ==========================================================================
   7. Small utilities
   ========================================================================== */
/* The inline link is tuned for the light CTA band; on dark grounds the
   accent-dark blue falls below contrast, so lift it to the ice tint. */
.lv-band-dark .lv-inline-link,
.sv-sub-card-dark .lv-inline-link {
  color: var(--lv-accent-lt);
  border-bottom-color: rgba(127, 212, 255, .4);
}

.lv-band-dark .lv-inline-link:hover,
.sv-sub-card-dark .lv-inline-link:hover {
  color: var(--lv-accent-lt);
  border-bottom-color: var(--lv-accent-lt);
}

/* A list that follows a lead-in cue line rather than a heading. */
.sv-list-cued { margin-top: 20px; }

/* Fact row used directly under a band head, which already carries the gap. */
.sv-facts-flush { margin-top: 0; }

/* ==========================================================================
   8. Centred content bands
   Everything below the quote-form section reads as a centred column: the
   section head, its supporting prose, the lists (which become pill rows), the
   cards and the closing notes. Scoped to .lv-band, and this sheet only loads
   on service pages, so the homepage keeps its left-aligned bands.
   ========================================================================== */

/* ---- Heads and top-level prose ---- */
.lv-band-head {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.lv-band-head .lv-section-lead,
.lv-band-head .lv-lead-dark,
.lv-band-inner > .lv-section-lead,
.lv-band-inner > .lv-lead-dark {
  max-width: 70ch;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* The eyebrow is inline-flex, so centring the head's text centres it too. */

/* ---- Bullet lists become centred pill rows ---- */
.lv-band-inner > .sv-list,
.lv-band-inner > .lv-incl-list,
.lv-band-inner > .lv-reason-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 1020px;
  margin-left: auto;
  margin-right: auto;
}

.lv-band-inner > .sv-list li,
.lv-band-inner > .lv-incl-list li {
  padding: 12px 22px 12px 40px;
  border: 1px solid var(--lv-line);
  border-radius: 999px;
  background: var(--lv-white);
  box-shadow: 0 4px 16px rgba(5, 9, 14, .04);
  color: var(--lv-muted);
  font-size: .95rem;
  line-height: 1.5;
  transition: transform .3s var(--lv-ease), border-color .3s, box-shadow .3s, color .3s;
}

.lv-band-inner > .sv-list li:hover,
.lv-band-inner > .lv-incl-list li:hover {
  transform: translateY(-3px);
  border-color: rgba(46, 139, 255, .5);
  box-shadow: 0 14px 32px rgba(46, 139, 255, .14);
  color: var(--lv-ink-2);
}

/* The diamond marker moves inside the pill and centres on the text. */
.lv-band-inner > .sv-list li::before,
.lv-band-inner > .lv-incl-list li::before {
  left: 22px;
  top: 50%;
  margin-top: -4px;
}

/* Dark-band variant of the pills. */
.lv-band-dark .lv-band-inner > .sv-list li,
.lv-band-dark .lv-band-inner > .lv-incl-list li {
  border-color: rgba(255, 255, 255, .1);
  background: rgba(255, 255, 255, .04);
  box-shadow: none;
  color: rgba(255, 255, 255, .84);
}

.lv-band-dark .lv-band-inner > .sv-list li:hover,
.lv-band-dark .lv-band-inner > .lv-incl-list li:hover {
  border-color: rgba(46, 139, 255, .45);
  background: rgba(46, 139, 255, .1);
  box-shadow: none;
  color: var(--lv-white);
}

/* The check-icon list keeps its own markers; it just centres. */
.lv-band-inner > .lv-reason-grid li:hover { transform: translateY(-3px); }

/* ---- Chip rows and fact rows ---- */
.lv-band-inner > .lv-chip-row,
.lv-band-inner > .sv-facts { justify-content: center; }

.lv-band-dark .lv-chip-row li {
  border-color: rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .05);
  box-shadow: none;
  color: var(--lv-white);
}

.lv-band-dark .lv-chip-row li:hover {
  border-color: rgba(46, 139, 255, .5);
  background: rgba(46, 139, 255, .12);
  box-shadow: none;
  color: var(--lv-accent-lt);
}

/* ---- Cards ---- */
.lv-band .sv-sub-card { align-items: center; text-align: center; }

.lv-band .sv-sub-icon { margin-left: auto; margin-right: auto; }

/* Inside a card the list becomes a centred run of small chips. A two-column
   grid of centred text reads as a ragged zig-zag; chips keep each item whole
   and let the run centre cleanly whatever the item lengths. */
.lv-band .sv-sub-card .sv-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.lv-band .sv-sub-card .sv-list li {
  padding: 7px 15px;
  border: 1px solid var(--lv-line);
  border-radius: 999px;
  background: var(--lv-paper);
  color: var(--lv-muted);
  font-size: .88rem;
  line-height: 1.45;
  text-align: center;
  transition: border-color .3s, background .3s, color .3s;
}

.lv-band .sv-sub-card .sv-list li:hover {
  border-color: rgba(46, 139, 255, .45);
  background: rgba(46, 139, 255, .07);
  color: var(--lv-ink-2);
}

/* The pill shape carries the list semantics visually; the diamond marker only
   crowds it at this size. */
.lv-band .sv-sub-card .sv-list li::before { display: none; }

.lv-band .sv-sub-card-dark .sv-list li {
  border-color: rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .05);
  color: rgba(255, 255, 255, .8);
}

.lv-band .sv-sub-card-dark .sv-list li:hover {
  border-color: rgba(46, 139, 255, .45);
  background: rgba(46, 139, 255, .12);
  color: var(--lv-white);
}

/* Prose resuming after an in-card chip run needs its own gap. */
.lv-band .sv-sub-card .sv-list + p { margin-top: 16px; }

/* ---- Process steps: number above the copy ---- */
.lv-band .sv-steps {
  max-width: 1020px;
  margin-left: auto;
  margin-right: auto;
}

.lv-band .sv-steps li {
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 28px 26px 30px;
  text-align: center;
}

/* ---- Why-choose items: icon above the copy ---- */
.lv-band .lv-why-item { flex-direction: column; align-items: center; text-align: center; gap: 14px; }

/* ---- Closing notes ---- */
.lv-band-inner > .lv-band-note {
  max-width: 74ch;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  border-left: 0;
  text-align: center;
}

/* A short accent rule replaces the left border — but only above the first of
   a run, so consecutive notes don't repeat the same divider. */
.lv-band-inner > .lv-band-note::before {
  content: "";
  display: block;
  width: 44px;
  height: 2px;
  margin: 0 auto 20px;
  border-radius: 2px;
  background: var(--lv-accent);
}

.lv-band-inner > .lv-band-note + .lv-band-note { margin-top: 18px; }
.lv-band-inner > .lv-band-note + .lv-band-note::before { display: none; }

.lv-band-inner > .lv-incl-note {
  max-width: 74ch;
  margin-left: auto;
  margin-right: auto;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-left-width: 1px;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(46, 139, 255, .08), rgba(255, 255, 255, .015));
}

.lv-band-inner > .lv-incl-note i { margin-top: 0; }

@media (max-width: 767.98px) {
  .lv-band-inner > .sv-list,
  .lv-band-inner > .lv-incl-list,
  .lv-band-inner > .lv-reason-grid { gap: 10px; }

  .lv-band-inner > .sv-list li,
  .lv-band-inner > .lv-incl-list li { padding: 11px 18px 11px 34px; }

  .lv-band-inner > .sv-list li::before,
  .lv-band-inner > .lv-incl-list li::before { left: 17px; }

  /* At phone width the note's copy runs to several lines, so the icon reads
     better stacked above it than pinned beside a tall centred block. */
  .lv-band-inner > .lv-incl-note { flex-direction: column; gap: 10px; }
}

/* ==========================================================================
   8. Responsive
   ========================================================================== */
@media (max-width: 1199.98px) {
  .sv-hero { padding: 56px 0 140px; }
}

@media (max-width: 991.98px) {
  .sv-hero { padding: 44px 0 124px; }
  .sv-quote { padding: 32px 0 66px; }
  .sv-below { margin-top: 42px; }
  .sv-sub-grid,
  .sv-sub-grid-2 { grid-template-columns: 1fr; gap: 18px; }
}

@media (max-width: 767.98px) {
  .sv-list-2 { grid-template-columns: 1fr; }
}

@media (max-width: 575.98px) {
  .sv-hero { padding: 32px 0 92px; }
  .sv-quote { padding: 26px 0 52px; }
  .sv-crumbs { font-size: .78rem; margin-bottom: 18px; }
  .sv-sub-card { padding: 24px 20px 26px; }
  .sv-steps li { padding: 20px 18px; gap: 14px; }
  .sv-facts li { padding: 12px 16px; width: 100%; }
  .sv-cta-card { padding: 24px 20px 26px; }
}

/* ---- Why-choose items whose source line is "Label - sentence": the dash is
   part of the copy, so the label stays inline instead of breaking to its own
   line and stranding the dash. ---- */
.sv-why-inline p strong { display: inline; margin-bottom: 0; }
