/* ============================================================
   ProWash Water/Glass Theme — Rebuilt from preview HTML files
   Fonts: Quicksand (body), Cormorant Garamond (display)
   ============================================================ */

/* ========================================
   @FONT-FACE
   ======================================== */
@font-face {
    font-family: 'Quicksand';
    font-style: normal;
    font-weight: 300 700;
    font-display: swap;
    src: url('../fonts/quicksand-latin.woff2') format('woff2');
}
@font-face {
    font-family: 'Cormorant Garamond';
    font-style: normal;
    font-weight: 400 700;
    font-display: swap;
    src: url('../fonts/cormorant-garamond-latin.woff2') format('woff2');
}
@font-face {
    font-family: 'Cormorant Garamond';
    font-style: italic;
    font-weight: 400;
    font-display: swap;
    src: url('../fonts/cormorant-garamond-italic-latin.woff2') format('woff2');
}

/* ========================================
   CSS VARIABLES
   ======================================== */
:root {
  /* Tenant-driven color ramps. The base brand vars (--maroon, --navy,
     --accent) are set per-tenant in each theme's header.php from
     tenant_settings.{primary,secondary,accent}_color. The ramps below
     derive from those at use-site via color-mix, so every existing
     selector that references --water-N, --maroon-light, --slate-light
     becomes tenant-driven automatically. The fallbacks inside var()
     are the platform defaults (sky/maroon/slate) so a request that
     somehow lacks brand colors still renders. */
  --water-50:   color-mix(in srgb, var(--accent, #0EA5E9)  6%, white);
  --water-100:  color-mix(in srgb, var(--accent, #0EA5E9) 14%, white);
  --water-200:  color-mix(in srgb, var(--accent, #0EA5E9) 26%, white);
  --water-300:  color-mix(in srgb, var(--accent, #0EA5E9) 42%, white);
  --water-400:  color-mix(in srgb, var(--accent, #0EA5E9) 65%, white);
  --water-500:  var(--accent, #0EA5E9);
  --water-600:  color-mix(in srgb, var(--accent, #0EA5E9) 80%, black);
  --water-700:  color-mix(in srgb, var(--accent, #0EA5E9) 60%, black);
  --water-deep: color-mix(in srgb, var(--accent, #0EA5E9) 40%, black);
  --maroon: #9f1d14;
  --maroon-light: color-mix(in srgb, var(--maroon, #9f1d14) 75%, white);
  --white: #ffffff;
  --cloud: #f8fbff;
  --mist: #eef5fc;
  --slate: #475569;
  --slate-light: color-mix(in srgb, var(--navy, #0f2b4a) 35%, white);
  --navy: #0f2b4a;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Quicksand', system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --glass: rgba(255,255,255,0.55);
  --glass-border: rgba(255,255,255,0.6);
  --glass-strong: rgba(255,255,255,0.75);
}

/* ========================================
   RESET & BASE
   ======================================== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-body);
  background: var(--cloud);
  color: var(--slate);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: var(--font-body); }
.container { max-width: 1240px; margin: 0 auto; padding: 0 28px; }

/* ========================================
   WATER DROPLET DECORATION
   ======================================== */
.droplet {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, color-mix(in srgb, var(--accent) 25%, transparent), color-mix(in srgb, var(--accent) 8%, transparent));
  pointer-events: none;
  z-index: 0;
}
.droplet::after {
  content: '';
  position: absolute;
  top: 15%;
  left: 20%;
  width: 30%;
  height: 20%;
  background: rgba(255,255,255,0.5);
  border-radius: 50%;
  filter: blur(1px);
}

/* ========================================
   REVEAL ANIMATIONS
   ======================================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.rd1 { transition-delay: 0.1s; }
.rd2 { transition-delay: 0.2s; }
.rd3 { transition-delay: 0.3s; }
.rd4 { transition-delay: 0.4s; }
.rd5 { transition-delay: 0.5s; }

/* ========================================
   TOP BAR
   ======================================== */
.topbar {
  background: var(--navy);
  color: rgba(255,255,255,0.6);
  font-size: 13px;
  padding: 8px 0;
  font-weight: 500;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.topbar-left {
  display: flex;
  gap: 16px;
  align-items: center;
}
.topbar-right {
  display: flex;
  gap: 20px;
  align-items: center;
}
.topbar a {
  color: rgba(255,255,255,0.75);
  transition: color 0.3s;
  text-decoration: none;
}
.topbar a:hover { color: var(--water-300); }
.topbar-phone { font-weight: 700; color: #fff !important; font-size: 14px; letter-spacing: 0.3px; }
.topbar-phone-icon { color: #EA4335 !important; width: 14px; height: 14px; vertical-align: -2px; flex-shrink: 0; }
.topbar-badge {
  background: var(--maroon);
  color: var(--white);
  padding: 2px 10px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.topbar-stars {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
}
.topbar-stars-svg {
  width: 80px;
  height: 14px;
  vertical-align: middle;
  flex-shrink: 0;
}
.topbar-rating { display: inline; }
.google-text { font-weight: 700; white-space: nowrap; }
.gl-b { color: #4285F4; }
.gl-r { color: #EA4335; }
.gl-y { color: #FBBC05; }
.gl-g { color: #34A853; }
@media (max-width: 600px) {
  /* On mobile: hide the "Serving Central Kentucky..." text AND the phone
     number (phone is still available via the sticky bottom CTA bar), then
     let the stars + Google rating take the full width, centered. */
  .topbar-left > span:first-child { display: none; }
  .topbar-right { display: none; }
  .topbar-left { flex: 1; justify-content: center; }
  .topbar-inner { justify-content: center; }
  .topbar-stars { gap: 5px; font-size: 12px; }
  .topbar-stars-svg { width: 72px; height: 12px; }
  .topbar-rating-text { display: none; }
  .topbar-rating { display: inline-flex; align-items: center; }
}

/* ========================================
   NAVBAR
   ======================================== */
.nav-phone {
  color: var(--maroon) !important;
  font-weight: 700 !important;
  font-size: 15px !important;
  letter-spacing: 0.02em;
}
.nav-phone:hover { color: var(--navy) !important; }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.topbar {
  transition: background 0.35s var(--ease);
}
.navbar {
  padding: 14px 0;
  transition: all 0.35s var(--ease);
}
/* When scrolled: frosted glass on navbar area */
.site-header.scrolled {
  box-shadow: 0 6px 24px rgba(0,0,0,0.55);
}
.site-header.scrolled .topbar {
  background: var(--navy);
}
.site-header.scrolled .navbar {
  background: color-mix(in srgb, var(--navy) 88%, transparent);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
}
.navbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo-full {
  height: 40px;
  width: auto;
  object-fit: contain;
}
.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--maroon); }
.page-home .nav-links a { color: #fff; }
.page-home .nav-links a:hover { color: rgba(255,255,255,0.7); }
.site-header.scrolled .nav-links a { color: #fff; }
.site-header.scrolled .nav-links a:hover { color: rgba(255,255,255,0.7); }
.nav-cta {
  background: linear-gradient(135deg, var(--maroon) 0%, color-mix(in srgb, var(--maroon) 65%, #000) 100%) !important;
  color: var(--maroon-text) !important;
  padding: 10px 26px !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--ease) !important;
  box-shadow: 0 4px 15px color-mix(in srgb, var(--maroon) 35%, transparent);
}
.nav-cta:hover {
  background: linear-gradient(135deg, var(--navy) 0%, color-mix(in srgb, var(--navy) 65%, #000) 100%) !important;
  color: var(--navy-text) !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 6px 20px color-mix(in srgb, var(--navy) 45%, transparent) !important;
}
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 10px; min-width: 44px; min-height: 44px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--navy); margin: 5px 0; transition: 0.3s; border-radius: 2px; }
.page-home .nav-toggle span { background: #fff; }
.site-header.scrolled .nav-toggle span { background: #fff; }

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: color-mix(in srgb, var(--navy) 88%, transparent);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 28px;
    gap: 8px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.55);
    border-radius: 0 0 24px 24px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { display: block; padding: 12px 0; font-size: 16px; color: #fff !important; }
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 32px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.35s var(--ease);
  border: none;
}
/* Primary site button — gradient pill on default (tenant primary color).
   On hover the gradient swaps to the tenant's secondary color so the
   button reads as actionable through a clear color change rather than
   just a brightness shift. Text color uses the matching --*-text var
   so contrast stays legible whether the tenant picks a light or dark
   primary/secondary. */
.btn-water,
.btn-maroon,
.hero-form-submit {
  background: linear-gradient(135deg, var(--maroon) 0%, color-mix(in srgb, var(--maroon) 65%, #000) 100%);
  color: var(--maroon-text);
  box-shadow: 0 10px 22px -6px color-mix(in srgb, var(--maroon) 55%, transparent);
  transition: background 0.25s var(--ease), color 0.25s var(--ease), box-shadow 0.25s var(--ease), transform 0.18s var(--ease);
}
.btn-water:hover,
.btn-maroon:hover,
.hero-form-submit:hover {
  background: linear-gradient(135deg, var(--navy) 0%, color-mix(in srgb, var(--navy) 65%, #000) 100%);
  color: var(--navy-text);
  transform: translateY(-2px);
  box-shadow: 0 18px 32px -8px color-mix(in srgb, var(--navy) 70%, transparent);
}
.btn-water:active,
.btn-maroon:active,
.hero-form-submit:active { transform: translateY(0); }

/* Arrow nudge animation — applied to any inline svg in a primary button.
   Keeps every CTA across the site feeling like the hero submit. */
.btn-water svg,
.btn-maroon svg,
.hero-form-submit svg { transition: transform 0.18s var(--ease); }
.btn-water:hover svg,
.btn-maroon:hover svg,
.hero-form-submit:hover svg { transform: translateX(3px); }

/* Glass button — used on the hero for the secondary CTA. Tinted by
   --maroon on hover so it still feels brand-aware. */
.btn-glass {
  background: var(--glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #fff;
  border: 1px solid var(--glass-border);
}
.btn-glass:hover {
  background: var(--glass-strong);
  border-color: color-mix(in srgb, var(--maroon) 50%, rgba(255,255,255,0.6));
  transform: translateY(-2px);
  box-shadow: 0 8px 24px color-mix(in srgb, var(--maroon) 18%, transparent);
}

/* ========================================
   HOME: HERO
   ======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85) saturate(1.1);
  opacity: 0.3;
  mix-blend-mode: multiply;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1; /* sit above .hero-video (z-index: 0) so the overlay actually darkens it */
  background: linear-gradient(160deg, rgba(10,25,47,0.82) 0%, rgba(10,25,47,0.72) 40%, rgba(10,25,47,0.68) 100%);
}
.hero-spray {
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  z-index: 3;
}
.hero-spray svg {
  display: block;
  width: 100%;
  height: auto;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 140px 0 160px;
  width: 100%;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 48px;
  align-items: center;
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
}

/* Hero Form */
.hero-form {
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 24px;
  padding: 36px 30px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.3), 0 8px 24px rgba(0,0,0,0.15);
  position: relative;
  overflow: hidden;
}
.hero-form::before {
  content: '';
  position: absolute;
  top: -30px;
  right: -30px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, color-mix(in srgb, var(--accent) 20%, transparent), transparent 70%);
  pointer-events: none;
}
.hero-form h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
}
.hero-form .form-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  opacity: 1;
  margin-bottom: 22px;
}
.hero-form input,
.hero-form select {
  width: 100%;
  padding: 13px 16px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 12px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 10px;
  transition: all 0.3s;
  outline: none;
  appearance: none;
}
.hero-form input::placeholder { color: rgba(255,255,255,0.5); }
.hero-form select option { color: #1a1a2e; background: #fff; }
.hero-form input:focus,
.hero-form select:focus {
  border-color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.2);
  box-shadow: 0 0 0 3px rgba(255,255,255,0.08);
}
.hero-form .btn-submit {
  width: 100%;
  justify-content: center;
  margin-top: 4px;
}
.hero-form .form-note {
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  margin-top: 12px;
}
.hero-form .form-note svg { vertical-align: -2px; margin-right: 4px; }

/* Hero Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--glass);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 28px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.hero-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--maroon);
  animation: pulse-dot 2s ease infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(44px, 6vw, 76px);
  font-weight: 600;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.hero h1 em {
  font-style: italic;
  color: #ff6b6b;
}
.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.9);
  opacity: 1;
  max-width: 480px;
  margin: 0 auto 36px;
  line-height: 1.8;
  font-weight: 600;
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-trust {
  display: flex;
  gap: 28px;
  margin-top: 44px;
  flex-wrap: wrap;
  justify-content: center;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  opacity: 1;
}
.hero-trust-item svg { color: rgba(255,255,255,0.7); flex-shrink: 0; }

@media (max-width: 767px) {
  .hero-content { padding: 100px 0 120px; }
  .hero-bg img { opacity: 0.5; mix-blend-mode: normal; filter: brightness(0.7) saturate(1.1); }
  .hero-bg::after { background: linear-gradient(160deg, rgba(10,25,47,0.8) 0%, rgba(10,25,47,0.7) 100%); }
  .hero-form { padding: 28px 22px; }
  .hero-form h3 { font-size: 22px; }
}

/* ========================================
   HOME: STATS (glass bar)
   ======================================== */
.stats-section {
  margin-top: -80px;
  position: relative;
  z-index: 10;
  padding: 0 28px;
}
.stats-bar {
  max-width: 1100px;
  margin: 0 auto;
  background: color-mix(in srgb, var(--navy) 55%, transparent);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid color-mix(in srgb, var(--navy) 30%, transparent);
  border-radius: 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  box-shadow: 0 12px 40px color-mix(in srgb, var(--navy) 8%, transparent);
  overflow: hidden;
  position: relative;
}
.stats-bar .droplet { width: 60px; height: 60px; top: -10px; right: 40px; }
.stat-item {
  padding: 36px 24px;
  text-align: center;
  position: relative;
}
.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 25%;
  height: 50%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--water-200), transparent);
}
.stat-number {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
}
.stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  margin-top: 4px;
  font-weight: 600;
}

@media (max-width: 700px) {
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2)::after { display: none; }
}

/* ========================================
   SECTIONS (shared)
   ======================================== */
.section { padding: 110px 0; position: relative; }
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--water-500);
  margin-bottom: 14px;
}
.section-tag::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--maroon);
}
.section-title, h2 {
  color: var(--maroon);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.5vw, 56px);
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 16px;
  position: relative;
  padding-bottom: 18px;
}
.section-title::after {
  content: "";
  display: block;
  width: 64px;
  height: 3px;
  border-radius: 2px;
  background: var(--accent);
  margin: 10px auto 0;
}
.section-title em {
  font-style: italic;
  color: var(--maroon);
  letter-spacing: -0.01em;
}
.section-desc {
  font-size: 16px;
  color: var(--slate-light);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Section Header (reusable) */
.section-header {
  text-align: center;
  margin-bottom: 56px;
  position: relative; z-index: 1;
}
.section-header .section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--water-500);
  margin-bottom: 14px;
}
.section-header .section-tag::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--maroon);
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 600;
  color: var(--maroon);
  line-height: 1.1;
  margin-bottom: 14px;
}
.section-header h2 em { font-style: italic; color: var(--maroon); }
.section-header p {
  font-size: 16px;
  color: var(--slate-light);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Water wave divider */
.wave-divider {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin-top: -1px;
}
.wave-divider svg {
  display: block;
  width: 100%;
  height: 60px;
}

@media (max-width: 767px) {
  .section { padding: 60px 0; }
  .section-header { margin-bottom: 36px; }
  .section-desc { font-size: 15px; }
  .btn { padding: 14px 28px; font-size: 14px; }
  .cta-section { padding: 60px 0; }
}

/* ========================================
   HOME: SERVICES
   ======================================== */
.services-section { background: var(--cloud); }
.services-header {
  text-align: center;
  margin-bottom: 56px;
}
.services-header .section-desc { margin: 0 auto; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 320px;
  cursor: pointer;
  box-shadow: 0 12px 40px color-mix(in srgb, var(--navy) 15%, transparent), 0 4px 12px color-mix(in srgb, var(--navy) 8%, transparent);
  transition: box-shadow 0.4s var(--ease), transform 0.4s var(--ease);
}
.service-card:hover {
  box-shadow: 0 20px 60px color-mix(in srgb, var(--navy) 20%, transparent), 0 8px 20px color-mix(in srgb, var(--navy) 10%, transparent);
  transform: translateY(-4px);
}
.service-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.7s var(--ease), filter 0.6s;
  filter: brightness(0.8) saturate(1.1);
}
.service-card:hover img {
  transform: scale(1.06);
  filter: brightness(0.65) saturate(1.2);
}
.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, color-mix(in srgb, var(--navy) 85%, transparent) 0%, color-mix(in srgb, var(--navy) 20%, transparent) 50%, transparent 100%);
  z-index: 1;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--maroon), var(--water-400));
  z-index: 4;
  opacity: 0;
  transition: opacity 0.35s;
}
.service-card:hover::before { opacity: 1; }
.service-card .card-droplet {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 3;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.service-card .card-droplet svg { opacity: 0.7; transition: opacity 0.3s; }
.service-card:hover .card-droplet {
  background: var(--maroon);
  border-color: var(--maroon);
}
.service-card:hover .card-droplet svg { opacity: 1; }
.service-card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 28px;
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}
.service-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.5s var(--ease), opacity 0.4s;
}
.service-card:hover p { max-height: 80px; opacity: 1; }

@media (max-width: 900px) {
  .services-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .service-card { height: 280px; }
}

/* ========================================
   HOME: WHY US
   ======================================== */
.why-section {
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.why-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent) 30%, transparent) 0%, transparent 70%);
  pointer-events: none;
}
.why-section::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -150px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(224,242,254,0.4) 0%, transparent 70%);
  pointer-events: none;
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.why-image {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 64px color-mix(in srgb, var(--navy) 18%, transparent), 0 8px 20px color-mix(in srgb, var(--navy) 8%, transparent);
}
.why-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}
.why-image-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--glass-strong);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.7);
  padding: 16px 24px;
  border-radius: 16px;
  box-shadow: 0 8px 24px color-mix(in srgb, var(--navy) 10%, transparent);
}
.why-image-badge .big {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--maroon);
  line-height: 1;
}
.why-image-badge .small {
  font-size: 13px;
  color: var(--slate);
  font-weight: 500;
}
.why-features { display: flex; flex-direction: column; gap: 8px; }
.why-feature {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 20px;
  border-radius: 16px;
  transition: all 0.3s var(--ease);
  position: relative;
}
.why-feature:hover {
  background: var(--water-50);
}
.why-feature::after {
  content: '';
  position: absolute;
  top: 12px;
  right: 12px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--water-300);
  opacity: 0;
  transition: opacity 0.3s;
}
.why-feature:hover::after { opacity: 1; }
.why-feature-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--water-100), var(--water-200));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--water-600);
}
.why-feature h4 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}
.why-feature p {
  font-size: 14px;
  color: var(--slate-light);
  line-height: 1.65;
}

