@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@500;600;700;800&family=Inter:wght@400;500;600;700;800&display=swap");

:root {
  --ink: #0b1f3a;
  --ink-soft: #45607f;
  --blue: #1266d6;
  --blue-2: #1f9cf0;
  --blue-deep: #073f94;
  --mint: #e8f3ff;
  --paper: #f6faff;
  --cream: #ffffff;
  --gold: #64c7ff;
  --coral: #2b7fff;
  --sky: #dff4ff;
  --line: #dceaf8;
  --line-soft: #eaf2fc;

  --grad-blue: linear-gradient(135deg, #1f9cf0 0%, #1266d6 48%, #0a4fb0 100%);
  --grad-deep: linear-gradient(135deg, #07172c 0%, #0b356f 58%, #1266d6 120%);
  --grad-sky: linear-gradient(135deg, #8fd6ff 0%, #4fb3f6 100%);
  --grad-text: linear-gradient(120deg, #0b1f3a 0%, #1266d6 55%, #1f9cf0 100%);

  --shadow-sm: 0 2px 8px rgba(11, 31, 58, .06), 0 1px 2px rgba(11, 31, 58, .05);
  --shadow: 0 18px 48px rgba(11, 31, 58, .12);
  --shadow-lg: 0 32px 80px rgba(11, 31, 58, .18);
  --shadow-blue: 0 16px 38px rgba(18, 102, 214, .30);
  --glass: rgba(255, 255, 255, .72);

  --radius-sm: 12px;
  --radius: 18px;
  --radius-lg: 26px;
  --max: 1180px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; }

::selection { background: rgba(31, 156, 240, .22); color: var(--ink); }

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 60;
  background: var(--ink);
  color: #fff;
  padding: .65rem .9rem;
  border-radius: var(--radius-sm);
}
.skip-link:focus { top: 1rem; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(246, 250, 255, .7);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border-bottom: 1px solid transparent;
  transition: background .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
}
.site-header.scrolled {
  background: rgba(255, 255, 255, .82);
  border-bottom-color: rgba(18, 102, 214, .12);
  box-shadow: 0 10px 30px rgba(11, 31, 58, .07);
}

.nav-shell {
  max-width: var(--max);
  margin: 0 auto;
  padding: .8rem 1.1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: min(220px, 58vw);
  transition: transform .3s var(--ease);
}
.brand:hover { transform: scale(1.03); }

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: var(--radius-sm);
  color: var(--ink);
  place-items: center;
  box-shadow: var(--shadow-sm);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.nav-toggle:hover { transform: translateY(-1px); box-shadow: var(--shadow); }
.nav-toggle svg { width: 22px; height: 22px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: .2rem;
}

.nav-links a {
  position: relative;
  text-decoration: none;
  font-weight: 650;
  font-size: .94rem;
  padding: .6rem .8rem;
  border-radius: var(--radius-sm);
  color: var(--ink-soft);
  transition: color .25s var(--ease), background .25s var(--ease);
}
.nav-links a:not(.button)::after {
  content: "";
  position: absolute;
  left: .8rem;
  right: .8rem;
  bottom: .42rem;
  height: 2px;
  border-radius: 2px;
  background: var(--grad-blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}
.nav-links a:not(.button):hover { color: var(--ink); }
.nav-links a:not(.button):hover::after,
.nav-links a:not(.button)[aria-current="page"]::after { transform: scaleX(1); }
.nav-links a[aria-current="page"] { color: var(--ink); }

.nav-links .button,
.nav-links .button:hover,
.nav-links .button[aria-current="page"] {
  color: #fff;
  margin-left: .35rem;
}

/* ---------- Buttons ---------- */
.button,
button.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  min-height: 48px;
  padding: .85rem 1.25rem;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--grad-blue);
  background-size: 160% 160%;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: .005em;
  cursor: pointer;
  overflow: hidden;
  box-shadow: var(--shadow-blue);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background-position .5s var(--ease);
  isolation: isolate;
}
.button::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, .55) 50%, transparent 80%);
  transform: translateX(-120%);
  transition: transform .7s var(--ease);
}
.button:hover {
  transform: translateY(-3px);
  background-position: 100% 50%;
  box-shadow: 0 22px 46px rgba(18, 102, 214, .38);
}
.button:hover::before { transform: translateX(120%); }
.button:active { transform: translateY(-1px); }

.button.secondary {
  background: rgba(255, 255, 255, .9);
  color: var(--ink);
  border-color: var(--line);
  box-shadow: var(--shadow-sm);
}
.button.secondary:hover {
  background: #fff;
  border-color: rgba(18, 102, 214, .35);
  box-shadow: var(--shadow);
}

