/* =========================================================================
   Stockton Heath External Cleaning Services — Revamp
   Colour scheme lifted from the live Wix site:
     #116dff (primary blue)  #C74300 (accent orange)
     #5E97FF (light blue)    #5f6360 (muted grey)
     #080808 (near black)    #ffffff (white)
   ========================================================================= */

:root {
  --blue: #116dff;
  --blue-dark: #0b4fbf;
  --blue-light: #5E97FF;
  --blue-tint: #eaf2ff;
  --orange: #C74300;
  --orange-dark: #a03700;
  --ink: #080808;
  --muted: #5f6360;
  --muted-2: #8a8f90;
  --line: #e4e7ec;
  --bg: #ffffff;
  --bg-alt: #f5f8fc;
  --shadow-sm: 0 1px 2px rgba(8,8,8,.06), 0 2px 8px rgba(8,8,8,.04);
  --shadow-md: 0 6px 24px rgba(8,8,8,.08);
  --shadow-lg: 0 24px 60px rgba(8,8,8,.18);
  --radius: 12px;
  --radius-lg: 18px;
  --maxw: 1200px;
  --font-body: 'Poppins', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-head: 'Poppins', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--blue-dark); }

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .15s, background .2s, color .2s, border-color .2s, box-shadow .2s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 6px 18px rgba(199,67,0,.25);
}
.btn-primary:hover { background: var(--orange-dark); color: #fff; }
.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.55);
}
.btn-ghost:hover { background: #fff; color: var(--ink); border-color: #fff; }
.btn-phone {
  background: #fff;
  color: var(--ink);
  border-color: var(--line);
  padding: 10px 16px;
}
.btn-phone svg { width: 16px; height: 16px; color: var(--blue); }
.btn-block { width: 100%; }
.btn-lg { padding: 16px 28px; font-size: 16px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 14px 20px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
}
.brand:hover { color: var(--ink); }
.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--blue);
  color: #fff;
  font-weight: 800;
  letter-spacing: .5px;
  font-family: var(--font-head);
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text strong { font-weight: 700; font-size: 15px; }
.brand-text em { font-style: normal; font-size: 12px; color: var(--muted); letter-spacing: .04em; text-transform: uppercase; }
.nav-links {
  display: flex;
  gap: 22px;
  margin-left: auto;
}
.nav-links a {
  color: var(--ink);
  font-weight: 500;
  font-size: 15px;
}
.nav-links a:hover { color: var(--blue); }
.btn-phone { margin-left: 8px; }

@media (max-width: 880px) {
  .nav-links { display: none; }
  .btn-phone span { display: none; }
  .btn-phone { padding: 10px; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.hero-image {
  position: absolute;
  inset: 0;
  background: url('../images/hero-bg.jpg') center/cover no-repeat;
  z-index: -2;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(8,8,8,.72) 0%, rgba(17,109,255,.55) 55%, rgba(17,109,255,.2) 100%);
  z-index: -1;
}
.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
  gap: 48px;
  padding: 96px 20px 72px;
  align-items: center;
}
.hero-copy .eyebrow {
  display: inline-block;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.3);
  backdrop-filter: blur(4px);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #fff;
}
.hero-copy h1 {
  font-family: var(--font-head);
  font-size: clamp(34px, 5vw, 60px);
  line-height: 1.08;
  margin: 20px 0 18px;
  letter-spacing: -.01em;
}
.hero-sub {
  font-size: clamp(16px, 1.4vw, 19px);
  max-width: 560px;
  color: rgba(255,255,255,.92);
  margin: 0 0 28px;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }
.hero-badges {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: rgba(255,255,255,.9);
  font-size: 14px;
}
.hero-badges li { display: inline-flex; align-items: center; gap: 6px; }
.hero-badges span { color: #9ad6ff; font-weight: 700; }

.hero-quote-card {
  background: #fff;
  color: var(--ink);
  border-radius: var(--radius-lg);
  padding: 26px 26px 22px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
}
.hero-quote-card h2 {
  font-family: var(--font-head);
  font-size: 24px;
  margin: 0 0 6px;
}
.hero-quote-card > p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 14px;
}

/* ---------- Booking form ---------- */
.booking-form .field { margin-bottom: 14px; }
.booking-form .field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.booking-form label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
}
.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  font-family: inherit;
  font-size: 15px;
  background: #fff;
  color: var(--ink);
  transition: border-color .15s, box-shadow .15s;
}
.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(17,109,255,.15);
}
.booking-form textarea { resize: vertical; min-height: 90px; }
.form-note {
  margin: 12px 0 0;
  font-size: 13px;
  color: var(--muted);
  text-align: center;
}
.form-success {
  margin-top: 14px;
  background: #e9f7ee;
  color: #0d6b2a;
  border: 1px solid #bfe6c9;
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 14px;
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; padding: 64px 20px 56px; }
  .hero-quote-card { order: 2; }
}