@media (max-width: 900px) {
  .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .why-image img { height: 340px; }
}
@media (max-width: 600px) {
  .why-image img { height: 240px; }
}

/* ========================================
   HOME: GALLERY
   ======================================== */
.gallery-section {
  background: transparent;
  position: relative;
}
.gallery-header {
  text-align: center;
  margin-bottom: 48px;
}
.gallery-header .section-desc { margin: 0 auto; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.gallery-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  background: transparent;
  box-shadow: none;
  transition: box-shadow 0.4s var(--ease), transform 0.4s var(--ease);
}
.gallery-card:hover {
  box-shadow: 0 20px 56px color-mix(in srgb, var(--navy) 20%, transparent), 0 8px 20px color-mix(in srgb, var(--navy) 10%, transparent);
  transform: translateY(-3px);
}
.gallery-card:first-child { grid-row: span 2; }
.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.gallery-card:hover img { transform: scale(1.05); }
.gallery-card::after {
  display: none;
}
.gallery-label {
  position: absolute;
  bottom: 18px;
  left: 18px;
  z-index: 2;
  background: var(--glass);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.4);
  padding: 8px 16px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
}

@media (max-width: 700px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-card:first-child { grid-row: auto; }
}

/* ========================================
   HOME: REVIEWS
   ======================================== */
.reviews-section {
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.reviews-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(224,242,254,0.3) 0%, transparent 60%);
  pointer-events: none;
}
.reviews-header {
  text-align: center;
  margin-bottom: 56px;
  position: relative;
  z-index: 1;
}
.reviews-header .section-desc { margin: 0 auto; }
.reviews-header .section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--water-500);
  margin-bottom: 14px;
}
.reviews-header .section-tag::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--maroon);
}
.reviews-header h2 {
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 600;
  color: var(--maroon);
  line-height: 1.1;
  margin-bottom: 14px;
}
.reviews-header p {
  font-size: 16px;
  color: var(--slate-light);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.8;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}
.review-card {
  background: #fff;
  border: 1px solid color-mix(in srgb, var(--accent) 60%, transparent);
  border-radius: 22px;
  padding: 36px 28px 32px;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px color-mix(in srgb, var(--navy) 8%, transparent), 0 2px 6px color-mix(in srgb, var(--navy) 4%, transparent);
  display: flex;
  flex-direction: column;
}
.review-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--water-400), var(--water-500));
  z-index: 3;
}
.review-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 55px color-mix(in srgb, var(--navy) 15%, transparent), 0 10px 22px color-mix(in srgb, var(--accent) 10%, transparent);
  border-color: var(--water-300);
}
.review-card:hover::before {
  background: linear-gradient(90deg, var(--water-500), var(--maroon));
}
.review-card .card-drop {
  position: absolute;
  top: -8px;
  right: 20px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, color-mix(in srgb, var(--accent) 30%, transparent), color-mix(in srgb, var(--accent) 8%, transparent));
  opacity: 0;
  transition: opacity 0.3s;
}
.review-card .card-drop::after {
  content: '';
  position: absolute;
  top: 4px;
  left: 5px;
  width: 6px;
  height: 4px;
  background: rgba(255,255,255,0.6);
  border-radius: 50%;
}
.review-card:hover .card-drop { opacity: 1; }
.review-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 18px;
}
.review-stars span,
.review-stars {
  font-size: 18px;
  color: #FBBC04;
}
.review-text {
  font-size: 15px;
  font-style: italic;
  color: var(--slate);
  line-height: 1.8;
  margin-bottom: 24px;
  flex-grow: 1;
  position: relative;
  z-index: 1;
}
.review-truncated {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.review-readmore {
  background: none;
  border: none;
  color: var(--maroon);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  margin-top: -16px;
  margin-bottom: 16px;
  display: block;
}
.review-readmore:hover {
  text-decoration: underline;
}
.review-text::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 52px;
  color: var(--water-200);
  position: absolute;
  top: -18px;
  left: -4px;
  line-height: 1;
  z-index: -1;
  opacity: 0.6;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
  z-index: 1;
}
.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--maroon), var(--maroon-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.review-author-info {
  display: flex;
  flex-direction: column;
}
.review-author-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
}
.review-author-source {
  font-size: 12px;
  font-weight: 500;
  color: var(--slate-light);
}
.review-name { font-weight: 600; font-size: 15px; color: var(--navy); }
.review-source { font-size: 12px; color: var(--slate-light); }
.review-location {
  font-size: 13px;
  color: var(--slate-light);
  margin-top: 2px;
}
.review-card blockquote {
  font-size: 15px;
  color: var(--slate);
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
}

@media (max-width: 900px) {
  .reviews-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}

/* ========================================
   HOME: FAQ
   ======================================== */
.faq-section {
  background: linear-gradient(180deg, var(--water-50) 0%, var(--cloud) 100%);
  position: relative;
  overflow: hidden;
}
.faq-section::before {
  content: '';
  position: absolute;
  top: -150px;
  left: -150px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent) 30%, transparent) 0%, transparent 70%);
  pointer-events: none;
}
.faq-section::after {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(224,242,254,0.35) 0%, transparent 70%);
  pointer-events: none;
}
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 72px;
  align-items: start;
}
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: rgba(255,255,255,0.8);
  border: 1px solid color-mix(in srgb, var(--accent) 30%, transparent);
  border-radius: 18px;
  overflow: hidden;
  transition: all 0.35s var(--ease);
  position: relative;
  box-shadow: 0 4px 16px color-mix(in srgb, var(--navy) 4%, transparent);
}
.faq-item.active {
  background: color-mix(in srgb, var(--navy) 92%, transparent) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-color: color-mix(in srgb, var(--navy) 35%, transparent);
  overflow: visible;
  box-shadow: 0 10px 40px rgba(0,0,0,0.25), 0 4px 12px rgba(0,0,0,0.15);
}
.faq-item .faq-drop {
  position: absolute;
  top: 50%;
  right: 48px;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--water-300);
  opacity: 0;
  transition: opacity 0.3s;
}
.faq-item:hover .faq-drop { opacity: 0.5; }
.faq-item:hover { border-color: var(--water-200); box-shadow: 0 10px 32px color-mix(in srgb, var(--navy) 8%, transparent), 0 4px 12px color-mix(in srgb, var(--accent) 5%, transparent); }
.faq-item.active:hover { border-color: color-mix(in srgb, var(--navy) 35%, transparent); box-shadow: 0 10px 40px rgba(0,0,0,0.25), 0 4px 12px rgba(0,0,0,0.15); }
.faq-toggle {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 26px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
  gap: 16px;
  transition: color 0.3s;
  line-height: 1.4;
}
.faq-toggle:hover { color: var(--water-600); }
.faq-icon-wrap {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--water-100), var(--water-200));
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease);
}
.faq-item.active .faq-icon-wrap {
  background: linear-gradient(135deg, var(--navy), color-mix(in srgb, var(--navy) 70%, #000));
}
.faq-icon {
  flex-shrink: 0;
  color: var(--water-600);
  transition: transform 0.3s var(--ease), color 0.3s;
  width: 14px;
  height: 14px;
}
.faq-item.active .faq-icon { transform: rotate(45deg); color: var(--white); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}
.faq-item.active .faq-answer { max-height: 300px; }
.faq-item.active .faq-toggle { color: #fff; }
.faq-item.active .faq-answer {
  border-radius: 0 0 16px 16px;
}
.faq-answer p {
  padding: 0 26px 22px;
  font-size: 15px;
  color: #fff;
  line-height: 1.8;
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 16px;
  margin: 0 26px;
  padding-left: 0;
  padding-right: 0;
}

@media (max-width: 900px) {
  .faq-layout { grid-template-columns: 1fr; gap: 36px; }
}

/* ========================================
   HOME: AREAS
   ======================================== */
.areas-section { background: var(--white); }
.areas-header { text-align: center; margin-bottom: 48px; }
.areas-header .section-desc { margin: 0 auto; }
.areas-header .section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--water-500);
  margin-bottom: 14px;
}
.areas-header .section-tag::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--maroon);
}
.areas-header h2 {
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 600;
  color: var(--maroon);
  line-height: 1.1;
  margin-bottom: 14px;
}
.areas-header p {
  font-size: 16px;
  color: var(--slate-light);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.8;
}
.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  max-width: 900px;
  margin: 0 auto;
}
.area-tag {
  background: var(--glass-strong);
  backdrop-filter: blur(8px);
  border: 1px solid color-mix(in srgb, var(--accent) 25%, transparent);
  padding: 16px;
  border-radius: 14px;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
  color: var(--slate);
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}
.area-tag:hover {
  background: linear-gradient(135deg, var(--water-100), var(--water-200));
  border-color: var(--water-300);
  color: var(--water-deep);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px color-mix(in srgb, var(--navy) 10%, transparent), 0 4px 10px color-mix(in srgb, var(--accent) 6%, transparent);
}
.area-tag .tag-county {
  font-size: 12px;
  font-weight: 500;
  color: var(--slate-light);
  margin-left: 6px;
}

