/* =========================================================
   Total Carpet Cleaning — Static Site Stylesheet
   Lightweight CSS, mobile-first, no framework dependencies.
   ========================================================= */

/* ---------- Tokens ---------- */
:root {
  --navy-900: #061227;
  --navy-800: #0b1f3a;
  --navy-700: #14305c;
  --blue-600: #0a74d4;
  --blue-500: #1e90ff;
  --blue-400: #3aa6ff;
  --orange-500: #f57c1f;
  --orange-600: #e36a0c;
  --green-500: #16a34a;
  --yellow-400: #facc15;
  --red-500: #e23b3b;

  --bg: #ffffff;
  --bg-soft: #f4f7fb;
  --bg-card: #ffffff;
  --line: #e5ecf3;

  --text: #0f172a;
  --muted: #4d5b73;
  --inverse: #ffffff;

  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 10px 24px rgba(8, 22, 49, 0.08);
  --shadow-lg: 0 24px 60px rgba(8, 22, 49, 0.16);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;

  --container: 1200px;

  --font-head: "Bricolage Grotesque", "Manrope", system-ui, -apple-system, Segoe UI, sans-serif;
  --font-body: "DM Sans", "Inter", system-ui, -apple-system, Segoe UI, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue-600); text-decoration: none; }
a:hover { color: var(--navy-800); }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--navy-900);
  line-height: 1.15;
  margin: 0 0 .5em;
}
h1 { font-size: clamp(2rem, 4.4vw, 3.6rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1rem; color: var(--text); }
.muted { color: var(--muted); }
ul { padding-left: 1.1rem; margin: 0 0 1rem; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 20px; }

/* ---------- Announcement Bar ---------- */
.announcement {
  background: linear-gradient(90deg, var(--blue-600), var(--blue-500));
  color: #fff;
  font-size: 13px;
  padding: 8px 16px;
  text-align: center;
}
.announcement-inner { display: flex; gap: 22px; justify-content: center; align-items: center; flex-wrap: wrap; }
.announcement-inner span { display: inline-flex; gap: 6px; align-items: center; opacity: .95; }
.announcement i { font-size: 12px; }
@media (max-width: 899px) {
  .announcement-inner { flex-wrap: nowrap; }
  .announcement-inner span:not(:first-child) { display: none; }
}

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 90;
  background: var(--navy-900);
  border-bottom: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 2px 16px rgba(0,0,0,.45);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 10px 20px;
  max-width: var(--container); margin: 0 auto;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo img { height: 52px; width: auto; }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-text strong { color: #fff; font-family: var(--font-head); font-size: 17px; letter-spacing: -0.02em; }
.logo-text small { color: rgba(255,255,255,.55); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; }

.primary-nav { display: none; }
.primary-nav ul { list-style: none; display: flex; gap: 24px; margin: 0; padding: 0; }
.primary-nav a {
  color: rgba(255,255,255,.8); font-weight: 600; font-size: 14.5px;
  padding: 8px 0; position: relative; transition: color .15s;
}
.primary-nav a:hover { color: #fff; }
.primary-nav a.active::after,
.primary-nav a:hover::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 2px; background: var(--orange-500);
}

.header-actions { display: flex; gap: 8px; align-items: center; }
.header-actions .btn-accent { display: none; } /* bottom mobile-cta bar handles this on mobile */
.header-phone {
  display: none;
  font-family: var(--font-head); font-weight: 700;
  color: #fff; font-size: 17px;
  align-items: center; gap: 7px;
}
.header-phone i { color: var(--orange-500); }

.menu-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,.18); background: rgba(255,255,255,.07); color: #fff;
}
.menu-btn:hover { background: rgba(255,255,255,.14); }

@media (min-width: 900px) {
  .primary-nav { display: block; }
  .header-phone { display: inline-flex; }
  .header-actions .btn-accent { display: inline-flex; }
  .menu-btn { display: none; }
  .header-inner { padding: 12px 24px; }
  .logo img { height: 58px; }
}