/* ---------- Section heads ---------- */
section { padding: 80px 0; }
.section-head {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}
.section-head .eyebrow {
  display: inline-block;
  color: var(--orange);
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: 13px;
  margin-bottom: 10px;
}
.section-head h2 {
  font-family: var(--font-head);
  font-size: clamp(28px, 3.3vw, 42px);
  line-height: 1.15;
  margin: 0 0 14px;
  letter-spacing: -.01em;
}
.section-head p {
  color: var(--muted);
  font-size: 17px;
  margin: 0;
}
.muted { color: var(--muted-2); font-style: italic; }

/* ---------- Services ---------- */
.services { background: #fff; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue-light);
}
.service-img {
  height: 200px;
  background-size: cover;
  background-position: center;
  background-color: var(--bg-alt);
}
.service-body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.service-body h3 {
  font-family: var(--font-head);
  font-size: 22px;
  margin: 0 0 10px;
}
.service-body p { color: var(--muted); margin: 0 0 16px; font-size: 15px; flex: 1; }
.service-link {
  font-weight: 600;
  color: var(--blue);
  align-self: flex-start;
}
.service-link:hover { color: var(--orange); }
@media (max-width: 980px) { .services-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .services-grid { grid-template-columns: 1fr; } }

/* ---------- Check our results ---------- */
.difference { background: var(--bg-alt); }
.ba-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}
.ba-item {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: #0b1220;
}
.ba-item img {
  display: block;
  width: 100%;
  height: auto;
}
@media (max-width: 760px) { .ba-grid { grid-template-columns: 1fr; } }

.difference-gallery {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.difference-gallery figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: #fff;
}
.difference-gallery img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
}
.difference-gallery figcaption {
  padding: 12px 14px;
  font-size: 14px;
  color: var(--muted);
  background: #fff;
}
@media (max-width: 760px) { .difference-gallery { grid-template-columns: 1fr; } }

/* ---------- Reviews ---------- */
.reviews { background: #fff; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  max-width: 1040px;
  margin: 0 auto;
}
.review-card {
  margin: 0;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px 26px 22px;
  position: relative;
}
.review-card .stars {
  color: #f5a623;
  font-size: 18px;
  letter-spacing: 3px;
  margin-bottom: 10px;
}
.review-card p {
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  margin: 0 0 18px;
}
.review-card footer {
  display: flex;
  flex-direction: column;
  gap: 2px;
  border-top: 1px solid var(--line);
  padding-top: 14px;
}
.review-card footer strong { color: var(--ink); }
.review-card footer span { color: var(--muted); font-size: 13px; }
.reviews-cta {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.reviews-cta .btn-ghost { color: var(--blue); border-color: var(--blue); }
.reviews-cta .btn-ghost:hover { background: var(--blue); color: #fff; border-color: var(--blue); }
@media (max-width: 760px) { .reviews-grid { grid-template-columns: 1fr; } }

/* ---------- Areas ---------- */
.areas { background: var(--bg-alt); }
.areas-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.areas-copy .eyebrow {
  color: var(--orange);
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: 13px;
}
.areas-copy h2 {
  font-family: var(--font-head);
  font-size: clamp(26px, 3vw, 38px);
  margin: 10px 0 14px;
  line-height: 1.15;
}
.areas-copy p { color: var(--muted); font-size: 17px; }
.areas-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px 18px;
}
.areas-list li {
  position: relative;
  padding-left: 22px;
  font-weight: 500;
}
.areas-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 4px rgba(17,109,255,.15);
}
.areas-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  aspect-ratio: 4 / 3;
  background: #e9eef5;
}
.areas-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
@media (max-width: 900px) {
  .areas-grid { grid-template-columns: 1fr; }
  .areas-list { grid-template-columns: 1fr 1fr; }
}

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--blue);
  color: #fff;
  padding: 56px 0;
  background-image: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
}
.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-band h2 {
  font-family: var(--font-head);
  font-size: clamp(24px, 2.6vw, 34px);
  margin: 0 0 6px;
}
.cta-band p { margin: 0; color: rgba(255,255,255,.85); font-size: 16px; }
.cta-band-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------- Quote section (bottom) ---------- */
.quote-section { background: #fff; }
.quote-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: start;
}
.quote-copy h2 {
  font-family: var(--font-head);
  font-size: clamp(28px, 3vw, 40px);
  margin: 10px 0 14px;
  line-height: 1.15;
}
.quote-copy p { color: var(--muted); font-size: 17px; }
.contact-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
}
.contact-list li {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 12px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  align-items: baseline;
}
.contact-list li:last-child { border-bottom: 1px solid var(--line); }
.contact-label {
  color: var(--muted);
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 600;
}
.booking-form-lg {
  background: var(--bg-alt);
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
}
@media (max-width: 900px) { .quote-grid { grid-template-columns: 1fr; } }