@media (max-width: 700px) {
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ========================================
   HOME: CTA
   ======================================== */
.cta-section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  background: linear-gradient(160deg, var(--water-deep) 0%, var(--navy) 50%, #0a1f38 100%);
}
.cta-spray {
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  z-index: 1;
}
.cta-spray svg { display: block; width: 100%; height: 60px; }
.cta-bubbles-canvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.cta-bubbles-canvas canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.cta-content h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.1;
}
.cta-content h2 em { font-style: italic; color: #f0a584; }
.cta-content p {
  font-size: 17px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 36px;
  line-height: 1.8;
}
.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-phone {
  display: block;
  margin-top: 36px;
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 600;
  color: var(--water-300);
  letter-spacing: 0.02em;
  transition: color 0.3s;
}
.cta-phone:hover { color: var(--white); }

/* ========================================
   PAGE HERO (subpages)
   ======================================== */
.page-hero {
  position: relative;
  padding: 140px 0 80px;
  background: linear-gradient(160deg, color-mix(in srgb, var(--accent) 12%, white) 0%, color-mix(in srgb, var(--accent) 25%, white) 40%, color-mix(in srgb, var(--accent) 42%, white) 100%);
  overflow: hidden;
  text-align: center;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -150px; left: -150px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--maroon) 8%, transparent) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-wave {
  position: absolute;
  bottom: -2px; left: 0; right: 0; z-index: 2;
}
.page-hero-wave svg { display: block; width: 100%; height: 60px; }
.page-hero .breadcrumb {
  font-size: 13px;
  font-weight: 500;
  color: var(--navy);
  opacity: 0.6;
  margin-bottom: 16px;
}
.page-hero .breadcrumb a { color: var(--navy); }
.page-hero .breadcrumb a:hover { color: var(--maroon); }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.08;
  margin-bottom: 16px;
  position: relative; z-index: 1;
}
.page-hero h1 em { font-style: italic; color: var(--maroon); }
.page-hero p {
  font-size: 17px;
  color: var(--navy);
  opacity: 0.7;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.8;
  position: relative; z-index: 1;
}

/* ========================================
   CTA STRIP (subpages)
   ======================================== */
.cta-strip {
  padding: 80px 0;
  background: transparent;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, color-mix(in srgb, var(--maroon) 8%, transparent) 0%, transparent 60%);
  pointer-events: none;
}
.cta-strip h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 600;
  color: var(--maroon);
  margin-bottom: 16px;
  line-height: 1.1;
  position: relative; z-index: 1;
}
.cta-strip h2 em { font-style: italic; color: var(--maroon); }
.cta-strip p {
  font-size: 17px;
  color: var(--slate);
  margin-bottom: 32px;
  position: relative; z-index: 1;
}
.cta-strip-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative; z-index: 1;
}

/* ========================================
   ABOUT: OUR STORY
   ======================================== */
.our-story {
  padding: 90px 0;
  background: var(--cloud);
  position: relative;
}
.our-story::before {
  content: '';
  position: absolute;
  top: 100px; left: -200px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent) 20%, transparent) 0%, transparent 70%);
  pointer-events: none;
}
.story-grid {
  display: block;
  position: relative;
  z-index: 1;
  max-width: 980px;
  margin: 0 auto;
}
.story-image {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 56px color-mix(in srgb, var(--navy) 14%, transparent), 0 8px 20px color-mix(in srgb, var(--navy) 6%, transparent);
  margin-bottom: 48px;
}
.story-image img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  display: block;
}
.story-content {
  max-width: 780px;
  margin: 0 auto;
}
.story-content .reveal > h3,
.story-content h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--navy);
  margin-top: 32px;
  margin-bottom: 12px;
  line-height: 1.3;
}
.story-image-badge {
  position: absolute;
  bottom: 20px; right: 20px;
  background: var(--glass-strong);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.5);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  box-shadow: 0 4px 12px color-mix(in srgb, var(--navy) 8%, transparent);
}
.story-content .section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--water-500);
  margin-bottom: 12px;
}
.story-content .section-tag::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--maroon);
}
.story-content h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.5vw, 44px);
  font-weight: 600;
  color: var(--maroon);
  line-height: 1.12;
  margin-bottom: 18px;
}
.story-content p {
  font-size: 15px;
  color: var(--slate);
  line-height: 1.8;
  margin-bottom: 16px;
}
.story-content p strong { color: var(--navy); }

/* Verified & Accredited strip (about page) */
.verified-strip {
  margin-top: 40px;
  padding: 28px 28px 24px;
  background: linear-gradient(160deg, #fff 0%, var(--water-50) 100%);
  border: 1px solid color-mix(in srgb, var(--accent) 60%, transparent);
  border-radius: 18px;
  box-shadow: 0 10px 30px color-mix(in srgb, var(--navy) 6%, transparent);
}
.verified-strip-heading {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}
.verified-strip-sub {
  font-size: 13.5px;
  color: var(--slate-light);
  line-height: 1.6;
  margin: 0 0 18px;
}
.verified-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.verified-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: #fff;
  border: 1px solid color-mix(in srgb, var(--accent) 60%, transparent);
  border-radius: 12px;
  color: var(--navy) !important;
  font-size: 13.5px;
  font-weight: 600;
  text-decoration: none !important;
  transition: all 0.25s var(--ease);
}
.verified-link:hover {
  border-color: var(--water-400);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px color-mix(in srgb, var(--accent) 15%, transparent);
  color: var(--water-600) !important;
}
.verified-link-icon {
  width: 34px; height: 34px;
  flex-shrink: 0;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--water-100), var(--water-200));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--water-600);
}
.verified-link-icon svg { width: 18px; height: 18px; }
.verified-link-label { flex: 1; line-height: 1.3; }
.verified-link-arrow {
  color: var(--slate-light);
  flex-shrink: 0;
  transition: transform 0.25s;
}
.verified-link:hover .verified-link-arrow {
  color: var(--water-500);
  transform: translate(2px, -2px);
}
@media (max-width: 600px) {
  .verified-strip { padding: 22px 18px 20px; }
  .verified-links { grid-template-columns: 1fr; }
  .verified-link { font-size: 13px; padding: 11px 12px; }
}

@media (max-width: 900px) {
  .story-image { margin-bottom: 32px; }
}
@media (max-width: 600px) {
  .story-content h3 { font-size: 19px; }
}

/* ========================================
   ABOUT: STATS BAR (dark)
   ======================================== */
.stats-bar-dark {
  padding: 60px 0;
  background: transparent;
  position: relative;
  overflow: hidden;
}
.stats-bar-dark::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, color-mix(in srgb, var(--accent) 6%, transparent) 0%, transparent 60%);
  pointer-events: none;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}
.stat-card {
  background: color-mix(in srgb, var(--navy) 55%, transparent);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid color-mix(in srgb, var(--navy) 30%, transparent);
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.35s var(--ease);
}
.stat-card:hover {
  background: var(--navy);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px color-mix(in srgb, var(--navy) 30%, transparent);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.stat-card .stat-number {
  color: #fff;
}
.stat-card .stat-label {
  color: rgba(255,255,255,0.85);
}
.stat-number span { color: var(--water-300); }

@media (max-width: 900px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; max-width: 300px; margin: 0 auto; }
}

/* ========================================
   ABOUT: WHAT SETS US APART
   ======================================== */
.sets-apart {
  padding: 90px 0;
  background: linear-gradient(180deg, var(--water-50) 0%, var(--cloud) 100%);
  position: relative;
  overflow: hidden;
}
.sets-apart::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent) 25%, transparent) 0%, transparent 70%);
  pointer-events: none;
}
.sets-apart-header {
  text-align: center;
  margin-bottom: 48px;
  position: relative; z-index: 1;
}
.sets-apart-header .section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--water-500);
  margin-bottom: 14px;
}
.sets-apart-header .section-tag::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--maroon);
}
.sets-apart-header h2 {
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 600;
  color: var(--maroon);
  line-height: 1.1;
  margin-bottom: 14px;
}
.sets-apart-header p {
  font-size: 16px;
  color: var(--slate-light);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.8;
}
.apart-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  position: relative; z-index: 1;
}
.apart-card {
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(10px);
  border: 1px solid color-mix(in srgb, var(--accent) 20%, transparent);
  border-radius: 20px;
  padding: 36px 32px;
  transition: all 0.35s var(--ease);
  position: relative;
  overflow: hidden;
}
.apart-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px color-mix(in srgb, var(--navy) 10%, transparent);
  border-color: var(--water-200);
}
.apart-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--maroon), var(--water-400));
  opacity: 0; transition: opacity 0.3s;
}
.apart-card:hover::before { opacity: 1; }
.apart-card-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--water-100), var(--water-200));
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
}
.apart-card h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
}
.apart-card p {
  font-size: 14px;
  color: var(--slate-light);
  line-height: 1.75;
}

@media (max-width: 700px) {
  .apart-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}

/* ========================================
   ABOUT: OUR PROMISE
   ======================================== */
.our-promise {
  padding: 90px 0;
  background: var(--white);
  position: relative;
}
.promise-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.promise-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.promise-images .promise-img {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 32px color-mix(in srgb, var(--navy) 10%, transparent);
  position: relative;
}
.promise-images .promise-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.promise-images .promise-img-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, color-mix(in srgb, var(--navy) 70%, transparent), transparent);
  padding: 12px 14px 10px;
  font-size: 12px;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.promise-content .section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--water-500);
  margin-bottom: 12px;
}
.promise-content .section-tag::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--maroon);
}
.promise-content h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.5vw, 44px);
  font-weight: 600;
  color: var(--maroon);
  line-height: 1.12;
  margin-bottom: 18px;
}
.promise-content p {
  font-size: 15px;
  color: var(--slate);
  line-height: 1.8;
  margin-bottom: 16px;
}
.promise-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 24px 0;
}
.promise-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.promise-item-icon {
  width: 36px; height: 36px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--water-100), var(--water-200));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: var(--water-600);
}
.promise-item span {
  font-size: 14px;
  color: var(--slate);
  line-height: 1.6;
  padding-top: 6px;
}
.promise-item strong { color: var(--navy); }

@media (max-width: 900px) {
  .promise-grid { grid-template-columns: 1fr; gap: 36px; }
  .promise-images .promise-img img { height: 180px; }
}

/* ========================================
   SERVICES: OVERVIEW GRID
   ======================================== */
.services-overview {
  padding: 90px 0;
  background: linear-gradient(180deg, color-mix(in srgb, var(--accent) 6%, white) 0%, color-mix(in srgb, var(--accent) 12%, white) 50%, color-mix(in srgb, var(--accent) 6%, white) 100%);
  position: relative;
  overflow: hidden;
}
.services-overview::before {
  content: '';
  position: absolute;
  top: -120px; left: -220px;
  width: 560px; height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent) 14%, transparent) 0%, transparent 70%);
  pointer-events: none;
}
.services-overview::after {
  content: '';
  position: absolute;
  bottom: -160px; right: -200px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--maroon) 10%, transparent) 0%, transparent 70%);
  pointer-events: none;
}
.services-overview .container { position: relative; z-index: 2; }
.overview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1180px;
  margin: 0 auto;
  position: relative; z-index: 1;
}
.overview-card {
  background: #fff;
  backdrop-filter: none;
  border: 1px solid color-mix(in srgb, var(--accent) 25%, white);
  border-radius: 22px;
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
  position: relative;
  box-shadow: 0 10px 30px color-mix(in srgb, var(--navy) 18%, transparent), 0 2px 6px color-mix(in srgb, var(--navy) 10%, transparent);
  cursor: pointer;
}
.overview-grid .card-link::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 4;
}
.overview-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--maroon), var(--accent));
  opacity: 1;
  z-index: 3;
}
.overview-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 55px color-mix(in srgb, var(--navy) 25%, transparent), 0 10px 22px color-mix(in srgb, var(--maroon) 18%, transparent);
  border-color: color-mix(in srgb, var(--accent) 50%, white);
}
.overview-card-img {
  height: 180px;
  position: relative;
  overflow: hidden;
}
.overview-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s var(--ease);
}
.overview-card:hover .overview-card-img img { transform: scale(1.06); }
.overview-card-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, color-mix(in srgb, var(--navy) 50%, transparent) 0%, transparent 55%);
}
.overview-card-img .card-num {
  position: absolute;
  top: 16px; left: 16px; z-index: 2;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, color-mix(in srgb, var(--accent) 65%, #000) 100%);
  border: 2px solid rgba(255,255,255,0.9);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 15px; font-weight: 700;
  color: var(--accent-text);
  box-shadow: 0 6px 16px color-mix(in srgb, var(--accent) 40%, transparent);
  transition: all 0.3s;
}
.overview-card:hover .card-num {
  background: linear-gradient(135deg, var(--maroon) 0%, color-mix(in srgb, var(--maroon) 65%, #000) 100%);
  box-shadow: 0 6px 16px color-mix(in srgb, var(--maroon) 45%, transparent);
  color: var(--maroon-text);
}
.overview-card-body {
  padding: 30px 28px 32px;
}
.overview-card-body h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
}
.overview-card-body p {
  font-size: 14.5px;
  color: var(--slate);
  line-height: 1.75;
  margin-bottom: 22px;
}
.overview-grid .card-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--maroon-text);
  background: linear-gradient(135deg, var(--maroon) 0%, color-mix(in srgb, var(--maroon) 65%, #000) 100%);
  padding: 11px 20px;
  border-radius: 10px;
  transition: all 0.3s var(--ease);
  box-shadow: 0 6px 16px color-mix(in srgb, var(--maroon) 30%, transparent);
  max-width: 100%;
  line-height: 1.3;
  text-align: center;
  white-space: normal;
}
.overview-grid .card-link:hover {
  gap: 12px;
  transform: translateY(-2px);
  box-shadow: 0 10px 22px color-mix(in srgb, var(--maroon) 45%, transparent);
  color: var(--maroon-text);
}
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--maroon);
  transition: all 0.3s;
}
.card-link:hover { color: var(--navy); gap: 10px; }

@media (max-width: 960px) {
  .overview-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .overview-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; max-width: 100%; }
  .overview-card { border-radius: 16px; }
  .overview-card::before { height: 3px; }
  .overview-card-img { height: 110px; }
  .overview-card-img .card-num {
    width: 30px; height: 30px; top: 10px; left: 10px;
    font-size: 12px; border-width: 1.5px;
  }
  .overview-card-body { padding: 14px 14px 16px; }
  .overview-card-body h3 {
    font-size: 15px;
    line-height: 1.25;
    margin-bottom: 6px;
  }
  .overview-card-body p {
    font-size: 12.5px;
    line-height: 1.5;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .overview-grid .card-link {
    font-size: 11.5px;
    padding: 8px 12px;
    gap: 5px;
    border-radius: 8px;
    width: 100%;
  }
  .overview-grid .card-link:hover { gap: 7px; }
}
@media (max-width: 380px) {
  .overview-grid { grid-template-columns: 1fr; }
  .overview-card-img { height: 160px; }
}

