/* =========================================================
   24H PLUMBING — BLUE RESPONSE DESIGN
   Deliberately different from the red/white Local Plumber design.
   ========================================================= */
html {
  scroll-behavior: smooth;
}


:root {
  --navy: #071b33;
  --navy-2: #0b2d50;
  --blue: #087ac1;
  --blue-bright: #0d97df;
  --blue-soft: #e9f6ff;
  --blue-pale: #f4faff;
  --yellow: #f7c531;
  --yellow-dark: #e8b51c;
  --orange: #e4573f;
  --green: #20b56a;
  --text: #0b1825;
  --muted: #5b6a78;
  --line: #d9e5ee;
  --white: #ffffff;
  --shadow: 0 20px 55px rgba(7, 27, 51, .12);
  --shadow-soft: 0 12px 30px rgba(7, 27, 51, .08);
  --shell: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

body.modal-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  display: block;
}

svg {
  width: 1em;
  height: 1em;
  display: block;
  fill: currentColor;
}

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

.shell {
  width: min(var(--shell), 90%);
  margin-inline: auto;
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* =========================================================
   HEADER
   ========================================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(242, 249, 255, .96);
  border-bottom: 1px solid rgba(7, 27, 51, .08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.header-inner {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand img {
  width: 215px;
  max-height: 66px;
  object-fit: contain;
  object-position: left center;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.header-status {
  display: flex;
  align-items: center;
  gap: 11px;
}

.status-dot,
.live-dot {
  width: 10px;
  height: 10px;
  border-radius: 10px 0px 10px 10px;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(32, 181, 181, 0.14);
  flex: 0 0 auto;
}

.header-status strong,
.header-status span {
  display: block;
}

.header-status strong {
  font-size: 14px;
  color: var(--navy);
}

.header-status span {
  margin-top: 3px;
  font-size: 12px;
  color: var(--muted);
}

.header-call {
  min-height: 58px;
  display: flex !important;
  align-items: center;
  gap: 12px;
  padding: 8px 18px;
  color: #fff;
  background: var(--navy);
  text-decoration: none;
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(7, 27, 51, .16);
}

.phone-symbol {
  width: 34px;
  height: 34px;
  border-radius: 7px;
  display: grid;
  place-items: center;
  background: var(--yellow);
  color: var(--navy);
  font-size: 20px;
}

.header-call-copy small,
.header-call-copy strong {
  display: block;
}

.header-call-copy small {
  margin-bottom: 2px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: rgba(255,255,255,.68);
}

.header-call-copy strong {
  font-size: 17px;
  letter-spacing: -.02em;
}

/* Prevent pseudo text from older shared CSS */
a.cta.zphone::before,
a.cta.zphone::after {
  content: none !important;
}

/* =========================================================
   HERO
   ========================================================= */

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 18%, rgba(13, 151, 223, .14), transparent 26%),
    linear-gradient(135deg, #eff9ff 0%, #f9fcff 48%, #e7f5ff 100%);
  padding: 68px 0 24px;
}

.hero::after {
  content: "";
  position: absolute;
  right: -180px;
  bottom: -220px;
  width: 520px;
  height: 520px;
  border: 70px solid rgba(8, 122, 193, .05);
  border-radius: 50%;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(420px, .94fr);
  gap: 70px;
  align-items: center;
}

.hero-copy {
  padding: 16px 0 40px;
}

.eyebrow,
.section-kicker,
.urgent-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-size: 12px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.eyebrow {
  margin-bottom: 20px;
}

.eyebrow-bolt {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  color: var(--navy);
  background: var(--yellow);
  font-size: 15px;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  color: var(--navy);
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(52px, 6vw, 86px);
  line-height: .95;
  font-weight: 900;
  letter-spacing: -.055em;
}

.hero h1 span {
  position: relative;
  display: inline-block;
  z-index: 1;
}

.hero h1 span::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: -3px;
  right: -7px;
  bottom: 5px;
  height: 18px;
  background: var(--yellow);
  transform: rotate(-1deg);
}

.hero-lead {
  max-width: 690px;
  margin: 28px 0 0;
  color: #405364;
  font-size: 20px;
  line-height: 1.58;
}

.hero-cta-row {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 13px;
  max-width: 720px;
  margin-top: 32px;
}

.btn {
  border: 0;
  cursor: pointer;
  text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-call,
.btn-book {
  min-height: 74px;
  padding: 12px 20px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 13px;
  border-radius: 8px;
}

.btn-call {
  background: var(--yellow);
  color: var(--navy);
  box-shadow: 0 14px 28px rgba(247, 197, 49, .26);
}

.btn-call:hover {
  background: #ffd044;
}

.btn-book {
  border: 1px solid rgba(7, 27, 51, .17);
  background: rgba(255,255,255,.82);
  color: var(--navy);
  box-shadow: 0 10px 22px rgba(7, 27, 51, .05);
}

.btn-book:hover {
  background: #fff;
  border-color: rgba(7, 27, 51, .28);
}

.btn-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  background: rgba(7, 27, 51, .08);
  font-size: 21px;
  flex: 0 0 38px;
}

.btn small,
.btn strong {
  display: block;
  text-align: left;
}

.btn small {
  margin-bottom: 3px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .05em;
  opacity: .68;
}

.btn strong {
  font-size: 22px;
  line-height: 1.1;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 760px;
  margin-top: 26px;
  border-top: 1px solid rgba(7, 27, 51, .12);
}

.hero-proof > div {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 19px 18px 0 0;
}

.proof-icon {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  flex: 0 0 26px;
  border: 1px solid rgba(8, 122, 193, .25);
  border-radius: 50%;
  background: #fff;
  color: var(--blue);
  font-size: 14px;
  font-weight: 900;
}

.hero-proof strong,
.hero-proof small {
  display: block;
}

.hero-proof strong {
  color: var(--navy);
  font-size: 13px;
}

.hero-proof small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
}

.hero-visual {
  position: relative;
  min-height: 560px;
}

.hero-photo {
  position: absolute;
  inset: 0 0 34px 36px;
  overflow: hidden;
  background: #cde7f7;
  box-shadow: var(--shadow);
  clip-path: polygon(9% 0, 100% 0, 100% 92%, 90% 100%, 0 100%, 0 9%);
}

.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(7, 27, 51, .17));
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dispatch-card {
  position: absolute;
  left: 0;
  bottom: 0;
  width: min(330px, 80%);
  padding: 22px 22px 20px;
  background: var(--navy);
  color: #fff;
  box-shadow: 0 20px 50px rgba(7, 27, 51, .25);
}