.button.gold {
  background: linear-gradient(135deg, #8fd6ff 0%, #4fb3f6 100%);
  color: #06243f;
  box-shadow: 0 16px 38px rgba(79, 179, 246, .42);
}
.button.gold:hover { box-shadow: 0 24px 50px rgba(79, 179, 246, .52); }

.button svg, .icon { width: 19px; height: 19px; flex: 0 0 auto; }

/* ---------- Layout ---------- */
.section { padding: 5.5rem 1.1rem; position: relative; }
.section.tight { padding-top: 4rem; padding-bottom: 4rem; }
.section.alt { background: #fff; }
.section.alt::before,
.section.alt::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}
.section.alt::before { top: 0; }
.section.alt::after { bottom: 0; }
.section.mint-band {
  background:
    radial-gradient(circle at 88% 0%, rgba(100, 199, 255, .22), transparent 40%),
    linear-gradient(120deg, #eef7ff, #dff4ff);
}

.container { max-width: var(--max); margin: 0 auto; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin: 0 0 .9rem;
  color: var(--blue);
  text-transform: uppercase;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .16em;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: var(--grad-blue);
}

h1, h2, h3 {
  font-family: "Plus Jakarta Sans", Inter, sans-serif;
  line-height: 1.06;
  margin: 0;
  letter-spacing: -.022em;
  font-weight: 800;
}

h1 {
  font-size: clamp(2.9rem, 5.6vw, 5.1rem);
  max-width: 920px;
}
h2 { font-size: clamp(2rem, 3.3vw, 3rem); max-width: 850px; }
h3 { font-size: 1.3rem; letter-spacing: -.015em; }

p { margin: 0; }

.lead {
  font-size: clamp(1.08rem, 2vw, 1.28rem);
  color: var(--ink-soft);
  max-width: 730px;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 760px;
  display: grid;
  align-items: center;
  background:
    radial-gradient(circle at 84% 12%, rgba(100, 199, 255, .30), transparent 30%),
    radial-gradient(circle at 8% 92%, rgba(31, 156, 240, .18), transparent 36%),
    linear-gradient(125deg, #f6faff 0%, #ffffff 42%, #e8f3ff 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: -30% -10% auto auto;
  width: 70vw;
  height: 70vw;
  max-width: 760px;
  max-height: 760px;
  background:
    radial-gradient(closest-side, rgba(31, 156, 240, .22), transparent),
    conic-gradient(from 120deg at 50% 50%, rgba(100, 199, 255, .18), rgba(18, 102, 214, .14), rgba(100, 199, 255, .18));
  filter: blur(10px);
  border-radius: 50%;
  animation: heroFloat 16s ease-in-out infinite;
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto -12vw -20vw 50vw;
  height: 38vw;
  min-height: 280px;
  background: radial-gradient(circle, rgba(31, 156, 240, .20), transparent 68%);
  pointer-events: none;
}
@keyframes heroFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-3%, 4%) scale(1.06); }
}

.hero-grid {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
  padding: 4.4rem 1.1rem 3.6rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
  align-items: center;
  gap: 2.6rem;
}

.hero-copy { position: relative; z-index: 2; }
.hero-copy h1 {
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-copy .lead { margin-top: 1.3rem; }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  margin-top: 1.8rem;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .9rem;
  margin-top: 2rem;
  max-width: 720px;
}
.trust-row > div,
.trust-item {
  background: rgba(255, 255, 255, .7);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, .9);
  border-radius: var(--radius);
  padding: 1rem 1.05rem;
  font-weight: 750;
  color: var(--ink);
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.trust-row > div:hover,
.trust-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.trust-row > div span,
.trust-item span {
  display: block;
  font-size: .82rem;
  font-weight: 550;
  color: var(--ink-soft);
  margin-top: .25rem;
}

.hero-visual {
  align-self: stretch;
  display: grid;
  align-items: center;
}
.hero-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, .6);
  background: #fff;
  animation: cardFloat 7s ease-in-out infinite;
}
@keyframes cardFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.hero-frame::before {
  content: "";
  display: block;
  aspect-ratio: 1.18 / 1;
  background-image: linear-gradient(180deg, rgba(11, 31, 58, .05), rgba(11, 31, 58, .42)), url("hero-clean-home.svg");
  background-size: cover;
  background-position: center;
}

