/* ============================================================
   Clear Way Sewer & Drain — styles.css
   Palette: deep navy + royal blue (WAY) + water cyan
   Fonts: Montserrat (display/logo) + Inter (body)
   ============================================================ */

:root {
  /* Brand */
  --navy-900: #061427;
  --navy-800: #0a1f38;
  --navy-700: #0e2a4a;
  --navy-600: #143764;
  --blue-700: #1850b8;
  --blue-600: #1e63d6;   /* the "WAY" royal blue */
  --blue-500: #2c77f0;
  --cyan-400: #38bdf8;   /* water accent */
  --cyan-300: #7dd3fc;

  --ink: #0c1b2a;
  --slate: #51637a;
  --slate-2: #5c6e85;
  --line: #e2e9f2;
  --mist: #f3f8fd;
  --mist-2: #e9f2fb;
  --white: #ffffff;

  --grad-blue: linear-gradient(135deg, #2c77f0 0%, #1e63d6 45%, #38bdf8 120%);
  --grad-cta: linear-gradient(135deg, #2c77f0 0%, #1e63d6 100%);
  --grad-navy: linear-gradient(160deg, #0a1f38 0%, #061427 100%);

  --shadow-sm: 0 2px 8px rgba(6, 20, 39, 0.08);
  --shadow-md: 0 12px 30px rgba(6, 20, 39, 0.12);
  --shadow-lg: 0 24px 60px rgba(6, 20, 39, 0.20);
  --shadow-blue: 0 18px 40px rgba(30, 99, 214, 0.35);

  --maxw: 1180px;
  --radius: 16px;
  --radius-lg: 24px;
  --header-h: 76px;

  --ff-display: "Montserrat", system-ui, "Segoe UI", sans-serif;
  --ff-body: "Inter", system-ui, "Segoe UI", Roboto, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--ff-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--ff-display);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin: 0 0 0.5em;
  color: var(--ink);
}

p { margin: 0 0 1rem; }

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

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--ff-display);
  font-weight: 700; font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--blue-600);
}
.eyebrow.on-dark { color: var(--cyan-300); }
.eyebrow::before {
  content: ""; width: 26px; height: 2px; border-radius: 2px;
  background: currentColor; opacity: 0.7;
}

.section { padding: clamp(56px, 8vw, 104px) 0; }
#services, #why, #process, #area, #faq, #contact { scroll-margin-top: 88px; }
.section-head { max-width: 680px; margin: 0 auto clamp(36px, 5vw, 60px); text-align: center; }
.section-head h2 { font-size: clamp(1.9rem, 4.2vw, 2.85rem); }
.section-head p { color: var(--slate); font-size: 1.08rem; }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--blue-600); color: #fff; padding: 12px 18px; border-radius: 0 0 10px 0;
}
.skip-link:focus { left: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--ff-display); font-weight: 700; font-size: 0.98rem;
  padding: 15px 26px; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap; line-height: 1;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--grad-cta); color: #fff; box-shadow: var(--shadow-blue); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 22px 48px rgba(30,99,214,.45); }
.btn-ghost { background: rgba(255,255,255,.06); color: #fff; border-color: rgba(255,255,255,.35); }
.btn-ghost:hover { background: rgba(255,255,255,.14); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--blue-600); border-color: var(--blue-600); }
.btn-outline:hover { background: var(--blue-600); color: #fff; transform: translateY(-2px); }
.btn-lg { padding: 17px 32px; font-size: 1.05rem; }
.btn-block { width: 100%; }

/* ---------- Announcement bar ---------- */
.topbar {
  background: var(--grad-cta); color: #fff;
  font-size: 0.9rem; font-weight: 600;
  text-align: center; padding: 8px 16px;
}
.topbar a { font-weight: 800; text-decoration: underline; text-underline-offset: 2px; }
.topbar .dot { opacity: .55; margin: 0 10px; }
@media (max-width: 560px) { .topbar .hide-xs { display: none; } }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  transition: background .3s ease, box-shadow .3s ease, border-color .3s ease;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(8, 26, 48, 0.92);
  backdrop-filter: saturate(140%) blur(10px);
  box-shadow: 0 8px 24px rgba(6,20,39,.25);
  border-bottom-color: rgba(255,255,255,.08);
}
.nav {
  height: var(--header-h);
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
}