/* ========================================
   SERVICES: FEATURED DETAIL
   ======================================== */
.service-detail {
  padding: 90px 0;
  position: relative;
}
.service-detail:nth-child(even) { background: var(--white); }
.service-detail:nth-child(odd) { background: var(--cloud); }
.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.service-detail:nth-child(even) .detail-grid { direction: rtl; }
.service-detail:nth-child(even) .detail-grid > * { direction: ltr; }
.detail-image {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 56px color-mix(in srgb, var(--navy) 14%, transparent), 0 8px 20px color-mix(in srgb, var(--navy) 6%, transparent);
}
.detail-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}
.detail-image-badge {
  position: absolute;
  top: 20px; left: 20px;
  background: var(--glass-strong);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.5);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  box-shadow: 0 4px 12px color-mix(in srgb, var(--navy) 8%, transparent);
}
.detail-content .section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--water-500);
  margin-bottom: 12px;
}
.detail-content .section-tag::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--maroon);
}
.detail-content h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.5vw, 44px);
  font-weight: 600;
  color: var(--maroon);
  line-height: 1.12;
  margin-bottom: 18px;
}
.detail-content p {
  font-size: 15px;
  color: var(--slate);
  line-height: 1.8;
  margin-bottom: 16px;
}
.detail-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 24px 0;
}
.detail-feature {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.detail-feature-icon {
  width: 36px; height: 36px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--water-100), var(--water-200));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: var(--water-600);
}
.detail-feature span {
  font-size: 14px;
  color: var(--slate);
  line-height: 1.6;
  padding-top: 6px;
}
.detail-feature strong {
  color: var(--navy);
}

@media (max-width: 900px) {
  .detail-grid { grid-template-columns: 1fr; gap: 36px; }
  .service-detail:nth-child(even) .detail-grid { direction: ltr; }
  .detail-image img { height: 300px; }
}

/* ========================================
   SERVICES: ADDITIONAL SERVICES
   ======================================== */
.more-services {
  padding: 90px 0;
  background: linear-gradient(180deg, var(--water-50) 0%, var(--cloud) 100%);
  position: relative;
  overflow: hidden;
}
.more-services::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent) 25%, transparent) 0%, transparent 70%);
  pointer-events: none;
}
.more-header {
  text-align: center;
  margin-bottom: 48px;
  position: relative; z-index: 1;
}
.more-header .section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--water-500);
  margin-bottom: 14px;
}
.more-header .section-tag::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--maroon);
}
.more-header h2 {
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 600;
  color: var(--maroon);
  line-height: 1.1;
  margin-bottom: 14px;
}
.more-header p {
  font-size: 16px;
  color: var(--slate-light);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.8;
}
.more-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  position: relative; z-index: 1;
}
.more-card {
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(10px);
  border: 1px solid color-mix(in srgb, var(--accent) 20%, transparent);
  border-radius: 18px;
  padding: 32px 28px;
  transition: all 0.35s var(--ease);
  position: relative;
  overflow: hidden;
}
.more-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px color-mix(in srgb, var(--navy) 10%, transparent);
  border-color: var(--water-200);
}
.more-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--maroon), var(--water-400));
  opacity: 0; transition: opacity 0.3s;
}
.more-card:hover::before { opacity: 1; }
.more-card-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--water-100), var(--water-200));
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
}
.more-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
}
.more-card p {
  font-size: 14px;
  color: var(--slate-light);
  line-height: 1.75;
  margin-bottom: 16px;
}

@media (max-width: 900px) {
  .more-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
}

/* ========================================
   CONTACT: FORM & SIDEBAR
   ======================================== */
.contact-section {
  padding: 90px 0;
  background: var(--cloud);
  position: relative;
}
.contact-section::before {
  content: '';
  position: absolute;
  top: 100px; left: -200px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent) 20%, transparent) 0%, transparent 70%);
  pointer-events: none;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  position: relative;
  z-index: 1;
}
.form-card {
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(10px);
  border: 1px solid color-mix(in srgb, var(--accent) 25%, transparent);
  border-radius: 24px;
  padding: 44px 40px;
  box-shadow: 0 8px 30px color-mix(in srgb, var(--navy) 6%, transparent);
  position: relative;
  overflow: hidden;
}
.form-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--maroon), var(--water-400));
}
.form-card h2 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 600;
  color: var(--maroon);
  margin-bottom: 6px;
}
.form-card .form-subtitle {
  font-size: 15px;
  color: var(--slate-light);
  margin-bottom: 32px;
  line-height: 1.7;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  margin-bottom: 18px;
}
.form-group.full {
  grid-column: 1 / -1;
}
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid #cbd5e1;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: inset 0 1px 2px rgba(15,23,42,0.04);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
  transition: all 0.3s var(--ease);
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--slate-light);
  font-weight: 400;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--water-400);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 10%, transparent);
  background: var(--water-50);
}
.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2394a3b8' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.form-submit {
  margin-top: 8px;
}
.form-submit .btn {
  width: 100%;
  justify-content: center;
  padding: 16px 32px;
  font-size: 16px;
}

/* Contact Info Sidebar */
.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.info-card {
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(10px);
  border: 1px solid color-mix(in srgb, var(--accent) 25%, transparent);
  border-radius: 20px;
  padding: 28px 24px;
  box-shadow: 0 8px 30px color-mix(in srgb, var(--navy) 6%, transparent);
  transition: all 0.35s var(--ease);
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.info-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px color-mix(in srgb, var(--navy) 10%, transparent);
  border-color: var(--water-200);
}
.info-card-icon {
  width: 52px; height: 52px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--water-100), var(--water-200));
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
}
.info-card-content h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}
.info-card-content p {
  font-size: 14px;
  color: var(--slate);
  line-height: 1.6;
}
.info-card-content a {
  color: var(--water-600);
  font-weight: 600;
  transition: color 0.3s;
}
.info-card-content a:hover {
  color: var(--accent);
}

/* Contact: Why Choose Us card */
.why-card {
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(10px);
  border: 1px solid color-mix(in srgb, var(--accent) 25%, transparent);
  border-radius: 20px;
  padding: 32px 28px;
  box-shadow: 0 8px 30px color-mix(in srgb, var(--navy) 6%, transparent);
}
.why-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 20px;
}
.why-item {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 12px 0;
}
.why-item + .why-item {
  border-top: 1px solid color-mix(in srgb, var(--accent) 25%, transparent);
}
.why-item-icon {
  width: 42px; height: 42px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--water-100), var(--water-200));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
}
.why-item-text {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
}
.why-item-text span {
  display: block;
  font-weight: 400;
  color: var(--slate-light);
  font-size: 13px;
  margin-top: 2px;
}

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
  .form-card { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }
}

/* ========================================
   CONTACT: SERVICE AREAS
   ======================================== */
.service-areas {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--water-50) 0%, var(--cloud) 100%);
  position: relative;
  overflow: hidden;
}
.service-areas::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent) 25%, transparent) 0%, transparent 70%);
  pointer-events: none;
}
.area-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  position: relative;
  z-index: 1;
}
.area-tag::before {
  content: '\25CF';
  margin-right: 8px;
  color: var(--water-400);
  font-size: 8px;
  vertical-align: middle;
}

/* ========================================
   FAQ PAGE: SECTIONS
   ======================================== */
.faq-sections {
  padding: 80px 0;
  background: var(--cloud);
  position: relative;
}
.faq-sections::before {
  content: '';
  position: absolute;
  top: 100px; left: -200px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent) 20%, transparent) 0%, transparent 70%);
  pointer-events: none;
}
.faq-category {
  margin-bottom: 56px;
  position: relative;
  z-index: 1;
}
.faq-category:last-child { margin-bottom: 0; }
.faq-category-header {
  margin-bottom: 24px;
}
.faq-category-header .section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--water-500);
  margin-bottom: 10px;
}
.faq-category-header .section-tag::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--maroon);
}
.faq-category-header h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 600;
  color: var(--maroon);
  line-height: 1.12;
}

/* ========================================
   REVIEWS PAGE: LEAVE A REVIEW
   ======================================== */
.leave-review {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--water-50) 0%, var(--cloud) 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.leave-review::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent) 25%, transparent) 0%, transparent 70%);
  pointer-events: none;
}
.leave-review-inner {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.leave-review .section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--water-500);
  margin-bottom: 14px;
}
.leave-review .section-tag::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--maroon);
}
.leave-review h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.5vw, 44px);
  font-weight: 600;
  color: var(--maroon);
  line-height: 1.12;
  margin-bottom: 16px;
}
.leave-review p {
  font-size: 16px;
  color: var(--slate);
  line-height: 1.8;
  margin-bottom: 32px;
}
.review-links {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ========================================
   SERVICE AREA PAGE: INTRO
   ======================================== */
.areas-intro {
  padding: 80px 0 20px;
  text-align: center;
}
.areas-intro .section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--water-500);
  margin-bottom: 14px;
}
.areas-intro .section-tag::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--maroon);
}
.areas-intro h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.5vw, 44px);
  font-weight: 600;
  color: var(--maroon);
  line-height: 1.12;
  margin-bottom: 18px;
}
.areas-intro p {
  font-size: 16px;
  color: var(--slate);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ========================================
   SERVICE AREA PAGE: CITY CARDS
   ======================================== */
.city-cards-section {
  position: relative;
  background: linear-gradient(180deg, var(--water-50) 0%, #eef6fd 50%, var(--water-50) 100%) !important;
  overflow: hidden;
}
.city-cards-section::before {
  content: '';
  position: absolute;
  top: -120px; left: -220px;
  width: 560px; height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent) 12%, transparent) 0%, transparent 70%);
  pointer-events: none;
}
.city-cards-section::after {
  content: '';
  position: absolute;
  bottom: -160px; right: -200px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--maroon) 8%, transparent) 0%, transparent 70%);
  pointer-events: none;
}
.city-cards-section .container { position: relative; z-index: 2; }
.city-cards-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 28px !important;
  max-width: 1180px !important;
  margin: 0 auto !important;
}
.city-cards-grid .area-card {
  background: #fff;
  backdrop-filter: none;
  border: 1px solid color-mix(in srgb, var(--accent) 60%, transparent);
  border-radius: 22px;
  padding: 36px 30px 32px;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px color-mix(in srgb, var(--navy) 8%, transparent), 0 2px 6px color-mix(in srgb, var(--navy) 4%, transparent);
  cursor: pointer;
}
.city-cards-grid .area-card .card-link::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 4;
}
.city-cards-grid .area-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--water-400), var(--water-500));
  opacity: 1;
  z-index: 3;
}
.city-cards-grid .area-card::after {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 160px; height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent) 12%, transparent) 0%, transparent 70%);
  pointer-events: none;
  transition: transform 0.5s var(--ease);
}
.city-cards-grid .area-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 55px color-mix(in srgb, var(--navy) 15%, transparent), 0 10px 22px color-mix(in srgb, var(--accent) 10%, transparent);
  border-color: var(--water-300);
}
.city-cards-grid .area-card:hover::after {
  transform: scale(1.2);
}
.city-cards-grid .area-card.hub {
  background: linear-gradient(160deg, #fff 0%, #fff 55%, color-mix(in srgb, var(--maroon) 4%, transparent) 100%);
  border-color: color-mix(in srgb, var(--maroon) 20%, transparent);
  box-shadow: 0 12px 36px color-mix(in srgb, var(--maroon) 10%, transparent), 0 3px 8px color-mix(in srgb, var(--navy) 6%, transparent);
}
.city-cards-grid .area-card.hub::before {
  background: linear-gradient(90deg, var(--maroon), var(--maroon-light));
}
.city-cards-grid .area-card.hub::after {
  background: radial-gradient(circle, color-mix(in srgb, var(--maroon) 14%, transparent) 0%, transparent 70%);
}
.city-cards-grid .area-card.hub .hub-badge {
  display: inline-block;
  background: var(--maroon);
  color: #fff;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
  box-shadow: 0 4px 12px color-mix(in srgb, var(--maroon) 25%, transparent);
}
.city-cards-grid .area-card-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--water-100) 0%, var(--water-300) 100%);
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  font-size: 30px;
  margin-bottom: 20px;
  box-shadow: 0 8px 20px color-mix(in srgb, var(--accent) 20%, transparent), inset 0 1px 0 rgba(255,255,255,0.5);
  position: relative;
  z-index: 2;
}
.city-cards-grid .area-card.hub .area-card-icon {
  background: linear-gradient(135deg, var(--maroon) 0%, var(--maroon-light) 100%);
  color: #fff;
  box-shadow: 0 8px 20px color-mix(in srgb, var(--maroon) 30%, transparent), inset 0 1px 0 rgba(255,255,255,0.2);
}
.city-cards-grid .area-card h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
  position: relative;
  z-index: 2;
}
.city-cards-grid .area-card .county {
  font-size: 12px;
  font-weight: 700;
  color: var(--water-500);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
  position: relative;
  z-index: 2;
}
.city-cards-grid .area-card.hub .county {
  color: var(--maroon);
}
.city-cards-grid .area-card p {
  font-size: 14.5px;
  color: var(--slate);
  line-height: 1.75;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}
.city-cards-grid .area-card .card-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--water-500), var(--water-600, #0284c7));
  padding: 11px 18px;
  border-radius: 10px;
  transition: all 0.3s var(--ease);
  box-shadow: 0 6px 16px color-mix(in srgb, var(--accent) 25%, transparent);
  position: relative;
  z-index: 2;
  max-width: 100%;
  line-height: 1.3;
  text-align: center;
  white-space: normal;
}
.city-cards-grid .area-card .card-link:hover {
  gap: 12px;
  transform: translateY(-2px);
  box-shadow: 0 10px 22px color-mix(in srgb, var(--accent) 35%, transparent);
  color: #fff;
}
.city-cards-grid .area-card.hub .card-link {
  background: linear-gradient(135deg, var(--maroon), var(--maroon-light));
  box-shadow: 0 6px 16px color-mix(in srgb, var(--maroon) 30%, transparent);
}
.city-cards-grid .area-card.hub .card-link:hover {
  box-shadow: 0 10px 22px color-mix(in srgb, var(--maroon) 40%, transparent);
}