.quote-panel {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  background: rgba(255, 255, 255, .82);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: var(--radius);
  padding: 1.1rem 1.2rem;
  display: grid;
  gap: .4rem;
  box-shadow: var(--shadow);
}
.quote-panel strong { font-size: 1.2rem; font-family: "Plus Jakarta Sans", sans-serif; letter-spacing: -.01em; }
.quote-panel span { color: var(--ink-soft); font-weight: 550; }

/* ---------- Hero strip ---------- */
.hero-strip {
  position: relative;
  background: var(--grad-deep);
  color: #fff;
  overflow: hidden;
}
.hero-strip::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 0%, rgba(100, 199, 255, .2), transparent 50%);
  pointer-events: none;
}
.strip-grid {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.2rem 1.1rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}
.strip-grid div {
  display: flex;
  gap: .6rem;
  align-items: center;
  font-weight: 700;
  font-size: .98rem;
}
.strip-grid .icon { color: var(--gold); }

/* ---------- Section heads ---------- */
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.2rem;
}
.section-head .lead { max-width: 560px; }
.section-head h2 { font-size: clamp(2rem, 3vw, 2.85rem); }

/* ---------- Service cards ---------- */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.service-card,
.area-card,
.testimonial,
.faq-item,
.process-step,
.value-card {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: var(--radius);
}

.service-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 100%;
  box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(31, 156, 240, .5), transparent 40%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity .4s var(--ease);
  pointer-events: none;
}
.service-card:hover {
  transform: translateY(-8px);
  border-color: transparent;
  box-shadow: var(--shadow-lg);
}
.service-card:hover::after { opacity: 1; }
.service-card img {
  width: 100%;
  aspect-ratio: 1.55 / 1;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.service-card:hover img { transform: scale(1.06); }

.service-body {
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.service-body .button,
.service-body .text-link { margin-top: auto; align-self: flex-start; }

.service-body p,
.value-card p,
.process-step p,
.area-card p,
.testimonial p,
.faq-item p { color: var(--ink-soft); }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: var(--blue);
  font-weight: 700;
  text-decoration: none;
}
.text-link::after {
  content: "→";
  transition: transform .3s var(--ease);
}
.text-link:hover::after { transform: translateX(5px); }

/* ---------- Split / feature ---------- */
.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, .76fr);
  gap: 3.2rem;
  align-items: center;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 1.6rem 0 0;
  display: grid;
  gap: .85rem;
}
.check-list li {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: .7rem;
  align-items: start;
  color: var(--ink-soft);
  font-weight: 550;
}
.check-list svg {
  width: 32px;
  height: 32px;
  padding: 6px;
  border-radius: 50%;
  background: var(--mint);
  color: var(--blue);
}

.feature-wall {
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(145deg, #fff, var(--mint));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.feature-wall img {
  width: 100%;
  aspect-ratio: 1.2 / 1;
  object-fit: cover;
}
.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}
.stat { padding: 1.2rem 1rem; border-right: 1px solid var(--line); }
.stat:last-child { border-right: 0; }
.stat strong {
  display: block;
  font-size: 1.7rem;
  font-family: "Plus Jakarta Sans", sans-serif;
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat span { color: var(--ink-soft); font-weight: 550; font-size: .9rem; }

/* ---------- Process / value / area grids ---------- */
.process-grid,
.value-grid,
.area-grid,
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.process-step,
.value-card,
.area-card,
.testimonial,
.faq-item {
  padding: 1.6rem;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.process-step:hover,
.value-card:hover,
.area-card:hover,
.testimonial:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: rgba(18, 102, 214, .2);
}

.process-grid { position: relative; }
.process-step { position: relative; }
.step-number {
  position: relative;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--grad-blue);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 1.15rem;
  font-family: "Plus Jakarta Sans", sans-serif;
  margin-bottom: 1.1rem;
  box-shadow: var(--shadow-blue);
}

/* Breathing room between card headings and their text */
.area-card h3,
.value-card h3,
.process-step h3 { margin-bottom: .55rem; }

/* Keep big headings from crowding the paragraph directly beneath them */
h1 + .lead,
h2 + .lead { margin-top: 1.15rem; }

.value-card .icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  display: grid;
  place-items: center;
  background: var(--mint);
  color: var(--blue);
  margin-bottom: 1.1rem;
  transition: transform .35s var(--ease), background .35s var(--ease);
}
.value-card:hover .icon-wrap {
  transform: rotate(-6deg) scale(1.06);
  background: var(--grad-blue);
  color: #fff;
}
.value-card .icon-wrap svg { width: 26px; height: 26px; }