/* ---------- Telephone sticky sub-bar — hidden (phone now lives in header) ---------- */
.tel-bar { display: none !important; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px; padding: 14px 22px; border-radius: var(--radius-pill);
  font-family: var(--font-head); font-weight: 700; font-size: 15px;
  border: 0; cursor: pointer; transition: transform .15s ease, box-shadow .15s ease, background .2s ease;
  text-decoration: none; line-height: 1; white-space: nowrap;
}
.btn-primary { background: var(--blue-500); color: #fff; box-shadow: 0 6px 18px rgba(30, 144, 255, 0.35); }
.btn-primary:hover { background: var(--blue-600); color: #fff; transform: translateY(-1px); }
.btn-accent { background: var(--orange-500); color: #fff; box-shadow: 0 6px 18px rgba(245, 124, 31, 0.35); }
.btn-accent:hover { background: var(--orange-600); color: #fff; transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--navy-800); border: 2px solid var(--navy-800); }
.btn-ghost:hover { background: var(--navy-800); color: #fff; }
.btn-outline-light { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.5); }
.btn-outline-light:hover { background: #fff; color: var(--navy-800); }
.btn-lg { padding: 18px 28px; font-size: 16px; }
.btn-block { width: 100%; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background:
    linear-gradient(110deg, rgba(6,18,39,.78) 0%, rgba(6,18,39,.55) 52%, rgba(6,18,39,.30) 100%),
    url("images/van-total-carpet-cleaning.webp") center/cover no-repeat;
  color: #fff; overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(circle at 12% 50%, rgba(30,144,255,.18), transparent 55%);
}
.hero-inner {
  position: relative; max-width: var(--container); margin: 0 auto;
  padding: 52px 20px 60px;
  display: grid; gap: 36px; align-items: center;
}
@media (min-width: 900px) {
  .hero-inner { grid-template-columns: 1.15fr 1fr; padding: 68px 24px 76px; gap: 44px; }
}

/* Eyebrow pill — outlined, no fill (Monster Steamer style) */
.hero-eyebrow {
  display: inline-flex; align-items: center;
  padding: 5px 13px; border-radius: var(--radius-pill);
  border: 1.5px solid rgba(58,166,255,.65);
  color: #cfe8ff; font-size: 12px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  margin-bottom: 12px;
}

/* Headline */
.hero h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.06; color: #fff; margin-bottom: 16px;
}
.hero h1 .accent { color: var(--blue-400); display: block; }

/* Tagline with left border */
.hero-tagline {
  padding: 10px 14px; border-left: 3px solid var(--blue-400);
  background: rgba(255,255,255,.04); margin-bottom: 14px;
}
.hero-tagline p { margin: 0; color: #cfe8ff; font-weight: 600; font-size: .95rem; line-height: 1.55; }

/* Sub paragraph */
.hero-sub { font-size: clamp(.95rem, 1.5vw, 1.05rem); color: #d0dcee; margin-bottom: 16px; }

/* Mini trust row — No Residue | No Shortcuts | Just Results That Last */
.hero-trust-row {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  margin-bottom: 20px; font-size: 13.5px; color: rgba(255,255,255,.82);
}
.hero-trust-row span { display: inline-flex; align-items: center; gap: 5px; }
.hero-trust-row i { font-size: 11px; color: var(--blue-400); }
.hero-trust-row .ht-accent { color: var(--blue-400); font-weight: 600; }

/* Two-line icon CTA buttons */
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 14px; }
.btn-hero-primary,
.btn-hero-call {
  display: inline-flex; align-items: center; gap: 13px;
  padding: 12px 18px; border-radius: 6px;
  text-decoration: none; border: 2px solid transparent;
  transition: transform .15s, box-shadow .15s, background .15s;
  min-width: 186px; color: #fff;
}
.btn-hero-primary span,
.btn-hero-call span { display: flex; flex-direction: column; line-height: 1; }
.btn-hero-primary i,
.btn-hero-call i { font-size: 22px; flex: 0 0 auto; }
.btn-hero-primary strong,
.btn-hero-call strong {
  font-family: var(--font-head); font-size: 12.5px; font-weight: 800;
  letter-spacing: .05em; text-transform: uppercase;
}
.btn-hero-primary small,
.btn-hero-call small { font-size: 11px; opacity: .82; font-weight: 400; margin-top: 3px; }
.btn-hero-primary {
  background: var(--blue-600);
  box-shadow: 0 4px 16px rgba(10,116,212,.45);
}
.btn-hero-primary:hover { background: var(--blue-500); color: #fff; transform: translateY(-2px); }
.btn-hero-call {
  background: rgba(255,255,255,.09);
  border-color: rgba(255,255,255,.38);
}
.btn-hero-call:hover { background: rgba(255,255,255,.16); color: #fff; transform: translateY(-2px); }

/* Guarantee line below CTAs */
.hero-guarantee {
  display: flex; align-items: center; gap: 7px;
  font-size: 13px; color: rgba(255,255,255,.65); margin: 0;
}
.hero-guarantee i { color: var(--blue-400); font-size: 13px; }

/* Right column — before/after + review card stacked */
.hero-right { display: flex; flex-direction: column; gap: 12px; }
.hero-before-after {
  display: flex; border-radius: var(--radius-md);
  overflow: hidden; box-shadow: 0 10px 36px rgba(0,0,0,.5);
}
.ba-half { flex: 1; position: relative; overflow: hidden; }
.ba-half img { width: 100%; height: 175px; object-fit: cover; display: block; }
@media (min-width: 900px) { .ba-half img { height: 205px; } }
.ba-label {
  position: absolute; top: 8px; left: 8px;
  background: rgba(6,18,39,.82); color: #fff;
  font-size: 10px; font-weight: 800; letter-spacing: .12em;
  padding: 3px 8px; border-radius: 3px;
}
.ba-after .ba-label { left: auto; right: 8px; background: var(--blue-600); }

/* Hero review card */
.hero-card {
  background: rgba(6,18,39,.75);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius-md); padding: 18px;
  backdrop-filter: blur(8px);
}
.hero-card .stars { color: var(--yellow-400); margin-bottom: 8px; font-size: 15px; letter-spacing: 1px; }
.hero-card blockquote { font-style: italic; color: #eaf2ff; margin: 0 0 10px; line-height: 1.55; font-size: .95rem; }
.hero-card cite { color: #9fb4cf; font-size: 13px; font-style: normal; }
.hero-card cite span { color: var(--blue-400); font-weight: 600; }

/* ---------- Section base ---------- */
.section { padding: 64px 0; }
.section.tight { padding: 48px 0; }
.section.alt { background: var(--bg-soft); }
.section.dark { background: var(--navy-900); color: #fff; }
.section.dark h2, .section.dark h3 { color: #fff; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 36px; }
.section-head .eyebrow {
  display: inline-block; font-size: 12px; letter-spacing: .18em;
  color: var(--orange-500); text-transform: uppercase; font-weight: 700; margin-bottom: 8px;
}
.section-head p { color: var(--muted); }

/* ---------- Service cards ---------- */
.grid { display: grid; gap: 20px; }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr 1fr; }
@media (min-width: 720px) {
  .grid-2 { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}
@media (min-width: 980px) {
  .grid-3 { grid-template-columns: 1fr 1fr 1fr; }
}

.service-card {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-md); overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  display: flex; flex-direction: column;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: #dbe6f1; }
.service-card .thumb { aspect-ratio: 16/10; background: var(--bg-soft); overflow: hidden; }
.service-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.service-card:hover .thumb img { transform: scale(1.05); }
.service-card .body { padding: 20px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.service-card .body h3 { margin: 0; }
.service-card .body p { color: var(--muted); flex: 1; }
.service-card .body a { color: var(--blue-600); font-weight: 700; display: inline-flex; gap: 6px; align-items: center; }

/* ---------- Why choose us / Feature row ---------- */
.feature {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-md); padding: 22px;
  display: flex; gap: 14px; align-items: flex-start;
}
.feature .icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(30,144,255,.1); color: var(--blue-600);
  display: inline-flex; align-items: center; justify-content: center; font-size: 18px;
  flex: 0 0 auto;
}
.feature.alt .icon { background: rgba(245,124,31,.12); color: var(--orange-500); }
.feature.green .icon { background: rgba(22,163,74,.12); color: var(--green-500); }
.feature h3 { font-size: 1.05rem; margin-bottom: 4px; }
.feature p { font-size: .95rem; color: var(--muted); margin: 0; }

/* ---------- Testimonials ---------- */
.testimonial {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-md);
  padding: 24px; height: 100%; display: flex; flex-direction: column; gap: 10px;
}
.testimonial .stars { color: var(--yellow-400); }
.testimonial blockquote { font-style: italic; color: var(--text); margin: 0; line-height: 1.6; }
.testimonial cite { font-style: normal; color: var(--muted); font-size: 14px; font-weight: 600; }
.testimonial cite span { color: var(--orange-500); font-weight: 500; }

/* ---------- Steps ---------- */
.steps { counter-reset: step; list-style: none; padding: 0; margin: 0; display: grid; gap: 18px; }
.steps li {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-md);
  padding: 22px 22px 22px 76px; position: relative;
}
.steps li::before {
  counter-increment: step; content: counter(step);
  position: absolute; left: 18px; top: 18px;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--blue-500); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 700; font-size: 18px;
}
.steps h3 { margin: 0 0 4px; }
.steps p { margin: 0; color: var(--muted); }

/* ---------- Forms ---------- */
.form-card {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 24px; box-shadow: var(--shadow-md);
}
.form-grid { display: grid; gap: 14px; }
.form-row { display: grid; gap: 14px; }
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label { font-size: 14px; font-weight: 600; color: var(--navy-800); }
.form-field input,
.form-field select,
.form-field textarea {
  font: inherit; padding: 12px 14px; border-radius: var(--radius-sm);
  border: 1px solid var(--line); background: #fff; color: var(--text);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none; border-color: var(--blue-500);
  box-shadow: 0 0 0 3px rgba(30,144,255,.15);
}
.form-field textarea { min-height: 110px; resize: vertical; }
.form-note { font-size: 13px; color: var(--muted); }

/* ---------- Before & After Section ---------- */
.section-before-after { background: #fff; }
.section-before-after .section-head { text-align: center; max-width: 720px; margin-left: auto; margin-right: auto; }
.section-before-after .section-head h2 { color: var(--navy-900); }
.section-before-after .section-head p { color: var(--muted); }

.ba-grid {
  display: grid; gap: 28px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .ba-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .ba-grid { grid-template-columns: 1fr 1fr 1fr; } }

.ba-card {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: 0 2px 12px rgba(8, 22, 49, 0.06);
  transition: transform .25s ease, box-shadow .25s ease;
}
.ba-card:hover { transform: translateY(-6px); box-shadow: 0 12px 32px rgba(8, 22, 49, 0.10); }

.ba-image { overflow: hidden; }
.ba-image img {
  width: 100%; height: 220px; object-fit: cover; display: block;
}
@media (min-width: 720px) { .ba-image img { height: 240px; } }

.ba-caption {
  padding: 18px 20px;
}
.ba-caption h3 {
  font-size: 1.05rem; margin: 0 0 8px; color: var(--navy-900);
  font-weight: 700;
}
.ba-caption p {
  font-size: .88rem; color: var(--muted); margin: 0 0 12px; line-height: 1.55;
}
.ba-location {
  font-size: .82rem; color: var(--blue-600); font-weight: 600;
  display: flex; align-items: center; gap: 5px;
}
.ba-location i { font-size: .75rem; }

/* Trust Strip */
.ba-trust-strip {
  display: flex; flex-wrap: wrap; gap: 20px; justify-content: center;
  margin-top: 40px; padding: 24px 0;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.ba-trust-item {
  font-size: .9rem; font-weight: 600; color: var(--navy-800);
  display: flex; align-items: center; gap: 8px;
}
.ba-trust-item i { color: var(--blue-500); font-size: 1rem; }

.ba-cta {
  text-align: center; margin-top: 36px;
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
}

/* ---------- Price table ---------- */
.price-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-md);
  overflow: hidden; display: flex; flex-direction: column;
}
.price-card header {
  background: var(--navy-800); color: #fff;
  padding: 18px 22px; display: flex; justify-content: space-between; align-items: center;
}
.price-card header h3 { color: #fff; margin: 0; font-size: 1.2rem; }
.price-card .from { background: var(--orange-500); color: #fff; padding: 4px 12px; border-radius: var(--radius-pill); font-weight: 700; font-size: 13px; }
.price-card table {
  width: 100%; border-collapse: collapse; font-size: 14.5px;
}
.price-card caption { text-align: left; padding: 12px 22px; color: var(--muted); font-style: italic; font-size: 13px; }
.price-card th, .price-card td {
  padding: 12px 16px; text-align: left; border-bottom: 1px solid var(--line);
}
.price-card thead th { background: var(--bg-soft); font-weight: 700; color: var(--navy-800); font-size: 13px; text-transform: uppercase; letter-spacing: .04em; }
.price-card tbody tr:last-child td { border-bottom: 0; }
.price-card td.price { font-weight: 700; color: var(--navy-800); white-space: nowrap; }
.price-card td.price-ind { color: var(--orange-600); font-weight: 700; white-space: nowrap; }
.price-card footer { padding: 16px 22px; border-top: 1px solid var(--line); display: flex; justify-content: flex-end; }

@media (max-width: 640px) {
  .price-card table, .price-card thead, .price-card tbody, .price-card tr, .price-card th, .price-card td { display: block; width: 100%; }
  .price-card thead { display: none; }
  .price-card tr { border-bottom: 1px solid var(--line); padding: 12px 22px; }
  .price-card td { padding: 4px 0; border: 0; }
  .price-card td.label { font-weight: 700; color: var(--navy-800); }
  .price-card td.price::before { content: "Standard: "; color: var(--muted); font-weight: 400; }
  .price-card td.price-ind::before { content: "Industrial: "; color: var(--muted); font-weight: 400; }
}

/* ---------- Suburb list ---------- */
.suburbs {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 10px; grid-template-columns: 1fr 1fr;
}
@media (min-width: 720px) { .suburbs { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 980px) { .suburbs { grid-template-columns: repeat(4, 1fr); } }
.suburbs li {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 12px 14px; display: flex; align-items: center; gap: 8px;
  font-weight: 600; color: var(--navy-800); font-size: 14.5px;
}
.suburbs li i { color: var(--orange-500); font-size: 13px; }

/* ---------- Contact info ---------- */
.contact-info { display: grid; gap: 18px; }
.contact-row {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 18px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-md);
}
.contact-row .icon {
  width: 44px; height: 44px; border-radius: 12px; background: rgba(30,144,255,.1); color: var(--blue-600);
  display: inline-flex; align-items: center; justify-content: center; font-size: 16px;
  flex: 0 0 auto;
}
.contact-row a { color: var(--navy-800); font-weight: 600; }
.contact-row a:hover { color: var(--blue-600); }
.contact-row small { display: block; color: var(--muted); font-size: 13px; }

.map-embed { border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--line); }
.map-embed iframe { width: 100%; height: 360px; border: 0; display: block; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-900); color: #c2cee3;
  padding: 56px 0 90px; /* extra bottom for mobile CTA bar */
}
.site-footer h4 { color: #fff; font-family: var(--font-head); margin: 0 0 14px; font-size: 1.05rem; }
.site-footer a { color: #c2cee3; }
.site-footer a:hover { color: #fff; }
.footer-brand { }
.footer-logo { display: inline-block; margin-bottom: 16px; }
.footer-logo img { width: 180px; height: auto; }
.footer-grid {
  display: grid; gap: 32px; grid-template-columns: 1fr;
}
@media (min-width: 720px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 8px; font-size: 14.5px; }
.footer-bottom {
  margin-top: 36px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.08);
  font-size: 13px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  color: #92a3bf;
}

/* ---------- Mobile sticky CTA bar ---------- */
.mobile-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 100;
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
  padding: 8px; background: rgba(6, 18, 39, 0.96);
  border-top: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(8px);
}
.mobile-cta a {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 12px; border-radius: var(--radius-pill);
  font-family: var(--font-head); font-weight: 700; font-size: 15px;
  text-decoration: none;
}
.mobile-cta .call { background: #fff; color: var(--navy-900); }
.mobile-cta .book { background: var(--orange-500); color: #fff; }
.mobile-cta a:active { transform: scale(0.98); }
@media (min-width: 900px) { .mobile-cta { display: none; } }

/* ---------- Mobile nav drawer ---------- */
.mobile-nav {
  position: fixed; inset: 0; z-index: 110;
  background: rgba(6, 18, 39, 0.96);
  color: #fff; display: none; flex-direction: column; padding: 24px;
}
.mobile-nav.open { display: flex; }
.mobile-nav .close-btn {
  align-self: flex-end; background: transparent; border: 0; color: #fff;
  font-size: 26px; cursor: pointer;
}
.mobile-nav ul { list-style: none; padding: 0; margin: 24px 0; display: grid; gap: 8px; }
.mobile-nav a { color: #fff; font-family: var(--font-head); font-size: 22px; font-weight: 700; padding: 12px 0; display: block; border-bottom: 1px solid rgba(255,255,255,.08); }
.mobile-nav .cta-row { display: grid; gap: 10px; margin-top: 12px; }
.mobile-nav .cta-row .btn { width: 100%; }

/* ---------- Strip / CTA banner ---------- */
.cta-banner {
  background: linear-gradient(120deg, var(--navy-800), var(--navy-700));
  color: #fff; border-radius: var(--radius-lg);
  padding: 36px; display: grid; gap: 18px; align-items: center;
}
.cta-banner h2 { color: #fff; margin: 0; }
.cta-banner p { color: #d2dcec; margin: 0; }
.cta-banner .actions { display: flex; gap: 12px; flex-wrap: wrap; }
@media (min-width: 800px) { .cta-banner { grid-template-columns: 1.4fr auto; padding: 44px 44px; } }

/* ---------- Page hero (interior) ---------- */
.page-hero {
  background:
    linear-gradient(120deg, rgba(6, 18, 39, 0.85), rgba(6, 18, 39, 0.55)),
    var(--navy-800);
  color: #fff; padding: 56px 0 48px; position: relative;
}
.page-hero h1 { color: #fff; margin-bottom: 10px; }
.page-hero p { color: #d2dcec; max-width: 700px; }
.crumbs { font-size: 13px; color: #9fb4cf; margin-bottom: 14px; display: flex; gap: 6px; flex-wrap: wrap; }
.crumbs a { color: #9fb4cf; }
.crumbs i { font-size: 10px; opacity: .6; }

/* ---------- Misc ---------- */
.check-list { list-style: none; padding: 0; margin: 0 0 1rem; display: grid; gap: 10px; }
.check-list li { display: flex; gap: 10px; align-items: flex-start; }
.check-list i { color: var(--green-500); margin-top: 4px; }
.pill-tag {
  display: inline-block; padding: 6px 12px; border-radius: var(--radius-pill);
  background: rgba(30,144,255,.12); color: var(--blue-600); font-weight: 700; font-size: 12px;
  letter-spacing: .04em; text-transform: uppercase;
}
.divider { height: 1px; background: var(--line); border: 0; margin: 28px 0; }
.center { text-align: center; }
.mt-2 { margin-top: 14px; } .mt-4 { margin-top: 28px; } .mt-6 { margin-top: 44px; }

/* ---------- Two-col split (about etc.) ---------- */
.split { display: grid; gap: 32px; align-items: center; grid-template-columns: 1fr; }
@media (min-width: 880px) { .split { grid-template-columns: 1fr 1fr; } .split.flip > :first-child { order: 2; } }
.split img { border-radius: var(--radius-md); box-shadow: var(--shadow-md); }

/* ---------- Phone block highlight ---------- */
.phone-highlight {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 14px 22px; border-radius: var(--radius-pill);
  background: var(--bg-soft); border: 1px solid var(--line);
}
.phone-highlight i {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--orange-500); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
}
.phone-highlight a { font-family: var(--font-head); font-weight: 700; font-size: 1.3rem; color: var(--navy-800); }

/* ---------- Visually hidden ---------- */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* ---------- Trust Stats Bar (below hero) ---------- */
.trust-bar {
  background: var(--navy-800);
  border-bottom: 3px solid var(--orange-500);
}
.trust-bar-inner {
  max-width: var(--container); margin: 0 auto; padding: 0 20px;
  display: flex; align-items: stretch; flex-wrap: wrap;
}
.trust-stat {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 20px; flex: 1; min-width: 140px;
  border-right: 1px solid rgba(255,255,255,.07);
}
.trust-stat:last-child { border-right: 0; }
.trust-stat .ts-icon { font-size: 20px; color: var(--orange-500); flex: 0 0 auto; }
.trust-stat .ts-num {
  font-family: var(--font-head); font-weight: 800;
  font-size: 1.05rem; color: #fff; line-height: 1;
}
.trust-stat .ts-lbl { font-size: 11px; color: rgba(255,255,255,.58); line-height: 1.35; margin-top: 3px; }
@media (max-width: 640px) {
  .trust-stat { min-width: 50%; flex: 0 0 50%; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.07); padding: 14px 16px; }
  .trust-stat:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.07); }
  .trust-stat:nth-last-child(-n+2) { border-bottom: 0; }
}

/* =========================================================
   NEW SECTION STYLES — Monster Steamer inspired redesign
   ========================================================= */

/* ---------- Trust Bar V2 (white/light) ---------- */
.trust-bar-v2 {
  background: #fff;
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
}
.trust-bar-v2-inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.trust-v2-stat {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  background: var(--bg-soft);
  border-radius: var(--radius-pill);
  border: 1px solid var(--line);
}
.trust-v2-stat i {
  font-size: 18px;
  color: var(--orange-500);
}
.trust-v2-stat strong {
  font-family: var(--font-head);
  font-size: 14px;
  color: var(--navy-900);
}
.trust-v2-stat span {
  font-size: 12px;
  color: var(--muted);
}
@media (max-width: 768px) {
  .trust-v2-stat {
    padding: 8px 14px;
  }
  .trust-v2-stat strong { font-size: 13px; }
  .trust-v2-stat span { font-size: 11px; }
}

/* ---------- Section Intro (split layout) ---------- */
.section-intro {
  padding: clamp(48px, 6vw, 80px) 0;
}
.split-content .eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: .18em;
  color: var(--orange-500);
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 8px;
}
.split-content h2 {
  margin-bottom: 16px;
}
.split-content p {
  color: var(--muted);
  margin-bottom: 20px;
  line-height: 1.7;
}
.split-content .check-list {
  margin-bottom: 24px;
}
.split-media {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.split-media img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  object-fit: cover;
  display: block;
}

/* ---------- Service Cards V2 ---------- */
.section-services {
  padding: clamp(48px, 6vw, 80px) 0;
}
.service-card-v2 {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  display: flex;
  flex-direction: column;
}
.service-card-v2:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: #c5d8ee;
}
.card-thumb {
  aspect-ratio: 16/10;
  background: var(--bg-soft);
  overflow: hidden;
}
.card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.service-card-v2:hover .card-thumb img {
  transform: scale(1.06);
}
.card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(30,144,255,.1);
  color: var(--blue-600);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.card-body h3 {
  margin: 0;
  font-size: 1.15rem;
}
.card-body p {
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.6;
  flex: 1;
}
.card-link {
  color: var(--blue-600);
  font-weight: 700;
  font-size: 14px;
  display: inline-flex;
  gap: 6px;
  align-items: center;
  transition: gap .2s ease;
}
.card-link:hover {
  gap: 10px;
}

/* ---------- Benefits Grid ---------- */
.section-benefits {
  padding: clamp(48px, 6vw, 80px) 0;
}
.benefits-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .benefits-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 980px) {
  .benefits-grid { grid-template-columns: repeat(3, 1fr); }
}
.benefit-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  transition: transform .25s ease, box-shadow .25s ease;
}
.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.benefit-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(30,144,255,.1);
  color: var(--blue-600);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin: 0 auto 16px;
}
.benefit-card h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}
.benefit-card p {
  color: var(--muted);
  font-size: .93rem;
  line-height: 1.6;
  margin: 0;
}

/* ---------- Pricing Section ---------- */
.section-pricing {
  padding: clamp(48px, 6vw, 80px) 0;
}
.pricing-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .pricing-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 980px) {
  .pricing-grid { grid-template-columns: repeat(3, 1fr); }
}
.pricing-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
  position: relative;
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.pricing-card.pricing-featured {
  border-color: var(--blue-500);
  box-shadow: var(--shadow-md);
}
.pricing-card.pricing-featured:hover {
  box-shadow: var(--shadow-lg);
}
.pricing-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--orange-500);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: .06em;
}
.pricing-header {
  padding: 24px;
  border-bottom: 1px solid var(--line);
}
.pricing-header h3 {
  margin: 0 0 8px;
  font-size: 1.15rem;
}
.price-tag {
  font-size: 14px;
  color: var(--muted);
}
.price-tag strong {
  font-size: 1.5rem;
  color: var(--navy-900);
  font-family: var(--font-head);
}
.pricing-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.pricing-body ul {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display: grid;
  gap: 10px;
}
.pricing-body li {
  font-size: 14px;
  color: var(--text);
  line-height: 1.5;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}
.pricing-body li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.pricing-body li strong {
  color: var(--navy-900);
}
.pricing-note {
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
  margin: auto 0 0;
}

/* ---------- Process Section ---------- */
.section-process {
  padding: clamp(48px, 6vw, 80px) 0;
}
.process-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) {
  .process-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 980px) {
  .process-grid { grid-template-columns: repeat(4, 1fr); }
}
.process-step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  position: relative;
  transition: transform .25s ease, box-shadow .25s ease;
}
.process-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.step-number {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--blue-500);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  box-shadow: 0 4px 14px rgba(30,144,255,.3);
}
.step-content h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}
.step-content p {
  color: var(--muted);
  font-size: .93rem;
  line-height: 1.6;
  margin: 0;
}
.process-image {
  margin-top: 36px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.process-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* ---------- Reviews Section ---------- */
.section-reviews {
  padding: clamp(48px, 6vw, 80px) 0;
}
.reviews-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) {
  .reviews-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 980px) {
  .reviews-grid { grid-template-columns: repeat(3, 1fr); }
}
.review-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0;
  transition: transform .25s ease, box-shadow .25s ease;
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.review-stars {
  color: var(--yellow-400);
  font-size: 16px;
  letter-spacing: 2px;
}
.review-card blockquote {
  font-style: italic;
  color: var(--text);
  margin: 0;
  line-height: 1.65;
  font-size: .95rem;
  flex: 1;
}
.review-card figcaption {
  font-style: normal;
}
.review-card figcaption strong {
  display: block;
  color: var(--navy-900);
  font-size: 15px;
}
.review-card figcaption span {
  color: var(--muted);
  font-size: 13px;
}
.review-card figcaption span i {
  color: var(--green-500);
  font-size: 12px;
}