@media (max-width: 960px) {
  .city-cards-grid { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 620px) {
  .city-cards-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 14px !important;
    max-width: 100% !important;
  }
  .city-cards-grid .area-card {
    padding: 18px 14px 16px;
    border-radius: 16px;
  }
  .city-cards-grid .area-card::before { height: 3px; }
  .city-cards-grid .area-card-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    font-size: 22px;
    margin-bottom: 12px;
    box-shadow: 0 4px 10px color-mix(in srgb, var(--accent) 20%, transparent), inset 0 1px 0 rgba(255,255,255,0.5);
  }
  .city-cards-grid .area-card.hub .hub-badge {
    font-size: 9px;
    padding: 3px 8px;
    margin-bottom: 10px;
    letter-spacing: 0.04em;
  }
  .city-cards-grid .area-card h3 {
    font-size: 17px;
    line-height: 1.2;
    margin-bottom: 3px;
  }
  .city-cards-grid .area-card .county {
    font-size: 10px;
    letter-spacing: 0.08em;
    margin-bottom: 10px;
  }
  .city-cards-grid .area-card p {
    font-size: 12.5px;
    line-height: 1.5;
    margin-bottom: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .city-cards-grid .area-card .card-link {
    font-size: 11.5px;
    padding: 8px 10px;
    gap: 5px;
    border-radius: 8px;
    width: 100%;
  }
  .city-cards-grid .area-card .card-link:hover { gap: 7px; }
}
@media (max-width: 380px) {
  .city-cards-grid { grid-template-columns: 1fr !important; }
}

/* ========================================
   SERVICE AREA PAGE: ADDITIONAL AREAS
   ======================================== */
.additional-areas {
  padding: 90px 0;
  background: linear-gradient(180deg, var(--water-50) 0%, var(--cloud) 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.additional-areas::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent) 25%, transparent) 0%, transparent 70%);
  pointer-events: none;
}
.additional-header {
  margin-bottom: 40px;
  position: relative; z-index: 1;
}
.additional-header .section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--water-500);
  margin-bottom: 14px;
}
.additional-header .section-tag::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--maroon);
}
.additional-header h2 {
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 600;
  color: var(--maroon);
  line-height: 1.1;
  margin-bottom: 14px;
}
.additional-header p {
  font-size: 16px;
  color: var(--slate-light);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.8;
}
.tags-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  position: relative; z-index: 1;
  margin-bottom: 36px;
}
.additional-note {
  font-size: 16px;
  color: var(--slate);
  position: relative; z-index: 1;
  margin-top: 12px;
}
.additional-note a {
  color: var(--maroon);
  font-weight: 600;
  transition: color 0.3s;
}
.additional-note a:hover { color: var(--water-600); }

/* ========================================
   SERVICE PAGE: HERO IMAGE
   ======================================== */
.hero-image-section {
  padding: 0 0 60px;
  background: var(--cloud);
  position: relative;
  margin-top: -30px;
  z-index: 3;
}
.hero-image-wrap {
  max-width: 900px;
  margin: 0 auto;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 64px color-mix(in srgb, var(--navy) 16%, transparent), 0 8px 24px color-mix(in srgb, var(--navy) 8%, transparent);
}
.hero-image-wrap img {
  width: 100%;
  height: 440px;
  object-fit: cover;
}
@media (max-width: 700px) {
  .hero-image-wrap img { height: 260px; }
}

/* ========================================
   SERVICE PAGE: PROCESS
   ======================================== */
.process-section {
  padding: 90px 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.process-section::before {
  content: '';
  position: absolute;
  top: -100px; left: -150px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent) 20%, transparent) 0%, transparent 70%);
  pointer-events: none;
}
.process-header {
  text-align: center;
  margin-bottom: 56px;
  position: relative; z-index: 1;
}
.process-header .section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--water-500);
  margin-bottom: 14px;
}
.process-header .section-tag::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--maroon);
}
.process-header h2 {
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 600;
  color: var(--maroon);
  line-height: 1.1;
  margin-bottom: 14px;
}
.process-header p {
  font-size: 16px;
  color: var(--slate-light);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.8;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative; z-index: 1;
}
.process-card {
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(10px);
  border: 1px solid color-mix(in srgb, var(--accent) 25%, transparent);
  border-radius: 20px;
  padding: 36px 24px;
  text-align: center;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 30px color-mix(in srgb, var(--navy) 6%, transparent);
}
.process-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px color-mix(in srgb, var(--navy) 12%, transparent), 0 8px 20px color-mix(in srgb, var(--accent) 6%, transparent);
  border-color: var(--water-200);
}
.process-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--maroon), var(--water-400));
  opacity: 0; transition: opacity 0.35s;
}
.process-card:hover::before { opacity: 1; }
.process-num {
  width: 48px; height: 48px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--water-100), var(--water-200));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 20px; font-weight: 700;
  color: var(--water-600);
  transition: all 0.3s;
}
.process-card:hover .process-num {
  background: var(--maroon);
  color: var(--white);
}
.process-card-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--water-100), var(--water-200));
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--water-700);
  margin-bottom: 18px;
  transition: all 0.3s;
}
.process-card:hover .process-card-num {
  background: linear-gradient(135deg, var(--maroon), var(--maroon-light));
  color: var(--white);
}
.process-card-icon {
  font-size: 32px;
  margin-bottom: 12px;
}
.process-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
}
.process-card p {
  font-size: 14px;
  color: var(--slate-light);
  line-height: 1.75;
}
@media (max-width: 900px) {
  .process-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 550px) {
  .process-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
}

/* ========================================
   SERVICE PAGE: SURFACES
   ======================================== */
.surfaces-section {
  padding: 90px 0;
  background: linear-gradient(180deg, var(--water-50) 0%, var(--cloud) 100%);
  position: relative;
  overflow: hidden;
}
.surfaces-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent) 25%, transparent) 0%, transparent 70%);
  pointer-events: none;
}
.surfaces-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  position: relative; z-index: 1;
}
.surface-card {
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(10px);
  border: 1px solid color-mix(in srgb, var(--accent) 20%, transparent);
  border-radius: 18px;
  padding: 28px 22px;
  text-align: center;
  transition: all 0.35s var(--ease);
  position: relative;
  overflow: hidden;
}
.surface-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px color-mix(in srgb, var(--navy) 10%, transparent);
  border-color: var(--water-200);
}
.surface-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--maroon), var(--water-400));
  opacity: 0; transition: opacity 0.3s;
}
.surface-card:hover::before { opacity: 1; }
.surface-card-icon {
  font-size: 32px;
  margin-bottom: 12px;
}
.surface-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.surface-card p {
  font-size: 13px;
  color: var(--slate-light);
  line-height: 1.7;
}
@media (max-width: 900px) {
  .surfaces-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 500px) {
  .surfaces-grid { grid-template-columns: 1fr; max-width: 340px; margin: 0 auto; }
}

/* ========================================
   SERVICE PAGE: PRICING CALLOUT
   ======================================== */
.pricing-section {
  padding: 90px 0;
  background: var(--white);
  position: relative;
}
.pricing-card {
  max-width: 720px;
  margin: 0 auto;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(14px);
  border: 1px solid color-mix(in srgb, var(--accent) 30%, transparent);
  border-radius: 28px;
  padding: 52px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 16px 56px color-mix(in srgb, var(--navy) 10%, transparent), 0 4px 16px color-mix(in srgb, var(--navy) 4%, transparent);
}
.pricing-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--maroon), var(--water-400), var(--maroon));
}
.pricing-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--maroon), var(--maroon-light));
  color: var(--white);
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.pricing-card .price {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 8px;
}
.pricing-card .price-label {
  font-size: 16px;
  color: var(--slate-light);
  margin-bottom: 8px;
}
.pricing-card .price-detail {
  font-size: 14px;
  color: var(--slate);
  margin-bottom: 28px;
  line-height: 1.7;
}
.pricing-card .price-detail strong { color: var(--navy); }
.pricing-perks {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.pricing-perk {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--water-50);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  border: 1px solid var(--water-100);
}
.pricing-perk-icon { font-size: 16px; }
@media (max-width: 600px) {
  .pricing-card { padding: 36px 24px; }
}

/* ========================================
   SERVICE PAGE: CROSS-SELL
   ======================================== */
.crosssell-section {
  padding: 90px 0;
  background: var(--cloud);
  position: relative;
  overflow: hidden;
}
.crosssell-section::before {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent) 20%, transparent) 0%, transparent 70%);
  pointer-events: none;
}
.crosssell-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative; z-index: 1;
}
.crosssell-card {
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(10px);
  border: 1px solid color-mix(in srgb, var(--accent) 25%, transparent);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s var(--ease);
  position: relative;
  box-shadow: 0 8px 30px color-mix(in srgb, var(--navy) 6%, transparent);
}
.crosssell-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px color-mix(in srgb, var(--navy) 12%, transparent), 0 8px 20px color-mix(in srgb, var(--accent) 6%, transparent);
  border-color: var(--water-200);
}
.crosssell-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--maroon), var(--water-400));
  opacity: 0; transition: opacity 0.35s; z-index: 3;
}
.crosssell-card:hover::before { opacity: 1; }
.crosssell-card-img {
  height: 200px;
  position: relative;
  overflow: hidden;
}
.crosssell-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s var(--ease);
}
.crosssell-card:hover .crosssell-card-img img { transform: scale(1.06); }
.crosssell-card-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, color-mix(in srgb, var(--navy) 40%, transparent) 0%, transparent 50%);
}
.crosssell-card-body {
  padding: 24px 22px;
}
.crosssell-card-body h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}
.crosssell-card-body p {
  font-size: 14px;
  color: var(--slate-light);
  line-height: 1.75;
  margin-bottom: 16px;
}
@media (max-width: 900px) {
  .crosssell-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}

/* ========================================
   DECK STAINING: INTRO
   ======================================== */
.intro-section {
  padding: 90px 0;
  background: var(--cloud);
  position: relative;
}
.intro-section::before {
  content: '';
  position: absolute;
  top: 100px; left: -200px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent) 20%, transparent) 0%, transparent 70%);
  pointer-events: none;
}
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative; z-index: 1;
}
.intro-image {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 56px color-mix(in srgb, var(--navy) 14%, transparent), 0 8px 20px color-mix(in srgb, var(--navy) 6%, transparent);
}
.intro-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}
.intro-image-badge {
  position: absolute;
  top: 20px; left: 20px;
  background: var(--glass-strong);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.5);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  box-shadow: 0 4px 12px color-mix(in srgb, var(--navy) 8%, transparent);
}
.intro-content .section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--water-500);
  margin-bottom: 12px;
}
.intro-content .section-tag::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--maroon);
}
.intro-content h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.5vw, 44px);
  font-weight: 600;
  color: var(--maroon);
  line-height: 1.12;
  margin-bottom: 18px;
}
.intro-content h2 em { font-style: italic; color: var(--maroon); }
.intro-content p {
  font-size: 15px;
  color: var(--slate);
  line-height: 1.8;
  margin-bottom: 16px;
}

@media (max-width: 900px) {
  .intro-grid { grid-template-columns: 1fr; gap: 36px; }
  .intro-image img { height: 300px; }
}

/* ========================================
   DECK STAINING: BRANDS
   ======================================== */
.brands-section {
  padding: 90px 0;
  background: linear-gradient(180deg, var(--water-50) 0%, var(--cloud) 100%);
  position: relative;
  overflow: hidden;
}
.brands-section::before {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent) 20%, transparent) 0%, transparent 70%);
  pointer-events: none;
}
.brands-header {
  text-align: center;
  margin-bottom: 48px;
  position: relative; z-index: 1;
}
.brands-header .section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--water-500);
  margin-bottom: 14px;
}
.brands-header .section-tag::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--maroon);
}
.brands-header h2 {
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 600;
  color: var(--maroon);
  line-height: 1.1;
  margin-bottom: 14px;
}
.brands-header p {
  font-size: 16px;
  color: var(--slate-light);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.8;
}
.brands-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative; z-index: 1;
}
.brand-card {
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(10px);
  border: 1px solid color-mix(in srgb, var(--accent) 20%, transparent);
  border-radius: 18px;
  padding: 36px 28px;
  transition: all 0.35s var(--ease);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.brand-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px color-mix(in srgb, var(--navy) 10%, transparent);
  border-color: var(--water-200);
}
.brand-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--maroon), var(--water-400));
  opacity: 0; transition: opacity 0.3s;
}
.brand-card:hover::before { opacity: 1; }
.brand-card-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--water-100), var(--water-200));
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  margin: 0 auto 18px;
}
.brand-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
}
.brand-card p {
  font-size: 14px;
  color: var(--slate-light);
  line-height: 1.75;
}
.brand-card .brand-names {
  font-size: 13px;
  font-weight: 600;
  color: var(--water-600);
  margin-top: 14px;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .brands-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
}

/* ========================================
   DECK STAINING: REPAIRS
   ======================================== */
.repairs-section {
  padding: 70px 0;
  background: var(--cloud);
}
.repairs-card {
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(10px);
  border: 1px solid color-mix(in srgb, var(--accent) 25%, transparent);
  border-radius: 24px;
  padding: 48px 56px;
  display: flex;
  gap: 32px;
  align-items: center;
  box-shadow: 0 8px 30px color-mix(in srgb, var(--navy) 6%, transparent);
  position: relative;
  overflow: hidden;
}
.repairs-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--maroon), var(--water-400));
}
.repairs-icon {
  width: 72px; height: 72px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--water-100), var(--water-200));
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  font-size: 32px;
}
.repairs-content h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
}
.repairs-content p {
  font-size: 15px;
  color: var(--slate);
  line-height: 1.8;
}

@media (max-width: 700px) {
  .repairs-card { flex-direction: column; text-align: center; padding: 36px 28px; }
}

/* ========================================
   DECK STAINING: BEFORE/AFTER
   ======================================== */