.dispatch-top {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 14px;
  color: rgba(255,255,255,.7);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.dispatch-card strong {
  display: block;
  font-size: 23px;
  line-height: 1.15;
}

.dispatch-card p {
  margin: 9px 0 0;
  color: rgba(255,255,255,.72);
  font-size: 13px;
  line-height: 1.55;
}

.arrival-chip {
  position: absolute;
  top: 26px;
  right: -18px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 13px 16px;
  background: #fff;
  border: 1px solid rgba(7, 27, 51, .09);
  box-shadow: var(--shadow-soft);
}

.arrival-icon {
  width: 37px;
  height: 37px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 20px;
}

.arrival-chip small,
.arrival-chip strong {
  display: block;
}

.arrival-chip small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.arrival-chip strong {
  margin-top: 3px;
  color: var(--navy);
  font-size: 16px;
}

.hero-footnote {
  position: relative;
  z-index: 2;
  padding-top: 12px;
  color: #738391;
  font-size: 11px;
  text-align: right;
}

/* =========================================================
   SERVICE STRIP
   ========================================================= */

.service-strip {
  background: var(--navy);
  color: #fff;
}

.service-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.service-strip-grid > div {
  min-height: 104px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 22px;
  border-right: 1px solid rgba(255,255,255,.12);
}

.service-strip-grid > div:first-child {
  border-left: 1px solid rgba(255,255,255,.12);
}

.service-strip-grid span {
  color: var(--yellow);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
}

.service-strip-grid strong {
  font-size: 1rem;
  line-height: 1.25;
}

/* =========================================================
   COVERAGE CHECKER
   ========================================================= */

.coverage-check {
  padding: 62px 0 28px;
  background: #fff;
  display: none;
}

.coverage-card {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 50px;
  align-items: center;
  padding: 36px 42px;
  background: var(--blue-soft);
  border-left: 6px solid var(--blue);
  box-shadow: 0 16px 36px rgba(7, 27, 51, .06);
}

.coverage-copy h2,
.section-heading h2,
.process-intro h2,
.urgent-box h2,
.faq-heading h2,
.final-inner h2 {
  margin: 10px 0 0;
  color: var(--navy);
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.02;
  letter-spacing: -.04em;
}

.coverage-copy p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.coverage-input-row {
  display: grid;
  grid-template-columns: 1fr auto;
  border: 1px solid rgba(7, 27, 51, .14);
  background: #fff;
  box-shadow: 0 10px 24px rgba(7, 27, 51, .07);
}

.coverage-input-row input {
  min-width: 0;
  min-height: 60px;
  padding: 0 18px;
  border: 0;
  outline: none;
  color: var(--navy);
  background: transparent;
  font-size: 16px;
  font-weight: 700;
}

.coverage-input-row input::placeholder {
  color: #8899a7;
  font-weight: 500;
}

.coverage-input-row button {
  min-height: 60px;
  padding: 0 23px;
  border: 0;
  background: var(--blue);
  color: #fff;
  font-weight: 900;
  cursor: pointer;
}

.coverage-input-row button:hover {
  background: #066da9;
}

.coverage-result {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid rgba(7, 27, 51, .10);
}

.coverage-result[hidden] {
  display: none;
}

.coverage-result strong,
.coverage-result span {
  display: block;
}

.coverage-result span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 13px;
}