/* ---------- Quote / booking section ---------- */
.quote-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 8%, rgba(100, 199, 255, .26), transparent 30%),
    var(--grad-deep);
  color: #fff;
}
.quote-section::after {
  content: "";
  position: absolute;
  inset: auto -10% -30% 40%;
  height: 40vw;
  background: radial-gradient(circle, rgba(100, 199, 255, .18), transparent 65%);
  pointer-events: none;
}
.quote-section .container { position: relative; z-index: 1; }
.quote-section .lead,
.quote-section .eyebrow { color: rgba(255, 255, 255, .82); }
.quote-section .eyebrow { color: var(--gold); }

.quote-layout {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(360px, 1fr);
  gap: 2.6rem;
  align-items: start;
}
.quote-form {
  background: #fff;
  color: var(--ink);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: grid;
  gap: .95rem;
  box-shadow: var(--shadow-lg);
}

.booking-form {
  background: rgba(255, 255, 255, .98);
  color: var(--ink);
  border-radius: var(--radius-lg);
  padding: 1.6rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .62fr);
  gap: 1.1rem;
  border: 1px solid rgba(255, 255, 255, .3);
  box-shadow: var(--shadow-lg);
}
.booking-layout > .booking-form { grid-template-columns: 1fr; }
.booking-layout > .booking-form .price-card { position: static; }
.booking-form > .booking-layout { grid-column: 1 / -1; }

.booking-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .52fr);
  gap: 1.4rem;
  align-items: start;
}
.booking-panel { display: grid; gap: 1rem; }

.option-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .7rem;
}
.option-grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.option-tile { position: relative; }
.option-tile input { position: absolute; opacity: 0; pointer-events: none; }
.option-tile span {
  min-height: 76px;
  display: grid;
  align-content: center;
  gap: .15rem;
  padding: .85rem;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--ink);
  font-weight: 750;
  cursor: pointer;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease), transform .25s var(--ease), background .25s var(--ease);
}
.option-tile span:hover { border-color: rgba(18, 102, 214, .4); transform: translateY(-2px); }
.option-tile small { color: var(--ink-soft); font-weight: 550; line-height: 1.25; }
.option-tile input:checked + span {
  border-color: var(--blue);
  background: linear-gradient(135deg, #eef7ff, #fff);
  box-shadow: 0 0 0 3px rgba(18, 102, 214, .14), var(--shadow-sm);
}

.price-card {
  position: sticky;
  top: 96px;
  background: var(--grad-deep);
  color: #fff;
  border-radius: var(--radius);
  padding: 1.4rem;
  display: grid;
  gap: 1.05rem;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.price-card .eyebrow { color: var(--gold); }
.price-card .form-note { color: rgba(255, 255, 255, .72); }
.price-total {
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  line-height: .95;
  font-weight: 800;
  font-family: "Plus Jakarta Sans", sans-serif;
  letter-spacing: -.02em;
  background: linear-gradient(120deg, #fff, #bfe5ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.price-meta {
  display: grid;
  gap: .5rem;
  padding: .95rem;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, .07);
}
.price-line {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: rgba(255, 255, 255, .82);
  font-size: .92rem;
}
.price-line strong { color: #fff; }

.addon-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .6rem;
}
.addon {
  display: flex;
  align-items: center;
  gap: .55rem;
  padding: .8rem;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--ink-soft);
  font-weight: 650;
  cursor: pointer;
  transition: border-color .25s var(--ease), background .25s var(--ease);
}
.addon:hover { border-color: rgba(18, 102, 214, .35); background: #fafdff; }
.addon input { width: 18px; min-height: 18px; accent-color: var(--blue); }

.booking-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .7rem;
}

.status-message {
  display: none;
  padding: .85rem 1rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
}
.status-message.show { display: block; background: var(--mint); color: var(--ink); }
.status-message.error { display: block; background: #ffe9e9; color: #7c1d1d; }

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .9rem;
}
.field { display: grid; gap: .35rem; }
.field.full { grid-column: 1 / -1; }

label { font-weight: 700; font-size: .9rem; }

input, select, textarea {
  width: 100%;
  min-height: 48px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  padding: .75rem .85rem;
  font: inherit;
  color: var(--ink);
  background: #fff;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
textarea { min-height: 118px; resize: vertical; }
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(31, 156, 240, .18);
}
.form-note { color: var(--ink-soft); font-size: .9rem; }

.contact-stack { display: grid; gap: .85rem; margin-top: 1.5rem; }
.contact-pill {
  display: flex;
  align-items: center;
  gap: .8rem;
  padding: .95rem 1.05rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .14);
  color: #fff;
  text-decoration: none;
  font-weight: 650;
  transition: background .25s var(--ease), transform .25s var(--ease);
}
.contact-pill:hover { background: rgba(255, 255, 255, .15); transform: translateX(4px); }
.contact-pill svg { color: var(--gold); }