.ba-section {
  padding: 90px 0;
  background: var(--white);
  position: relative;
}
.ba-header {
  text-align: center;
  margin-bottom: 48px;
}
.ba-header .section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--water-500);
  margin-bottom: 14px;
}
.ba-header .section-tag::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--maroon);
}
.ba-header h2 {
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 600;
  color: var(--maroon);
  line-height: 1.1;
}
.ba-image {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 56px color-mix(in srgb, var(--navy) 14%, transparent), 0 8px 20px color-mix(in srgb, var(--navy) 6%, transparent);
  max-width: 900px;
  margin: 0 auto;
}
.ba-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* ========================================
   DECK STAINING: CROSS-SELL
   ======================================== */
.cross-sell {
  padding: 90px 0;
  background: linear-gradient(180deg, var(--water-50) 0%, var(--cloud) 100%);
  position: relative;
  overflow: hidden;
}
.cross-sell::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent) 25%, transparent) 0%, transparent 70%);
  pointer-events: none;
}
.cross-header {
  text-align: center;
  margin-bottom: 48px;
  position: relative; z-index: 1;
}
.cross-header .section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--water-500);
  margin-bottom: 14px;
}
.cross-header .section-tag::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--maroon);
}
.cross-header h2 {
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 600;
  color: var(--maroon);
  line-height: 1.1;
  margin-bottom: 14px;
}
.cross-header p {
  font-size: 16px;
  color: var(--slate-light);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.8;
}
.cross-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
  position: relative; z-index: 1;
}
.cross-card {
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(10px);
  border: 1px solid color-mix(in srgb, var(--accent) 25%, transparent);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s var(--ease);
  position: relative;
  box-shadow: 0 8px 30px color-mix(in srgb, var(--navy) 6%, transparent);
}
.cross-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px color-mix(in srgb, var(--navy) 12%, transparent), 0 8px 20px color-mix(in srgb, var(--accent) 6%, transparent);
  border-color: var(--water-200);
}
.cross-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--maroon), var(--water-400));
  opacity: 0; transition: opacity 0.35s; z-index: 3;
}
.cross-card:hover::before { opacity: 1; }
.cross-card-img {
  height: 200px;
  position: relative;
  overflow: hidden;
}
.cross-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.cross-card:hover .cross-card-img img { transform: scale(1.06); }
.cross-card-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, color-mix(in srgb, var(--navy) 40%, transparent) 0%, transparent 50%);
}
.cross-card-body {
  padding: 28px 24px;
}
.cross-card-body h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
}
.cross-card-body p {
  font-size: 14px;
  color: var(--slate-light);
  line-height: 1.75;
  margin-bottom: 16px;
}

@media (max-width: 700px) {
  .cross-grid { grid-template-columns: 1fr; max-width: 440px; }
}

/* ========================================
   LEXINGTON: NEIGHBORHOODS
   ======================================== */
.neighborhoods {
  padding: 90px 0;
  background: linear-gradient(180deg, var(--water-50) 0%, var(--cloud) 100%);
  position: relative;
  overflow: hidden;
}
.neighborhoods::before {
  content: '';
  position: absolute;
  top: -100px; left: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent) 25%, transparent) 0%, transparent 70%);
  pointer-events: none;
}
.hood-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  position: relative; z-index: 1;
}
.hood-tag {
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(10px);
  border: 1px solid color-mix(in srgb, var(--accent) 25%, transparent);
  border-radius: 50px;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  transition: all 0.35s var(--ease);
  box-shadow: 0 4px 16px color-mix(in srgb, var(--navy) 5%, transparent);
}
.hood-tag:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px color-mix(in srgb, var(--navy) 10%, transparent);
  border-color: var(--water-300);
  color: var(--water-600);
}
.hood-tag.highlight {
  background: linear-gradient(135deg, var(--water-500), var(--water-600));
  color: var(--white);
  border-color: transparent;
}
.hood-tag.highlight:hover {
  color: var(--white);
  box-shadow: 0 10px 28px color-mix(in srgb, var(--accent) 30%, transparent);
}

/* ========================================
   LEXINGTON: WHY TRUST
   ======================================== */
.why-trust {
  padding: 90px 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.why-trust::before {
  content: '';
  position: absolute;
  top: 100px; right: -200px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent) 15%, transparent) 0%, transparent 70%);
  pointer-events: none;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative; z-index: 1;
}
.trust-card {
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(10px);
  border: 1px solid color-mix(in srgb, var(--accent) 20%, transparent);
  border-radius: 18px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.35s var(--ease);
  position: relative;
  overflow: hidden;
}
.trust-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px color-mix(in srgb, var(--navy) 10%, transparent);
  border-color: var(--water-200);
}
.trust-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--maroon), var(--water-400));
  opacity: 0; transition: opacity 0.3s;
}
.trust-card:hover::before { opacity: 1; }
.trust-icon {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--water-100), var(--water-200));
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  margin: 0 auto 18px;
}
.trust-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
}
.trust-card p {
  font-size: 14px;
  color: var(--slate-light);
  line-height: 1.75;
}
@media (max-width: 900px) { .trust-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .trust-grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; } }

/* ========================================
   FOOTER
   ======================================== */
/* Footer — backgrounded with the tenant's secondary color. Text colors
   pull from var(--navy-text) so contrast stays legible whether the
   tenant picks a light or dark secondary. The radial accent + heading
   colors derive from --navy-text + alpha via color-mix. */
/* Footer — hardcoded black/white. Intentionally NOT tenant-driven so
   every site reads as a polished editorial close regardless of the
   brand-color combo a tenant has set. */
.footer {
  background: #0a0a0a;
  padding: 72px 0 36px;
  color: rgba(255,255,255,0.65);
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute;
  bottom: -200px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 44px;
  margin-bottom: 52px;
  position: relative;
  z-index: 1;
}
.footer-logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
}
.footer-text {
  font-size: 14px;
  margin-top: 14px;
  line-height: 1.75;
  max-width: 300px;
  color: rgba(255,255,255,0.7);
}
.footer h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 18px;
}
.footer ul li { margin-bottom: 4px; }
.footer ul a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: color 0.3s;
  display: inline-block;
  padding: 4px 0;
  line-height: 1.5;
}
.footer ul a:hover { color: #ffffff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  flex-wrap: wrap;
  gap: 12px;
  position: relative;
  z-index: 1;
  color: rgba(255,255,255,0.6);
}
.footer-social {
  display: flex;
  gap: 8px;
}
.footer-social a {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.65);
  font-size: 14px;
  transition: all 0.3s;
}
.footer-social a:hover {
  background: #ffffff;
  border-color: #ffffff;
  color: #0a0a0a;
}
.footer-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  font-style: italic;
  margin-bottom: 12px;
  line-height: 1.5;
}
.footer-payments {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 20px 0;
  margin-bottom: 20px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-payments-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.3);
}
.footer-payment-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  padding: 5px 12px;
  color: rgba(255,255,255,0.55);
  font-size: 12px;
  font-weight: 500;
  transition: all 0.3s;
  cursor: default;
}
.footer-payment-item svg {
  flex-shrink: 0;
  color: rgba(255,255,255,0.45);
}
.footer-payment-item:hover {
  color: var(--water-400);
  border-color: var(--water-400);
}
.footer-payment-item:hover svg {
  color: var(--water-400);
}

@media (max-width: 700px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ========================================
   PHP-SPECIFIC ADDITIONS
   ======================================== */
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
    z-index: 0;
    filter: brightness(1.1) saturate(0.9);
    opacity: 0.6;
}
.cf-turnstile { margin: 8px 0; }
.required { color: var(--maroon); font-weight: 600; }
.content-body { font-size: 16px; line-height: 1.8; color: var(--slate); }
.content-body h3 { font-family: var(--font-display); font-size: 24px; font-weight: 600; color: var(--navy); margin: 24px 0 8px; }
.content-body p { margin-bottom: 12px; }
.content-body a,
.story-content a {
  color: var(--water-600);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: color-mix(in srgb, var(--accent) 35%, transparent);
  text-underline-offset: 3px;
  transition: color 0.25s, text-decoration-color 0.25s;
}
.content-body a:hover,
.story-content a:hover {
  color: var(--accent);
  text-decoration-color: var(--accent);
}
.page-hero .breadcrumb { font-size: 13px; font-weight: 500; color: var(--water-deep); opacity: 0.7; margin-bottom: 12px; }
.page-hero .breadcrumb a { color: var(--water-deep); }
.page-hero .breadcrumb a:hover { color: var(--accent); }
.faq-cta { text-align: center; margin-top: 60px; padding: 48px 32px; background: var(--cloud); border-radius: 16px; }
.faq-cta h3 { font-family: var(--font-display); font-size: clamp(24px, 3vw, 36px); font-weight: 600; color: var(--navy); margin-bottom: 12px; }
.faq-cta p { color: var(--slate); margin-bottom: 24px; }

/* ========================================
   PHONE CTA (shared across pages)
   ======================================== */
.phone-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--maroon);
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  padding: 16px 36px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 4px 20px color-mix(in srgb, var(--maroon) 30%, transparent);
  transition: all 0.3s;
}
.phone-cta:hover {
  background: var(--maroon-light);
  box-shadow: 0 6px 24px color-mix(in srgb, var(--maroon) 40%, transparent);
  transform: translateY(-2px);
}
.phone-cta svg { width: 22px; height: 22px; flex-shrink: 0; }
.phone-cta-secondary {
  display: block;
  margin-top: 12px;
  font-size: 14px;
  color: var(--slate-light);
}
.phone-cta-secondary a { color: var(--navy); font-weight: 600; text-decoration: underline; }
@media (max-width: 767px) {
  .phone-cta { width: 100%; justify-content: center; font-size: 20px; padding: 16px 28px; }
}

/* ========================================
   TRUST STRIP (compact credibility bar)
   ======================================== */
.trust-strip {
  background: var(--navy);
  padding: 24px 0;
}
.trust-strip-inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.trust-strip-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}
.trust-strip-num {
  font-size: 20px;
  font-weight: 800;
  color: #facc15;
}
@media (max-width: 600px) {
  .trust-strip-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; padding: 0 20px; }
}

/* ========================================
   PROOF BLOCK (before/after + review)
   ======================================== */
.proof-section { padding: 60px 0; }
.proof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}
@media (max-width: 768px) { .proof-grid { grid-template-columns: 1fr; } }