.coverage-result-call {
  color: var(--blue);
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}

/* =========================================================
   SERVICES
   ========================================================= */

.services {
  padding: 86px 0;
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 44px;
  text-align: center;
}

.section-heading p,
.faq-heading p,
.process-intro p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 54px;
}

.service-item {
  position: relative;
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 20px;
  padding: 30px 0;
  border-top: 1px solid var(--line);
}

.service-item:nth-last-child(-n+2) {
  border-bottom: 1px solid var(--line);
}

.service-number {
  color: var(--blue-bright);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .08em;
}

.service-item h3 {
  margin: 0;
  color: var(--navy);
  font-size: 22px;
  line-height: 1.2;
}

.service-item p {
  margin: 9px 0 0;
  color: var(--muted);
  line-height: 1.62;
}

.services-extra {
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 26px;
  background: var(--blue-pale);
  border-left: 4px solid var(--yellow);
}

.services-extra strong {
  color: var(--navy);
  white-space: nowrap;
}

.services-extra span {
  color: var(--muted);
  line-height: 1.45;
}

.text-call {
  margin-left: auto;
  color: var(--blue);
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}

/* =========================================================
   PROCESS
   ========================================================= */

.process {
  padding: 84px 0;
  background:
    radial-gradient(circle at 10% 10%, rgba(13, 151, 223, .11), transparent 23%),
    var(--navy);
  color: #fff;
}

.process-grid {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 80px;
}

.section-kicker-light {
  color: #6fcef8;
}

.process-intro h2 {
  color: #fff;
}

.process-intro p {
  color: rgba(255,255,255,.66);
}

.inline-call {
  display: inline-flex !important;
  margin-top: 28px;
  padding: 13px 18px;
  background: var(--yellow);
  color: var(--navy);
  font-weight: 900;
  text-decoration: none;
}

.process-steps {
  border-top: 1px solid rgba(255,255,255,.17);
}

.process-steps article {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,.17);
}

.process-steps article > span {
  color: var(--yellow);
  font-size: 13px;
  font-weight: 900;
}

.process-steps h3 {
  margin: 0;
  font-size: 20px;
}