/* Logo (recreated wordmark) */
.logo { display: inline-flex; flex-direction: column; line-height: 1; font-family: var(--ff-display); }
.logo-row { display: flex; align-items: baseline; gap: 7px; }
.logo-clear, .logo-way {
  font-weight: 900; font-style: italic; font-size: 1.5rem; letter-spacing: 0.01em;
}
.logo-clear { color: #fff; }
.logo-way { color: var(--cyan-400); }
.logo-sub {
  display: flex; align-items: center; gap: 7px;
  font-size: 0.6rem; font-weight: 700; letter-spacing: 0.34em; text-transform: uppercase;
  color: rgba(255,255,255,.72); margin-top: 4px;
}
.logo-sub::before, .logo-sub::after { content:""; height:1px; width:14px; background: var(--cyan-400); opacity:.8; }

.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  font-family: var(--ff-display); font-weight: 600; font-size: 0.95rem; color: rgba(255,255,255,.86);
  padding: 6px 2px; position: relative; transition: color .2s ease;
}
.nav-links a::after {
  content:""; position:absolute; left:0; bottom:-4px; height:2px; width:0; background: var(--cyan-400); transition: width .25s ease;
}
.nav-links a:hover { color:#fff; } .nav-links a:hover::after { width:100%; }
.nav-actions { display: flex; align-items: center; gap: 14px; }

.nav-toggle {
  display: none; background: transparent; border: 0; cursor: pointer; padding: 8px;
  flex-direction: column; gap: 5px;
}
.nav-toggle span { display:block; width: 26px; height: 2.5px; background:#fff; border-radius: 2px; transition: transform .3s ease, opacity .3s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1){ transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2){ opacity:0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3){ transform: translateY(-7.5px) rotate(-45deg); }

@media (max-width: 940px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed; inset: 0 0 0 auto; width: min(82vw, 340px);
    background: var(--navy-800); flex-direction: column; align-items: flex-start;
    padding: calc(var(--header-h) + 24px) 30px 30px; gap: 6px;
    transform: translateX(100%); visibility: hidden;
    transition: transform .32s ease, visibility .32s ease; box-shadow: var(--shadow-lg);
  }
  .nav-links.open { transform: translateX(0); visibility: visible; }
  .nav-links a { font-size: 1.15rem; padding: 12px 0; width: 100%; border-bottom: 1px solid rgba(255,255,255,.08); }
  .nav-links a::after { display:none; }
  .nav .desktop-call { display: none; }
}

.nav-backdrop {
  position: fixed; inset: 0; background: rgba(6,20,39,.5); opacity:0; visibility:hidden;
  transition: opacity .3s ease, visibility .3s ease; z-index: 90;
}
.nav-backdrop.show { opacity:1; visibility:visible; }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background: var(--grad-navy);
  margin-top: calc(-1 * var(--header-h));
  padding-top: calc(var(--header-h) + clamp(48px, 8vw, 96px));
  padding-bottom: clamp(60px, 9vw, 120px);
  color: #fff;
}
.hero::before, .hero::after { content:""; position:absolute; border-radius:50%; filter: blur(60px); pointer-events:none; }
.hero::before { width: 520px; height: 520px; top: -160px; right: -120px; background: radial-gradient(circle, rgba(44,119,240,.55), transparent 70%); }
.hero::after  { width: 460px; height: 460px; bottom: -200px; left: -120px; background: radial-gradient(circle, rgba(56,189,248,.30), transparent 70%); }
.hero-water {
  position:absolute; inset:0; pointer-events:none; opacity:.5;
  background:
    radial-gradient(120px 60px at 20% 80%, rgba(56,189,248,.18), transparent 70%),
    radial-gradient(160px 70px at 70% 30%, rgba(44,119,240,.18), transparent 70%);
  animation: drift 16s ease-in-out infinite alternate;
}
@keyframes drift { to { transform: translate3d(0,-22px,0) scale(1.05); } }