/* Layout rotation variants */
.proof-layout-b .proof-grid { grid-template-columns: 1fr; }
.proof-layout-b .proof-review { background: color-mix(in srgb, var(--maroon) 65%, transparent); padding: 32px; border-radius: 16px; color: #fff; text-align: center; }
.proof-layout-b .proof-review .review-text { color: rgba(255,255,255,0.9); font-size: 18px; }
.proof-layout-b .proof-review .review-name { color: #fff; }
.proof-layout-b .proof-review .review-source { color: rgba(255,255,255,0.6); }
.proof-layout-b .proof-review .review-stars { color: #facc15; }

.proof-layout-c .proof-grid { grid-template-columns: 1fr; gap: 20px; }

/* ========================================
   MID-PAGE PHONE CTA
   ======================================== */
.mid-cta {
  text-align: center;
  padding: 50px 0;
  background: color-mix(in srgb, var(--maroon) 75%, transparent);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.mid-cta p {
  font-size: 20px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 16px;
}
.mid-cta .phone-cta { background: #fff; color: var(--maroon); }
.mid-cta .phone-cta:hover { background: rgba(255,255,255,0.9); }
.mid-cta .phone-cta-secondary { margin-top: 12px; color: rgba(255,255,255,0.7); }
.mid-cta .phone-cta-secondary a { color: #fff; }

/* ========================================
   COMPACT SERVICE CARDS (city pages)
   ======================================== */
.compact-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .compact-services-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .compact-services-grid { grid-template-columns: 1fr; } }
.compact-service-card {
  background: rgba(255,255,255,0.8);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 16px color-mix(in srgb, var(--navy) 4%, transparent);
  transition: all 0.3s var(--ease);
}
.compact-service-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px color-mix(in srgb, var(--navy) 8%, transparent); }
.compact-service-card img { width: 100%; height: 160px; object-fit: cover; object-position: center; }
.compact-service-card-body { padding: 18px; }
.compact-service-card-body h3 { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.compact-service-card-body p { font-size: 14px; color: var(--slate-light); line-height: 1.5; margin-bottom: 10px; }
.compact-service-card-body a { font-size: 13px; font-weight: 600; color: var(--maroon); text-decoration: none; }
.view-all-link { text-align: center; margin-top: 20px; }
.view-all-link a { color: var(--navy); font-weight: 600; font-size: 15px; text-decoration: underline; }

/* ========================================
   OTHER AREAS (compact inline links)
   ======================================== */
.other-areas-strip {
  font-size: 14px;
  color: var(--slate-light);
  border-top: 1px solid color-mix(in srgb, var(--accent) 20%, transparent);
  padding: 24px 0;
}
.other-areas-strip strong { color: var(--navy); }
.other-areas-strip a { color: var(--water-500); text-decoration: none; font-weight: 500; }
.other-areas-strip a:hover { text-decoration: underline; color: var(--accent); }

/* ========================================
   INCLUDED CHECKLIST (service pages)
   ======================================== */
.included-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
@media (max-width: 768px) { .included-grid { grid-template-columns: 1fr; } }
.included-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0;
  margin: 20px 0 0;
}
.included-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--slate);
  line-height: 1.5;
}
.included-list .check {
  color: #22c55e;
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
}

/* Mobile CTA bar */
.mobile-cta-bar { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 999; background: var(--maroon) !important; text-decoration: none !important; padding: 0; -webkit-tap-highlight-color: transparent; color: #fff !important; box-shadow: 0 -3px 12px rgba(0,0,0,0.3); }
.mobile-cta-bar .mobile-cta-icon { color: #fff !important; flex-shrink: 0; }
.mobile-cta-bar .mobile-cta-text { font-size: 18px; font-weight: 700; letter-spacing: 0.5px; color: #fff !important; }
@media (max-width: 768px) {
  .mobile-cta-bar { display: flex !important; align-items: center; justify-content: center; gap: 10px; height: 54px; text-align: center; }
  body { padding-bottom: 54px; }
}
.mobile-cta-bar:hover, .mobile-cta-bar:visited, .mobile-cta-bar:active { color: #fff !important; background: var(--maroon-light) !important; text-decoration: none !important; }

/* Back to top */
/* Before/After slider */
.ba-slider { position: relative; overflow: hidden; border-radius: 12px; cursor: col-resize; user-select: none; -webkit-user-select: none; aspect-ratio: 3/2; }
.ba-slider img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; }
.ba-before { z-index: 0; }
.ba-after { z-index: 1; clip-path: inset(0 0 0 50%); }
.ba-handle { position: absolute; top: 0; bottom: 0; left: 50%; width: 3px; background: #fff; transform: translateX(-50%); z-index: 2; cursor: col-resize; }
.ba-handle::before { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 36px; height: 36px; border-radius: 50%; background: #fff; box-shadow: 0 2px 8px rgba(0,0,0,0.3); }
.ba-handle::after { content: '\2194'; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); font-size: 18px; color: var(--navy); z-index: 3; }
.ba-label { position: absolute; bottom: 10px; padding: 4px 12px; border-radius: 20px; background: rgba(0,0,0,0.6); color: #fff; font-size: 12px; font-weight: 600; z-index: 3; }
.ba-label-before { left: 10px; }
.ba-label-after { right: 10px; }
.gallery-label { text-align: center; padding: 12px; font-weight: 600; color: var(--navy); font-size: 14px; }

/* =========================================================================
 * HOME PAGE — landing-page sections (slice 1, 2026-05-08)
 * value_props, case_studies, process_steps, cta_bands, videos, contact_form
 * Each section's parent <section> only renders when its data is non-empty,
 * so these blocks are inert for tenants that haven't filled them in yet.
 * ========================================================================= */

/* Hero with inline lead-gen form (right column).
   Triggered when the home page has sections.contact_form.enabled — the
   hero gets `.hero-has-form` and the .container becomes a 2-col grid.
   Top padding clears the fixed nav (avoids the form/copy "running into"
   the nav at the viewport top). Bottom padding gives the hero spray a
   comfortable landing. */
.hero.hero-has-form { min-height: auto; padding: 140px 0 90px; }
.hero.hero-has-form .container.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 56px;
    align-items: start; /* top-anchor copy + form so the H1 and form heading start at the same Y */
    position: relative;
    z-index: 2;
}
/* Kill the base .hero-content's 140px/160px vertical padding here —
   .hero.hero-has-form already supplies its own section padding, and the
   stacked padding was pushing the H1 ~280px down into the hero. */
.hero.hero-has-form .hero-content-split {
    text-align: left;
    max-width: none;
    margin: 0;
    padding: 0;
}
.hero.hero-has-form .hero-content-split h1 {
    text-align: left;
    margin: 0 0 18px;
    padding: 0;
}
.hero.hero-has-form .hero-content-split .hero-sub {
    text-align: left;
    max-width: 540px;
    margin: 0 0 26px;
    padding: 0;
}
.hero.hero-has-form .hero-actions {
    justify-content: flex-start;
    margin: 0 0 24px;
    padding: 0;
}
.hero.hero-has-form .hero-trust {
    justify-content: flex-start;
    margin: 0;
    padding: 0;
}

/* No surrounding card — the form is just a heading + a stack of inputs
   floating directly on the hero. Each input has its own white pill bg
   so it pops against the hero photo; the heading is white text with a
   short sky-blue accent underline. */
.hero-form-card {
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: 0;
    position: relative;
}

/* Heading — white serif over the hero photo, with a short sky-blue
   accent underline for visual anchor. */
.hero-form-tag {
    font-family: var(--font-display);
    font-size: 1.7rem;
    font-weight: 600;
    color: #fff;
    margin: 0 0 4px;
    line-height: 1.2;
    letter-spacing: -0.005em;
    position: relative;
    padding-bottom: 12px;
    text-shadow: 0 2px 12px rgba(2, 6, 23, 0.45);
}
.hero-form-tag::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 40px; height: 2.5px;
    background: var(--water-400);
    border-radius: 2px;
    box-shadow: 0 0 12px color-mix(in srgb, var(--accent) 50%, transparent);
}
.hero-form-sub {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.5;
    margin: 14px 0 18px;
    text-shadow: 0 1px 8px rgba(2, 6, 23, 0.4);
}

/* Field rows — labels are white-on-photo, inputs stay opaque white so
   typed text reads clearly against any hero background. */
.hero-form .form-group { margin-bottom: 12px; }
.hero-form label {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 5px;
    text-shadow: 0 1px 6px rgba(2, 6, 23, 0.5);
}
.hero-form .required { color: #fca5a5; }
.hero-form input,
.hero-form select,
.hero-form textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.96);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--navy);
    box-shadow: 0 4px 14px -6px rgba(2, 6, 23, 0.25);
    transition: border-color 0.18s var(--ease), box-shadow 0.18s var(--ease), background 0.18s var(--ease);
}
.hero-form input::placeholder,
.hero-form textarea::placeholder { color: #94a3b8; }
.hero-form input:focus,
.hero-form select:focus,
.hero-form textarea:focus {
    outline: 0;
    border-color: var(--water-500);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 15%, transparent);
}
.hero-form select {
    appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23475569' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 14px;
    padding-right: 36px;
}
.hero-form textarea { resize: vertical; min-height: 60px; }

/* Submit button: layout + sizing only. Color/gradient/hover lift come
   from the unified .btn-water/.btn-maroon/.hero-form-submit rule near
   the top of this file (var(--maroon) tenant primary). */
.hero-form-submit {
    width: 100%;
    margin-top: 6px;
    padding: 13px 20px;
    border: 0;
    border-radius: 10px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.92rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 0.18s var(--ease), box-shadow 0.18s var(--ease), background 0.18s var(--ease);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Tablet — keep 2-col but tighten gap. */
@media (max-width: 1024px) {
    .hero.hero-has-form .container.hero-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

/* Mobile — stack copy above form, KEEP left-aligned so everything reads
   the same on desktop and phone. (Re-centering on mobile created an
   alignment break that looked unintentional.) */
@media (max-width: 768px) {
    .hero.hero-has-form { padding: 110px 0 60px; }
    .hero.hero-has-form .container.hero-grid { grid-template-columns: 1fr; gap: 32px; }
    .hero.hero-has-form .hero-content-split { text-align: left; }
    .hero.hero-has-form .hero-content-split h1,
    .hero.hero-has-form .hero-content-split .hero-sub { text-align: left; max-width: none; }
    .hero.hero-has-form .hero-actions { justify-content: flex-start; flex-wrap: wrap; }
    .hero.hero-has-form .hero-trust { justify-content: flex-start; flex-wrap: wrap; }
    .hero-form-tag { font-size: 1.45rem; }
}

/* Why Us — value props grid.
   Section: subtle white-to-mist vertical gradient with soft radial
   water-drop accents in the corners. Tiles: white cards with a
   gradient-icon badge, an animated accent bar that grows on hover,
   and a layered shadow that lifts the tile off the page. */
.value-props-section {
    background: linear-gradient(180deg, #ffffff 0%, var(--mist) 100%);
    padding: 84px 0 96px;
    position: relative;
    overflow: hidden;
}
.value-props-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 92% 8%, color-mix(in srgb, var(--accent) 10%, transparent) 0%, transparent 38%),
        radial-gradient(circle at 4% 88%, rgba(2, 132, 199, 0.07) 0%, transparent 42%);
    pointer-events: none;
    z-index: 0;
}
.value-props-section .container { position: relative; z-index: 1; }
.value-props-header { text-align: center; margin-bottom: 48px; }
.value-props-header .section-tag {
    display: inline-block;
    padding: 5px 14px;
    background: color-mix(in srgb, var(--accent) 12%, transparent);
    color: var(--water-700);
    border: 1px solid color-mix(in srgb, var(--accent) 30%, transparent);
    border-radius: 100px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.value-props-header h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--navy);
    margin: 14px 0 0;
    line-height: 1.15;
    letter-spacing: -0.01em;
}
.value-props-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 22px;
}
.value-prop-tile {
    text-align: left;
    padding: 32px 28px 28px;
    background: #fff;
    border-radius: 16px;
    border: 1px solid color-mix(in srgb, var(--accent) 50%, transparent);
    box-shadow:
        0 8px 24px -10px color-mix(in srgb, var(--navy) 12%, transparent),
        0 2px 6px -2px color-mix(in srgb, var(--navy) 6%, transparent);
    position: relative;
    overflow: hidden;
    transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.value-prop-tile::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--water-400) 0%, var(--water-700) 100%);
    transform: scaleX(0.35);
    transform-origin: left;
    transition: transform 0.4s var(--ease);
}
.value-prop-tile:hover {
    transform: translateY(-5px);
    box-shadow:
        0 22px 44px -14px color-mix(in srgb, var(--navy) 22%, transparent),
        0 6px 12px -4px color-mix(in srgb, var(--navy) 8%, transparent);
}
.value-prop-tile:hover::before { transform: scaleX(1); }

.value-prop-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px; height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--water-100) 0%, var(--water-300) 100%);
    color: var(--water-deep);
    font-size: 1.7rem;
    line-height: 1;
    margin-bottom: 18px;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.7),
        0 4px 10px -4px rgba(2, 132, 199, 0.25);
}
.value-prop-tile h3 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--navy);
    margin: 0 0 10px;
    line-height: 1.25;
    letter-spacing: -0.005em;
}
.value-prop-tile p {
    color: var(--slate);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Case studies / featured projects */
.case-studies-section { background: var(--cloud); }
.case-studies-header { text-align: center; margin-bottom: 36px; }
.case-studies-header h2 { font-family: var(--font-display); font-size: 2.2rem; color: var(--navy); margin: 8px 0; }
.case-studies-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; }
.case-study-card {
    background: #fff; border-radius: 14px; overflow: hidden;
    box-shadow: 0 6px 18px color-mix(in srgb, var(--navy) 8%, transparent); border: 1px solid var(--mist);
    display: flex; flex-direction: column;
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.case-study-card:hover { transform: translateY(-4px); box-shadow: 0 14px 32px color-mix(in srgb, var(--navy) 12%, transparent); }
.case-study-img { aspect-ratio: 16/10; overflow: hidden; }
.case-study-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.case-study-body { padding: 22px 20px; flex: 1; display: flex; flex-direction: column; }
.case-study-body h3 { font-family: var(--font-display); font-size: 1.35rem; color: var(--navy); margin: 0 0 10px; }
.case-study-body p { color: var(--slate); font-size: 0.95rem; line-height: 1.6; margin: 0 0 14px; }
.case-study-link { color: var(--water-700); font-weight: 600; text-decoration: none; font-size: 0.92rem; margin-top: auto; }
.case-study-link:hover { color: var(--water-deep); }

/* How It Works — process steps.
   Vertical-stacked steps (number on top, body below) connected by a
   dashed water-blue line on desktop showing the flow. Each number is
   a gradient circle with a soft outer ring + glow. The whole thing
   sits on a faintly-tinted section so the steps read as a deliberate
   journey, not a generic 4-up grid. */
.process-section {
    background:
        radial-gradient(ellipse at center top, color-mix(in srgb, var(--accent) 20%, transparent) 0%, transparent 60%),
        #ffffff;
    padding: 88px 0 100px;
    position: relative;
    overflow: hidden;
}
.process-header { text-align: center; margin-bottom: 56px; }
.process-header .section-tag {
    display: inline-block;
    padding: 5px 14px;
    background: color-mix(in srgb, var(--accent) 12%, transparent);
    color: var(--water-700);
    border: 1px solid color-mix(in srgb, var(--accent) 30%, transparent);
    border-radius: 100px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.process-header h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--navy);
    margin: 14px 0 0;
    line-height: 1.15;
    letter-spacing: -0.01em;
}
.process-steps {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    position: relative;
}
/* Dashed water-blue track behind the number circles, only on multi-step
   horizontal layouts. Hidden on mobile where steps stack vertically. */
@media (min-width: 768px) {
    .process-steps::before {
        content: '';
        position: absolute;
        top: 36px; /* ~half of step-num height (72/2) */
        left: 12%;
        right: 12%;
        height: 0;
        border-top: 2px dashed color-mix(in srgb, var(--accent) 55%, transparent);
        z-index: 0;
        pointer-events: none;
    }
}
.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0;
    position: relative;
    z-index: 1;
}
.process-step-num {
    flex-shrink: 0;
    width: 72px; height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--maroon) 0%, color-mix(in srgb, var(--maroon) 60%, #000) 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.7rem;
    margin-bottom: 22px;
    position: relative;
    box-shadow:
        0 12px 28px -6px color-mix(in srgb, var(--maroon) 45%, transparent),
        0 4px 10px -2px color-mix(in srgb, var(--maroon) 25%, transparent),
        inset 0 1px 0 rgba(255, 255, 255, 0.35);
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.process-step-num::before {
    content: '';
    position: absolute;
    top: -7px; left: -7px; right: -7px; bottom: -7px;
    border-radius: 50%;
    border: 2px solid color-mix(in srgb, var(--maroon) 35%, transparent);
    opacity: 0.7;
    pointer-events: none;
}
.process-step:hover .process-step-num {
    transform: translateY(-3px) scale(1.04);
    box-shadow:
        0 18px 36px -6px color-mix(in srgb, var(--maroon) 55%, transparent),
        0 6px 14px -2px color-mix(in srgb, var(--maroon) 30%, transparent),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}
.process-step-body { max-width: 280px; }
.process-step-body h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--navy);
    margin: 0 0 10px;
    letter-spacing: -0.005em;
}
.process-step-body p {
    color: var(--slate);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}
@media (max-width: 768px) {
    .process-section { padding: 60px 0 70px; }
    .process-header h2 { font-size: 1.9rem; }
    .process-steps { gap: 36px; }
    .value-props-section { padding: 60px 0 70px; }
    .value-props-header h2 { font-size: 1.9rem; }
}