/* ---------- Page hero (subpages) ---------- */
.page-hero {
  position: relative;
  overflow: hidden;
  padding: 4.6rem 1.1rem 3.6rem;
  background:
    radial-gradient(circle at 90% 8%, rgba(100, 199, 255, .26), transparent 32%),
    radial-gradient(circle at 0% 100%, rgba(31, 156, 240, .14), transparent 40%),
    linear-gradient(120deg, #fff, var(--mint));
}
.page-hero h1 {
  font-size: clamp(2.5rem, 4.8vw, 4.35rem);
  max-width: 840px;
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.page-hero .lead { font-size: clamp(1.05rem, 1.6vw, 1.2rem); }
.page-hero .container { position: relative; z-index: 1; display: grid; gap: 1rem; }

.breadcrumb {
  display: flex;
  gap: .45rem;
  align-items: center;
  color: var(--ink-soft);
  font-weight: 600;
  font-size: .92rem;
}
.breadcrumb a { color: var(--blue); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }

/* ---------- Service detail ---------- */
.service-detail {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(320px, .4fr);
  gap: 2.6rem;
  align-items: start;
}
.detail-main { display: grid; gap: 2.2rem; }
.detail-block { display: grid; gap: 1rem; }

.sidebar-box {
  position: sticky;
  top: 100px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}
.sidebar-box .button { width: 100%; margin-top: 1rem; }

.included-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .85rem;
}
.included-grid div {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: .95rem 1rem .95rem 2.4rem;
  background: #fff;
  font-weight: 600;
  color: var(--ink-soft);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.included-grid div::before {
  content: "✓";
  position: absolute;
  left: .9rem;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--mint);
  color: var(--blue);
  font-size: .72rem;
  font-weight: 900;
}
.included-grid div:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
  border-color: rgba(18, 102, 214, .25);
}

.faq-list { display: grid; gap: .85rem; }
.faq-item { display: grid; gap: .45rem; }

/* ---------- Footer ---------- */
.footer {
  position: relative;
  background: #07172c;
  color: #fff;
  padding: 4rem 1.1rem 1.4rem;
  overflow: hidden;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-blue);
}
.footer-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr repeat(3, minmax(0, .7fr));
  gap: 2rem;
}
.footer a { color: rgba(255, 255, 255, .76); text-decoration: none; transition: color .2s var(--ease); }
.footer a:hover { color: var(--gold); }
.footer h2, .footer h3 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1rem;
  margin-bottom: .9rem;
}
.footer p { color: rgba(255, 255, 255, .74); }
.footer-links { display: grid; gap: .5rem; }
.footer-bottom {
  max-width: var(--max);
  margin: 2.4rem auto 0;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, .14);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: rgba(255, 255, 255, .6);
  font-size: .9rem;
}

.success-message {
  display: none;
  padding: .85rem 1rem;
  border-radius: var(--radius-sm);
  background: var(--mint);
  color: var(--ink);
  font-weight: 700;
}
.success-message.show { display: block; }

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }
[data-reveal-delay="1"] { transition-delay: .08s; }
[data-reveal-delay="2"] { transition-delay: .16s; }
[data-reveal-delay="3"] { transition-delay: .24s; }
[data-reveal-delay="4"] { transition-delay: .32s; }
[data-reveal-delay="5"] { transition-delay: .4s; }

/* ---------- Responsive ---------- */
@media (max-width: 920px) {
  .nav-toggle { display: grid; }
  .nav-links {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: 76px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: rgba(255, 255, 255, .96);
    backdrop-filter: blur(16px);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: .6rem;
    box-shadow: var(--shadow-lg);
  }
  .nav-links.open { display: flex; animation: navDrop .3s var(--ease); }
  @keyframes navDrop { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }
  .nav-links a { padding: .85rem; }
  .nav-links a:not(.button)::after { display: none; }

  .hero { min-height: 0; }
  .hero-grid, .split, .quote-layout, .service-detail, .booking-layout { grid-template-columns: 1fr; }
  .hero-grid { padding-top: 3rem; }
  .hero-frame { animation: none; }

  .service-grid, .process-grid, .value-grid, .area-grid, .testimonial-grid, .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .section-head { display: grid; }
  .strip-grid { grid-template-columns: 1fr 1fr; }
  .sidebar-box, .price-card { position: static; }
}