/* Review summary bar */
.review-summary {
  margin-top: 36px;
}
.review-summary-inner {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.review-score {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.review-score strong {
  font-family: var(--font-head);
  font-size: 2.2rem;
  color: var(--navy-900);
  line-height: 1;
}
.review-score-stars {
  color: var(--yellow-400);
  font-size: 18px;
  letter-spacing: 2px;
}
.review-score span {
  color: var(--muted);
  font-size: 14px;
}
@media (max-width: 640px) {
  .review-summary-inner {
    flex-direction: column;
    text-align: center;
    padding: 24px 20px;
  }
  .review-score {
    flex-direction: column;
    gap: 8px;
  }
}

/* ---------- Service Areas Section ---------- */
.section-areas {
  padding: clamp(48px, 6vw, 80px) 0;
}

/* ---------- Final CTA Section ---------- */
.section-final-cta {
  padding: clamp(48px, 6vw, 80px) 0;
}
.final-cta-banner {
  background: linear-gradient(130deg, var(--navy-800), var(--navy-700));
  color: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(32px, 4vw, 56px);
  display: grid;
  gap: 24px;
  align-items: center;
}
@media (min-width: 800px) {
  .final-cta-banner {
    grid-template-columns: 1.4fr auto;
  }
}
.final-cta-content h2 {
  color: #fff;
  margin: 0 0 12px;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}
.final-cta-content p {
  color: #d2dcec;
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
}
.final-cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
@media (max-width: 640px) {
  .final-cta-actions {
    flex-direction: column;
  }
  .final-cta-actions .btn {
    width: 100%;
    justify-content: center;
  }
}