/* CTA bands — full-width background-image blocks */
.cta-band {
    position: relative;
    background-color: var(--navy);
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 80px 0;
    overflow: hidden;
}
.cta-band-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, color-mix(in srgb, var(--navy) 78%, transparent), color-mix(in srgb, var(--navy) 85%, transparent));
    z-index: 1;
}
.cta-band-content { position: relative; z-index: 2; text-align: center; max-width: 720px; }
.cta-band h2 { font-family: var(--font-display); font-size: 2.4rem; color: #fff; margin: 0 0 14px; line-height: 1.2; }
.cta-band p { font-size: 1.05rem; color: rgba(255,255,255,0.92); margin: 0 0 28px; line-height: 1.6; }
.cta-band .btn-lg { padding: 14px 32px; font-size: 1.05rem; }
@media (max-width: 768px) { .cta-band { padding: 56px 0; } .cta-band h2 { font-size: 1.7rem; } }

/* Video showcase grid */
.videos-section { background: var(--cloud); }
.videos-header { text-align: center; margin-bottom: 36px; }
.videos-header h2 { font-family: var(--font-display); font-size: 2.2rem; color: var(--navy); margin: 8px 0; }
.videos-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.video-tile { margin: 0; }
.video-tile-frame {
    position: relative; padding-bottom: 56.25%; /* 16:9 */
    border-radius: 12px; overflow: hidden;
    box-shadow: 0 6px 18px color-mix(in srgb, var(--navy) 12%, transparent);
    background: var(--navy);
}
.video-tile-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-tile figcaption { margin-top: 10px; font-size: 0.92rem; color: var(--slate); text-align: center; font-weight: 500; }

/* =========================================================================
 * SPLIT SECTIONS — drewspws.com-style image|navy-text layouts
 * (cta-band-split, why-us-section, areas-split, recent-blog-section).
 * Shared visual language: deep navy background on text panels, sky-blue
 * accents, white type on dark, generous edge-to-edge imagery beside
 * branded copy panels.
 * ========================================================================= */

/* CTA Bands — split image | dark navy text panel */
.cta-band-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    background: var(--navy);
    color: var(--navy-text);
    overflow: hidden;
}
.cta-band-split.is-reversed .cta-band-split-image { order: 2; }
.cta-band-split.is-reversed .cta-band-split-text  { order: 1; }

/* No-image variant: skip the split, render the text panel full-width
   with decorative glows and a 2-column layout (copy left, button right).
   Stronger typography + a side accent stripe so the band reads as a
   designed feature, not an empty fallback. */
.cta-band-split.is-no-image {
    grid-template-columns: 1fr;
    background:
        radial-gradient(circle at 18% 50%, color-mix(in srgb, var(--accent) 16%, transparent) 0%, transparent 35%),
        radial-gradient(circle at 92% 70%, rgba(2, 132, 199, 0.22) 0%, transparent 38%),
        linear-gradient(135deg, #0a1f3a 0%, var(--navy) 45%, var(--water-deep) 100%);
    position: relative;
    overflow: hidden;
}
.cta-band-split.is-no-image::before {
    /* large decorative water-drop in the background */
    content: '';
    position: absolute;
    top: 50%; right: -120px;
    transform: translateY(-50%);
    width: 360px; height: 360px;
    background: radial-gradient(circle, color-mix(in srgb, var(--accent) 18%, transparent) 0%, transparent 65%);
    pointer-events: none;
}
.cta-band-split.is-no-image::after {
    /* leading-edge accent stripe */
    content: '';
    position: absolute;
    top: 0; bottom: 0; left: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--water-400), var(--water-700));
}
.cta-band-split.is-no-image .cta-band-split-text {
    background: transparent;
    padding: 80px 64px;
    position: relative;
    z-index: 1;
}
.cta-band-split.is-no-image .cta-band-split-text::before { display: none; }
.cta-band-split.is-no-image .cta-band-split-text-inner {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 56px;
    align-items: center;
}
.cta-band-split.is-no-image .cta-band-split-text h2 {
    font-size: 2.2rem;
    margin: 0 0 12px;
    line-height: 1.15;
    letter-spacing: 0.02em;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}
.cta-band-split.is-no-image .cta-band-split-text p {
    font-size: 1.05rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.85);
}
.cta-band-split.is-no-image .cta-band-split-text .btn {
    justify-self: end;
    padding: 16px 32px;
    font-size: 0.95rem;
    letter-spacing: 0.03em;
}
@media (max-width: 768px) {
    .cta-band-split.is-no-image .cta-band-split-text { padding: 56px 28px; }
    .cta-band-split.is-no-image .cta-band-split-text-inner {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .cta-band-split.is-no-image .cta-band-split-text h2 { font-size: 1.55rem; }
    .cta-band-split.is-no-image .cta-band-split-text .btn { justify-self: stretch; text-align: center; justify-content: center; }
    .cta-band-split.is-no-image::before { display: none; }
}
.cta-band-split-image {
    position: relative;
    min-height: 360px;
    overflow: hidden;
}
.cta-band-split-image img {
    width: 100%; height: 100%; object-fit: cover; display: block;
    position: absolute; inset: 0;
}
.cta-band-split-text {
    background: linear-gradient(135deg, var(--navy) 0%, var(--water-deep) 100%);
    padding: 64px 56px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.cta-band-split-text::before {
    content: '';
    position: absolute;
    top: 0; left: 0; height: 4px; width: 64px;
    background: linear-gradient(90deg, var(--water-400), var(--water-700));
}
.cta-band-split-text-inner { max-width: 480px; }
.cta-band-split-text h2 {
    font-family: var(--font-display);
    font-size: 1.85rem;
    font-weight: 600;
    color: #fff;
    margin: 0 0 16px;
    line-height: 1.2;
    letter-spacing: -0.005em;
    text-transform: uppercase;
}
.cta-band-split-text p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.98rem;
    line-height: 1.65;
    margin: 0 0 24px;
}
@media (max-width: 768px) {
    .cta-band-split { grid-template-columns: 1fr; }
    .cta-band-split.is-reversed .cta-band-split-image { order: 1; }
    .cta-band-split.is-reversed .cta-band-split-text  { order: 2; }
    .cta-band-split-image { min-height: 240px; }
    .cta-band-split-text { padding: 44px 28px; }
    .cta-band-split-text h2 { font-size: 1.45rem; }
}

/* Why Us — dark navy section, vertical icon-list left, optional photo right.
   When .has-photo is absent, the content column spans the full width. */
.why-us-section {
    background: linear-gradient(135deg, color-mix(in srgb, var(--navy) 75%, #000) 0%, var(--navy) 50%, color-mix(in srgb, var(--navy) 70%, #000) 100%);
    color: var(--navy-text);
    position: relative;
    overflow: hidden;
}
.why-us-section::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
        radial-gradient(circle at 90% 8%, color-mix(in srgb, var(--accent) 10%, transparent) 0%, transparent 35%),
        radial-gradient(circle at 8% 92%, rgba(2, 132, 199, 0.10) 0%, transparent 40%);
    pointer-events: none;
}
.why-us-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
    align-items: stretch;
}
.why-us-section.has-photo .why-us-grid {
    grid-template-columns: 1.4fr 1fr;
}
.why-us-content {
    padding: 80px 56px 84px;
    max-width: 720px;
    margin: 0 auto;
}
.why-us-section.has-photo .why-us-content {
    margin: 0;
    padding: 80px 48px 84px 80px;
}
.why-us-heading {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 600;
    color: #fff;
    text-align: center;
    margin: 0 0 48px;
    letter-spacing: 0.03em;
    position: relative;
    padding-bottom: 18px;
}
.why-us-heading::after {
    content: '';
    position: absolute;
    bottom: 0; left: 50%;
    transform: translateX(-50%);
    width: 56px; height: 2.5px;
    background: var(--water-400);
    border-radius: 2px;
}
.why-us-section.has-photo .why-us-heading { text-align: left; }
.why-us-section.has-photo .why-us-heading::after { left: 0; transform: none; }
.why-us-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 28px; }
.why-us-item {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 22px;
    align-items: start;
}
.why-us-icon {
    width: 56px; height: 56px;
    border-radius: 50%;
    border: 1.5px solid color-mix(in srgb, var(--accent) 50%, transparent);
    color: var(--water-300);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    line-height: 1;
    background: rgba(2, 132, 199, 0.08);
    flex-shrink: 0;
    transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.why-us-item:hover .why-us-icon {
    transform: translateY(-2px);
    border-color: var(--water-300);
    background: color-mix(in srgb, var(--accent) 16%, transparent);
}
.why-us-body h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    color: #fff;
    margin: 0 0 8px;
    letter-spacing: -0.005em;
}
.why-us-body p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.98rem;
    line-height: 1.65;
    margin: 0;
}
/* Photo column: centered framed portrait rather than full-bleed cover.
   Subtle sky-blue offset frame behind the photo for depth, white inset
   border on the photo for that "framed print" feel, deep ambient shadow
   so it lifts off the navy panel. */
.why-us-photo {
    position: relative;
    padding: 60px 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.why-us-photo::before {
    content: '';
    position: absolute;
    width: 100%;
    max-width: 320px;
    aspect-ratio: 4/5;
    border: 2px solid var(--water-400);
    border-radius: 16px;
    transform: translate(18px, 18px);
    opacity: 0.45;
    pointer-events: none;
    z-index: 0;
}
.why-us-photo img {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 320px;
    aspect-ratio: 4/5;
    object-fit: cover;
    object-position: center top;
    border-radius: 16px;
    border: 4px solid rgba(255, 255, 255, 0.08);
    box-shadow:
        0 30px 60px -12px rgba(0, 0, 0, 0.5),
        0 12px 24px -6px rgba(2, 132, 199, 0.3),
        inset 0 0 0 1px rgba(255, 255, 255, 0.18);
    display: block;
}
@media (max-width: 768px) {
    .why-us-section.has-photo .why-us-grid { grid-template-columns: 1fr; }
    .why-us-content,
    .why-us-section.has-photo .why-us-content { padding: 56px 24px 56px; }
    .why-us-heading { font-size: 1.7rem; margin-bottom: 36px; }
    .why-us-photo { padding: 40px 24px 0; order: -1; }
    .why-us-photo::before,
    .why-us-photo img { max-width: 240px; }
    .why-us-photo::before { transform: translate(12px, 12px); }
    .why-us-item { grid-template-columns: 52px 1fr; gap: 18px; }
    .why-us-icon { width: 48px; height: 48px; font-size: 1.3rem; }
    .why-us-body h3 { font-size: 1.2rem; }
}

/* Service Areas — split: map left, dark navy panel right with 2-col city
   list and a primary CTA. Mirrors cta-band-split's layout vocabulary. */
.areas-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    background: var(--navy);
    color: var(--navy-text);
    overflow: hidden;
}
.areas-split-map {
    position: relative;
    min-height: 460px;
    overflow: hidden;
    background: var(--mist);
}
.areas-split-map > a, .areas-split-map > img, .areas-split-map > iframe {
    position: absolute; inset: 0;
    width: 100%; height: 100%; display: block;
    border: 0;
}
.areas-split-map img { object-fit: cover; }
.areas-split-text {
    background: linear-gradient(135deg, var(--navy) 0%, var(--water-deep) 100%);
    padding: 64px 56px;
    display: flex;
    align-items: center;
    position: relative;
}
.areas-split-text::before {
    content: '';
    position: absolute;
    top: 0; left: 0; height: 4px; width: 64px;
    background: linear-gradient(90deg, var(--water-400), var(--water-700));
}
.areas-split-text-inner { max-width: 520px; width: 100%; }
.areas-split-text h2 {
    font-family: var(--font-display);
    font-size: 1.85rem;
    font-weight: 600;
    color: #fff;
    margin: 0 0 14px;
    line-height: 1.2;
    letter-spacing: 0.01em;
    text-transform: uppercase;
}
.areas-split-text p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.98rem;
    line-height: 1.65;
    margin: 0 0 24px;
}
.areas-split-list {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 24px;
}
.areas-split-list a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    text-decoration: none;
    font-size: 0.98rem;
    transition: color 0.18s var(--ease);
}
.areas-split-list a:hover { color: var(--water-300); }
.areas-split-bullet {
    color: var(--water-300);
    display: inline-flex;
    flex-shrink: 0;
}
@media (max-width: 768px) {
    .areas-split { grid-template-columns: 1fr; }
    .areas-split-map { min-height: 240px; }
    .areas-split-text { padding: 44px 28px; }
    .areas-split-text h2 { font-size: 1.45rem; }
    .areas-split-list { grid-template-columns: 1fr; }
}

/* Recent Articles / blog preview */
.recent-blog-section {
    background: linear-gradient(180deg, var(--mist) 0%, #ffffff 100%);
    padding: 84px 0 96px;
}
.recent-blog-header { text-align: center; margin-bottom: 44px; }
.recent-blog-header .section-tag {
    display: inline-block;
    padding: 5px 14px;
    background: color-mix(in srgb, var(--accent) 12%, transparent);
    color: var(--water-700);
    border: 1px solid color-mix(in srgb, var(--accent) 30%, transparent);
    border-radius: 100px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.recent-blog-header h2 {
    font-family: var(--font-display);
    font-size: 2.3rem;
    color: var(--navy);
    margin: 14px 0 0;
}
.recent-blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 28px;
}
.recent-blog-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 6px 18px -8px color-mix(in srgb, var(--navy) 16%, transparent);
    border: 1px solid color-mix(in srgb, var(--accent) 40%, transparent);
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.recent-blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px -10px color-mix(in srgb, var(--navy) 22%, transparent);
}
.recent-blog-card-link { display: block; text-decoration: none; color: inherit; }
.recent-blog-img {
    aspect-ratio: 16/10;
    overflow: hidden;
    background: var(--mist);
}
.recent-blog-img img {
    width: 100%; height: 100%; object-fit: cover; display: block;
    transition: transform 0.6s var(--ease);
}
.recent-blog-card:hover .recent-blog-img img { transform: scale(1.04); }
.recent-blog-body { padding: 22px 22px 24px; }
.recent-blog-date {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--water-700);
    margin-bottom: 10px;
}
.recent-blog-card h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--navy);
    margin: 0 0 10px;
    line-height: 1.3;
}
.recent-blog-card p {
    color: var(--slate);
    font-size: 0.95rem;
    line-height: 1.55;
    margin: 0 0 14px;
}
.recent-blog-readmore {
    color: var(--water-700);
    font-weight: 600;
    font-size: 0.92rem;
}
.recent-blog-card:hover .recent-blog-readmore { color: var(--water-deep); }
.recent-blog-all { text-align: center; margin-top: 36px; }
@media (max-width: 768px) {
    .recent-blog-section { padding: 60px 0 70px; }
    .recent-blog-header h2 { font-size: 1.8rem; }
}