@media (max-width: 640px) {
  .section { padding: 4rem 1rem; }
  .page-hero { padding: 3.6rem 1rem 2.8rem; }
  .hero-actions, .footer-bottom { flex-direction: column; align-items: stretch; }
  .button { width: 100%; }
  .trust-row, .service-grid, .process-grid, .value-grid, .area-grid,
  .testimonial-grid, .form-grid, .option-grid, .option-grid.two,
  .addon-list, .booking-actions, .included-grid, .footer-grid,
  .strip-grid, .stat-grid { grid-template-columns: 1fr; }
  .hero-frame::before { aspect-ratio: 1 / .82; }
  .quote-panel { position: relative; left: auto; right: auto; bottom: auto; margin: -1rem 1rem 1rem; }
  .brand { width: 200px; }
}

/* ---------- Extra motion & polish ---------- */

/* Hero: drifting cleaning bubbles */
.hero-bubbles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}
.hero-bubbles span {
  position: absolute;
  bottom: -70px;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 28%, rgba(255, 255, 255, .98), rgba(120, 205, 255, .6) 55%, rgba(31, 156, 240, .32));
  box-shadow: inset 0 0 10px rgba(255, 255, 255, .8), 0 8px 22px rgba(31, 156, 240, .24);
  opacity: 0;
  animation: bubbleRise linear infinite;
}
.hero-bubbles span:nth-child(1)  { left: 4%;  width: 26px; height: 26px; animation-duration: 12s; animation-delay: -2s; }
.hero-bubbles span:nth-child(2)  { left: 11%; width: 14px; height: 14px; animation-duration: 10s; animation-delay: -6s; }
.hero-bubbles span:nth-child(3)  { left: 18%; width: 34px; height: 34px; animation-duration: 15s; animation-delay: -11s; }
.hero-bubbles span:nth-child(4)  { left: 25%; width: 12px; height: 12px; animation-duration: 9s;  animation-delay: -4s; }
.hero-bubbles span:nth-child(5)  { left: 32%; width: 22px; height: 22px; animation-duration: 13s; animation-delay: -8s; }
.hero-bubbles span:nth-child(6)  { left: 39%; width: 16px; height: 16px; animation-duration: 11s; animation-delay: -1s; }
.hero-bubbles span:nth-child(7)  { left: 46%; width: 28px; height: 28px; animation-duration: 16s; animation-delay: -13s; }
.hero-bubbles span:nth-child(8)  { left: 53%; width: 13px; height: 13px; animation-duration: 10s; animation-delay: -5s; }
.hero-bubbles span:nth-child(9)  { left: 60%; width: 20px; height: 20px; animation-duration: 13s; animation-delay: -9s; }
.hero-bubbles span:nth-child(10) { left: 66%; width: 30px; height: 30px; animation-duration: 17s; animation-delay: -3s; }
.hero-bubbles span:nth-child(11) { left: 72%; width: 15px; height: 15px; animation-duration: 11s; animation-delay: -7s; }
.hero-bubbles span:nth-child(12) { left: 78%; width: 23px; height: 23px; animation-duration: 14s; animation-delay: -12s; }
.hero-bubbles span:nth-child(13) { left: 84%; width: 12px; height: 12px; animation-duration: 9s;  animation-delay: -2.5s; }
.hero-bubbles span:nth-child(14) { left: 90%; width: 18px; height: 18px; animation-duration: 13s; animation-delay: -6.5s; }
.hero-bubbles span:nth-child(15) { left: 95%; width: 20px; height: 20px; animation-duration: 12s; animation-delay: -10s; }
.hero-bubbles span:nth-child(16) { left: 8%;  width: 16px; height: 16px; animation-duration: 11s; animation-delay: -9.5s; }
.hero-bubbles span:nth-child(17) { left: 29%; width: 18px; height: 18px; animation-duration: 12s; animation-delay: -3.5s; }
.hero-bubbles span:nth-child(18) { left: 50%; width: 12px; height: 12px; animation-duration: 10s; animation-delay: -7.5s; }
.hero-bubbles span:nth-child(19) { left: 70%; width: 14px; height: 14px; animation-duration: 11s; animation-delay: -1.5s; }
.hero-bubbles span:nth-child(20) { left: 88%; width: 26px; height: 26px; animation-duration: 15s; animation-delay: -14s; }
@keyframes bubbleRise {
  0%   { transform: translateY(0) translateX(0) scale(.5); opacity: 0; }
  8%   { opacity: .88; }
  25%  { transform: translateY(-22vh) translateX(-10px) scale(.7); }
  50%  { transform: translateY(-47vh) translateX(14px) scale(.85); opacity: .82; }
  75%  { transform: translateY(-70vh) translateX(-8px) scale(.95); }
  92%  { opacity: .4; }
  100% { transform: translateY(-95vh) translateX(20px) scale(1); opacity: 0; }
}