.process-steps p {
  margin: 7px 0 0;
  color: rgba(255,255,255,.64);
  line-height: 1.55;
}

/* =========================================================
   URGENT CTA
   ========================================================= */

.urgent-cta {
  padding: 54px 0;
  background: #fff;
}

.urgent-box {
  display: grid;
  grid-template-columns: 70px 1fr auto;
  gap: 26px;
  align-items: center;
  padding: 34px 38px;
  background: var(--yellow);
  box-shadow: 0 18px 45px rgba(232, 181, 28, .19);
}

.urgent-icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  background: var(--navy);
  color: var(--yellow);
  font-size: 29px;
}

.urgent-label {
  color: rgba(7,27,51,.62);
}

.urgent-box h2 {
  margin-top: 7px;
  font-size: clamp(28px, 3.5vw, 44px);
}

.urgent-box p {
  margin: 10px 0 0;
  max-width: 650px;
  color: rgba(7,27,51,.68);
  line-height: 1.55;
}

.urgent-call {
  min-width: 220px;
  padding: 15px 20px;
  display: block !important;
  background: var(--navy);
  color: #fff;
  text-decoration: none;
  text-align: center;
}

.urgent-call small,
.urgent-call strong {
  display: block;
}

.urgent-call small {
  color: rgba(255,255,255,.62);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.urgent-call strong {
  margin-top: 4px;
  font-size: 20px;
}

/* =========================================================
   TRUST
   ========================================================= */

.trust {
  padding: 84px 0;
  background: var(--blue-pale);
}

.section-heading-left {
  max-width: 760px;
  margin: 0 0 42px;
  text-align: left;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.trust-grid article {
  min-height: 265px;
  padding: 28px;
  background: #fff;
}

.trust-mark {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 40px;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 16px;
  font-weight: 900;
}

.trust-grid h3 {
  margin: 0;
  color: var(--navy);
  font-size: 20px;
}

.trust-grid p {
  margin: 11px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.cert-row {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.cert-row > div {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 92px;
  padding: 16px 26px;
  background: rgba(255,255,255,.56);
  border-right: 1px solid var(--line);
}

.cert-row > div:last-child {
  border-right: 0;
}

.cert-row img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.cert-row strong,
.cert-row small {
  display: block;
}

.cert-row strong {
  color: var(--navy);
  font-size: 14px;
}

.cert-row small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.35;
}

/* =========================================================
   FAQ
   ========================================================= */

.faq {
  padding: 88px 0;
  background: #fff;
}

.faq-grid {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 70px;
  align-items: start;
}

.faq-heading {
  position: sticky;
  top: 128px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq details {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  position: relative;
  padding: 23px 48px 23px 0;
  color: var(--navy);
  font-size: 17px;
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  position: absolute;
  right: 8px;
  top: 18px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 20px;
}

.faq details[open] summary::after {
  content: "–";
}

.faq details p {
  margin: -5px 50px 24px 0;
  color: var(--muted);
  line-height: 1.65;
}

/* =========================================================
   FINAL CTA
   ========================================================= */

.final-cta {
  padding: 78px 0;
  background:
    linear-gradient(rgba(7, 27, 51, .94), rgba(7, 27, 51, .94)),
    linear-gradient(120deg, var(--blue), var(--navy));
  color: #fff;
  text-align: center;
}

.final-inner > span {
  display: inline-block;
  color: #6fcef8;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.final-inner h2 {
  color: #fff;
  margin-top: 12px;
  font-size: clamp(44px, 5vw, 66px);
}

.final-inner p {
  margin: 13px 0 0;
  color: rgba(255,255,255,.7);
  font-size: 18px;
}

.final-actions {
  max-width: 660px;
  margin: 30px auto 0;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 12px;
}

.btn-call-dark {
  background: var(--yellow);
}

.btn-book-light {
  color: #fff;
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.24);
}

.btn-book-light:hover {
  background: rgba(255,255,255,.11);
  border-color: rgba(255,255,255,.35);
}

/* =========================================================
   FOOTER
   ========================================================= */

.footer {
  background: #051523;
  color: rgba(255,255,255,.7);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 60px;
  align-items: center;
  padding: 42px 0;
}

.footer-brand img {
  width: 175px;
  max-height: 60px;
  object-fit: contain;
  object-position: left center;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  margin: 11px 0 0;
  font-size: 13px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 10px 24px;
}

.footer-links a {
  text-decoration: none;
  font-size: 13px;
}

.footer-links a:hover {
  color: #fff;
}

.footer-contact {
  text-align: right;
}

.footer-contact span,
.footer-contact a {
  display: block;
}

.footer-contact span {
  margin-bottom: 5px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.footer-phone {
  color: #fff;
  font-size: 20px;
  font-weight: 900;
  text-decoration: none;
}

.footer-bottom {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255,255,255,.10);
  font-size: 11px;
}

/* =========================================================
   MOBILE STICKY CTA
   ========================================================= */

.mobile-sticky {
  display: none;
}

/* =========================================================
   BOOKING MODAL
   ========================================================= */

.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  padding: 20px;
}

.booking-modal.is-open {
  display: grid;
  place-items: center;
}

.booking-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 15, 27, .74);
  backdrop-filter: blur(4px);
}