.hero-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(30px, 5vw, 64px); align-items: center;
}
.hero h1 {
  color: #fff; font-size: clamp(2.3rem, 5.4vw, 4rem); font-weight: 900; letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.hero h1 .hl { color: var(--cyan-400); }
.hero-sub { font-size: clamp(1.05rem, 2vw, 1.2rem); color: rgba(255,255,255,.82); max-width: 560px; margin-bottom: 30px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 22px; }
.hero-trust .t {
  display:flex; align-items:center; gap:9px; font-family: var(--ff-display); font-weight:700; font-size:.92rem;
  color: rgba(255,255,255,.9);
}
.hero-trust .t svg { width: 22px; height: 22px; color: var(--cyan-400); flex: none; }

/* Hero visual */
.hero-visual { position: relative; display: flex; flex-direction: column; align-items: center; }
.pipe-frame {
  position: relative; width: min(420px, 86vw); aspect-ratio: 1;
  animation: floaty 7s ease-in-out infinite;
}
.hero-pipe {
  position: relative; z-index: 1; display: block;
  width: 100%; height: 100%; aspect-ratio: 1; border-radius: 50%;
  object-fit: cover; object-position: 52% 46%;
  border: 5px solid rgba(255,255,255,.14);
  box-shadow: 0 30px 70px rgba(6,20,39,.55);
}
/* rotating glow ring — sits behind the pipe, showing as a live ring around the edge */
.pipe-glow {
  position: absolute; inset: -15px; border-radius: 50%; z-index: 0; pointer-events: none;
  background: conic-gradient(from 0deg, transparent 0deg, #2c77f0 55deg, #38bdf8 128deg, #7dd3fc 172deg, transparent 232deg, transparent 360deg);
  filter: blur(4px); opacity: .95;
  animation: spin 7s linear infinite;
}
.pipe-glow::after {
  content: ""; position: absolute; inset: 4px; border-radius: 50%;
  box-shadow: 0 0 70px 10px rgba(56,189,248,.3);
}
/* animated "flowing water" shimmer over the pouring area */
.pipe-water {
  position: absolute; inset: 5px; border-radius: 50%; overflow: hidden; z-index: 2; pointer-events: none;
}
.pipe-water::before {
  content: ""; position: absolute; inset: -30%;
  background: repeating-linear-gradient(118deg, rgba(170,228,255,0) 0 9px, rgba(198,238,255,.6) 9px 12px, rgba(170,228,255,0) 12px 24px);
  mix-blend-mode: screen; opacity: .5;
  -webkit-mask: radial-gradient(56% 50% at 58% 74%, #000 12%, transparent 72%);
          mask: radial-gradient(56% 50% at 58% 74%, #000 12%, transparent 72%);
  animation: waterflow 1s linear infinite;
}
@keyframes floaty { 0%,100%{ transform: translateY(0);} 50%{ transform: translateY(-14px);} }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes waterflow { to { transform: translateY(24px); } }

/* ---------- animated pipe water overlay ---------- */
.pipe-flow { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 2; pointer-events: none; overflow: visible; }
.pf-stream, .pf-str, .pf-d, .pf-ripple { transform-box: fill-box; }
.pf-stream { transform-origin: 50% 0; }
.pf-str, .pf-d, .pf-ripple { transform-origin: center; opacity: 0; }
@media (prefers-reduced-motion: no-preference) {
  .pf-water { filter: url(#pfTurb); }
  .pf-stream { animation: pfSurge ease-in-out infinite; }
  .pf-stream.s1 { animation-duration: 2.6s; }
  .pf-stream.s2 { animation-duration: 1.7s; }
  .pf-stream.s3 { animation-duration: 2.1s; }
  .pf-stream.s4 { animation-duration: 3.1s; }
  .pf-stream.s5 { animation-duration: 2.4s; }
  .pf-str { animation: pfFall ease-in infinite; }
  .pf-str.str1 { animation-duration: 1.9s; animation-delay: 0s;  }
  .pf-str.str2 { animation-duration: 2.3s; animation-delay: .5s; }
  .pf-str.str3 { animation-duration: 2.7s; animation-delay: 1s;  }
  .pf-d { animation-name: pfSpray; animation-timing-function: ease-out; animation-iteration-count: infinite; }
  .pf-ripple { animation: pfRipple ease-out infinite; }
  .pf-ripple.rp1 { animation-duration: 2.4s; animation-delay: 0s;   }
  .pf-ripple.rp2 { animation-duration: 2.4s; animation-delay: .8s;  }
  .pf-ripple.rp3 { animation-duration: 2.4s; animation-delay: 1.6s; }
}
@keyframes pfSurge  { 0%, 100% { transform: scaleY(1); } 50% { transform: scaleY(1.05); } }
@keyframes pfFall   { 0% { opacity: 0; transform: translate(0,0); } 15% { opacity: .55; } 100% { opacity: 0; transform: translate(5px,32px); } }
@keyframes pfSpray  { 0% { opacity: 0; transform: translate(0,0); } 18% { opacity: .85; } 100% { opacity: 0; transform: translate(var(--dx,4px), var(--dy,18px)); } }
@keyframes pfRipple { 0% { opacity: .5; transform: scale(.35); } 100% { opacity: 0; transform: scale(1.5); } }

/* ---------- 24-hour emergency badge ---------- */
.em-badge {
  display: inline-flex; align-items: center; gap: 10px; margin-bottom: 18px;
  font-family: var(--ff-display); font-weight: 800; font-size: clamp(.86rem, 1.4vw, 1.06rem);
  letter-spacing: .04em; text-transform: uppercase; color: #fff;
  background: linear-gradient(90deg, rgba(239,68,68,.24), rgba(44,119,240,.22));
  border: 1px solid rgba(255,255,255,.2); border-radius: 999px; padding: 9px 20px 9px 15px;
  box-shadow: 0 8px 24px rgba(0,0,0,.22);
}
.em-badge__dot {
  width: 11px; height: 11px; border-radius: 50%; background: #ff5a52; flex: none;
  box-shadow: 0 0 0 0 rgba(255,90,82,.7); animation: empulse 1.8s ease-out infinite;
}
@keyframes empulse {
  0% { box-shadow: 0 0 0 0 rgba(255,90,82,.65); }
  70% { box-shadow: 0 0 0 13px rgba(255,90,82,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,90,82,0); }
}

.hero-badge {
  margin-top: 22px; position: relative; z-index: 2;
  background: #fff; color: var(--ink); border-radius: 16px; padding: 14px 18px;
  box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 12px;
}
.hero-badge .ic { width: 42px; height: 42px; border-radius: 12px; background: var(--grad-cta); display:grid; place-items:center; flex:none; }
.hero-badge .ic svg { width: 22px; height: 22px; color:#fff; }
.hero-badge small { display:block; color: var(--slate); font-size: .72rem; font-weight:600; text-transform:uppercase; letter-spacing:.06em; }
.hero-badge strong { font-family: var(--ff-display); font-size: 1.12rem; }

@media (max-width: 860px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-cta, .hero-trust { justify-content: center; }
  .hero-sub { margin-left:auto; margin-right:auto; }
  .hero-visual { order: -1; margin-bottom: 8px; }
  .pipe-frame { width: min(320px, 76vw); }
}

/* ---------- Services ---------- */
.bg-mist { background: var(--mist); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 900px){ .services-grid { grid-template-columns: repeat(2,1fr);} }
@media (max-width: 560px){ .services-grid { grid-template-columns: 1fr;} }
.svc-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 26px;
  box-shadow: var(--shadow-sm); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  position: relative; overflow: hidden;
}
.svc-card::before { content:""; position:absolute; top:0; left:0; height:4px; width:100%; background: var(--grad-blue); transform: scaleX(0); transform-origin:left; transition: transform .3s ease; }
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: #cfe0f4; }
.svc-card:hover::before { transform: scaleX(1); }
.svc-icon { width: 58px; height: 58px; border-radius: 16px; background: var(--mist-2); display:grid; place-items:center; margin-bottom: 18px; color: var(--blue-600); transition: background .25s ease, color .25s ease; }
.svc-card:hover .svc-icon { background: var(--grad-cta); color:#fff; }
.svc-icon svg { width: 30px; height: 30px; }
.svc-card h3 { font-size: 1.22rem; }
.svc-card p { color: var(--slate); font-size: 0.97rem; margin: 0; }

/* ---------- Why us band (trench bg) ---------- */
.why {
  position: relative; color: #fff; background: var(--navy-800);
  background-image: linear-gradient(180deg, rgba(6,20,39,.82), rgba(6,20,39,.92)), url("../img/trench.jpg");
  background-image: linear-gradient(180deg, rgba(6,20,39,.82), rgba(6,20,39,.92)), -webkit-image-set(url("../img/trench.webp") type("image/webp"), url("../img/trench.jpg") type("image/jpeg"));
  background-image: linear-gradient(180deg, rgba(6,20,39,.82), rgba(6,20,39,.92)), image-set(url("../img/trench.webp") type("image/webp"), url("../img/trench.jpg") type("image/jpeg"));
  background-size: cover; background-position: center;
}
.why .section-head h2, .why .section-head { color: #fff; }
.why-grid { display:grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
@media (max-width: 900px){ .why-grid { grid-template-columns: repeat(2,1fr);} }
@media (max-width: 520px){ .why-grid { grid-template-columns: 1fr;} }
.why-card {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius);
  padding: 26px 22px; backdrop-filter: blur(4px); transition: transform .25s ease, background .25s ease;
}
.why-card:hover { transform: translateY(-5px); background: rgba(255,255,255,.09); }
.why-card .wic { width: 50px; height:50px; border-radius: 14px; background: var(--grad-cta); display:grid; place-items:center; margin-bottom:16px; }
.why-card .wic svg { width: 26px; height:26px; color:#fff; }
.why-card h3 { color:#fff; font-size: 1.1rem; margin-bottom: 8px; }
.why-card p { color: rgba(255,255,255,.78); font-size: .94rem; margin:0; }

/* ---------- Process ---------- */
.steps { display:grid; grid-template-columns: repeat(4,1fr); gap: 26px; position: relative; }
@media (max-width: 820px){ .steps { grid-template-columns: repeat(2,1fr); gap: 30px;} }
@media (max-width: 460px){ .steps { grid-template-columns: 1fr;} }
.step { text-align:center; position: relative; }
.step .num {
  width: 64px; height: 64px; margin: 0 auto 16px; border-radius: 50%;
  background: var(--white); border: 2px solid var(--mist-2); color: var(--blue-600);
  display:grid; place-items:center; font-family: var(--ff-display); font-weight:900; font-size: 1.4rem;
  box-shadow: var(--shadow-sm); position: relative; z-index: 2;
}
.step h3 { font-size: 1.1rem; }
.step p { color: var(--slate); font-size: .94rem; margin:0; }
/* connecting line */
.steps::before {
  content:""; position:absolute; top: 32px; left: 12%; right: 12%; height:2px;
  background: linear-gradient(90deg, var(--mist-2), var(--blue-500), var(--mist-2));
  z-index:1;
}
@media (max-width: 820px){ .steps::before { display:none; } }

/* ---------- Service area ---------- */
.area { text-align:center; }
.chips { display:flex; flex-wrap:wrap; justify-content:center; gap: 12px; margin-top: 26px; }
.chip {
  font-family: var(--ff-display); font-weight:600; font-size: .92rem; color: var(--navy-700);
  background: var(--mist); border: 1px solid var(--line); border-radius: 999px; padding: 10px 18px;
}
.chip svg { width:15px; height:15px; color: var(--blue-600); vertical-align:-2px; margin-right:6px; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { border: 1px solid var(--line); border-radius: 14px; margin-bottom: 14px; background:#fff; overflow:hidden; transition: box-shadow .2s ease, border-color .2s ease; }
.faq-item.open { box-shadow: var(--shadow-sm); border-color:#cfe0f4; }
.faq-q {
  width:100%; text-align:left; background:none; border:0; cursor:pointer;
  font-family: var(--ff-display); font-weight:700; font-size: 1.05rem; color: var(--ink);
  padding: 20px 22px; display:flex; align-items:center; justify-content:space-between; gap:16px;
}
.faq-q .qmark { flex:none; width: 26px; height: 26px; border-radius:50%; background: var(--mist-2); color: var(--blue-600); display:grid; place-items:center; transition: transform .3s ease, background .3s ease, color .3s ease; }
.faq-item.open .qmark { background: var(--grad-cta); color:#fff; transform: rotate(45deg); }
.faq-q .qmark svg { width:15px; height:15px; }
.faq-a { max-height:0; overflow:hidden; transition: max-height .35s ease; }
.faq-a-inner { padding: 0 22px 20px; color: var(--slate); }

/* ---------- Contact / form ---------- */
.contact { background: var(--grad-navy); color:#fff; position:relative; overflow:hidden; }
.contact::before { content:""; position:absolute; width:480px;height:480px; top:-180px; left:-120px; border-radius:50%; background: radial-gradient(circle, rgba(44,119,240,.4), transparent 70%); filter: blur(60px); }
.contact-grid { position:relative; z-index:2; display:grid; grid-template-columns: 0.92fr 1.08fr; gap: clamp(30px,5vw,56px); align-items:start; }
@media (max-width: 880px){ .contact-grid { grid-template-columns:1fr; } }
.contact-info h2 { color:#fff; font-size: clamp(1.9rem,4vw,2.7rem); }
.contact-info p.lead { color: rgba(255,255,255,.82); font-size: 1.06rem; }
.contact-methods { list-style:none; padding:0; margin: 26px 0 0; display:grid; gap: 14px; }
.contact-methods li { display:flex; align-items:center; gap:14px; }
.contact-methods .cic { width:46px;height:46px;border-radius:12px; background: rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.14); display:grid; place-items:center; flex:none; }
.contact-methods .cic svg { width:22px;height:22px; color: var(--cyan-400); }
.contact-methods small { display:block; color: rgba(255,255,255,.6); font-size:.78rem; text-transform:uppercase; letter-spacing:.06em; font-weight:600; }
.contact-methods a, .contact-methods span.v { font-family: var(--ff-display); font-weight:700; font-size: 1.12rem; color:#fff; }
.emergency-note {
  margin-top: 24px; padding: 14px 18px; border-radius: 12px;
  background: rgba(56,189,248,.12); border: 1px solid rgba(56,189,248,.3);
  font-size: .92rem; color: rgba(255,255,255,.9);
}
.emergency-note strong { color: var(--cyan-300); }

.form-card { background:#fff; border-radius: var(--radius-lg); padding: clamp(24px, 4vw, 38px); box-shadow: var(--shadow-lg); color: var(--ink); }
.form-card h3 { font-size: 1.4rem; margin-bottom: 6px; }
.form-card .fc-sub { color: var(--slate); font-size: .95rem; margin-bottom: 22px; }
.field { margin-bottom: 16px; }
.field label { display:block; font-family: var(--ff-display); font-weight:600; font-size: .85rem; margin-bottom: 7px; color: var(--navy-700); }
.field label .req { color: var(--blue-600); }
.field input, .field select, .field textarea {
  width:100%; font-family: var(--ff-body); font-size: 1rem; color: var(--ink);
  padding: 13px 15px; border: 1.5px solid var(--line); border-radius: 11px; background: #fcfdff;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline:none; border-color: var(--blue-500); box-shadow: 0 0 0 4px rgba(44,119,240,.14);
}
.field-row { display:grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 480px){ .field-row { grid-template-columns:1fr; } }
.form-fineprint { font-size: .8rem; color: var(--slate-2); margin: 12px 0 0; text-align:center; }
.hp { position:absolute; left:-9999px; opacity:0; height:0; width:0; }

/* ---------- Footer ---------- */
.footer { background: var(--navy-900); color: rgba(255,255,255,.72); padding: 60px 0 26px; }
.footer-grid { display:grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: 36px; }
@media (max-width: 820px){ .footer-grid { grid-template-columns: 1fr 1fr; gap:30px;} }
@media (max-width: 480px){ .footer-grid { grid-template-columns: 1fr;} }
.footer h4 { color:#fff; font-size: .92rem; letter-spacing:.1em; text-transform:uppercase; margin-bottom: 16px; }
.footer ul { list-style:none; padding:0; margin:0; display:grid; gap:10px; }
.footer a:hover { color: var(--cyan-300); }
.footer .f-tag { margin: 16px 0 0; font-size:.92rem; max-width: 320px; }
.footer .f-call { font-family: var(--ff-display); font-weight:800; font-size:1.3rem; color:#fff; }
.footer-bottom {
  margin-top: 44px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1);
  display:flex; flex-wrap:wrap; gap:10px; justify-content:space-between; align-items:center; font-size:.85rem;
}
.footer-bottom a { color: var(--cyan-300); font-weight:600; }

/* ---------- Mobile sticky call bar ---------- */
.mobile-bar {
  position: fixed; left:0; right:0; bottom:0; z-index: 95; display:none;
  grid-template-columns: 1fr 1fr; gap: 0;
  background: var(--navy-800); border-top: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 -8px 24px rgba(6,20,39,.3);
  padding-bottom: env(safe-area-inset-bottom);
}
.mobile-bar a { display:flex; align-items:center; justify-content:center; gap:8px; padding: 14px; font-family: var(--ff-display); font-weight:700; font-size:.95rem; color:#fff; }
.mobile-bar a.call { background: var(--grad-cta); }
.mobile-bar svg { width:18px;height:18px; }
@media (max-width: 700px){ .mobile-bar { display:grid; } body { padding-bottom: calc(56px + env(safe-area-inset-bottom)); } }

/* ---------- Scroll reveal ---------- */
.reveal { opacity:0; transform: translateY(26px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity:1; transform: none; }
.reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; } .reveal.d4 { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity:1 !important; transform:none !important; }
  .hero-pipe, .hero-water, .pipe-frame, .pipe-glow, .pipe-water::before, .em-badge__dot { animation: none !important; }
}