/* Pulsing ring around the "how it works" step numbers */
.step-number::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--blue-2);
  opacity: 0;
  animation: stepPing 2.8s ease-out infinite;
}
.process-step:nth-child(2) .step-number::after { animation-delay: .9s; }
.process-step:nth-child(3) .step-number::after { animation-delay: 1.8s; }
@keyframes stepPing {
  0%   { transform: scale(1); opacity: .55; }
  80%, 100% { transform: scale(1.9); opacity: 0; }
}

/* Slowly drifting tint on the "how it works" band */
.section.mint-band {
  background-size: 160% 160%, 200% 200%;
  animation: bandDrift 18s ease-in-out infinite;
}
@keyframes bandDrift {
  0%, 100% { background-position: 0% 0%, 0% 0%; }
  50% { background-position: 100% 50%, 100% 100%; }
}

/* Gentle float on the feature image + stats block */
.feature-wall { animation: featureFloat 8s ease-in-out infinite; }
@keyframes featureFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Hero: glowing accent bar that draws under the brand name */
.title-accent {
  display: block;
  height: 5px;
  width: 0;
  margin-top: 1.1rem;
  border-radius: 999px;
  background: var(--grad-blue);
  background-size: 220% auto;
  box-shadow: 0 6px 20px rgba(31, 156, 240, .5);
  animation: accentGrow .75s var(--ease) .15s forwards, accentFlow 4s linear .95s infinite;
}
.hero-copy > .reveal { transition-duration: .55s; }
@keyframes accentGrow { to { width: 150px; } }
@keyframes accentFlow { to { background-position: 220% center; } }


/* Emphasized "pay today" line in the estimator */
.price-line.pay-today {
  margin-top: .1rem;
  padding-top: .65rem;
  border-top: 1px solid rgba(255, 255, 255, .18);
  align-items: center;
  font-size: 1rem;
}
.price-line.pay-today span { color: #fff; font-weight: 800; }
.price-line.pay-today strong {
  font-size: 1.3rem;
  font-family: "Plus Jakarta Sans", sans-serif;
  letter-spacing: -.01em;
  background: linear-gradient(120deg, #fff, #bfe5ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Price pop when the estimate changes */
.price-total.bump {
  animation: textShine 7s ease-in-out infinite, totalBump .45s var(--ease);
}
@keyframes totalBump {
  0% { transform: scale(1); }
  38% { transform: scale(1.055); }
  100% { transform: scale(1); }
}

/* Crisp keyboard focus ring site-wide */
:focus-visible {
  outline: 3px solid rgba(31, 156, 240, .5);
  outline-offset: 2px;
  border-radius: 8px;
}

/* Light sweep across cards on hover */
.service-card .service-body,
.value-card,
.area-card {
  position: relative;
}
.value-card::before,
.area-card::before,
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  border-radius: inherit;
  background: linear-gradient(120deg, transparent 38%, rgba(255, 255, 255, .38) 50%, transparent 62%);
  background-size: 250% 100%;
  background-position: 150% 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s var(--ease);
}
.value-card:hover::before,
.area-card:hover::before,
.service-card:hover::before {
  opacity: 1;
  animation: cardSheen .9s var(--ease);
}
@keyframes cardSheen {
  from { background-position: 150% 0; }
  to { background-position: -50% 0; }
}


/* Scroll progress bar */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  z-index: 60;
  background: var(--grad-blue);
  box-shadow: 0 0 14px rgba(31, 156, 240, .55);
  transition: width .08s linear;
  pointer-events: none;
}

/* Hero strip → gliding marquee */
.hero-strip { padding: 0; }
.strip-grid {
  display: flex;
  flex-wrap: nowrap;
  width: max-content;
  gap: 0;
  align-items: center;
  padding: 1.15rem 0;
  animation: stripMarquee 34s linear infinite;
}
.hero-strip:hover .strip-grid { animation-play-state: paused; }
.strip-grid div {
  flex: 0 0 auto;
  padding: 0 2.4rem;
  position: relative;
  white-space: nowrap;
}
.strip-grid div::after {
  content: "";
  position: absolute;
  right: -3px;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  opacity: .55;
}
@keyframes stripMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Animated aurora behind dark booking section */
.quote-section::before {
  content: "";
  position: absolute;
  inset: -30% -15% auto -15%;
  height: 80%;
  z-index: 0;
  background: conic-gradient(from 0deg at 50% 50%,
    rgba(31, 156, 240, 0), rgba(100, 199, 255, .22),
    rgba(18, 102, 214, .14), rgba(100, 199, 255, .22), rgba(31, 156, 240, 0));
  filter: blur(50px);
  border-radius: 50%;
  animation: aurora 22s linear infinite;
  pointer-events: none;
}
@keyframes aurora {
  0% { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(180deg) scale(1.18); }
  100% { transform: rotate(360deg) scale(1); }
}

/* Slow shimmer across gradient headings */
.hero-copy h1,
.page-hero h1,
.price-total,
.stat strong {
  background-size: 220% auto;
  animation: textShine 7s ease-in-out infinite;
}
@keyframes textShine {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 120% center; }
}

