/* =========================================================
   eMobile Cleaning — Design System
   ========================================================= */

:root {
  /* Brand colours */
  --blue-900: #0a2c4d;
  --blue-800: #0e4276;
  --blue-700: #135b9e;
  --blue-600: #1773c4;
  --blue-500: #2b8fdc;
  --cyan-500: #06b6d4;
  --cyan-400: #22d3ee;
  --green-500: #10b981;
  --green-400: #34d399;

  --ink: #0f2236;
  --body: #44566b;
  --muted: #7388a0;
  --line: #e4ebf2;
  --bg: #ffffff;
  --bg-soft: #f4f8fc;
  --bg-tint: #eaf4fb;

  --white: #ffffff;
  --star: #ffb703;

  --radius-sm: 8px;
  --radius: 16px;
  --radius-lg: 26px;
  --shadow-sm: 0 2px 8px rgba(15, 34, 54, .06);
  --shadow: 0 14px 40px rgba(15, 34, 54, .10);
  --shadow-lg: 0 30px 70px rgba(10, 44, 77, .18);

  --maxw: 1180px;
  --font: "Plus Jakarta Sans", "Segoe UI", system-ui, -apple-system, sans-serif;

  --grad-brand: linear-gradient(120deg, var(--blue-700), var(--cyan-500));
  --grad-deep: linear-gradient(150deg, var(--blue-900) 0%, var(--blue-700) 55%, var(--cyan-500) 130%);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  color: var(--body);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
h1, h2, h3, h4 { color: var(--ink); line-height: 1.15; font-weight: 800; letter-spacing: -.02em; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
.section { padding: 92px 0; }
.section-sm { padding: 60px 0; }
.bg-soft { background: var(--bg-soft); }
.bg-tint { background: var(--bg-tint); }
.center { text-align: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .8rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--blue-600); background: var(--bg-tint);
  padding: 7px 14px; border-radius: 100px; margin-bottom: 18px;
}
.eyebrow.on-dark { color: var(--cyan-400); background: rgba(255,255,255,.10); }
.eyebrow svg { width: 15px; height: 15px; flex: none; }
h1.display { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2.title { font-size: clamp(1.8rem, 3.6vw, 2.7rem); }
.lead { font-size: 1.15rem; color: var(--body); }
.section-head { max-width: 680px; margin: 0 auto 56px; }
.section-head .lead { color: var(--muted); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: inherit; font-weight: 700; font-size: 1rem;
  padding: 14px 26px; border-radius: 100px; cursor: pointer;
  border: 2px solid transparent; transition: .25s ease; white-space: nowrap;
  background-origin: border-box;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--grad-brand); color: #fff; box-shadow: 0 12px 26px rgba(19,91,158,.32); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 18px 34px rgba(19,91,158,.42); }
.btn-ghost { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.4); }
.btn-ghost:hover { background: rgba(255,255,255,.22); }
.btn-outline { background: #fff; color: var(--blue-700); border-color: var(--line); }
.btn-outline:hover { border-color: var(--blue-500); color: var(--blue-600); }
.btn-light { background: #fff; color: var(--blue-700); }
.btn-light:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.btn-block { width: 100%; }

/* ---------- Top bar ---------- */
.topbar {
  background: var(--blue-900); color: #cfe3f5; font-size: .86rem;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 16px; min-height: 42px; }
.topbar a { color: #eaf4fb; font-weight: 600; }
.topbar .tb-left { display: flex; gap: 22px; flex-wrap: wrap; }
.topbar .tb-item { display: inline-flex; align-items: center; gap: 7px; }
.topbar svg { width: 15px; height: 15px; stroke: var(--cyan-400); }
.topbar .tb-right { display: inline-flex; gap: 14px; }
.topbar .tb-right a { display: grid; place-items: center; width: 28px; height: 28px; border-radius: 50%; background: rgba(255,255,255,.08); }
.topbar .tb-right svg { stroke: #fff; width: 14px; height: 14px; }
@media (max-width: 760px){ .topbar .tb-left .tb-item.hide-sm { display: none; } }

/* ---------- Header / Nav ---------- */
.header {
  position: sticky; top: 0; z-index: 60; background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px); border-bottom: 1px solid var(--line);
  transition: box-shadow .3s;
}
.header.scrolled { box-shadow: var(--shadow-sm); }
.nav { display: flex; align-items: center; justify-content: space-between; min-height: 76px; gap: 20px; }
.brand { display: flex; align-items: center; gap: 11px; font-weight: 800; color: var(--ink); font-size: 1.32rem; letter-spacing: -.03em; }
.brand .logo {
  width: 42px; height: 42px; border-radius: 12px; background: var(--grad-brand);
  display: grid; place-items: center; box-shadow: 0 8px 18px rgba(19,91,158,.34);
}
.brand .logo svg { width: 24px; height: 24px; }
.brand b { color: var(--blue-600); }
.brand small { display:block; font-size:.62rem; font-weight:600; letter-spacing:.18em; color:var(--muted); text-transform:uppercase; margin-top:-2px;}

.menu { display: flex; align-items: center; gap: 4px; }
.menu > li > a {
  display: inline-flex; align-items: center; gap: 5px; padding: 10px 14px;
  font-weight: 600; font-size: .97rem; color: var(--ink); border-radius: 10px; transition: .2s;
}
.menu > li > a:hover, .menu > li.current > a { color: var(--blue-600); background: var(--bg-tint); }
.menu .caret { width: 14px; height: 14px; transition: transform .2s; }
.has-drop { position: relative; }
.has-drop:hover .caret { transform: rotate(180deg); }
.dropdown {
  position: absolute; top: calc(100% + 10px); left: 50%; transform: translateX(-50%) translateY(8px);
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 12px; width: 480px; display: grid; grid-template-columns: 1fr 1fr; gap: 4px;
  opacity: 0; visibility: hidden; transition: .22s;
}
.has-drop:hover .dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown a {
  display: flex; align-items: center; gap: 11px; padding: 11px 12px; border-radius: 11px; transition: .18s;
  font-weight: 600; font-size: .92rem; color: var(--ink);
}
.dropdown a:hover { background: var(--bg-tint); }
.dropdown .di { width: 34px; height: 34px; border-radius: 9px; background: var(--bg-tint); display: grid; place-items: center; flex: none; }
.dropdown .di svg { width: 18px; height: 18px; stroke: var(--blue-600); }
.dropdown .drop-all { grid-column: 1 / -1; margin-top: 6px; font-weight: 700; color: var(--blue-600); background: var(--bg-tint); justify-content: flex-start; }
.dropdown .drop-all .di { background: var(--grad-brand); }
.dropdown .drop-all .di svg { stroke: #fff; }
.dropdown .drop-all:hover { background: var(--bg-tint); filter: brightness(.97); }
.nav-cta { display: flex; align-items: center; gap: 10px; }
.burger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.burger span { width: 26px; height: 3px; background: var(--ink); border-radius: 3px; transition: .3s; }
.burger.open span:nth-child(1){ transform: translateY(8px) rotate(45deg); }
.burger.open span:nth-child(2){ opacity: 0; }
.burger.open span:nth-child(3){ transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 980px){
  .menu, .nav-cta .btn { display: none; }
  .burger { display: flex; }
}

/* Mobile drawer */
.drawer {
  position: fixed; inset: 0 0 0 auto; width: min(360px, 86vw); background: #fff; z-index: 90;
  transform: translateX(100%); transition: transform .32s cubic-bezier(.4,0,.2,1);
  box-shadow: var(--shadow-lg); padding: 24px; overflow-y: auto;
}
.drawer.open { transform: translateX(0); }
.drawer-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; }
.drawer .x { background: var(--bg-soft); border: 0; width: 40px; height: 40px; border-radius: 10px; font-size: 1.4rem; cursor: pointer; color: var(--ink); }
.drawer nav a { display: block; padding: 13px 12px; font-weight: 600; color: var(--ink); border-radius: 10px; border-bottom: 1px solid var(--line); }
.drawer nav a:hover { background: var(--bg-tint); color: var(--blue-600); }
.drawer .sub { font-size: .78rem; text-transform: uppercase; letter-spacing: .12em; color: var(--muted); margin: 18px 0 4px; font-weight: 700; }
.drawer .btn { margin-top: 20px; }
.overlay { position: fixed; inset: 0; background: rgba(10,44,77,.5); z-index: 80; opacity: 0; visibility: hidden; transition: .3s; }
.overlay.open { opacity: 1; visibility: visible; }

/* ---------- Hero ---------- */
.hero { position: relative; background: var(--grad-deep); color: #fff; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 18% 22%, rgba(255,255,255,.12), transparent 32%),
                    radial-gradient(circle at 85% 80%, rgba(34,211,238,.22), transparent 38%);
}
.hero .bubbles { position: absolute; inset: 0; opacity: .5; }
.hero .container { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; gap: 50px; align-items: center; padding-top: 78px; padding-bottom: 88px; }
.hero h1 { color: #fff; }
.hero .lead { color: #d4e7f7; margin: 20px 0 30px; max-width: 540px; }
.hero .hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero .trust { display: flex; gap: 26px; margin-top: 34px; flex-wrap: wrap; }
.hero .trust .t { display: flex; flex-direction: column; }
.hero .trust .t b { font-size: 1.7rem; color: #fff; }
.hero .trust .t span { font-size: .82rem; color: #aacbe6; }
.hero .stars { color: var(--star); letter-spacing: 2px; }

.hero-card {
  background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.22);
  border-radius: var(--radius-lg); padding: 30px; backdrop-filter: blur(8px); box-shadow: var(--shadow-lg);
}
.hero-card h3 { color: #fff; font-size: 1.3rem; margin-bottom: 6px; }
.hero-card p.sub { color: #c6def2; font-size: .92rem; margin-bottom: 20px; }
.hero-card .field { margin-bottom: 13px; }
.hero-card label { display: block; font-size: .82rem; color: #cfe3f5; margin-bottom: 5px; font-weight: 600; }
.hero-card input, .hero-card select, .hero-card textarea {
  width: 100%; padding: 12px 14px; border-radius: 11px; border: 1px solid rgba(255,255,255,.3);
  background: rgba(255,255,255,.95); font-family: inherit; font-size: .95rem; color: var(--ink);
}
.hero-card .row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

@media (max-width: 920px){
  .hero .container { grid-template-columns: 1fr; gap: 38px; }
  .hero-card { order: 2; }
}

/* ---------- Trust strip ---------- */
.trust-strip { border-bottom: 1px solid var(--line); background: #fff; }
.trust-strip .container { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 20px; padding: 22px; }
.trust-strip .ti { display: flex; align-items: center; gap: 11px; font-weight: 600; color: var(--ink); font-size: .96rem; }
.trust-strip .ti svg { width: 26px; height: 26px; stroke: var(--green-500); flex: none; }

/* ---------- Service cards ---------- */
.grid { display: grid; gap: 26px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 920px){ .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px){ .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.scard {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 26px;
  transition: .3s; position: relative; overflow: hidden;
}
.scard::after { content:""; position:absolute; inset:0 0 auto 0; height:4px; background:var(--grad-brand); transform:scaleX(0); transform-origin:left; transition:.35s; }
.scard:hover { transform: translateY(-7px); box-shadow: var(--shadow); border-color: transparent; }
.scard:hover::after { transform: scaleX(1); }
.scard .ic { width: 58px; height: 58px; border-radius: 15px; background: var(--bg-tint); display: grid; place-items: center; margin-bottom: 18px; transition:.3s; }
.scard:hover .ic { background: var(--grad-brand); }
.scard .ic svg { width: 28px; height: 28px; stroke: var(--blue-600); transition:.3s; }
.scard:hover .ic svg { stroke: #fff; }
.scard h3 { font-size: 1.22rem; margin-bottom: 8px; }
.scard p { font-size: .96rem; color: var(--muted); margin-bottom: 16px; }
.scard .more { font-weight: 700; color: var(--blue-600); display: inline-flex; align-items: center; gap: 6px; font-size: .94rem; }
.scard .more svg { width: 16px; height: 16px; transition: .25s; }
.scard:hover .more svg { transform: translateX(4px); }

/* ---------- Feature / why ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
@media (max-width: 900px){ .split { grid-template-columns: 1fr; gap: 38px; } }
.feature-list { display: grid; gap: 20px; margin-top: 26px; }
.feature-list .fi { display: flex; gap: 16px; }
.feature-list .fi .fic { width: 48px; height: 48px; border-radius: 13px; background: var(--grad-brand); display: grid; place-items: center; flex: none; box-shadow: 0 8px 16px rgba(19,91,158,.28); }
.feature-list .fi .fic svg { width: 23px; height: 23px; stroke: #fff; }
.feature-list .fi h4 { font-size: 1.08rem; margin-bottom: 3px; }
.feature-list .fi p { font-size: .95rem; color: var(--muted); }

.media-card {
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); position: relative;
  background: var(--grad-deep); min-height: 460px; display: grid; place-items: center; padding: 30px;
}
.media-card .sheen { position:absolute; inset:0; background-image: radial-gradient(circle at 70% 20%, rgba(34,211,238,.35), transparent 45%), radial-gradient(circle at 20% 90%, rgba(255,255,255,.14), transparent 40%); }
.media-card .badge-float {
  position: absolute; background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); padding: 15px 18px;
  display: flex; align-items: center; gap: 12px;
}
.media-card .badge-float .bi { width: 42px; height: 42px; border-radius: 11px; background: var(--bg-tint); display: grid; place-items: center; flex:none;}
.media-card .badge-float .bi svg { width: 22px; height: 22px; stroke: var(--green-500); }
.media-card .badge-float b { color: var(--ink); display: block; font-size: .98rem; }
.media-card .badge-float span { font-size: .8rem; color: var(--muted); }
.media-card .bf-1 { top: 26px; left: -14px; }
.media-card .bf-2 { bottom: 30px; right: -14px; }
.media-card .center-emblem { position: relative; text-align: center; color: #fff; }
.media-card .center-emblem .ring { width: 130px; height: 130px; margin: 0 auto 18px; border-radius: 50%; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.3); display: grid; place-items: center; }
.media-card .center-emblem .ring svg { width: 62px; height: 62px; stroke: #fff; }
.media-card .center-emblem b { font-size: 1.5rem; display: block; }
.media-card .center-emblem span { color: #c6def2; }
@media (max-width:900px){ .media-card .bf-1{left:10px;} .media-card .bf-2{right:10px;} }

/* ---------- Checklist ---------- */
.checklist { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 26px; }
@media (max-width:560px){ .checklist { grid-template-columns: 1fr; } }
.checklist li { display: flex; align-items: flex-start; gap: 11px; font-weight: 600; color: var(--ink); padding: 4px 0; }
.checklist li svg { width: 22px; height: 22px; flex: none; stroke: var(--green-500); margin-top: 1px; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 26px; counter-reset: s; }
@media (max-width:900px){ .steps { grid-template-columns: repeat(2,1fr); } }
@media (max-width:520px){ .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: #fff; border: 2px dashed var(--blue-500); color: var(--blue-600); font-weight: 800; font-size: 1.5rem; display: grid; place-items: center; }
.step h4 { font-size: 1.12rem; margin-bottom: 7px; }
.step p { font-size: .94rem; color: var(--muted); }

/* ---------- Pricing ---------- */
.price-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; }
@media (max-width:900px){ .price-grid { grid-template-columns: 1fr; max-width:440px; margin:0 auto; } }
.price {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 34px 30px; position: relative;
}
.price.featured { background: var(--grad-deep); color: #fff; border: 0; box-shadow: var(--shadow-lg); transform: scale(1.03); }
.price.featured h3, .price.featured .amount { color: #fff; }
.price .tag { position: absolute; top: 22px; right: 22px; background: var(--green-500); color: #fff; font-size: .72rem; font-weight: 700; padding: 5px 12px; border-radius: 100px; letter-spacing: .04em; }
.price h3 { font-size: 1.3rem; }
.price .amount { font-size: 2.6rem; font-weight: 800; color: var(--ink); margin: 12px 0 2px; }
.price .amount span { font-size: 1rem; font-weight: 600; color: var(--muted); }
.price.featured .amount span { color: #c6def2; }
.price .pdesc { font-size: .92rem; color: var(--muted); margin-bottom: 22px; }
.price.featured .pdesc { color: #c6def2; }
.price ul { display: grid; gap: 11px; margin-bottom: 26px; }
.price li { display: flex; gap: 10px; align-items: flex-start; font-size: .95rem; }
.price li svg { width: 19px; height: 19px; stroke: var(--green-500); flex: none; margin-top: 2px; }
.price.featured li svg { stroke: var(--cyan-400); }

/* ---------- Testimonials ---------- */
.tcard { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; }
.tcard .stars { color: var(--star); letter-spacing: 2px; margin-bottom: 14px; font-size: 1.2rem; }
.tcard p { color: var(--ink); font-size: 1.02rem; font-style: italic; margin-bottom: 20px; }
.tcard .who { display: flex; align-items: center; gap: 13px; }
.tcard .who .av { width: 46px; height: 46px; border-radius: 50%; background: var(--grad-brand); color: #fff; display: grid; place-items: center; font-weight: 800; }
.tcard .who b { display: block; color: var(--ink); font-size: .98rem; }
.tcard .who span { font-size: .84rem; color: var(--muted); }

/* ---------- Areas ---------- */
.areas-grid { display: flex; flex-wrap: wrap; gap: 13px; justify-content: center; }
.area-chip {
  display: inline-flex; align-items: center; gap: 9px; background: #fff; border: 1px solid var(--line);
  padding: 13px 22px; border-radius: 100px; font-weight: 700; color: var(--ink); transition: .25s;
}
.area-chip svg { width: 18px; height: 18px; stroke: var(--blue-600); }
.area-chip:hover { border-color: var(--blue-500); color: var(--blue-600); transform: translateY(-3px); box-shadow: var(--shadow-sm); }

/* ---------- CTA band ---------- */
.cta-band { background: var(--grad-deep); color: #fff; border-radius: var(--radius-lg); padding: 56px; text-align: center; position: relative; overflow: hidden; }
.cta-band::before { content:""; position:absolute; inset:0; background-image: radial-gradient(circle at 15% 20%, rgba(34,211,238,.25), transparent 40%), radial-gradient(circle at 85% 90%, rgba(255,255,255,.12), transparent 40%); }
.cta-band > * { position: relative; }
.cta-band h2 { color: #fff; }
.cta-band p { color: #d4e7f7; max-width: 560px; margin: 14px auto 28px; }
.cta-band .row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
@media (max-width:600px){ .cta-band { padding: 40px 24px; } }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { background: var(--grad-deep); color: #fff; position: relative; overflow: hidden; }
.page-hero::before { content:""; position:absolute; inset:0; background-image: radial-gradient(circle at 80% 20%, rgba(34,211,238,.25), transparent 42%); }
.page-hero .container { position: relative; padding: 64px 22px 70px; }
.page-hero h1 { color: #fff; max-width: 760px; }
.page-hero p { color: #d4e7f7; max-width: 620px; margin-top: 16px; font-size: 1.12rem; }
.crumbs { display: flex; gap: 8px; align-items: center; font-size: .88rem; color: #aacbe6; margin-bottom: 18px; }
.crumbs a { color: #d4e7f7; font-weight: 600; }
.crumbs a:hover { color: #fff; }
.page-hero .hero-cta { margin-top: 26px; display:flex; gap:13px; flex-wrap:wrap; }

/* ---------- Prose / content ---------- */
.prose h2 { font-size: 1.7rem; margin: 0 0 16px; }
.prose h3 { font-size: 1.25rem; margin: 28px 0 12px; }
.prose p { margin-bottom: 16px; }
.prose > p:first-of-type { font-size: 1.12rem; color: var(--ink); }

.info-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-sm); }
.info-card h3 { font-size: 1.15rem; margin-bottom: 14px; display:flex; align-items:center; gap:10px; }
.info-card h3 svg { width: 22px; height: 22px; stroke: var(--blue-600); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
@media (max-width:900px){ .contact-grid { grid-template-columns: 1fr; } }
.form-box { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 34px; box-shadow: var(--shadow); }
.field { margin-bottom: 16px; }
.field label { display: block; font-weight: 600; color: var(--ink); font-size: .92rem; margin-bottom: 6px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; border: 1px solid var(--line); border-radius: 11px; font-family: inherit;
  font-size: .98rem; color: var(--ink); background: var(--bg-soft); transition: .2s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: 0; border-color: var(--blue-500); background: #fff; box-shadow: 0 0 0 4px rgba(43,143,220,.12); }
.field textarea { resize: vertical; min-height: 130px; }
.row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width:520px){ .row2 { grid-template-columns: 1fr; } }
.form-note { font-size: .82rem; color: var(--muted); margin-top: 14px; text-align: center; }
.form-success { background: #e7f8f0; border: 1px solid var(--green-400); color: #0a7a52; padding: 14px 16px; border-radius: 11px; margin-bottom: 18px; display: none; font-weight: 600; }
.form-success.show { display: block; }

.contact-line { display: flex; gap: 15px; align-items: flex-start; padding: 16px 0; border-bottom: 1px solid var(--line); }
.contact-line:last-child { border: 0; }
.contact-line .ci { width: 48px; height: 48px; border-radius: 13px; background: var(--bg-tint); display: grid; place-items: center; flex: none; }
.contact-line .ci svg { width: 22px; height: 22px; stroke: var(--blue-600); }
.contact-line b { color: var(--ink); display: block; }
.contact-line a, .contact-line span { color: var(--muted); }
.contact-line a:hover { color: var(--blue-600); }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); margin-bottom: 14px; overflow: hidden; }
.faq-q { width: 100%; text-align: left; background: none; border: 0; padding: 22px 24px; font-family: inherit; font-weight: 700; font-size: 1.06rem; color: var(--ink); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-q svg { width: 22px; height: 22px; stroke: var(--blue-600); flex: none; transition: .3s; }
.faq-item.open .faq-q svg { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a p { padding: 0 24px 22px; color: var(--muted); margin: 0; }

/* ---------- Blog ---------- */
.post-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: .3s; }
.post-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.post-card .thumb { height: 180px; background: var(--grad-brand); display: grid; place-items: center; }
.post-card .thumb svg { width: 56px; height: 56px; stroke: #fff; opacity: .85; }
.post-card .pbody { padding: 24px; }
.post-card .meta { font-size: .8rem; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; font-weight: 700; margin-bottom: 9px; }
.post-card h3 { font-size: 1.18rem; margin-bottom: 9px; }
.post-card p { font-size: .95rem; color: var(--muted); margin-bottom: 14px; }

/* ---------- Footer ---------- */
.footer { background: var(--blue-900); color: #b7d0e6; padding: 70px 0 0; }
.footer .cols { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 50px; }
@media (max-width:880px){ .footer .cols { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width:520px){ .footer .cols { grid-template-columns: 1fr; } }
.footer .brand { color: #fff; margin-bottom: 16px; }
.footer .brand small { color:#7fa6c8; }
.footer p { font-size: .94rem; line-height: 1.7; }
.footer h4 { color: #fff; font-size: 1rem; margin-bottom: 18px; }
.footer ul li { margin-bottom: 11px; }
.footer ul a { font-size: .94rem; transition: .2s; }
.footer ul a:hover { color: var(--cyan-400); padding-left: 4px; }
.footer .fcontact li { display: flex; gap: 10px; align-items: flex-start; font-size: .94rem; margin-bottom: 13px; }
.footer .fcontact svg { width: 18px; height: 18px; stroke: var(--cyan-400); flex: none; margin-top: 3px; }
.footer .socials { display: flex; gap: 10px; margin-top: 16px; }
.footer .socials a { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,.08); display: grid; place-items: center; transition: .25s; }
.footer .socials a:hover { background: var(--cyan-500); }
.footer .socials svg { width: 18px; height: 18px; stroke: #fff; }
.footer .bottom { border-top: 1px solid rgba(255,255,255,.12); padding: 22px 0; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: .86rem; }
.footer .bottom a:hover { color: var(--cyan-400); }

/* ---------- Floating call btn (mobile) ---------- */
.float-call { position: fixed; bottom: 18px; right: 18px; z-index: 70; display: none; width: 58px; height: 58px; border-radius: 50%; background: var(--green-500); box-shadow: 0 10px 26px rgba(16,185,129,.5); place-items: center; }
.float-call svg { width: 26px; height: 26px; stroke: #fff; }
@media (max-width:980px){ .float-call { display: grid; } }

/* ---------- Animations ---------- */
/* Hidden state only applies when JS is active (progressive enhancement) */
.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity .6s ease, transform .6s ease; }
.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce){ .js .reveal { opacity: 1; transform: none; } html { scroll-behavior: auto; } }

.bubble { position: absolute; border-radius: 50%; background: rgba(255,255,255,.06); animation: float 9s ease-in-out infinite; }
@keyframes float { 0%,100%{ transform: translateY(0) } 50%{ transform: translateY(-22px) } }

/* =========================================================
   Imagery
   ========================================================= */
/* Hero & page-hero background photo */
.hero-bg, .ph-bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0; pointer-events: none;
}
.hero-bg { opacity: .26; mix-blend-mode: luminosity; }
.ph-bg { opacity: .20; }
.hero .container, .page-hero .container { position: relative; z-index: 2; }
.hero .bubbles { z-index: 1; }

/* Service cards with a photo */
.scard .simg {
  height: 178px; margin: -30px -26px 22px; position: relative; overflow: hidden;
  background: var(--bg-tint);
}
.scard .simg img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.scard:hover .simg img { transform: scale(1.06); }
.scard .simg .badge {
  position: absolute; left: 14px; bottom: 14px; width: 42px; height: 42px;
  border-radius: 11px; background: #fff; display: grid; place-items: center; box-shadow: var(--shadow-sm);
}
.scard .simg .badge svg { width: 22px; height: 22px; stroke: var(--blue-600); }

/* Media card holding a real photo */
.media-card.has-photo { background: var(--blue-900); }
.media-card .mc-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.media-card .mc-tint {
  position: absolute; inset: 0;
  background: linear-gradient(150deg, rgba(10,44,77,.42), rgba(6,182,212,.12) 60%, rgba(10,44,77,.50));
}

/* Blog post image */
.post-card .thumb img { width: 100%; height: 100%; object-fit: cover; }

/* Inline content image (prose pages) */
.content-img { border-radius: var(--radius-lg); box-shadow: var(--shadow); width: 100%; object-fit: cover; }

/* Google map embed */
.gmap { display: block; width: 100%; border: 0; border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.map-wrap { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }

/* Areas page: town cards with service chips */
.town-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 22px; }
.town-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px; transition: .25s; position: relative; overflow: hidden; display: flex; flex-direction: column;
}
.town-card::after { content:""; position:absolute; inset:0 0 auto 0; height:3px; background:var(--grad-brand); transform:scaleX(0); transform-origin:left; transition:.35s; }
.town-card:hover { box-shadow: var(--shadow); border-color: transparent; transform: translateY(-4px); }
.town-card:hover::after { transform: scaleX(1); }
.tc-head { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.tc-head .ic { width: 42px; height: 42px; border-radius: 11px; background: var(--bg-tint); display: grid; place-items: center; flex: none; transition: .25s; }
.tc-head .ic svg { width: 21px; height: 21px; stroke: var(--blue-600); transition: .25s; }
.town-card:hover .tc-head .ic { background: var(--grad-brand); }
.town-card:hover .tc-head .ic svg { stroke: #fff; }
.tc-head .tc-name { display: flex; flex-direction: column; line-height: 1.2; }
.tc-head .tc-name b { color: var(--ink); font-size: 1.12rem; font-weight: 800; letter-spacing: -.01em; }
.tc-head .tc-name small { color: var(--muted); font-size: .74rem; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; margin-top: 2px; }
.tc-head a:hover .tc-name b { color: var(--blue-600); }
.tc-chips { display: grid; gap: 8px; margin-bottom: 18px; }
.tc-chips a {
  display: flex; align-items: center; gap: 9px; font-size: .9rem; font-weight: 600; color: var(--ink);
  background: var(--bg-soft); border: 1px solid var(--line); padding: 10px 14px; border-radius: 11px; transition: .18s;
}
.tc-chips a::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--cyan-500); flex: none; transition: .18s; }
.tc-chips a:hover { background: var(--blue-600); color: #fff; border-color: var(--blue-600); }
.tc-chips a:hover::before { background: #fff; }
.tc-more { margin-top: auto; display: inline-flex; align-items: center; gap: 6px; font-weight: 700; font-size: .9rem; color: var(--blue-600); }
.tc-more svg { width: 16px; height: 16px; transition: .2s; }
.town-card:hover .tc-more svg { transform: translateX(4px); }
.tc-toggle { display: none; }

/* Mobile: collapse each town's services into a tap-to-expand accordion */
@media (max-width: 767px){
  .tc-head { width: 100%; }
  .tc-toggle {
    display: grid; place-items: center; margin-left: auto; flex: none; width: 38px; height: 38px;
    border-radius: 10px; background: var(--bg-soft); border: 1px solid var(--line); cursor: pointer; color: var(--blue-600);
  }
  .tc-toggle svg { width: 20px; height: 20px; transition: transform .25s; }
  .town-card.open .tc-toggle svg { transform: rotate(180deg); }
  .town-card .tc-chips, .town-card .tc-more { display: none; }
  .town-card.open .tc-chips { display: grid; }
  .town-card.open .tc-more { display: inline-flex; margin-top: 14px; }
  .town-card { margin-bottom: 0; }
  .town-grid { gap: 12px; }
}

/* service x town: other-links chips row */
.svc-chips { display: flex; flex-wrap: wrap; gap: 11px; justify-content: center; }

@media (prefers-reduced-motion: reduce){ .scard:hover .simg img { transform: none; } }