.booking-panel {
  position: relative;
  z-index: 2;
  width: min(560px, 100%);
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  padding: 34px;
  background: #fff;
  box-shadow: 0 30px 80px rgba(0,0,0,.30);
}

.booking-close {
  position: absolute;
  top: 13px;
  right: 13px;
  width: 38px;
  height: 38px;
  border: 0;
  background: var(--blue-soft);
  color: var(--navy);
  font-size: 25px;
  cursor: pointer;
}

.booking-panel h2 {
  margin: 8px 0 0;
  color: var(--navy);
  font-size: 36px;
  line-height: 1;
  letter-spacing: -.035em;
}

.booking-panel > p {
  margin: 12px 0 25px;
  color: var(--muted);
  line-height: 1.55;
}

.booking-form {
  display: grid;
  gap: 14px;
}

.booking-form label {
  display: grid;
  gap: 6px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.booking-form input,
.booking-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  padding: 13px 14px;
  outline: none;
  color: var(--text);
  background: #fff;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 500;
}

.booking-form input:focus,
.booking-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(8, 122, 193, .09);
}

.booking-form button {
  min-height: 54px;
  margin-top: 4px;
  border: 0;
  background: var(--blue);
  color: #fff;
  font-weight: 900;
  cursor: pointer;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1050px) {
  .hero-grid {
    grid-template-columns: 1fr 420px;
    gap: 38px;
  }

  .hero h1 {
    font-size: clamp(48px, 6vw, 68px);
  }

  .header-status {
    display: none;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .faq-heading {
    position: static;
    max-width: 700px;
  }
}

@media (max-width: 860px) {
  .header-inner {
    min-height: 78px;
  }

  .brand img {
    width: 175px;
  }

  .header-call-copy small {
    display: none;
  }

  .header-call {
    min-height: 48px;
    padding: 7px 13px;
  }

  .header-call-copy strong {
    font-size: 14px;
  }

  .phone-symbol {
    width: 30px;
    height: 30px;
  }

  .hero {
    padding-top: 46px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding-bottom: 0;
  }

  .hero-visual {
    min-height: 500px;
    margin-top: 14px;
  }

  .hero-photo {
    left: 40px;
  }

  .hero-footnote {
    text-align: left;
  }

  .service-strip-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-strip-grid > div:nth-child(2) {
    border-right: 0;
  }

  .coverage-card {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .urgent-box {
    grid-template-columns: 60px 1fr;
  }

  .urgent-call {
    grid-column: 2;
    justify-self: start;
  }

  .cert-row {
    grid-template-columns: 1fr;
  }

  .cert-row > div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .cert-row > div:last-child {
    border-bottom: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-contact {
    grid-column: 1 / -1;
    text-align: left;
  }
}

@media (max-width: 680px) {
  body {
    padding-bottom: 66px;
  }

  .shell {
    width: min(100% - 30px, var(--shell));
  }

  .site-header {
    position: sticky;
  }

  .header-inner {
    min-height: 68px;
    gap: 10px;
  }

  .brand img {
    width: 148px;
    max-height: 48px;
  }

  .header-call {
    min-height: 42px;
    padding: 6px 10px;
    border-radius: 6px;
  }

  .phone-symbol {
    width: 28px;
    height: 28px;
    font-size: 17px;
  }

  .header-call-copy strong {
    font-size: 0;
  }

  .header-call-copy strong::after {
    content: "CALL: ";
    font-size: 13px;
    letter-spacing: .06em;
  }

  .hero {
    padding: 36px 0 18px;
  }

  .eyebrow {
    margin-bottom: 15px;
  }

  .hero h1 {
    font-size: clamp(44px, 14vw, 62px);
    line-height: .94;
  }

  .hero h1 span::after {
    bottom: 3px;
    height: 13px;
  }

  .hero-lead {
    margin-top: 20px;
    font-size: 17px;
    line-height: 1.55;
  }

  .hero-cta-row {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 25px;
  }

  .btn-call,
  .btn-book {
    min-height: 64px;
    border-radius: 7px;
  }

  .btn strong {
    font-size: 19px;
  }

  .hero-proof {
    grid-template-columns: 1fr;
    margin-top: 22px;
  }

  .hero-proof > div {
    padding: 11px 0;
    border-bottom: 1px solid rgba(7, 27, 51, .08);
  }

  .hero-visual {
    min-height: 420px;
    margin-top: 26px;
  }

  .hero-photo {
    inset: 0 0 45px 18px;
    clip-path: polygon(7% 0, 100% 0, 100% 94%, 92% 100%, 0 100%, 0 7%);
  }

  .arrival-chip {
    top: 12px;
    right: -6px;
    padding: 10px 12px;
  }

  .arrival-icon {
    width: 31px;
    height: 31px;
  }

  .arrival-chip strong {
    font-size: 13px;
  }

  .dispatch-card {
    width: calc(100% - 28px);
    padding: 18px;
  }

  .dispatch-card strong {
    font-size: 19px;
  }

  .hero-footnote {
    padding-top: 8px;
    font-size: 10px;
  }

  .service-strip-grid {
    width: 100%;
    grid-template-columns: 1fr 1fr;
  }

  .service-strip-grid > div {
    min-height: 86px;
    gap: 10px;
    padding: 16px;
    border-bottom: 1px solid rgba(255,255,255,.11);
  }

  .service-strip-grid > div:first-child {
    border-left: 0;
  }

  .service-strip-grid strong {
    font-size: 0.9rem;
  }

  .coverage-check {
    padding: 36px 0 14px;
  }

  .coverage-card {
    width: calc(100% - 30px);
    padding: 26px 22px;
    border-left-width: 4px;
  }

  .coverage-copy h2,
  .section-heading h2,
  .process-intro h2,
  .faq-heading h2 {
    font-size: 34px;
  }

  .coverage-input-row {
    grid-template-columns: 1fr;
  }

  .coverage-input-row button {
    min-height: 52px;
  }

  .coverage-result {
    align-items: flex-start;
    flex-direction: column;
  }

  .services {
    padding: 60px 0;
  }

  .section-heading {
    margin-bottom: 28px;
    text-align: left;
  }

  .section-heading p,
  .faq-heading p,
  .process-intro p {
    font-size: 15px;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-item {
    grid-template-columns: 42px 1fr;
    gap: 13px;
    padding: 23px 0;
  }

  .service-item:nth-last-child(-n+2) {
    border-bottom: 0;
  }

  .service-item:last-child {
    border-bottom: 1px solid var(--line);
  }

  .service-item h3 {
    font-size: 19px;
  }

  .service-item p {
    font-size: 14px;
  }

  .services-extra {
    align-items: flex-start;
    flex-direction: column;
    padding: 19px;
  }

  .services-extra strong {
    white-space: normal;
  }

  .text-call {
    margin-left: 0;
  }

  .process {
    padding: 60px 0;
  }

  .urgent-cta {
    padding: 34px 0;
  }

  .urgent-box {
    width: calc(100% - 30px);
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 26px 22px;
  }

  .urgent-icon {
    width: 52px;
    height: 52px;
  }

  .urgent-call {
    grid-column: auto;
    width: 100%;
  }

  .trust {
    padding: 60px 0;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid article {
    min-height: auto;
    padding: 24px;
  }

  .trust-mark {
    margin-bottom: 22px;
  }

  .cert-row > div {
    padding: 14px 18px;
  }

  .faq {
    padding: 60px 0;
  }

  .faq summary {
    padding-right: 42px;
    font-size: 15px;
  }

  .faq details p {
    margin-right: 0;
    font-size: 14px;
  }

  .final-cta {
    padding: 58px 0;
  }

  .final-inner h2 {
    font-size: 42px;
  }

  .final-actions {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 34px 0;
  }

  .footer-links {
    grid-template-columns: 1fr 1fr;
  }

  .footer-contact {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 16px 0;
  }

  .mobile-sticky {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    min-height: 66px;
    box-shadow: 0 -10px 30px rgba(7,27,51,.18);
  }

  .mobile-sticky a,
  .mobile-sticky button {
    min-height: 66px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border: 0;
    font-weight: 900;
    text-decoration: none;
  }

  .mobile-call {
    background: var(--yellow);
    color: var(--navy);
  }

  .mobile-book {
    background: var(--navy);
    color: #fff;
  }

  .booking-modal {
    padding: 10px;
  }

  .booking-panel {
    max-height: calc(100vh - 20px);
    padding: 28px 20px 22px;
  }

  .booking-panel h2 {
    font-size: 31px;
  }
}

@media (max-width: 400px) {
  .brand img {
    width: 132px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .service-strip-grid {
    grid-template-columns: 1fr;
  }

  .service-strip-grid > div {
    min-height: 70px;
    border-right: 0;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   ZADARMA-SAFE PHONE BUTTONS
   Keeps the 24H Plumbing button design after Zadarma replaces
   the inner HTML of .zphone links with the tracked phone number.
   ========================================================= */

a.cta.zphone::before,
a.cta.zphone::after {
  content: none !important;
}

:root {
  --24h-phone-svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23071b33' d='M6.62 10.79a15.3 15.3 0 0 0 6.59 6.59l2.2-2.2a1 1 0 0 1 1.02-.24c1.12.37 2.33.57 3.57.57a1 1 0 0 1 1 1V20a1 1 0 0 1-1 1A17 17 0 0 1 3 4a1 1 0 0 1 1-1h3.5a1 1 0 0 1 1 1c0 1.25.2 2.45.57 3.57a1 1 0 0 1-.25 1.02l-2.2 2.2Z'/%3E%3C/svg%3E");
}

/* Header phone after Zadarma rewrite */
.header-call.cta.zphone[data-ct-origin-href] {
  position: relative;
  min-height: 58px;
  display: flex !important;
  align-items: center;
  justify-content: flex-start;
  gap: 0 !important;
  padding: 25px 18px 8px 64px;
  color: #fff;
  background: var(--navy);
  border-radius: 8px;
  text-decoration: none;
  font-size: 17px;
  line-height: 1.1;
  font-weight: 900;
  white-space: nowrap;
  box-shadow: 0 10px 24px rgba(7, 27, 51, .16);
}

.header-call.cta.zphone[data-ct-origin-href]::before {
  content: "" !important;
  position: absolute;
  left: 16px;
  top: 50%;
  width: 34px;
  height: 34px;
  transform: translateY(-50%);
  border-radius: 7px;
  background-color: var(--yellow);
  background-image: var(--24h-phone-svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 19px 19px;
}

.header-call.cta.zphone[data-ct-origin-href]::after {
  content: "Call now" !important;
  position: absolute;
  left: 64px;
  top: 9px;
  color: rgba(255,255,255,.68);
  font-size: 11px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
}

/* Hero/final yellow call button after Zadarma rewrite */
.btn.btn-call.cta.zphone[data-ct-origin-href] {
  position: relative;
  min-height: 74px;
  display: flex !important;
  align-items: center;
  justify-content: flex-start;
  gap: 0 !important;
  padding: 29px 20px 10px 72px;
  color: var(--navy);
  background: var(--yellow);
  border-radius: 8px;
  text-decoration: none;
  text-align: left;
  font-size: 22px;
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -.01em;
  white-space: nowrap;
  box-shadow: 0 14px 28px rgba(247, 197, 49, .26);
}

.btn.btn-call.cta.zphone[data-ct-origin-href]::before {
  content: "" !important;
  position: absolute;
  left: 20px;
  top: 50%;
  width: 38px;
  height: 38px;
  transform: translateY(-50%);
  border-radius: 7px;
  background-color: rgba(7, 27, 51, .08);
  background-image: var(--24h-phone-svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 21px 21px;
}

.btn.btn-call.cta.zphone[data-ct-origin-href]::after {
  content: "Speak to our team" !important;
  position: absolute;
  left: 72px;
  top: 14px;
  color: rgba(7, 27, 51, .68);
  font-size: 11px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.final-cta .btn.btn-call.cta.zphone[data-ct-origin-href]::after {
  content: "Call now" !important;
}

/* Urgent dark CTA after Zadarma rewrite */
.urgent-call.cta.zphone[data-ct-origin-href] {
  position: relative;
  min-width: 220px;
  display: block !important;
  padding: 30px 20px 13px;
  background: var(--navy);
  color: #fff;
  text-decoration: none;
  text-align: center;
  font-size: 20px;
  line-height: 1.05;
  font-weight: 900;
  white-space: nowrap;
}

.urgent-call.cta.zphone[data-ct-origin-href]::before {
  content: "Call now" !important;
  position: absolute;
  top: 11px;
  left: 0;
  right: 0;
  color: rgba(255,255,255,.62);
  font-size: 11px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* Simple phone links */
.inline-call.cta.zphone[data-ct-origin-href]::before {
  content: "Call Now:\00a0" !important;
  position: static;
  
}

.text-call.cta.zphone[data-ct-origin-href]::before,
.coverage-result-call.cta.zphone[data-ct-origin-href]::before,
.footer-phone.cta.zphone[data-ct-origin-href]::before {
  content: none !important;
}

/* Mobile sticky call button */
.mobile-call.cta.zphone[data-ct-origin-href] {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 8px !important;
  background: var(--yellow);
  color: var(--navy);
  text-decoration: none;
  font-size: 16px;
  line-height: 1;
  font-weight: 900;
  white-space: nowrap;
}

.mobile-call.cta.zphone[data-ct-origin-href]::before {
  content: "⚡" !important;
  position: static;
  font-size: 17px;
  line-height: 1;
}

@media (max-width: 680px) {
  .header-call.cta.zphone[data-ct-origin-href] {
    min-height: 42px;
    padding: 6px 12px 6px 39px;
    font-size: 13px;
  }

  .header-call.cta.zphone[data-ct-origin-href]::before {
    left: 8px;
    width: 27px;
    height: 27px;
    border-radius: 6px;
    background-size: 16px 16px;
  }

  .header-call.cta.zphone[data-ct-origin-href]::after {
    content: none !important;
  }

  .btn.btn-call.cta.zphone[data-ct-origin-href] {
    min-height: 64px;
    padding: 26px 15px 9px 64px;
    font-size: 19px;
  }

  .btn.btn-call.cta.zphone[data-ct-origin-href]::before {
    left: 16px;
    width: 35px;
    height: 35px;
    background-size: 19px 19px;
  }

  .btn.btn-call.cta.zphone[data-ct-origin-href]::after {
    left: 64px;
    top: 12px;
    font-size: 10px;
  }

  .urgent-call.cta.zphone[data-ct-origin-href] {
    width: 100%;
    min-width: 0;
  }

  .mobile-call.cta.zphone[data-ct-origin-href] {
    font-size: clamp(14px, 4vw, 17px);
  }
}