/* Gold CTA: a single gentle glow on load, then it rests (no repeating pulse) */
.button.gold {
  animation: goldIntro 1.6s ease-out .4s 1 both;
}
@keyframes goldIntro {
  0%   { box-shadow: 0 16px 38px rgba(79, 179, 246, .42); }
  40%  { box-shadow: 0 20px 54px rgba(79, 179, 246, .8); }
  100% { box-shadow: 0 16px 38px rgba(79, 179, 246, .42); }
}

/* Glowing border ring on the live price card */
.price-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.5px;
  background: linear-gradient(130deg, rgba(143, 214, 255, .8), transparent 38%, rgba(31, 156, 240, .55) 90%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: .85;
}
.price-card > * { position: relative; z-index: 1; }
.price-card .contact-pill { background: rgba(255, 255, 255, .1); }

/* Soft float on value-card icons to draw the eye */
.value-card .icon-wrap { animation: iconBob 4.5s ease-in-out infinite; }
.value-card:nth-child(2) .icon-wrap { animation-delay: .8s; }
.value-card:nth-child(3) .icon-wrap { animation-delay: 1.6s; }
@keyframes iconBob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.value-card:hover .icon-wrap { animation: none; }

/* ---------- Interaction polish (hover / click) ---------- */

/* Button press + click ripple */
.button:active { transform: translateY(-1px) scale(.985); }
.ripple {
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  pointer-events: none;
  opacity: .4;
  animation: rippleFx .85s ease-out forwards;
}
@keyframes rippleFx {
  to { transform: scale(2.4); opacity: 0; }
}

/* Option tiles (service / frequency / payment) */
.option-tile span {
  overflow: hidden;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease),
    transform .25s var(--ease), background .25s var(--ease);
}
.option-tile span:hover {
  border-color: rgba(18, 102, 214, .45);
  transform: translateY(-3px);
  box-shadow: 0 12px 26px rgba(18, 102, 214, .14);
}
.option-tile span:active { transform: translateY(-1px) scale(.98); }
.option-tile input:checked + span { animation: tilePop .35s var(--ease); }
@keyframes tilePop {
  0% { transform: scale(.96); }
  55% { transform: scale(1.035); }
  100% { transform: scale(1); }
}

/* Add-ons: real selected state + hover/press feedback */
.addon {
  overflow: hidden;
  transition: border-color .25s var(--ease), background .25s var(--ease),
    transform .2s var(--ease), box-shadow .25s var(--ease);
}
.addon:hover { transform: translateY(-2px); box-shadow: 0 10px 22px rgba(18, 102, 214, .12); }
.addon:active { transform: scale(.98); }
.addon:has(input:checked) {
  border-color: var(--blue);
  background: linear-gradient(135deg, #eef7ff, #fff);
  box-shadow: 0 0 0 2px rgba(18, 102, 214, .14);
  color: var(--ink);
  animation: tilePop .35s var(--ease);
}

/* Inputs: hover cue before focus */
input:hover, select:hover, textarea:hover { border-color: rgba(18, 102, 214, .4); }

/* Stat cells light up on hover */
.stat { transition: background .3s var(--ease); }
.stat:hover { background: var(--mint); }

/* Booking sidebar + price card lift on hover */
.sidebar-box, .price-card {
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.sidebar-box:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.price-card:hover { transform: translateY(-3px); }

/* Contact pills press */
.contact-pill:active { transform: translateX(2px) scale(.99); }

/* Footer links nudge on hover */
.footer-links a { transition: color .2s var(--ease), transform .2s var(--ease); display: inline-block; }
.footer-links a:hover { transform: translateX(4px); }

/* Eyebrow accent bar grows on section hover */
.section-head:hover .eyebrow::before,
.split:hover .eyebrow::before { width: 34px; }
.eyebrow::before { transition: width .35s var(--ease); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}