/* ---------- Footer ---------- */
.site-footer { background: #0b1220; color: #cfd6e4; padding-top: 56px; }
.site-footer .brand-text strong { color: #fff; }
.site-footer .brand-text em { color: #7c8aa6; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 40px;
}
.footer-grid h4 {
  color: #fff;
  font-size: 15px;
  margin: 0 0 14px;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 8px; font-size: 14px; }
.footer-grid a { color: #cfd6e4; }
.footer-grid a:hover { color: #fff; }
.footer-brand p { color: #8a95ac; max-width: 340px; font-size: 14px; margin-top: 14px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 18px 0 28px;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  color: #7c8aa6;
  font-size: 12px;
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ---------- Floating CTA (mobile) ---------- */
.floating-cta {
  display: none;
  position: fixed;
  right: 16px;
  bottom: 88px;
  z-index: 40;
  background: var(--orange);
  color: #fff;
  padding: 14px 20px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(199,67,0,.35);
}
@media (max-width: 880px) { .floating-cta { display: inline-flex; } }

/* ---------- WhatsApp widget ---------- */
.wa-widget {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 45;
  font-family: var(--font-body);
}
.wa-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px 12px 14px;
  background: #25D366;
  color: #fff;
  border: 0;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(37,211,102,.4);
  transition: transform .15s, box-shadow .2s;
}
.wa-button:hover { transform: translateY(-2px); box-shadow: 0 14px 36px rgba(37,211,102,.5); color: #fff; }
.wa-button svg { width: 24px; height: 24px; fill: #fff; }
.wa-button .wa-label { display: inline; }
.wa-panel {
  position: absolute;
  bottom: 64px;
  right: 0;
  width: 320px;
  max-width: calc(100vw - 40px);
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(8,8,8,.25);
  border: 1px solid var(--line);
  overflow: hidden;
  transform-origin: bottom right;
  transform: scale(.85) translateY(8px);
  opacity: 0;
  pointer-events: none;
  transition: transform .2s, opacity .2s;
}
.wa-widget.is-open .wa-panel {
  transform: scale(1) translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.wa-panel-head {
  background: #075E54;
  color: #fff;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.wa-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--blue);
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 800;
  font-family: var(--font-head);
  font-size: 14px;
  flex-shrink: 0;
}
.wa-panel-head strong { display: block; font-size: 15px; }
.wa-panel-head span { font-size: 12px; color: #bfe3dc; }
.wa-panel-close {
  margin-left: auto;
  background: transparent;
  border: 0;
  color: #bfe3dc;
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
  padding: 4px 8px;
}
.wa-panel-body {
  background:
    linear-gradient(rgba(229,221,213,.7), rgba(229,221,213,.7)),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='40' height='40'><circle cx='5' cy='5' r='1' fill='%23c7bdb1'/><circle cx='25' cy='25' r='1' fill='%23c7bdb1'/></svg>");
  padding: 20px 16px;
  min-height: 120px;
  display: flex;
  align-items: flex-start;
}
.wa-bubble {
  background: #fff;
  padding: 10px 12px;
  border-radius: 8px;
  border-top-left-radius: 0;
  box-shadow: 0 1px 2px rgba(0,0,0,.1);
  font-size: 14px;
  color: var(--ink);
  max-width: 85%;
}
.wa-bubble small {
  display: block;
  color: var(--muted-2);
  font-size: 11px;
  margin-top: 4px;
}
.wa-panel-foot {
  padding: 14px 16px;
  background: #f5f3ee;
  border-top: 1px solid var(--line);
}
.wa-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px 14px;
  background: #25D366;
  color: #fff;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
}
.wa-cta:hover { background: #1fb457; color: #fff; }
.wa-cta svg { width: 18px; height: 18px; fill: #fff; }
@media (max-width: 560px) {
  .wa-button .wa-label { display: none; }
  .wa-button { padding: 14px; }
}

/* ---------- Utility ---------- */
section:nth-of-type(even) { /* no-op, keeps specificity balanced */ }
