/* =========================================================
   DYLSAL Plumbing - Header & Footer
   Tokens extracted from Figma file: wbkeve6WQQjUIjCQKNUcVv
   ========================================================= */

/* Local Kanit family - served from /assets/font/Kanit so Google Fonts
   isn't required and weight/italic mappings stay precise. */
@font-face { font-family: 'Kanit'; font-style: normal; font-weight: 100; font-display: swap; src: url('../assets/font/Kanit/Kanit-Thin.ttf') format('truetype'); }
@font-face { font-family: 'Kanit'; font-style: italic; font-weight: 100; font-display: swap; src: url('../assets/font/Kanit/Kanit-ThinItalic.ttf') format('truetype'); }
@font-face { font-family: 'Kanit'; font-style: normal; font-weight: 200; font-display: swap; src: url('../assets/font/Kanit/Kanit-ExtraLight.ttf') format('truetype'); }
@font-face { font-family: 'Kanit'; font-style: italic; font-weight: 200; font-display: swap; src: url('../assets/font/Kanit/Kanit-ExtraLightItalic.ttf') format('truetype'); }
@font-face { font-family: 'Kanit'; font-style: normal; font-weight: 300; font-display: swap; src: url('../assets/font/Kanit/Kanit-Light.ttf') format('truetype'); }
@font-face { font-family: 'Kanit'; font-style: italic; font-weight: 300; font-display: swap; src: url('../assets/font/Kanit/Kanit-LightItalic.ttf') format('truetype'); }
@font-face { font-family: 'Kanit'; font-style: normal; font-weight: 400; font-display: swap; src: url('../assets/font/Kanit/Kanit-Regular.ttf') format('truetype'); }
@font-face { font-family: 'Kanit'; font-style: italic; font-weight: 400; font-display: swap; src: url('../assets/font/Kanit/Kanit-Italic.ttf') format('truetype'); }
@font-face { font-family: 'Kanit'; font-style: normal; font-weight: 500; font-display: swap; src: url('../assets/font/Kanit/Kanit-Medium.ttf') format('truetype'); }
@font-face { font-family: 'Kanit'; font-style: italic; font-weight: 500; font-display: swap; src: url('../assets/font/Kanit/Kanit-MediumItalic.ttf') format('truetype'); }
@font-face { font-family: 'Kanit'; font-style: normal; font-weight: 600; font-display: swap; src: url('../assets/font/Kanit/Kanit-SemiBold.ttf') format('truetype'); }
@font-face { font-family: 'Kanit'; font-style: italic; font-weight: 600; font-display: swap; src: url('../assets/font/Kanit/Kanit-SemiBoldItalic.ttf') format('truetype'); }
@font-face { font-family: 'Kanit'; font-style: normal; font-weight: 700; font-display: swap; src: url('../assets/font/Kanit/Kanit-Bold.ttf') format('truetype'); }
@font-face { font-family: 'Kanit'; font-style: italic; font-weight: 700; font-display: swap; src: url('../assets/font/Kanit/Kanit-BoldItalic.ttf') format('truetype'); }
@font-face { font-family: 'Kanit'; font-style: normal; font-weight: 800; font-display: swap; src: url('../assets/font/Kanit/Kanit-ExtraBold.ttf') format('truetype'); }
@font-face { font-family: 'Kanit'; font-style: italic; font-weight: 800; font-display: swap; src: url('../assets/font/Kanit/Kanit-ExtraBoldItalic.ttf') format('truetype'); }
@font-face { font-family: 'Kanit'; font-style: normal; font-weight: 900; font-display: swap; src: url('../assets/font/Kanit/Kanit-Black.ttf') format('truetype'); }
@font-face { font-family: 'Kanit'; font-style: italic; font-weight: 900; font-display: swap; src: url('../assets/font/Kanit/Kanit-BlackItalic.ttf') format('truetype'); }

:root {
  /* Brand colors */
  --color-navy:        #0f2843;
  --color-navy-deep:   #041e3c;
  --color-blue:        #0a52a2;
  --color-blue-light:  #a0beeb;
  --color-white:       #ffffff;
  --color-gray-100:    #d9d9d9;
  --color-gray-500:    #898fad;

  /* Gradients */
  --grad-button:       linear-gradient(149.6deg, #0a52a2 27%, #041e3c 86%);
  --grad-social:       linear-gradient(144.5deg, #0a52a2 17%, #041e3c 85%);
  --grad-light:        linear-gradient(90deg, #0a52a2 0%, #a0beeb 100%);

  /* Type */
  --font-display: 'Kanit', system-ui, -apple-system, sans-serif;
  --font-body:    'DM Sans', system-ui, -apple-system, sans-serif;

  /* Layout */
  --container-max: 1600px;
  --container-pad: clamp(16px, 4vw, 80px);
  --topbar-pad:    clamp(16px, 2.5vw, 24px);

  /* Easing */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

/* =========================================================
   Reset / base
   ========================================================= */

*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  /* hidden = universal fallback for iOS Safari < 16; clip = preferred where supported */
  overflow-x: hidden;
  overflow-x: clip;
}
body {
  overflow-x: hidden;
  overflow-x: clip;
  max-width: 100%;
  position: relative;
}

body {
  margin: 0;
  font-family: var(--font-display); /* Kanit Light as project-wide body font */
  font-weight: 300;
  font-size: 20px;
  line-height: 1.5;
  color: var(--color-navy);
  background: var(--color-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
ul { margin: 0; padding: 0; list-style: none; }
button { font: inherit; cursor: pointer; background: none; border: 0; padding: 0; color: inherit; }

:focus-visible {
  outline: 2px solid var(--color-blue-light);
  outline-offset: 2px;
}

/* =========================================================
   Buttons
   ========================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 54px;
  padding: 0 24px;
  border-radius: 5px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 18px;
  line-height: 1;
  text-transform: uppercase;
  color: var(--color-white);
  white-space: nowrap;
  transition: transform 0.2s var(--ease-out), filter 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out);
}

.btn:hover { transform: translateY(-1px); filter: brightness(0.85); box-shadow: 0 8px 20px -10px rgba(10, 82, 162, 0.5); }
.btn:active { transform: translateY(0); filter: brightness(0.75); }

.btn--gradient        { background: var(--grad-button); }
.btn--gradient-light  { background: var(--grad-light); height: 65px; padding: 0 53px; font-size: 20px; }
.btn--dark            { background: var(--color-navy); }

.btn--block        { width: 100%; }
.btn--block-narrow { width: min(277px, 100%); }

.btn__icon { width: 26px; height: 26px; }

/* Site-wide button & CTA nowrap - text never wraps to a second line */
.btn,
.btn--block,
.btn--block-narrow,
.hero__cta .btn,
.services__cta,
.service-card__cta,
.service-feature__cta,
.more-than__cta,
.tenders__cta,
.why__cta,
.quote-form__call,
.quote-form__submit,
.sponsorships__cta,
.reviews__cta,
.trusted__cta,
.megamenu__cta,
.service-why__cta,
.banner__cta,
.industry-card__cta,
.history-card__cta,
.process-steps__cta,
.footer__cta,
button[type="submit"],
button.btn {
  white-space: nowrap;
}

/* =========================================================
   Hero
   ========================================================= */

.hero {
  position: relative;
  min-height: 720px;
  padding: clamp(80px, 12vw, 160px) var(--container-pad) clamp(140px, 16vw, 220px);
  background-image: url('../assets/images/hero-bg.jpg');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  color: var(--color-white);
  overflow: hidden;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 1054px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
}

.hero__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-shadow: 0 0 45px rgba(0, 0, 0, 0.96);
}

.grad-text {
  color: var(--color-white) !important;
  background: none !important;
  -webkit-background-clip: border-box !important;
  background-clip: border-box !important;
  -webkit-text-fill-color: var(--color-white) !important;
}

.hero__subtitle {
  margin: 0;
  max-width: 680px;
  font-family: var(--font-display);
  font-size: clamp(16px, 1.5vw, 20px);
  letter-spacing: -0.02em;
  text-shadow: 0 0 45px rgba(0, 0, 0, 0.9);
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 4px;
}
.hero__cta .btn { font-size: 16px; height: 54px; padding: 0 36px; }

/* =========================================================
   Hero variant: .hero--inner (inner-page hero - every page except home)
   Figma: Frame 96 (37:1275) - 1920×619 with bg image, gradient overlay, centered content
   ========================================================= */
.hero.hero--inner {
  min-height: 0;
  height: clamp(420px, 32vw, 619px);
  padding: 0 var(--container-pad);
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
}
.hero--inner .hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  max-width: none;
  pointer-events: none;
}
.hero--inner .hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(160, 190, 235, 0.4) 4.8%,
    rgba(10, 82, 162, 0.4) 32.7%,
    rgba(0, 0, 0, 0.4) 63.5%
  );
}
.hero--inner .hero__content {
  position: relative;
  z-index: 2;
  max-width: 1054px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
}
.hero--inner .hero__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(36px, 4.5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--color-white);
  text-shadow: 0 0 45px rgba(0, 0, 0, 0.96);
  max-width: 900px;
}
.hero--inner .hero__subtitle {
  margin: 0;
  max-width: 100%;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.4;
  letter-spacing: -0.02em;
  color: var(--color-white);
  text-shadow: 0 0 45px rgba(0, 0, 0, 1);
}
.hero--inner .hero__cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 4px;
}
.hero--inner .hero__cta .btn {
  height: 54px;
  padding: 0 53px;
  font-size: 20px;
  font-weight: 500;
  border-radius: 5px;
}
.hero--inner .hero__cta .btn.btn--solid-blue { background: var(--color-blue); }
.hero--inner .hero__cta .btn.btn--dark { background: var(--color-navy); }

@media (max-width: 700px) {
  .hero.hero--inner { height: clamp(360px, 70vw, 460px); }
  .hero--inner .hero__cta .btn { height: 50px; padding: 0 24px; font-size: 16px; }
  .hero--inner .hero__title { font-size: clamp(28px, 7vw, 44px); }
  .hero--inner .hero__subtitle { font-size: 15px; }
}

/* --- Hero figures (plumbers anchored to bottom, behind utes/text) --- */
.hero__figure {
  position: absolute;
  height: auto;
  width: auto;
  pointer-events: none;
  z-index: 0;
}
.hero__figure--right {
  right: 0;
  bottom: clamp(100px, 11vw, 180px);
  height: 900px;
}
.hero__figure--left {
  left: 0;
  bottom: clamp(100px, 11vw, 180px);
  height: 900px;
}

/* --- Hero badges (single SVG) --- */
.hero__badges {
  display: block;
  width: clamp(420px, 45vw, 620px);
  height: auto;
  margin: clamp(40px, 6vw, 64px) auto 0;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.35));
  position: relative;
  z-index: 1;
}

/* --- Hero utes (full-width fleet photo) --- */
.hero__utes {
  display: block;
  width: 100%;
  height: auto;
  margin: clamp(24px, 4vw, 48px) calc(var(--container-pad) * -1) calc(clamp(140px, 16vw, 220px) * -1);
  position: relative;
  z-index: 1;
  transform: scale(1.1);
  transform-origin: center bottom;
}

.btn--solid-blue { background: var(--color-blue); padding: 0 36px; }
.btn--indigo { background: #1e285f; padding: 0 36px; }

/* =========================================================
   Section 2 - Project Focused Intro
   ========================================================= */
.section-intro {
  position: relative;
  background: linear-gradient(180deg, #0f2843 0%, #2665a9 100%);
  color: var(--color-white);
  padding: clamp(56px, 7vw, 110px) var(--container-pad);
  overflow: hidden;
}
.section-intro__image {
  position: absolute;
  right: 0;
  top: auto;
  bottom: 0;
  height: 80%;
  width: auto;
  max-width: 50%;
  pointer-events: none;
  z-index: 0;
  object-fit: contain;
  object-position: right bottom;
}
/* Compact variant - image flush right and bottom, capped height so it stays consistent across pages even if text length varies */
.section-intro--compact-image .section-intro__image {
  top: auto;
  right: 0;
  bottom: 0;
  height: auto;
  width: auto;
  aspect-ratio: auto;
  max-width: 70%;
  max-height: clamp(420px, 50vw, 660px);
  object-fit: contain;
  object-position: right bottom;
}
@media (max-width: 900px) {
  .section-intro--compact-image .section-intro__image {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    height: auto;
    width: 100%;
    aspect-ratio: auto;
    max-width: 100%;
    object-fit: contain;
    object-position: center bottom;
    display: block;
    margin: 16px auto 0;
  }
}
.section-intro__inner {
  position: relative;
  z-index: 1;
}
.section-intro__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 36px;
}
.section-intro__eyebrow {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(16px, 1.6vw, 24px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--color-white);
  opacity: 0.85;
}
.section-intro__title {
  margin: 0;
  max-width: 735px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--color-white);
}
.section-intro__body {
  max-width: 650px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.section-intro__body p {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.5;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.9);
}
.section-intro__body p:first-child { color: var(--color-white); }
.section-intro .btn--indigo {
  font-size: 18px;
  padding: 0 53px;
  height: 54px;
  margin-top: 12px;
}
@media (max-width: 900px) {
  .section-intro { padding: 60px 0 0; overflow: hidden; }
  .section-intro__inner { gap: 24px; padding: 0 24px 24px; }
  .section-intro__title { font-size: 30px; }
  .section-intro__body p { font-size: 15px; }
  .section-intro .btn--indigo { font-size: 14px; padding: 0 32px; height: 50px; }
  .section-intro__image {
    position: relative;
    top: auto;
    bottom: auto;
    right: auto;
    left: auto;
    display: block;
    margin: 0 0 0 auto;
    height: auto;
    width: auto;
    max-width: 100%;
    max-height: none;
    transform: none;
    object-position: right bottom;
  }
}

@media (max-width: 900px) {
  .hero {
    min-height: 560px;
    padding: clamp(48px, 14vw, 100px) 24px clamp(80px, 18vw, 140px);
  }
  .hero__title { font-size: 30px; }
  /* On mobile, paint the gradient text in solid white for legibility against the dark hero. */
  .hero__title .grad-text {
    background: none;
    -webkit-background-clip: border-box;
    background-clip: border-box;
    -webkit-text-fill-color: var(--color-white);
    color: var(--color-white);
  }
  .hero__subtitle { font-size: 15px; }
  .hero__cta .btn { font-size: 14px; padding: 0 22px; height: 50px; }
  .hero__cta { gap: 8px; }
  .hero__badges { width: min(360px, 92%); margin-top: 28px; }
  .hero__utes { margin: 24px -24px calc(clamp(80px, 18vw, 140px) * -1); transform: scale(1.2); }
  .hero__figure--right,
  .hero__figure--left { display: none; }
}

/* =========================================================
   Section 3 - Services accordion
   ========================================================= */
.services {
  background: linear-gradient(180deg, #ffffff 0%, #e8e8e8 37%, #e8e8e8 100%);
  padding: clamp(80px, 10vw, 160px) 0 0;
  color: var(--color-navy);
}

.services__header {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad) clamp(48px, 6vw, 80px);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  align-items: start;
  gap: clamp(40px, 6vw, 96px);
}

.services__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--color-navy);
}
.services__title-accent {
  display: block;
  color: var(--color-blue);
}

.services__intro {
  margin: 12px 0 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(15px, 1.4vw, 20px);
  line-height: 1.5;
  letter-spacing: -0.01em;
  color: #616161;
  max-width: 460px;
}

/* --- Accordion --- */
.services__accordion {
  display: flex;
  height: 773px;
  width: 100%;
  overflow: hidden;
}

.services__panel {
  position: relative;
  flex: 0 0 164px;
  background: var(--panel-bg);
  overflow: hidden;
  transition: flex-basis 0.45s var(--ease-out);
  cursor: pointer;
  isolation: isolate;
}
.services__panel.is-active {
  flex: 1 1 auto;
  cursor: default;
}

/* Number label (top of every panel) */
.services__num {
  position: absolute;
  top: 36px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 32px;
  letter-spacing: -0.02em;
  color: var(--color-white);
  opacity: 0.55;
  z-index: 3;
  pointer-events: none;
}
.services__panel.is-active .services__num {
  left: auto;
  right: 36px;
  transform: none;
  opacity: 1;
}

/* Tab button (covers the panel for clicks) */
.services__tab {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 2;
  background: transparent;
}

/* Vertical label on inactive panels */
.services__label {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%) rotate(180deg);
  transform-origin: center center;
  writing-mode: vertical-rl;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 32px;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--color-white);
  white-space: nowrap;
  pointer-events: none;
  transition: opacity 0.25s var(--ease-out);
}
.services__panel.is-active .services__label { opacity: 0; }

/* Background image (active only) */
.services__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.45s var(--ease-out);
}
.services__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.services__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 21, 36, 0) 0%, #081524 100%);
}
.services__panel.is-active .services__media { opacity: 1; }

/* Content (visible only when active) */
.services__content {
  position: absolute;
  left: 60px;
  right: 60px;
  bottom: 60px;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: clamp(20px, 4vw, 64px);
  color: var(--color-white);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease-out) 0.15s;
}
.services__panel.is-active .services__content {
  opacity: 1;
  pointer-events: auto;
}
.services__text {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 509px;
}
.services__heading {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(28px, 3.4vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.services__desc {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(14px, 1.2vw, 20px);
  line-height: 1.25;
  letter-spacing: -0.01em;
}
.services__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  height: 65px;
  padding: 0 53px;
  background: #083465;
  color: var(--color-white);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  transition: background-color 0.2s var(--ease-out), transform 0.2s var(--ease-out);
}
.services__cta:hover { background: #0a52a2; transform: translateY(-1px); }

/* =========================================================
   services-grid - 2-col card grid (inner-page services list)
   Figma: Frame 74 (37:1803) - 736×518 cards with image, dark blue overlay, title, body, BOOK NOW
   ========================================================= */
.services-grid {
  background: var(--color-white);
  padding: clamp(56px, 7vw, 100px) var(--container-pad) clamp(40px, 5vw, 80px);
}
.services-grid__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 2.4vw, 32px);
  max-width: var(--container-max);
  margin: 0 auto;
  list-style: none;
  padding: 0;
}
.service-card {
  position: relative;
  display: block;
  aspect-ratio: 736 / 518;
  border-radius: 10px;
  overflow: hidden;
  isolation: isolate;
  background: #0f2843;
  color: var(--color-white);
  text-decoration: none;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px -16px rgba(15, 40, 67, 0.35);
}
.service-card__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform 0.5s var(--ease-out);
}
.service-card:hover .service-card__image {
  transform: scale(1.04);
}
.service-card::before {
  /* Brand blue curve graphic - covers bottom of card so all text sits on top of it */
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: url('../assets/graphics/service card background.svg') no-repeat;
  background-size: 100% 100%;
  background-position: center bottom;
  pointer-events: none;
}
.service-card__body {
  position: absolute;
  z-index: 3;
  left: clamp(24px, 3vw, 56px);
  right: clamp(24px, 3vw, 56px);
  bottom: clamp(20px, 2.5vw, 40px);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  column-gap: clamp(16px, 2vw, 32px);
  row-gap: 8px;
}
.service-card__title {
  grid-column: 1 / -1;
  margin: 0 0 6px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--color-white);
}
.service-card__desc {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(14px, 1.4vw, 20px);
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--color-white);
  max-width: 32ch;
}
.service-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  height: clamp(38px, 3vw, 44px);
  padding: 0 clamp(20px, 2.5vw, 36px);
  border-radius: 5px;
  background: #083465;
  color: var(--color-white);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(11px, 1vw, 14px);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background 0.2s var(--ease-out);
}
.service-card:hover .service-card__cta { background: var(--color-navy-deep); }
.service-card__cta:hover { background: var(--color-navy-deep); }

/* Optional --wide modifier: a row-spanning hero card (e.g. last "Commercial" card) */
.services-grid__list li:has(.service-card--wide) {
  grid-column: 1 / -1;
}
.service-card--wide {
  aspect-ratio: 1492 / 518;
}

/* No-image variant - used while sub-service tile photography is pending */
.service-card--no-image {
  aspect-ratio: 736 / 360;
  background: linear-gradient(180deg, #0f2843 0%, #2665a9 100%);
}
.service-card--no-image .service-card__image { display: none; }
.service-card--no-image::before {
  background: none;
}
@media (min-width: 901px) {
  .service-card--no-image .service-card__body {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: clamp(28px, 3vw, 48px);
    gap: 14px;
  }
}
@media (max-width: 900px) {
  .service-card--no-image {
    aspect-ratio: auto;
    min-height: 240px;
  }
  .service-card--no-image .service-card__body {
    margin-top: 0;
    border-top: 0;
    border-radius: 10px;
    padding: 32px 24px 26px;
  }
}

@media (max-width: 900px) {
  .services-grid { padding: 32px 0; }
  .services-grid__header {
    text-align: left;
    align-items: flex-start;
    padding: 0 24px;
    margin-bottom: 20px;
  }
  .services-grid__list {
    display: flex;
    grid-template-columns: none;
    gap: 16px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 24px;
    padding: 4px 24px 12px;
    margin: 0;
    scrollbar-width: none;
    align-items: stretch;
  }
  .services-grid__list::-webkit-scrollbar { display: none; }
  .services-grid__list > li {
    flex: 0 0 78%;
    min-width: 78%;
    scroll-snap-align: start;
    display: flex;
  }
  .services-grid__list > li > .service-card { width: 100%; }
  .services-grid__list li:has(.service-card--wide) { grid-column: auto; }

  /* Mobile cards: image at top in native aspect (no crop), solid-blue body underneath */
  .service-card,
  .service-card--wide {
    aspect-ratio: auto;
    display: flex;
    flex-direction: column;
    background: var(--color-blue);
  }
  .service-card__image {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    aspect-ratio: 737 / 700;
    flex-shrink: 0;
    transform: scale(1.14);
    transform-origin: top center;
  }
  .service-card:hover .service-card__image {
    transform: scale(1.2);
  }
  .service-card[href="#leak-detection"] .service-card__image,
  .service-card[href="#septic"] .service-card__image {
    transform: scale(1.311);
  }
  .service-card[href="#leak-detection"]:hover .service-card__image,
  .service-card[href="#septic"]:hover .service-card__image {
    transform: scale(1.38);
  }
  /* Disable the desktop card-wide overlays; curve graphic moves onto the body */
  .service-card::before,
  .service-card::after {
    content: none;
  }
  .service-card__body {
    position: relative;
    inset: auto;
    left: auto;
    right: auto;
    bottom: auto;
    padding: 50px 24px 26px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    grid-template-columns: 1fr;
    row-gap: 12px;
    gap: 12px;
    flex: 1;
    background: var(--color-blue);
    border-top: 6px solid var(--color-navy-deep);
    border-radius: 50% 50% 0 0 / 40px 40px 0 0;
    margin-top: -45px;
    z-index: 1;
  }
  .service-card__title {
    font-size: 22px;
    margin-bottom: 0;
  }
  .service-card__desc {
    max-width: none;
    font-size: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .service-card.is-expanded .service-card__desc {
    -webkit-line-clamp: unset;
    overflow: visible;
  }
  .service-card__more {
    align-self: flex-start;
    background: transparent;
    border: 0;
    padding: 0;
    margin: -4px 0 0;
    color: rgba(255, 255, 255, 0.85);
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 0.02em;
    text-decoration: underline;
    text-underline-offset: 3px;
    cursor: pointer;
  }
  .service-card__cta {
    justify-self: start;
    align-self: flex-start;
    margin-top: auto;
    height: 42px;
    padding: 0 24px;
    font-size: 12px;
  }
}

/* Hide the Read more button on desktop (cards aren't constrained there) */
@media (min-width: 901px) {
  .service-card__more { display: none; }
}

/* =========================================================
   service-feature | Alternating image + text split blocks.
   Used on hot-water for sub-services (Hot Water Repairs, Replacement, etc.).
   ========================================================= */
.service-features {
  background: var(--color-white);
  padding: clamp(48px, 6vw, 96px) var(--container-pad);
}
.service-features__inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(48px, 6vw, 96px);
}
.service-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
.service-feature--reverse .service-feature__media { order: -1; }
.service-feature__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}
.service-feature__icon {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-blue);
  font-variation-settings: 'FILL' 1, 'wght' 500, 'GRAD' 0, 'opsz' 48;
  font-size: 48px;
  line-height: 1;
}
.service-feature__icon img,
.service-feature__icon svg { width: 100%; height: 100%; display: block; }
.service-feature__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--color-navy);
}
.service-feature__lead {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.5;
  color: var(--color-navy);
}
.service-feature__bullets {
  margin: 0;
  padding-left: 20px;
  list-style: disc outside;
  font-family: var(--font-display);
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 1.4;
  color: var(--color-navy);
}
.service-feature__bullets li {
  display: list-item;
  margin: 0 0 6px;
}
.service-feature__bullets li:last-child { margin-bottom: 0; }
.service-feature__summary {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 1.5;
  color: var(--color-navy);
}
.service-feature__cta {
  margin-top: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  padding: 0 28px;
  border-radius: 6px;
  background: var(--color-blue);
  color: var(--color-white);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s var(--ease-out);
}
.service-feature__cta:hover { background: var(--color-navy-deep); }
.service-feature__media img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 14px;
  display: block;
}
/* Modifier: keep image's intrinsic aspect ratio (no cover crop). */
.service-features--natural .service-feature__media img {
  aspect-ratio: auto;
  object-fit: contain;
  height: auto;
}
@media (max-width: 900px) {
  .service-features { padding: 40px 24px; }
  .service-features__inner { gap: 48px; }
  .service-feature {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  /* On mobile, image always sits above text - same stack order in every block. */
  .service-feature .service-feature__media,
  .service-feature--reverse .service-feature__media { order: -1; }
  .service-feature .service-feature__content,
  .service-feature--reverse .service-feature__content { order: 0; }
  .service-feature__title { font-size: 26px; }
  .service-feature__cta { width: 100%; }
}

/* =========================================================
   trust-stats--types | Variant for "Types of Hot Water Systems"
   White tiles with bold title + multi-line description (no icon).
   ========================================================= */
.trust-stats--types .trust-stats__list {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}
.trust-stats--types .trust-stats__item {
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 10px;
  padding: clamp(24px, 2.5vw, 36px);
  min-height: 0;
}
/* Top row: 3 tiles × 2 cols = 6.  Bottom row: 2 tiles × 3 cols = 6. */
.trust-stats--types .trust-stats__item:nth-child(-n+3) { grid-column: span 2; }
.trust-stats--types .trust-stats__item:nth-child(n+4) { grid-column: span 3; }
.trust-stats--types .trust-stats__item-head {
  display: flex;
  align-items: center;
  gap: 10px;
}
.trust-stats--types .trust-stats__item-icon {
  font-size: 22px;
  line-height: 1;
  color: var(--color-blue);
  flex-shrink: 0;
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}
.trust-stats--types .trust-stats__item-title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--color-navy);
}
.trust-stats--types .trust-stats__item-desc {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(13px, 1.05vw, 15px);
  line-height: 1.45;
  color: var(--color-navy);
  opacity: 0.85;
}
.trust-stats--types .trust-stats__cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
}

/* Brand logo row addon (e.g. "We work with trusted brands including ...") */
.trust-stats__brands {
  width: 100%;
  margin-top: clamp(20px, 2.5vw, 36px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(16px, 2vw, 28px);
  text-align: center;
}
.trust-stats__brands-eyebrow {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(14px, 1.2vw, 18px);
  color: var(--color-white);
  opacity: 0.9;
}
.trust-stats__brands-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 3vw, 56px);
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
}
.trust-stats__brands-row li { display: flex; align-items: center; }
.trust-stats__brands-row img {
  display: block;
  height: clamp(28px, 3vw, 44px);
  width: auto;
  max-width: 160px;
  object-fit: contain;
  filter: none;
}
.trust-stats__brands-more {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(14px, 1.2vw, 16px);
  color: var(--color-white);
  opacity: 0.9;
  white-space: nowrap;
}
@media (max-width: 600px) {
  .trust-stats__brands-row { gap: 18px 28px; }
  .trust-stats__brands-row img { height: 24px; }
}
@media (max-width: 900px) {
  .trust-stats--types .trust-stats__list { grid-template-columns: repeat(2, 1fr); }
  .trust-stats--types .trust-stats__item:nth-child(-n+3),
  .trust-stats--types .trust-stats__item:nth-child(n+4) { grid-column: auto; }
}
@media (max-width: 600px) {
  .trust-stats--types .trust-stats__list {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .trust-stats--types .trust-stats__item {
    background: var(--color-white);
    border-radius: 8px;
    border-bottom: 0;
    padding: 20px 22px;
  }
}

/* =========================================================
   industry-grid | "Trusted Across Industries and Project Scales"
   Used on: About. Dark gradient block, copy split + 3 image cards.
   ========================================================= */
.industry-grid {
  background: var(--color-white);
  padding: clamp(24px, 4vw, 60px) var(--container-pad);
}
.industry-grid__inner {
  position: relative;
  max-width: 1600px;
  margin: 0 auto;
  background: linear-gradient(94deg, #06366c 6%, #0a52a2 38%, #4c81c2 98%);
  color: var(--color-white);
  border-radius: 16px;
  padding: clamp(48px, 6vw, 96px) clamp(28px, 4vw, 96px);
  overflow: hidden;
  isolation: isolate;
}
/* Decorative ribbon/wave overlay echoing the Figma background. */
.industry-grid__inner::before,
.industry-grid__inner::after {
  content: '';
  position: absolute;
  pointer-events: none;
  z-index: 0;
  background-repeat: no-repeat;
  background-size: contain;
}
.industry-grid__inner::before {
  inset: 28% -8% auto auto;
  width: 60%;
  aspect-ratio: 5 / 1;
  background-image: linear-gradient(94deg, transparent 0%, rgba(255,255,255,0.10) 40%, rgba(255,255,255,0.06) 70%, transparent 100%);
  border-radius: 50%;
  transform: rotate(-3deg);
  filter: blur(0.5px);
}
.industry-grid__inner::after {
  inset: auto -10% -16% 30%;
  width: 70%;
  aspect-ratio: 6 / 1;
  background-image: linear-gradient(94deg, transparent 0%, rgba(255,255,255,0.10) 40%, rgba(255,255,255,0.05) 70%, transparent 100%);
  border-radius: 50%;
  transform: rotate(2deg);
}
.industry-grid__inner > * { position: relative; z-index: 1; }
.industry-grid__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
  margin-bottom: clamp(40px, 5vw, 72px);
}
.industry-grid__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(30px, 4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--color-white);
  max-width: 560px;
}
.industry-grid__body {
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.92);
  max-width: 540px;
}
.industry-grid__body p { margin: 0; }
.industry-grid__body p:first-child { font-weight: 600; color: var(--color-white); }
.industry-grid__sub-title {
  margin: 0 0 clamp(20px, 2vw, 28px);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(20px, 1.8vw, 24px);
  letter-spacing: -0.01em;
  color: var(--color-white);
}
.industry-grid__list {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(16px, 2vw, 32px);
  list-style: none;
  margin: 0;
  padding: 0;
  justify-content: flex-start;
}
.industry-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  width: 280px;
  height: 280px;
  flex-shrink: 0;
  background: #081524;
  isolation: isolate;
}
.industry-card__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.industry-card::before {
  /* Brand blue curve graphic - sits in front of the image, behind the text */
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: url('../assets/graphics/service card background.svg') no-repeat;
  background-size: 100% 100%;
  background-position: center bottom;
  pointer-events: none;
}
.industry-card__body {
  position: absolute;
  z-index: 2;
  left: 19px;
  right: 19px;
  bottom: 19px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.industry-card__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-transform: capitalize;
  color: var(--color-white);
}
.industry-card__desc {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.9);
}
@media (max-width: 900px) {
  .industry-grid__head { grid-template-columns: 1fr; gap: 20px; margin-bottom: 36px; }
  .industry-grid__title { font-size: 28px; }
  .industry-grid__list { gap: 16px; }
  /* On mobile: stack image on top, solid blue panel below for the text */
  .industry-card {
    width: 100%;
    height: auto;
    aspect-ratio: auto;
    display: flex;
    flex-direction: column;
    background: #0a52a2;
  }
  .industry-card__image {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 10;
  }
  .industry-card::before,
  .industry-card::after { display: none; }
  .industry-card__body {
    position: relative;
    inset: auto;
    padding: 18px 22px 22px;
  }
}

/* =========================================================
   history-timeline | "A History of Growth and Trusted Delivery"
   Used on: About. Centered title, horizontal-scroll 5 timeline cards.
   ========================================================= */
.history-timeline {
  background: var(--color-white);
  padding: clamp(60px, 8vw, 120px) var(--container-pad);
}
.history-timeline__inner {
  position: relative;
  max-width: 1600px;
  margin: 0 auto;
}
.history-timeline__title {
  margin: 0 auto clamp(40px, 5vw, 72px);
  text-align: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(34px, 5vw, 75px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--color-navy);
  max-width: 760px;
}
.history-timeline__list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(16px, 2.2vw, 34px);
  list-style: none;
  margin: 0;
  padding: 0;
}
/* Animated connector line linking the year markers (desktop) */
.history-timeline__list::before {
  content: '';
  position: absolute;
  top: 67px;
  left: 6%;
  right: 6%;
  height: 2px;
  background: linear-gradient(90deg,
    rgba(160, 190, 235, 0) 0%,
    #a0beeb 12%,
    #4c81c2 50%,
    #a0beeb 88%,
    rgba(160, 190, 235, 0) 100%);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 1.4s var(--ease-out) 0.2s;
  z-index: 0;
  pointer-events: none;
}
.history-timeline__list.is-revealed::before { transform: scaleX(1); }

.history-timeline__list > li { position: relative; z-index: 1; }

.history-card {
  position: relative;
  border: 1px solid #a0beeb;
  border-radius: 10px;
  background: linear-gradient(to right, rgba(160, 190, 235, 0.15), rgba(255, 255, 255, 0.15));
  padding: clamp(24px, 2.4vw, 31px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 380px;
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s var(--ease-out),
    transform 0.7s var(--ease-out),
    box-shadow 0.25s var(--ease-out),
    border-color 0.25s var(--ease-out);
  will-change: transform, opacity;
}
.history-timeline__list.is-revealed .history-card {
  opacity: 1;
  transform: translateY(0);
}
.history-timeline__list.is-revealed > li:nth-child(1) .history-card { transition-delay: 0s, 0s, 0s, 0s; }
.history-timeline__list.is-revealed > li:nth-child(2) .history-card { transition-delay: 0.12s, 0.12s, 0s, 0s; }
.history-timeline__list.is-revealed > li:nth-child(3) .history-card { transition-delay: 0.24s, 0.24s, 0s, 0s; }
.history-timeline__list.is-revealed > li:nth-child(4) .history-card { transition-delay: 0.36s, 0.36s, 0s, 0s; }
.history-timeline__list.is-revealed > li:nth-child(5) .history-card { transition-delay: 0.48s, 0.48s, 0s, 0s; }

.history-timeline__list.is-revealed .history-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 44px -18px rgba(15, 40, 67, 0.22);
  border-color: #4c81c2;
}

.history-card__avatar {
  position: relative;
  z-index: 2;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 4px solid var(--color-white);
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(15, 40, 67, 0.08);
}
.history-timeline__list.is-revealed .history-card__avatar {
  animation: history-avatar-pulse 2.6s var(--ease-out) infinite;
}
.history-timeline__list.is-revealed > li:nth-child(1) .history-card__avatar { animation-delay: 0s; }
.history-timeline__list.is-revealed > li:nth-child(2) .history-card__avatar { animation-delay: 0.4s; }
.history-timeline__list.is-revealed > li:nth-child(3) .history-card__avatar { animation-delay: 0.8s; }
.history-timeline__list.is-revealed > li:nth-child(4) .history-card__avatar { animation-delay: 1.2s; }
.history-timeline__list.is-revealed > li:nth-child(5) .history-card__avatar { animation-delay: 1.6s; }

@keyframes history-avatar-pulse {
  0%   { box-shadow: 0 4px 12px rgba(15, 40, 67, 0.08), 0 0 0 0 rgba(76, 129, 194, 0.55); }
  70%  { box-shadow: 0 4px 12px rgba(15, 40, 67, 0.08), 0 0 0 14px rgba(76, 129, 194, 0); }
  100% { box-shadow: 0 4px 12px rgba(15, 40, 67, 0.08), 0 0 0 0 rgba(76, 129, 194, 0); }
}

.history-card__year {
  position: relative;
  align-self: flex-start;
  margin: 0;
  padding-bottom: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(28px, 2.4vw, 36px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--color-navy);
}
.history-card__year::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, #4c81c2, #0a52a2);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.7s var(--ease-out);
}
.history-timeline__list.is-revealed .history-card__year::after {
  transform: scaleX(1);
}
.history-timeline__list.is-revealed > li:nth-child(1) .history-card__year::after { transition-delay: 0.30s; }
.history-timeline__list.is-revealed > li:nth-child(2) .history-card__year::after { transition-delay: 0.42s; }
.history-timeline__list.is-revealed > li:nth-child(3) .history-card__year::after { transition-delay: 0.54s; }
.history-timeline__list.is-revealed > li:nth-child(4) .history-card__year::after { transition-delay: 0.66s; }
.history-timeline__list.is-revealed > li:nth-child(5) .history-card__year::after { transition-delay: 0.78s; }

.history-card__body {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 1.45;
  color: #616161;
}

@media (prefers-reduced-motion: reduce) {
  .history-timeline__list::before,
  .history-card,
  .history-card__year::after {
    transition: none !important;
    transform: none !important;
  }
  .history-card { opacity: 1 !important; }
  .history-card__avatar { animation: none !important; }
}
@media (max-width: 1100px) {
  .history-timeline__list { grid-template-columns: repeat(2, 1fr); }
  .history-timeline__list::before { display: none; }
  .history-card { min-height: 0; }
}
@media (max-width: 600px) {
  .history-timeline__list {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    margin: 0 -24px;
    padding: 0 24px;
  }
  .history-timeline__list::-webkit-scrollbar { display: none; }
  .history-timeline__list > li {
    flex: 0 0 78%;
    min-width: 78%;
    scroll-snap-align: start;
  }
}

/* =========================================================
   more-than | "More Than Service Providers. A Trusted Project Partner."
   Used on: About. Dark gradient with copy left + 3 stacked colored value rows right.
   ========================================================= */
.more-than {
  position: relative;
  background: linear-gradient(180deg, #0f2843 0%, #2665a9 100%);
  color: var(--color-white);
  padding: clamp(64px, 8vw, 128px) var(--container-pad);
  overflow: hidden;
  isolation: isolate;
}
.more-than::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../assets/icons/dylsal-light.png');
  background-repeat: no-repeat;
  background-position: 105% -10%;
  background-size: clamp(600px, 60vw, 1100px) auto;
  opacity: 0.18;
  pointer-events: none;
  z-index: 0;
}
.more-than__inner {
  position: relative;
  z-index: 1;
  max-width: 1600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: clamp(40px, 5vw, 96px);
  align-items: center;
}
.more-than__content {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 2.4vw, 36px);
  align-items: flex-start;
  max-width: 720px;
}
.more-than__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(32px, 4.4vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--color-white);
}
.more-than__body {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(15px, 1.3vw, 20px);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.more-than__body p { margin: 0; }
.more-than__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 54px;
  padding: 0 53px;
  background: #1e285f;
  color: var(--color-white);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 5px;
  transition: filter 0.2s var(--ease-out), transform 0.2s var(--ease-out);
}
.more-than__cta:hover { filter: brightness(1.15); transform: translateY(-1px); }
.more-than__values {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.more-than__value {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(18px, 1.6vw, 24px);
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.more-than__value:nth-child(1) { background: var(--color-navy); color: var(--color-white); }
.more-than__value:nth-child(2) { background: var(--color-blue); color: var(--color-white); }
.more-than__value:nth-child(3) { background: var(--color-blue-light); color: var(--color-navy); }
.more-than__value-trigger {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: clamp(24px, 3vw, 48px) clamp(24px, 3vw, 42px);
  width: 100%;
  background: transparent;
  border: 0;
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
  cursor: pointer;
  text-align: left;
  transition: filter 0.2s var(--ease-out);
}
.more-than__value-trigger:hover { filter: brightness(1.08); }
.more-than__value-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 45px;
  height: 45px;
  font-size: 36px;
  line-height: 1;
  font-variation-settings: 'FILL' 0, 'wght' 500, 'GRAD' 0, 'opsz' 40;
}
.more-than__value-label { flex: 1; }
.more-than__value-chev {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.25s var(--ease-out);
}
.more-than__value-trigger[aria-expanded="true"] .more-than__value-chev { transform: rotate(-135deg); }
.more-than__value-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease-out);
}
.more-than__value-trigger[aria-expanded="true"] + .more-than__value-body { max-height: 600px; }
.more-than__value-body > p {
  margin: 0;
  padding: 0 clamp(24px, 3vw, 42px) clamp(24px, 2.5vw, 36px) clamp(87px, 9vw, 105px);
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.55;
  letter-spacing: -0.01em;
  color: inherit;
  opacity: 0.92;
}
.more-than__value:nth-child(3) .more-than__value-body > p { opacity: 0.85; }
@media (max-width: 1024px) {
  .more-than__inner { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .more-than__title { font-size: 30px; }
  .more-than__value { font-size: 17px; }
  .more-than__value-trigger { padding: 22px 22px; gap: 14px; }
  .more-than__value-icon { width: 32px; height: 32px; font-size: 28px; }
  .more-than__value-body > p { padding: 0 22px 22px 68px; font-size: 15px; }
}

/* =========================================================
   Section 4 - Built For Tenders (image left, text right)
   ========================================================= */
.tenders {
  background: var(--color-white);
  padding: clamp(60px, 8vw, 124px) var(--container-pad);
}
.tenders__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 666fr 751fr;
  align-items: center;
  gap: clamp(40px, 8vw, 124px);
}
.tenders__media img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 20px;
}
.tenders__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 36px;
}
.tenders__icon {
  width: 83px;
  height: auto;
}
.tenders__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(40px, 5.5vw, 75px);
  line-height: 1.09;
  letter-spacing: -0.02em;
  color: var(--color-navy);
}
.tenders__title-accent {
  display: block;
  color: var(--color-blue);
}
.tenders__body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 630px;
}
.tenders__body p {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(15px, 1.4vw, 20px);
  line-height: 1.5;
  letter-spacing: -0.01em;
  color: #616161;
}
.tenders__cta {
  height: 54px;
  padding: 0 53px;
  font-size: 18px;
}

@media (max-width: 900px) {
  .tenders { padding: 60px 24px; }
  .tenders__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .tenders__content { gap: 20px; }
  .tenders__icon { width: 60px; }
  .tenders__title { font-size: 38px; }
  .tenders__body p { font-size: 15px; }
  .tenders__cta { height: 50px; padding: 0 32px; font-size: 14px; }
}

/* =========================================================
   Section 5 - Why DYLSAL features
   ========================================================= */
.why {
  background: var(--color-white);
  padding: 0 var(--container-pad) clamp(60px, 8vw, 100px);
}
.why__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 980fr 620fr;
  min-height: 707px;
}

/* Left media block with overlay text + button */
.why__media {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 707px;
}
.why__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-width: none;
}
.why__media::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(15, 40, 67, 0.70) 0%, rgba(15, 40, 67, 0.30) 60%, rgba(15, 40, 67, 0) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0) 50%, rgba(8, 21, 36, 0.45) 100%);
  z-index: 1;
}
.why__media-overlay {
  position: absolute;
  left: clamp(32px, 5vw, 137px);
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 600px;
}
.why__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(32px, 3.6vw, 48px);
  line-height: 1.09;
  letter-spacing: -0.02em;
  color: var(--color-white);
  text-shadow: 0 4px 31px rgba(0, 0, 0, 0.25);
}
.why__title span { display: block; }
.why__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  max-width: 100%;
  height: 65px;
  padding: 0 36px;
  background: var(--color-blue);
  color: var(--color-white);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  white-space: nowrap;
  align-self: flex-start;
  transition: background-color 0.2s var(--ease-out), transform 0.2s var(--ease-out);
}
.why__cta:hover { background: #083465; transform: translateY(-1px); }

/* Right feature pills (5 stacked rows) */
.why__features {
  display: grid;
  grid-template-rows: repeat(5, 1fr);
}
.why__feature {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 32px 42px;
  background: var(--feature-bg);
  color: var(--color-white);
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(18px, 1.9vw, 28px);
  line-height: 1.09;
  letter-spacing: -0.02em;
}
.why__feature img {
  width: 45px;
  height: 45px;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
}
/* Last two pills get partial transparent icons per Figma */
.why__feature:nth-child(2) img,
.why__feature:nth-child(5) img { opacity: 0.55; }

@media (max-width: 1100px) {
  .why__title { font-size: 36px; }
  .why__feature { font-size: 20px; padding: 24px 28px; }
}

@media (max-width: 900px) {
  .why { padding: 0 24px 60px; }
  .why__inner {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .why__media {
    min-height: 360px;
  }
  .why__media-overlay {
    left: 24px;
    right: 24px;
    max-width: none;
    gap: 20px;
  }
  .why__title { font-size: 30px; }
  .why__cta { width: 100%; height: 54px; font-size: 16px; padding: 0 24px; }
  .why__feature {
    padding: 22px 24px;
    font-size: 18px;
  }
  .why__feature img { width: 36px; height: 36px; }
}

/* =========================================================
   Section 6 - Our Clients logo strip
   ========================================================= */
.clients {
  background: var(--color-white);
  padding: 35px 0;
}
.clients__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  display: flex;
  align-items: center;
  gap: clamp(24px, 3vw, 60px);
  flex-wrap: nowrap;
}
.clients__title {
  margin: 0;
  flex-shrink: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 24px;
  line-height: 1.09;
  letter-spacing: -0.02em;
  color: var(--color-navy);
  white-space: nowrap;
}
.clients__logos {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 28px);
  flex-wrap: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
}
.clients__logos::-webkit-scrollbar { display: none; }

/* Marquee - two identical tracks slide left in sync, looping seamlessly. */
.clients__marquee {
  display: flex;
  gap: clamp(16px, 2vw, 28px);
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%);
}
.clients__marquee .clients__track {
  flex-shrink: 0;
  overflow: visible;
  margin: 0;
  padding: 0;
  list-style: none;
  animation: clients-marquee 38s linear infinite;
}
.clients__marquee:hover .clients__track { animation-play-state: paused; }
@keyframes clients-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(calc(-100% - clamp(16px, 2vw, 28px))); }
}
@media (prefers-reduced-motion: reduce) {
  .clients__marquee .clients__track { animation: none; }
  .clients__marquee { overflow-x: auto; }
}
.clients__logos li {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.clients__logos img {
  display: block;
  max-width: none;
  object-fit: contain;
  object-position: center;
  transition: opacity 0.25s var(--ease-out), transform 0.25s var(--ease-out);
}
.clients__logos li:hover img {
  transform: scale(1.04);
}
/* Per Figma sizes - width AND height to preserve aspect on logos with whitespace padding */
.clients__logos li:nth-child(1)  img { width: 140px; height: 48px; }   /* RayWhite (197×68 source - wide horizontal logo) */
.clients__logos li:nth-child(2)  img { width: 110px; height: 60px; }   /* Sydney Water */
.clients__logos li:nth-child(3)  img { width: 130px; height: 50px; }   /* Confluence Water */
.clients__logos li:nth-child(4)  img { width: 140px; height: 60px; }   /* Burgess Rawson */
.clients__logos li:nth-child(5)  img { width: 50px;  height: 66px; }   /* NSW Fire */
.clients__logos li:nth-child(6)  img { width: 110px; height: 56px; }   /* Paynter Dixon */
.clients__logos li:nth-child(7)  img { width: 140px; height: 42px; }   /* Riverwall */
.clients__logos li:nth-child(8)  img { width: 150px; height: 48px; }   /* Saliba */
.clients__logos li:nth-child(9)  img { width: 165px; height: 40px; }   /* Spotless */
.clients__logos li:nth-child(10) img { width: 70px;  height: 66px; }   /* Evolve FM */

@media (max-width: 900px) {
  .clients { padding: 24px 0; }
  .clients__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 0 24px;
  }
  .clients__title { font-size: 20px; padding: 0; }
  /* Marquee fixes for mobile - let the marquee container control overflow,
     and stop tracks from shrinking or wrapping. */
  .clients__marquee {
    width: 100%;
    margin: 0 -24px;
    width: calc(100% + 48px);
  }
  .clients__marquee .clients__logos {
    width: auto;
    overflow: visible;
    padding-bottom: 0;
    flex-shrink: 0;
    flex-wrap: nowrap;
  }
  .clients__marquee .clients__track li { flex-shrink: 0; }
  .clients__marquee .clients__logos li img { height: 36px !important; width: auto !important; }
}

/* =========================================================
   Section 9 - Banner (Professional Plumbing You Can Count On)
   ========================================================= */
.banner {
  padding: clamp(24px, 4vw, 60px) var(--container-pad);
  background: var(--color-white);
}
.banner__inner {
  position: relative;
  max-width: var(--container-max);
  margin: 0 auto;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(97.5deg, #0f2843 40.4%, #2665a9 98.1%);
  color: var(--color-white);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  align-items: center;
  aspect-ratio: 2400 / 699;
  padding: clamp(20px, 3vw, 40px) clamp(32px, 6vw, 116px);
  isolation: isolate;
}
.banner__image {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  height: auto;
  z-index: 0;
  max-width: none;
  pointer-events: none;
}
.banner__content {
  position: relative;
  z-index: 1;
  max-width: 640px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}
.banner__eyebrow {
  margin: 0 0 -4px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(18px, 1.6vw, 24px);
  line-height: 1;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: var(--color-blue-light);
}
.banner__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(24px, 2.8vw, 36px);
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--color-white);
}
.banner__body {
  margin: 6px 0 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(15px, 1.4vw, 20px);
  line-height: 1.25;
  letter-spacing: -0.02em;
  max-width: 516px;
  color: var(--color-white);
}
.btn.banner__cta {
  height: 54px;
  padding: 0 53px;
  font-size: 20px;
  font-weight: 500;
  margin-top: 14px;
  background: var(--color-blue);
}

@media (max-width: 900px) {
  .banner { padding: 24px; }
  .banner__inner {
    grid-template-columns: 1fr;
    aspect-ratio: auto;
    padding: 36px 28px calc((100vw - 48px) * 0.291 + 16px);
    background: #0f2843;
  }
  .banner__image {
    width: 100%;
    height: auto;
    top: auto;
    bottom: 0;
    left: 0;
    right: auto;
    object-position: center bottom;
  }
  .banner__title { font-size: clamp(22px, 6vw, 32px); }
  .banner__body { font-size: 15px; }
  .btn.banner__cta { height: 50px; padding: 0 32px; font-size: 14px; }
}

@media (max-width: 560px) {
  .banner__inner { padding: 28px 22px calc((100vw - 48px) * 0.291 + 12px); }
}

/* =========================================================
   Section 10 - Quote / Contact form
   ========================================================= */
.quote-form {
  position: relative;
  padding: clamp(24px, 4vw, 60px) var(--container-pad) 0;
  background: var(--color-white);
}
.quote-form__inner {
  --qf-pad-x: clamp(40px, 7vw, 110px);
  position: relative;
  max-width: var(--container-max);
  margin: 0 auto;
  min-height: 720px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(180deg, #0a52a2 36.55%, #a0beeb 100%);
  color: var(--color-white);
  display: grid;
  grid-template-columns: 1fr 1.45fr;
  align-items: start;
  gap: clamp(40px, 6vw, 80px);
  padding: 111px var(--qf-pad-x) 0;
  isolation: isolate;
}
.quote-form__intro {
  position: relative;
  z-index: 2;
  margin-top: 54px;
  display: flex;
  flex-direction: column;
  gap: 33px;
  align-items: flex-start;
  max-width: 516px;
}
.quote-form__form {
  position: relative;
  z-index: 2;
}
.quote-form__bottom-banner {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 166px;
  object-fit: cover;
  object-position: center bottom;
  z-index: 1;
  pointer-events: none;
  user-select: none;
  display: block;
}
.quote-form__tagline {
  position: absolute;
  z-index: 2;
  right: clamp(40px, 7vw, 110px);
  bottom: 46px;
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(20px, 2.4vw, 32px);
  line-height: 1.09;
  letter-spacing: -0.02em;
  color: var(--color-white);
  text-align: right;
  white-space: nowrap;
}
.quote-form__tagline-accent { color: var(--color-blue-light); font-weight: 600; }
.quote-form__tagline strong { font-weight: 500; }

.quote-form__utes {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 685px;
  height: 270px;
  z-index: 2;
  pointer-events: none;
  user-select: none;
  display: block;
}
.quote-form__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 767px;
  height: 741px;
  z-index: 0;
  pointer-events: none;
  user-select: none;
  display: block;
}
.quote-form__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(32px, 3.4vw, 48px);
  line-height: 0.73;
  letter-spacing: -0.02em;
  color: var(--color-white);
}
.quote-form__subtitle {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(15px, 1.4vw, 20px);
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--color-white);
}
.quote-form__call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 248px;
  height: 54px;
  padding: 7px 53px;
  background: var(--color-blue-light);
  color: #1e285f;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 20px;
  text-transform: uppercase;
  border-radius: 5px;
  white-space: nowrap;
  transition: transform 0.2s var(--ease-out), filter 0.2s var(--ease-out);
}
.quote-form__call:hover { transform: translateY(-1px); filter: brightness(1.05); }

.quote-form__form {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  max-width: 748px;
  justify-self: end;
}
.quote-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px 14px;
}
.quote-field {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--color-white);
  border-radius: 5px;
  padding: 27px 26px;
  height: 80px;
}
.quote-field__icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
.quote-field input,
.quote-field select {
  flex: 1 1 auto;
  border: 0;
  background: transparent;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 20px;
  letter-spacing: -0.02em;
  color: var(--color-navy);
  outline: none;
  min-width: 0;
}
.quote-field input::placeholder,
.quote-field select option:disabled {
  color: #9e9e9e;
}
.quote-field--select select {
  appearance: none;
  cursor: pointer;
  padding-right: 24px;
}
.quote-field__chevron {
  width: 20px;
  height: 20px;
  pointer-events: none;
}
.quote-form__submit {
  height: 80px;
  border-radius: 5px;
  background: linear-gradient(167.54deg, #0a52a2 55.815%, #041e3c 93.885%);
  color: var(--color-white);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 24px;
  letter-spacing: -0.02em;
  cursor: pointer;
  border: 0;
  box-shadow: 0 0 23.7px rgba(160, 190, 235, 1);
  transition: transform 0.2s var(--ease-out), filter 0.2s var(--ease-out);
}
.quote-form__submit:hover { transform: translateY(-1px); filter: brightness(1.05); }

@media (max-width: 900px) {
  .quote-form { padding: 24px 20px; }
  .quote-form__inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
    min-height: 0;
    padding: 40px 28px 280px;
  }
  .quote-form__form,
  .quote-form__intro,
  .quote-form__grid { min-width: 0; }
  .quote-field { min-width: 0; }
  .quote-form__intro {
    margin-top: 0;
    gap: 18px;
    max-width: 100%;
  }
  .quote-form__title { font-size: 32px; line-height: 0.95; }
  .quote-form__subtitle { font-size: 16px; }
  .quote-form__call { width: auto; padding: 0 28px; font-size: 16px; height: 50px; }
  .quote-form__form { max-width: 100%; gap: 12px; }
  .quote-form__grid { grid-template-columns: 1fr; gap: 12px; }
  .quote-field { height: 60px; padding: 18px 18px; }
  .quote-field__icon { width: 20px; height: 20px; }
  .quote-field input, .quote-field select { font-size: 16px; }
  .quote-form__submit { height: 60px; font-size: 18px; }

  .quote-form__bg { display: none; }

  .quote-form__bottom-banner { height: 240px; }

  .quote-form__utes {
    width: 92%;
    height: auto;
    left: 0;
    bottom: 90px;
    z-index: 2;
  }

  .quote-form__tagline {
    position: static;
    margin: 16px 0 0;
    text-align: center;
    font-size: 16px;
    white-space: normal;
    line-height: 1.3;
  }
}

@media (max-width: 480px) {
  .quote-form { padding: 24px 16px; }
  .quote-form__inner { padding: 32px 22px 240px; }
  .quote-form__title { font-size: 26px; }
  .quote-form__utes { bottom: 70px; }
}

/* =========================================================
   Section 11 - Sydney Wide Coverage
   ========================================================= */
.coverage {
  padding: clamp(24px, 4vw, 60px) var(--container-pad);
  background: var(--color-white);
}
.coverage__inner {
  position: relative;
  max-width: var(--container-max);
  margin: 0 auto;
  border-radius: 10px;
  overflow: hidden;
  background: rgba(160, 190, 235, 0.2);
  display: grid;
  grid-template-columns: 1.05fr 1.25fr;
  min-height: 700px;
}
.coverage__content {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: clamp(48px, 6vw, 90px) clamp(28px, 4.4vw, 72px);
  align-self: center;
  max-width: 700px;
}
.coverage__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(30px, 3.1vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--color-navy);
}
.coverage__title span {
  display: block;
}
.coverage__body {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(15px, 1.4vw, 20px);
  line-height: 1.5;
  color: var(--color-navy);
}

/* Smart suburb search */
.coverage__search-wrap {
  position: relative;
  width: 100%;
}
.coverage__search {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--color-white);
  border-radius: 5px;
  padding: 0 20px;
  height: 54px;
  box-shadow: 0 2px 8px rgba(15, 40, 67, 0.05);
  transition: box-shadow 0.2s var(--ease-out);
}
.coverage__search:focus-within {
  box-shadow: 0 4px 18px rgba(10, 82, 162, 0.18);
}
.coverage__search img { width: 22px; height: 22px; flex-shrink: 0; }
.coverage__search input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: none;
  background: transparent;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 16px;
  color: var(--color-navy);
}
.coverage__search input::placeholder { color: #9e9e9e; }
.coverage__search-clear {
  font-size: 24px;
  line-height: 1;
  color: #9e9e9e;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s var(--ease-out), color 0.2s var(--ease-out);
}
.coverage__search-clear:hover { background: rgba(10, 82, 162, 0.08); color: var(--color-navy); }

.coverage__suggestions {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  z-index: 20;
  max-height: 320px;
  overflow-y: auto;
  background: var(--color-white);
  border-radius: 8px;
  box-shadow: 0 12px 36px -8px rgba(15, 40, 67, 0.22), 0 0 0 1px rgba(10, 82, 162, 0.08);
  padding: 6px;
}
.coverage__suggestions[hidden] { display: none; }
.coverage__suggestion {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 5px;
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--color-navy);
  cursor: pointer;
}
.coverage__suggestion:hover,
.coverage__suggestion.is-active {
  background: rgba(10, 82, 162, 0.08);
}
.coverage__suggestion mark {
  background: rgba(10, 82, 162, 0.18);
  color: inherit;
  padding: 0 2px;
  border-radius: 2px;
}
.coverage__suggestion-name { font-weight: 500; }
.coverage__suggestion-postcode {
  font-weight: 400;
  font-size: 13px;
  color: #6b7891;
  font-variant-numeric: tabular-nums;
}
.coverage__suggestion--empty {
  padding: 14px;
  text-align: center;
  color: #6b7891;
  font-size: 14px;
  cursor: default;
}
.coverage__suggestion--empty:hover { background: transparent; }

/* Book Now prompt panel */
.coverage__result {
  margin-top: 6px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: linear-gradient(97deg, #0a52a2 0%, #1c69bf 100%);
  color: var(--color-white);
  border-radius: 8px;
  box-shadow: 0 8px 24px -8px rgba(10, 82, 162, 0.4);
  animation: coverageResultIn 0.3s var(--ease-out);
}
.coverage__result[hidden] { display: none; }
@keyframes coverageResultIn {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}
.coverage__result-tick {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  color: var(--color-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.coverage__result-tick svg { width: 22px; height: 22px; }
.coverage__result-text { min-width: 0; }
.coverage__result-title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.3;
  color: var(--color-white);
}
.coverage__result-title strong {
  font-weight: 600;
  color: var(--color-white);
}
.coverage__result-title span {
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  font-variant-numeric: tabular-nums;
  margin-left: 4px;
}
.coverage__result-sub {
  margin: 2px 0 0;
  font-family: var(--font-display);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.78);
}
.coverage__result-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  white-space: nowrap;
}
.btn.coverage__result-cta {
  height: 42px;
  padding: 0 22px;
  font-size: 14px;
  background: var(--color-white);
  color: var(--color-blue);
  border-radius: 5px;
}
.btn.coverage__result-cta:hover { filter: brightness(0.96); }
.coverage__result-call {
  font-family: var(--font-display);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.coverage__result-call:hover { color: var(--color-white); }

/* Coverage badge medallion */
.coverage__badge {
  position: absolute;
  top: clamp(16px, 2vw, 28px);
  right: clamp(16px, 2vw, 28px);
  width: clamp(110px, 11vw, 168px);
  height: auto;
  filter: drop-shadow(0 14px 28px rgba(10, 82, 162, 0.25));
  pointer-events: none;
  user-select: none;
  z-index: 5;
  transform: rotate(-6deg);
  transform-origin: top right;
}

.coverage__media {
  display: flex;
  flex-direction: column;
}
.coverage__map {
  width: 100%;
  flex: 1 1 auto;
  object-fit: cover;
  display: block;
  min-height: 300px;
}
.coverage__emergency {
  position: relative;
  min-height: 268px;
  isolation: isolate;
  background: var(--color-navy);
}
.coverage__emergency-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  max-width: none;
}
.coverage__emergency-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: clamp(32px, 4vw, 50px);
  max-width: 460px;
}
.coverage__emergency-content h3 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.25;
  color: var(--color-white);
  letter-spacing: -0.02em;
}
.coverage__emergency-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 65px;
  padding: 0 40px;
  background: var(--color-navy);
  color: var(--color-white);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  border-radius: 5px;
  white-space: nowrap;
  transition: filter 0.2s var(--ease-out), transform 0.2s var(--ease-out);
  align-self: flex-start;
}
.coverage__emergency-cta:hover { filter: brightness(1.15); transform: translateY(-1px); }

@media (max-width: 900px) {
  .coverage { padding: 24px; }
  .coverage__inner { grid-template-columns: 1fr; min-height: 0; }
  .coverage__content { padding: 28px 24px; }
  .coverage__title { font-size: 24px; padding-right: 168px; }
  .coverage__body { font-size: 14px; }
  /* Badge sits flush with the inner top edge, 2x previous mobile size,
     pulled up 20% of its own height so it overlaps the container's top. */
  .coverage__badge {
    width: 156px;
    top: 0;
    right: 12px;
    transform: translateY(-20%) rotate(-6deg);
  }
  .coverage__map { aspect-ratio: 16/10; min-height: 0; }
  /* Match emergency container to background-image aspect so cover doesn't squeeze it. */
  .coverage__emergency {
    min-height: 0;
    aspect-ratio: 1014 / 580;
  }
  .coverage__emergency-bg { object-position: center; }
  .coverage__emergency-cta { height: 54px; padding: 0 24px; font-size: 14px; }
}
@media (max-width: 480px) {
  .coverage__title { padding-right: 124px; font-size: 22px; }
  .coverage__badge { width: 116px; }
}

/* =========================================================
   Section 12 - Sponsorships
   ========================================================= */
.sponsorships {
  padding: clamp(24px, 4vw, 60px) var(--container-pad);
  background: var(--color-white);
}
.sponsorships__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  border-radius: 10px;
  background: linear-gradient(97deg, #06366c 6%, #0a52a2 38%, #4c81c2 98%);
  color: var(--color-white);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  align-items: center;
  gap: clamp(32px, 6vw, 72px);
  padding: clamp(48px, 6vw, 96px) clamp(32px, 6vw, 116px);
  min-height: 520px;
}
.sponsorships__content {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: flex-start;
  max-width: 520px;
}
.sponsorships__eyebrow {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(16px, 1.4vw, 24px);
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--color-blue-light);
}
.sponsorships__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.sponsorships__body {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(15px, 1.4vw, 20px);
  line-height: 1.5;
  max-width: 460px;
  color: rgba(255, 255, 255, 0.92);
}
.sponsorships__cta { height: 54px; padding: 0 53px; font-size: 18px; margin-top: 6px; }

.sponsorships__logos {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  justify-self: end;
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 720px;
}
.sponsorships__logos li {
  aspect-ratio: 267 / 223;
  background: var(--color-white);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sponsorships__logos img {
  width: auto;
  max-width: 82%;
  max-height: 82%;
  object-fit: contain;
}

@media (max-width: 900px) {
  .sponsorships { padding: 24px; }
  .sponsorships__inner { grid-template-columns: 1fr; padding: 40px 28px; min-height: 0; }
  .sponsorships__title { font-size: 32px; }
  .sponsorships__logos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin: 0 auto;
    width: 100%;
    max-width: 360px;
  }
  .sponsorships__logos li {
    aspect-ratio: 1 / 0.85;
  }
  .sponsorships__cta { height: 50px; padding: 0 32px; font-size: 14px; }
}

/* =========================================================
   Section 13 - Accreditations
   ========================================================= */
.accreds {
  padding: clamp(48px, 6vw, 80px) var(--container-pad) clamp(48px, 6vw, 80px);
  background: var(--color-white);
  text-align: center;
}
.accreds__title {
  margin: 0 0 28px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(18px, 1.6vw, 24px);
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--color-blue);
}
.accreds__list {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 22px;
}
.accreds__list li {
  height: 223px;
  border-radius: 9px;
  background: #ecf2fb;
  display: flex;
  align-items: center;
  justify-content: center;
}
.accreds__list img {
  max-width: 70%;
  max-height: 70%;
  width: auto;
  height: auto;
  object-fit: contain;
}

@media (max-width: 1200px) {
  .accreds__list { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 700px) {
  .accreds__list { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .accreds__list li { height: 150px; }
}

/* =========================================================
   Section 14 - Google Reviews
   ========================================================= */
.reviews {
  padding: clamp(24px, 4vw, 60px) var(--container-pad);
  background: var(--color-white);
}
.reviews__inner {
  position: relative;
  max-width: var(--container-max);
  margin: 0 auto;
  border-radius: 20px;
  background: linear-gradient(180deg, #ecf2fb 0%, rgba(160, 190, 235, 0.35) 100%);
  padding: clamp(48px, 6vw, 100px) clamp(32px, 6vw, 116px);
  isolation: isolate;
  overflow: hidden;
}
.reviews__inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../assets/images/section-14-bg.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.06;
  z-index: 0;
}
.reviews__header,
.reviews__list,
.reviews__cta { position: relative; z-index: 1; }

.reviews__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: clamp(36px, 5vw, 64px);
  flex-wrap: wrap;
}
.reviews__heading {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 700px;
}
.reviews__eyebrow {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(16px, 1.4vw, 24px);
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--color-blue);
}
.reviews__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(32px, 4.5vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--color-navy);
}
.reviews__rating {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  color: var(--color-navy);
}
.reviews__google { width: 36px; height: 36px; }
.reviews__score {
  font-weight: 700;
  font-size: 36px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.reviews__star { color: #ffae35; font-size: 22px; }
.reviews__count {
  font-weight: 400;
  font-size: 22px;
  letter-spacing: -0.02em;
}

.reviews__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 21px;
  margin-bottom: clamp(36px, 5vw, 64px);
}
.review {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 28px;
  border: 1px solid #a0beeb;
  border-radius: 10px;
  background: linear-gradient(to right, rgba(160, 190, 235, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%);
}
.review__top {
  display: flex;
  align-items: center;
  gap: 15px;
}
.review__avatar {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  border: 4px solid var(--color-white);
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(15, 40, 67, 0.08);
}
.review__top > div {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}
.review__stars { width: 110px; height: 22px; display: block; }
.review__heading {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(20px, 1.8vw, 26px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--color-navy);
}
.review__quote {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.45;
  letter-spacing: -0.01em;
  color: var(--color-navy);
  flex: 1 1 auto;
}
.review__meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  font-family: var(--font-display);
  font-weight: 400;
}
.review__meta cite {
  font-style: normal;
  font-size: 20px;
  letter-spacing: -0.02em;
  color: var(--color-blue);
}
.review__meta time {
  font-size: 16px;
  letter-spacing: -0.02em;
  color: rgba(30, 40, 95, 0.5);
  white-space: nowrap;
}

.reviews__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(748px, 100%);
  height: 76px;
  margin: 0 auto;
  padding: 0 26px;
  background: linear-gradient(167.5deg, #0a52a2 56%, #041e3c 94%);
  color: var(--color-white);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(18px, 1.8vw, 22px);
  letter-spacing: -0.01em;
  border-radius: 5px;
  box-shadow: 0 0 24px rgba(160, 190, 235, 0.6);
  transition: transform 0.2s var(--ease-out), filter 0.2s var(--ease-out);
}
.reviews__cta:hover { transform: translateY(-1px); filter: brightness(1.05); }
.reviews__cta-icon {
  width: 28px;
  height: 28px;
  margin-right: 14px;
  flex-shrink: 0;
}

@media (max-width: 1100px) {
  .reviews__list { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
  .reviews { padding: 24px; }
  .reviews__inner { padding: 28px 20px; }
  .reviews__title { font-size: 26px; }
  .reviews__list { grid-template-columns: 1fr; gap: 12px; }

  /* Google Reviews-style compact card on mobile */
  .review {
    display: grid;
    grid-template-columns: 44px 1fr auto;
    column-gap: 12px;
    row-gap: 6px;
    padding: 16px 18px;
    border: 1px solid #d8e4f3;
    background: var(--color-white);
    border-radius: 12px;
    align-items: start;
  }
  /* Flatten the nested wrappers so every leaf joins the parent grid. */
  .review__top,
  .review__top > div,
  .review__meta { display: contents; }

  .review__avatar {
    grid-column: 1;
    grid-row: 1 / span 2;
    width: 44px;
    height: 44px;
    border-width: 2px;
    align-self: start;
    margin-top: 0;
  }
  .review__meta cite {
    grid-column: 2;
    grid-row: 1;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--color-navy);
    align-self: end;
  }
  .review__meta time {
    grid-column: 3;
    grid-row: 1;
    font-size: 12px;
    color: rgba(97, 97, 97, 0.7);
    line-height: 1.2;
    align-self: end;
  }
  .review__stars {
    grid-column: 2 / -1;
    grid-row: 2;
    width: 88px;
    height: 16px;
    justify-self: start;
  }
  .review__heading {
    grid-column: 1 / -1;
    grid-row: 3;
    margin: 6px 0 0;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.3;
    color: var(--color-navy);
  }
  .review__quote {
    grid-column: 1 / -1;
    grid-row: 4;
    margin: 0;
    font-size: 14px;
    line-height: 1.45;
    color: #5d5d5d;
  }

  .reviews__cta {
    height: auto;
    min-height: 60px;
    font-size: 14px;
    padding: 12px 16px;
    text-align: center;
    line-height: 1.25;
    white-space: normal;
    gap: 10px;
  }
  .reviews__cta-icon { width: 22px; height: 22px; margin-right: 0; }
}

/* =========================================================
   Section 7 - Trusted Plumbing (text left, image right)
   ========================================================= */
.trusted {
  background: var(--color-white);
  padding: clamp(60px, 8vw, 124px) var(--container-pad);
}
.trusted__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 609fr 704fr;
  align-items: center;
  gap: clamp(40px, 7vw, 103px);
}
.trusted__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  max-width: 609px;
}
.trusted__icon {
  width: 70px;
  height: auto;
}
.trusted__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(30px, 3.5vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--color-navy);
}
.trusted__body {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(15px, 1.4vw, 20px);
  line-height: 1.5;
  letter-spacing: -0.01em;
  color: #616161;
  max-width: 509px;
}
.trusted__cta {
  height: 54px;
  padding: 0 53px;
  font-size: 18px;
}
.trusted__media img {
  width: 100%;
  aspect-ratio: 704 / 867;
  object-fit: cover;
  border-radius: 20px;
}

@media (max-width: 900px) {
  .trusted { padding: 60px 24px; }
  .trusted__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .trusted__content { gap: 20px; }
  .trusted__icon { width: 56px; }
  .trusted__title { font-size: 28px; }
  .trusted__body { font-size: 15px; }
  .trusted__cta { height: 50px; padding: 0 32px; font-size: 14px; }
}

/* =========================================================
   Section 8 - Testimonials
   ========================================================= */
.testimonials {
  background: var(--color-white);
  padding: clamp(60px, 6vw, 80px) var(--container-pad);
}
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}
.testimonials__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}
.testimonial {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 31px 29px;
  border: 1px solid #a0beeb;
  border-radius: 10px;
  background: linear-gradient(to right, rgba(160, 190, 235, 0.15) 0%, rgba(255, 255, 255, 0.15) 100%);
  min-height: 536px;
}
.testimonial__avatar {
  width: 87px;
  height: 87px;
  border-radius: 50%;
  border: 5px solid var(--color-white);
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(15, 40, 67, 0.08);
}
.testimonial__stars {
  width: 130px;
  height: 26px;
  display: block;
}
.testimonial__heading {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(28px, 2.5vw, 36px);
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--color-navy);
}
.testimonial__quote {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(15px, 1.3vw, 20px);
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: #616161;
  flex-grow: 1;
}
.testimonial__meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  font-family: var(--font-display);
  font-weight: 400;
  font-style: normal;
}
.testimonial__name {
  font-style: normal;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--color-blue);
}
.testimonial__date {
  font-size: 18px;
  letter-spacing: -0.02em;
  color: rgba(97, 97, 97, 0.5);
  white-space: nowrap;
}

@media (max-width: 1024px) {
  .testimonials__inner { grid-template-columns: 1fr; max-width: 600px; gap: 24px; }
  .testimonial { min-height: 0; }
}

@media (max-width: 900px) {
  .testimonials { padding: 48px 24px; }
  .testimonial { padding: 24px 22px; }
  .testimonial__heading { font-size: 26px; }
  .testimonial__quote { font-size: 16px; }
  .testimonial__name { font-size: 20px; }
  .testimonial__date { font-size: 16px; }
}

/* =========================================================
   FAQ - above footer
   ========================================================= */
.faq {
  background: var(--color-white);
  padding: clamp(60px, 8vw, 120px) var(--container-pad);
}
.faq__inner {
  max-width: 1152px;
  margin: 0 auto;
}
.faq__header {
  text-align: center;
  margin-bottom: clamp(40px, 5vw, 72px);
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}
.faq__eyebrow {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-blue);
  text-transform: none;
}
.faq__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(26px, 2.6vw, 32px);
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--color-navy);
}
.faq__list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(15, 40, 67, 0.12);
}
.faq__item { border-bottom: 1px solid rgba(15, 40, 67, 0.12); }
.faq__row {
  display: grid;
  grid-template-columns: 110px 1fr 30px;
  align-items: center;
  width: 100%;
  gap: 24px;
  padding: 32px 0;
  text-align: left;
  cursor: pointer;
}
.faq__num {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 36px;
  line-height: 1;
  color: var(--color-blue);
}
.faq__question {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(17px, 1.6vw, 22px);
  line-height: 1.36;
  letter-spacing: -0.01em;
  color: var(--color-navy);
}
.faq__icon {
  position: relative;
  width: 28px;
  height: 28px;
  display: inline-block;
}
.faq__icon::before,
.faq__icon::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  background: var(--color-blue);
  transition: transform 0.25s var(--ease-out), opacity 0.25s var(--ease-out);
}
.faq__icon::before { /* horizontal line - always visible */
  width: 22px;
  height: 2px;
  transform: translate(-50%, -50%);
}
.faq__icon::after { /* vertical line - hidden when open */
  width: 2px;
  height: 22px;
  transform: translate(-50%, -50%);
}
.faq__item.is-open .faq__icon::after { opacity: 0; transform: translate(-50%, -50%) rotate(90deg); }
.faq__item.is-open .faq__icon::before { transform: translate(-50%, -50%) rotate(45deg); width: 22px; }
.faq__item.is-open .faq__icon::after { transform: translate(-50%, -50%) rotate(45deg); height: 22px; opacity: 1; }

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out);
}
.faq__item.is-open .faq__answer { max-height: 1500px; }
.faq__answer > p,
.faq__answer > ul,
.faq__answer > ol {
  margin: 0 0 16px 134px;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  color: #616161;
  max-width: 891px;
}
.faq__answer > p:last-child,
.faq__answer > ul:last-child,
.faq__answer > ol:last-child { margin-bottom: 32px; }
.faq__answer > p:first-child,
.faq__answer > ul:first-child,
.faq__answer > ol:first-child { margin-top: 0; }
.faq__answer > ul,
.faq__answer > ol { padding-left: 24px; }
.faq__answer > ul li,
.faq__answer > ol li { margin: 4px 0; }
.faq__answer strong { color: var(--color-navy); font-weight: 600; }

@media (max-width: 900px) {
  .faq { padding: 60px 24px; }
  .faq__row {
    grid-template-columns: 50px 1fr 24px;
    gap: 14px;
    padding: 22px 0;
  }
  .faq__num { font-size: 26px; }
  .faq__question { font-size: 16px; line-height: 1.4; }
  .faq__icon { width: 22px; height: 22px; }
  .faq__icon::before { width: 16px; }
  .faq__icon::after { height: 16px; }
  .faq__item.is-open .faq__icon::after { height: 16px; }
  .faq__answer > p { margin-left: 64px; font-size: 14px; }
}

/* =========================================================
   Section 3 - Mobile (stacked vertical layout)
   Per Figma 401:1908
   ========================================================= */
@media (max-width: 900px) {
  .services { padding: 60px 0 0; }
  .services__header {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 0 24px 32px;
  }
  .services__title { font-size: 32px; }
  .services__intro { font-size: 15px; max-width: none; }

  .services__accordion {
    flex-direction: column;
    height: auto;
  }

  /* Inactive panel: 80px tall horizontal bar */
  .services__panel {
    flex: 0 0 80px;
    min-height: 80px;
    height: 80px;
    transition: height 0.45s var(--ease-out);
  }
  .services__panel.is-active {
    flex: 0 0 auto;
    min-height: 425px;
    height: auto;
  }

  /* Number top-right, label centered-left (inactive) */
  .services__num {
    top: 50%;
    left: auto;
    right: 28px;
    transform: translateY(-50%);
    font-size: 18px;
    opacity: 0.55;
  }
  .services__label {
    bottom: auto;
    top: 50%;
    left: 28px;
    right: auto;
    transform: translateY(-50%);
    writing-mode: horizontal-tb;
    font-size: 18px;
    font-weight: 400;
    color: var(--color-white);
  }
  /* Active state: number top-right above image, label hidden */
  .services__panel.is-active .services__num {
    top: 14px;
    right: 24px;
    transform: none;
    opacity: 1;
    z-index: 4;
    color: var(--color-white);
  }
  .services__panel.is-active .services__label { opacity: 0; }

  /* Image area on mobile: 267px tall */
  .services__media {
    position: absolute;
    inset: 0;
    height: 267px;
  }
  .services__media::after { display: none; }

  /* Curved blue arc transition + content area below image */
  .services__content {
    position: relative;
    inset: auto;
    margin-top: 248px;
    padding: 0 25px 25px;
    background: var(--panel-bg);
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
    z-index: 2;
  }
  .services__content::before {
    content: '';
    position: absolute;
    left: -50%;
    right: -50%;
    bottom: 100%;
    height: 80px;
    background: var(--panel-bg);
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  }
  .services__heading { font-size: 28px; line-height: 1.09; }
  .services__desc { font-size: 16px; line-height: 1.25; }
  .services__cta {
    width: 100%;
    height: 50px;
    padding: 0;
    font-size: 16px;
  }
}

/* =========================================================
   Header
   ========================================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-white);
}

/* --- Top bar (announcement) --- */
.topbar {
  background: var(--color-navy);
  color: var(--color-white);
  overflow: hidden;
  max-height: 56px;
  opacity: 1;
  transition: max-height 0.32s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: max-height;
}
.site-header.is-scrolled .topbar {
  max-height: 0;
  opacity: 0;
  transition: max-height 0.28s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.16s cubic-bezier(0.4, 0, 0.2, 1);
}

.topbar__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px var(--topbar-pad);
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
}

.topbar__link {
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s var(--ease-out);
}
.topbar__link:hover { color: var(--color-blue-light); }

/* --- Main nav --- */
.nav {
  background: var(--color-white);
  border-bottom: 1px solid rgba(15, 40, 67, 0.06);
}

.nav__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 18px var(--container-pad);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(24px, 4vw, 64px);
}

/* Logo image is exported with whitespace; clip + scale to match Figma. */
.nav__logo {
  display: block;
  width: 230px;
  height: 64px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.nav__logo img {
  position: absolute;
  left: 0;
  top: -45.28%;
  width: 100%;
  height: 192.4%;
  max-width: none;
}

.nav__menu > ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(20px, 2.5vw, 37px);
  font-family: var(--font-display);
  font-size: 18px;
  text-transform: uppercase;
  color: var(--color-navy);
}

.nav__menu a {
  position: relative;
  padding: 8px 0;
  white-space: nowrap;
  transition: color 0.2s var(--ease-out);
}
.nav__menu a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--color-blue);
  transition: width 0.25s var(--ease-out);
}
.nav__menu a:hover { color: var(--color-blue); }
.nav__menu a:hover::after { width: 100%; }

/* Megamenu trigger (Services / Industries) */
.nav__menu-item--has-mega {
  position: static;
}
.nav__menu-trigger {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 0;
  font: inherit;
  text-transform: inherit;
  color: inherit;
  white-space: nowrap;
  cursor: pointer;
  transition: color 0.2s var(--ease-out);
}
.nav__menu-trigger::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--color-blue);
  transition: width 0.25s var(--ease-out);
}
.nav__menu-trigger:hover,
.nav__menu-item--open .nav__menu-trigger { color: var(--color-blue); }
.nav__menu-item--open .nav__menu-trigger::after { width: 100%; }
.nav__menu-chev {
  width: 11px;
  height: 7px;
  flex-shrink: 0;
  transition: transform 0.25s var(--ease-out);
}
.nav__menu-item--open .nav__menu-chev { transform: rotate(180deg); }

/* Megamenu panel */
.megamenu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 50;
  background: var(--color-white);
  border-top: 1px solid rgba(15, 40, 67, 0.08);
  box-shadow: 0 24px 48px -16px rgba(15, 40, 67, 0.18);
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity 0.22s var(--ease-out), transform 0.22s var(--ease-out);
}
.megamenu[hidden] { display: block; }
.nav__menu-item--open .megamenu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.megamenu__inner {
  display: grid;
  grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
  gap: clamp(32px, 4vw, 64px);
  max-width: var(--container-max);
  margin: 0 auto;
  padding: clamp(36px, 3.5vw, 56px) clamp(24px, 4vw, 80px);
}
.megamenu__intro {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
  position: relative;
}
.megamenu__intro::after {
  content: '';
  position: absolute;
  top: 4px;
  bottom: 4px;
  right: -16px;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(15, 40, 67, 0.12), transparent);
}
.megamenu__eyebrow {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-blue);
}
.megamenu__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(20px, 1.6vw, 26px);
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--color-navy);
  text-transform: none;
}
.megamenu__body {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(15, 40, 67, 0.7);
  text-transform: none;
}
.megamenu__cta {
  margin-top: 6px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-blue);
  padding: 0;
}
.megamenu__cta span {
  transition: transform 0.2s var(--ease-out);
  display: inline-block;
}
.megamenu__cta:hover { color: var(--color-navy); }
.megamenu__cta:hover span { transform: translateX(4px); }
.megamenu__cta::after { display: none; }

/* "View All Services" CTA pill that sits as the last item in the megamenu grid */
.megamenu__card-cta {
  grid-column: 1 / -1;
  list-style: none;
  margin: 4px 0 0;
}
.megamenu__view-all {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px 18px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-white);
  background: var(--color-navy);
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.2s var(--ease-out);
}
.megamenu__view-all:hover { background: var(--color-blue); }
.megamenu__view-all span {
  display: inline-block;
  transition: transform 0.2s var(--ease-out);
}
.megamenu__view-all:hover span { transform: translateX(4px); }

.megamenu__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: initial;
  text-transform: none;
  min-width: 0;
}
.megamenu__grid--two {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.megamenu__card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 20px;
  border-radius: 10px;
  border: 1px solid transparent;
  background: transparent;
  text-transform: none;
  white-space: normal;
  transition: background 0.2s var(--ease-out), border-color 0.2s var(--ease-out), transform 0.2s var(--ease-out);
  text-decoration: none;
}
.megamenu__card-title,
.megamenu__card-desc { white-space: normal; }
.megamenu__card::after { display: none; }
.megamenu__card:hover {
  background: rgba(160, 190, 235, 0.18);
  border-color: rgba(10, 82, 162, 0.18);
  transform: translateY(-1px);
}
.megamenu__icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: linear-gradient(140deg, #0a52a2 0%, #0f2843 100%);
  color: var(--color-white);
}
.megamenu__icon img {
  width: 22px;
  height: 22px;
  filter: brightness(0) invert(1);
}
.megamenu__icon.material-symbols-rounded {
  font-size: 22px;
  line-height: 1;
  color: var(--color-white);
  font-variation-settings: 'FILL' 1, 'wght' 500, 'GRAD' 0, 'opsz' 24;
}
.megamenu__card-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.megamenu__card-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--color-navy);
}
.megamenu__card-desc {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 12.5px;
  line-height: 1.4;
  color: rgba(15, 40, 67, 0.65);
}

@media (max-width: 1280px) {
  .megamenu__inner { grid-template-columns: minmax(240px, 300px) minmax(0, 1fr); }
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* --- Mobile toggle (hidden on desktop) --- */
.nav__toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
}
.nav__toggle img { width: 32px; height: 32px; }

/* Floating call FAB - mobile/tablet only.
   Sits above all content and persists across page scroll. */
.floating-call { display: none; }
@media (max-width: 1200px) {
  .floating-call {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--color-blue);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(10, 82, 162, 0.45), 0 2px 4px rgba(15, 40, 67, 0.2);
    transition: transform 0.2s var(--ease-out), background 0.2s var(--ease-out);
  }
  .floating-call:active { transform: scale(0.95); }
  .floating-call:hover { background: var(--color-navy); }
  .floating-call img {
    width: 30px;
    height: 30px;
    filter: brightness(0) invert(1);
    position: relative;
    z-index: 2;
  }
  .floating-call__pulse {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: var(--color-blue);
    opacity: 0.55;
    animation: floating-call-pulse 2s ease-out infinite;
    z-index: 1;
    pointer-events: none;
  }
  @keyframes floating-call-pulse {
    0%   { transform: scale(1);   opacity: 0.55; }
    70%  { transform: scale(1.6); opacity: 0; }
    100% { transform: scale(1.6); opacity: 0; }
  }
}
@media (max-width: 900px) {
  /* Sit above the bottom-nav bar */
  .floating-call { bottom: calc(76px + env(safe-area-inset-bottom, 0px) + 16px); }
}

/* --- Mobile fullscreen menu (per Figma 390:1646) --- */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: linear-gradient(180deg, #0f2843 0%, #2665a9 46.58%, #2665a9 100%);
  padding: 16px 30px calc(76px + env(safe-area-inset-bottom, 0px) + 24px);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  animation: menuFadeIn 0.25s var(--ease-out);
}
.mobile-menu[hidden] { display: none; }

.mobile-menu__close {
  align-self: flex-end;
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  opacity: 0.85;
  border-radius: 50%;
  transition: background-color 0.2s var(--ease-out);
}
.mobile-menu__close:hover { background-color: rgba(255, 255, 255, 0.1); }
.mobile-menu__close img {
  width: 100%;
  height: 100%;
  filter: brightness(0) invert(1);
}

.mobile-menu__nav { margin-top: 16px; }
.mobile-menu__nav ul {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.mobile-menu__nav li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}
.mobile-menu__nav a {
  display: block;
  padding: 22px 0;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 21px;
  line-height: 1;
  color: var(--color-white);
  transition: color 0.2s var(--ease-out), padding-left 0.2s var(--ease-out);
}
.mobile-menu__nav a:hover { color: var(--color-blue-light); padding-left: 4px; }

/* Mobile-menu collapsible groups (Services / Industries) */
.mobile-menu__group { display: block; }
.mobile-menu__group-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 22px 0;
  background: transparent;
  border: 0;
  cursor: pointer;
  color: var(--color-white);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 21px;
  line-height: 1;
  letter-spacing: -0.01em;
}
.mobile-menu__chev {
  width: 14px;
  height: 14px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.25s var(--ease-out);
}
.mobile-menu__group-trigger[aria-expanded="true"] .mobile-menu__chev { transform: rotate(-135deg); }
.mobile-menu__sublist {
  margin: 0;
  padding: 0;
  list-style: none;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease-out);
}
.mobile-menu__group-trigger[aria-expanded="true"] + .mobile-menu__sublist { max-height: 1200px; }
.mobile-menu__sublist li {
  border-bottom: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.mobile-menu__sublist li:first-child { border-top: 0; }
.mobile-menu__sublist a {
  padding: 14px 0 14px 18px;
  font-size: 16px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
}
.mobile-menu__sublist a:hover { padding-left: 22px; }

.mobile-menu__social {
  display: flex;
  gap: 21px;
  margin-top: 28px;
}
.mobile-menu__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 11px;
  background: var(--grad-social);
  transition: transform 0.2s var(--ease-out);
}
.mobile-menu__social a:hover { transform: translateY(-2px); }
.mobile-menu__social img { width: 24px; height: 24px; }

.mobile-menu__actions {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: auto;
  padding-top: 48px;
}
.mobile-menu__actions .btn { font-size: 14px; height: 54px; }

@keyframes menuFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Lock body scroll while menu is open */
body.menu-open { overflow: hidden; }

/* =========================================================
   Footer
   ========================================================= */

.site-footer {
  background: var(--color-navy);
  color: var(--color-gray-100);
  padding-top: clamp(48px, 8vw, 113px);
}

.footer__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: clamp(40px, 6vw, 104px);
}

/* --- Company column --- */
.footer__company { display: flex; flex-direction: column; gap: 32px; max-width: 464px; }

.footer__logo {
  display: block;
  width: 320px;
}
.footer__logo-icon { display: none; }
.footer__logo-text {
  display: block;
  width: 100%;
  height: auto;
}

.footer__description {
  margin: 0;
  font-size: 18px;
  line-height: 1.5;
  color: var(--color-gray-100);
}

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer__contact li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 18px;
  color: var(--color-white);
}
.footer__contact a { transition: color 0.2s var(--ease-out); }
.footer__contact a:hover { color: var(--color-blue-light); }

.footer__contact-icon {
  flex-shrink: 0;
  width: 35px;
  height: 35px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.footer__contact-icon img { width: 100%; height: 100%; }

/* Per Figma: each logo has its own native dimensions, center-aligned vertically.
   Container width 293, total height 74. */
.footer__accreditations {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 4px;
  height: 74px;
}
.footer__accreditations img {
  filter: brightness(0) invert(1) opacity(0.85);
  transition: opacity 0.2s var(--ease-out);
  display: block;
}
.footer__accreditations img:hover { filter: brightness(0) invert(1) opacity(1); }
.footer__accreditations li:nth-child(1) img { width: 68px;  height: 74px; }
.footer__accreditations li:nth-child(2) img { width: 73px;  height: 67px; }
.footer__accreditations li:nth-child(3) img { width: 92px;  height: 50px; }

/* --- Link columns --- */
.footer__col { display: flex; flex-direction: column; gap: 24px; }
.footer__col--company { gap: 24px; }

.footer__title {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
  color: var(--color-white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.footer__chev { display: none; } /* shown on mobile only */

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 16px;
  color: var(--color-gray-100);
}
.footer__links a { transition: color 0.2s var(--ease-out); }
.footer__links a:hover { color: var(--color-white); }

/* --- Social --- */
.footer__social {
  display: flex;
  gap: 21px;
  margin-top: 32px;
}
.footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 11px;
  background: var(--grad-social);
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out);
}
.footer__social a:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px -10px rgba(10, 82, 162, 0.6);
}
.footer__social img { width: 24px; height: 24px; }

/* --- Footer bottom --- */
.footer__bottom {
  margin-top: clamp(56px, 8vw, 96px);
}
.footer__bottom-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 32px var(--container-pad);
  border-top: 1px solid rgba(217, 217, 217, 0.15);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.footer__copyright {
  margin: 0;
  font-size: 16px;
  color: var(--color-gray-500);
}

.footer__legal {
  display: flex;
  gap: 24px;
  font-size: 16px;
  color: var(--color-gray-500);
}
.footer__legal a {
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s var(--ease-out);
}
.footer__legal a:hover { color: var(--color-white); }

.footer__credit {
  margin: 0;
  text-align: right;
  font-size: 16px;
  color: var(--color-white);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.footer__credit strong { font-weight: 700; }
.footer__credit sup { color: var(--color-blue-light); font-size: 11px; }
.footer__credit a {
  display: inline-flex;
  align-items: center;
  transition: opacity 0.2s var(--ease-out);
}
.footer__credit a:hover { opacity: 0.85; }
.footer__credit-logo {
  height: 22px;
  width: auto;
  display: block;
}
@media (max-width: 700px) {
  .footer__credit {
    display: flex;
    justify-content: center;
    text-align: center;
    width: 100%;
  }
  .footer__credit-logo { height: 18px; } /* ~20% smaller on mobile */
}

/* =========================================================
   Responsive - tablet
   ========================================================= */

@media (max-width: 1500px) {
  .nav__menu > ul { font-size: 16px; gap: 22px; }
  .btn          { font-size: 14px; padding: 0 16px; height: 48px; gap: 8px; }
  .btn__icon    { width: 22px; height: 22px; }
  .nav__inner   { gap: 24px; }
}

@media (max-width: 1280px) {
  .nav__menu > ul { font-size: 15px; gap: 18px; }
  .btn--gradient-light { font-size: 18px; padding: 0 36px; }

  .footer__inner { grid-template-columns: 1.2fr 1fr 1fr 1fr; gap: 48px; }
}

@media (max-width: 1024px) {
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__company { grid-column: 1 / -1; max-width: none; }
  .footer__col--company { grid-column: 1 / -1; }
  .footer__col--company .footer__social { margin-top: 16px; }
}

/* =========================================================
   Responsive - mobile (< 900px)
   ========================================================= */

/* Nav collapses to mobile (hamburger) earlier than other content
   so the desktop menu + actions never overflow on tablet widths. */
@media (max-width: 1320px) {
  .nav__inner {
    grid-template-columns: 1fr auto;
    gap: 16px;
  }
  .nav__menu, .nav__actions { display: none; }
  .nav__toggle { display: inline-flex; }
}

@media (max-width: 900px) {
  .topbar__inner { font-size: 14px; padding: 13px 30px; }

  .nav__inner {
    padding: 10px 24px;
  }
  .nav__logo { width: 124px; height: 36px; }
  .nav__toggle { width: 36px; height: 36px; }
  .nav__toggle img { width: 24px; height: 24px; }

  /* Footer becomes single column with accordion sections */
  .footer__inner {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 0 24px;
  }
  .site-footer { padding-top: 56px; }

  .footer__company { gap: 24px; }
  .footer__logo { width: 240px; }

  .footer__description { font-size: 16px; }
  .footer__contact li  { font-size: 16px; }

  .btn--gradient-light {
    width: auto;
    height: 54px;
    padding: 0 32px;
    font-size: 16px;
  }
  .btn--block-narrow { align-self: flex-start; }

  .footer__accreditations { gap: 22px; height: 60px; }
  .footer__accreditations li:nth-child(1) img { width: 55px; height: 60px; }
  .footer__accreditations li:nth-child(2) img { width: 59px; height: 54px; }
  .footer__accreditations li:nth-child(3) img { width: 75px; height: 41px; }

  /* Accordion behavior */
  .footer__col { gap: 0; border-bottom: 1px solid rgba(217, 217, 217, 0.15); }
  .footer__title {
    padding: 16px 0;
    cursor: pointer;
    user-select: none;
  }
  .footer__chev {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    transition: transform 0.25s var(--ease-out);
    margin-bottom: 4px;
  }
  .footer__title[aria-expanded="true"] .footer__chev {
    transform: rotate(-135deg);
    margin-bottom: -4px;
  }
  .footer__links {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s var(--ease-out), padding 0.3s var(--ease-out);
  }
  .footer__col[data-accordion-open] .footer__links {
    max-height: 600px;
    padding-bottom: 16px;
  }

  .footer__col--company .footer__social {
    display: flex;
    margin-top: 24px;
    padding-bottom: 24px;
  }

  .footer__bottom-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 16px;
    padding: 24px;
  }
  .footer__legal { justify-content: center; flex-wrap: wrap; }
  .footer__credit { text-align: center; }
}

/* =========================================================
   Inner service page - sub-services grid heading
   Sits above the existing services-grid component.
   ========================================================= */
.services-grid--detail { padding-top: clamp(64px, 8vw, 120px); }
.services-grid__header {
  max-width: var(--container-max);
  margin: 0 auto clamp(28px, 3vw, 48px);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.services-grid__eyebrow {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(14px, 1.2vw, 18px);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-blue);
}
.services-grid__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--color-navy);
}
@media (max-width: 900px) {
  .services-grid__header {
    text-align: left;
    align-items: flex-start;
    padding: 0 24px;
    margin: 0 0 20px;
  }
}

/* =========================================================
   process-cards | "Our Leak Detection & Repair Process" -
   horizontal step cards: image top, blue body bottom with
   numbered title + description (Figma 58:3473+).
   ========================================================= */
.process-cards {
  background: var(--color-white);
  padding: clamp(64px, 9vw, 110px) var(--container-pad);
}
.process-cards__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(28px, 4vw, 44px);
}
.process-cards__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--color-navy);
  text-align: center;
  max-width: 900px;
}
.process-cards__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  width: 100%;
}
.process-cards__grid--five { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.process-card {
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  overflow: hidden;
  background: var(--color-blue);
  min-height: 480px;
}
.process-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #0a52a2;
}
.process-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.process-card__media::after {
  content: "";
  position: absolute;
  left: -10%;
  right: -10%;
  bottom: -1px;
  height: 60px;
  background: var(--color-blue);
  border-top-left-radius: 50% 100%;
  border-top-right-radius: 50% 100%;
}
.process-card__body {
  flex: 1;
  padding: 8px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--color-white);
  position: relative;
  z-index: 1;
}
.process-card__num {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(28px, 2.6vw, 36px);
  line-height: 1;
  color: var(--color-white);
}
.process-card__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--color-white);
}
.process-card__desc {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.92);
}
@media (max-width: 1024px) {
  .process-cards__grid,
  .process-cards__grid--five { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 600px) {
  .process-cards { padding: 56px 20px; }
  .process-cards__grid,
  .process-cards__grid--five { grid-template-columns: 1fr; }
  .process-card { min-height: 0; }
}

/* =========================================================
   service-areas-list | All Sydney suburbs grouped by region.
   ========================================================= */
.service-areas-list {
  background: var(--color-white);
  padding: clamp(56px, 7vw, 110px) var(--container-pad);
}
.service-areas-list__inner {
  max-width: var(--container-max);
  margin: 0 auto;
}
.service-areas-list__title {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(28px, 3.6vw, 40px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--color-navy);
}
.service-areas-list__lead {
  margin: 0 0 36px;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(15, 40, 67, 0.85);
  max-width: 780px;
}
.suburb-region {
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(15, 40, 67, 0.1);
}
.suburb-region:last-child { border-bottom: 0; }
.suburb-region__title {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(18px, 1.7vw, 22px);
  letter-spacing: -0.01em;
  color: var(--color-blue);
}
.suburb-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 6px 24px;
}
.suburb-list li {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.4;
  color: var(--color-navy);
  padding: 4px 0;
}
.suburb-list__postcode {
  color: rgba(15, 40, 67, 0.5);
  font-variant-numeric: tabular-nums;
}
@media (max-width: 900px) {
  .suburb-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 500px) {
  .suburb-list { grid-template-columns: 1fr; }
}

/* =========================================================
   legal-content | Privacy / Terms long-form text pages.
   ========================================================= */
.legal-content {
  background: var(--color-white);
  padding: clamp(56px, 7vw, 110px) var(--container-pad);
}
.legal-content__inner {
  max-width: 820px;
  margin: 0 auto;
}
.legal-content__title {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(28px, 3.6vw, 40px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--color-navy);
}
.legal-content__updated {
  margin: 0 0 32px;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 14px;
  color: rgba(15, 40, 67, 0.6);
}
.legal-content__inner h3 {
  margin: 28px 0 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(18px, 1.7vw, 22px);
  line-height: 1.2;
  color: var(--color-navy);
}
.legal-content__inner p {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(15, 40, 67, 0.85);
}
.legal-content__inner a {
  color: var(--color-blue);
  text-decoration: underline;
}

/* =========================================================
   sitemap-content | Nested links across 3 columns.
   ========================================================= */
.sitemap-content {
  background: var(--color-white);
  padding: clamp(56px, 7vw, 110px) var(--container-pad);
}
.sitemap-content__inner {
  max-width: var(--container-max);
  margin: 0 auto;
}
.sitemap-content__title {
  margin: 0 0 32px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(28px, 3.6vw, 40px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--color-navy);
}
.sitemap-content__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
}
.sitemap-content__col h3 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--color-navy);
}
.sitemap-content__col h3:not(:first-child) { margin-top: 28px; }
.sitemap-content__col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sitemap-content__col a {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 15px;
  color: rgba(15, 40, 67, 0.85);
  text-decoration: none;
  transition: color 0.15s ease;
}
.sitemap-content__col a:hover { color: var(--color-blue); }
@media (max-width: 900px) {
  .sitemap-content__grid { grid-template-columns: 1fr; gap: 24px; }
}

/* =========================================================
   why-cards | "Why Choose DYLSAL?" - 6 white card tiles on
   a horizontal blue gradient with tagline + dual CTAs.
   Used on roof-repairs (Figma 58:4738).
   ========================================================= */
.why-cards {
  position: relative;
  background: linear-gradient(93.57deg, #06366c 6.08%, #0a52a2 38.29%, #4c81c2 97.91%);
  padding: clamp(64px, 9vw, 110px) var(--container-pad);
  overflow: hidden;
}
.why-cards__inner {
  position: relative;
  z-index: 1;
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(32px, 5vw, 53px);
}
.why-cards__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--color-white);
  text-align: center;
  max-width: 900px;
}
.why-cards__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 347px));
  gap: 29px;
  width: 100%;
  justify-content: center;
}
.why-cards__grid--four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 1400px;
  gap: 16px;
}
.why-cards__grid--four .why-cards__card {
  min-height: 0;
  padding: 22px 24px;
  justify-content: center;
}
.why-cards__grid--four .why-cards__card-text { font-size: 17px; }
@media (max-width: 1024px) {
  .why-cards__grid--four { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 700px) {
  .why-cards__grid--four { grid-template-columns: 1fr; gap: 12px; }
  .why-cards__grid--four .why-cards__card { padding: 18px 20px; }
  .why-cards__grid--four .why-cards__card-text { font-size: 16px; }
}
.why-cards__card {
  background: var(--color-white);
  border-radius: 6px;
  min-height: 247px;
  padding: 38px 36px 42px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.why-cards__card-text {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 24px;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--color-navy);
}
.why-cards__check {
  display: inline-block;
  margin-right: 4px;
}
.why-cards__tagline {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(18px, 1.7vw, 24px);
  line-height: 1.4;
  letter-spacing: -0.02em;
  color: var(--color-white);
  text-align: center;
  max-width: 900px;
}
.why-cards__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}
.why-cards__btn {
  height: 54px;
  padding: 0 53px;
  font-size: 20px;
  font-weight: 500;
  border-radius: 5px;
  text-transform: uppercase;
  letter-spacing: 0;
}
.why-cards__btn--soft {
  background: var(--color-blue-light);
  color: #083b74;
}
.why-cards__btn--dark {
  background: var(--color-navy);
  color: var(--color-white);
}
@media (max-width: 1024px) {
  .why-cards__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 700px) {
  .why-cards { padding: 56px 20px; }
  .why-cards__grid { grid-template-columns: 1fr; gap: 14px; }
  .why-cards__card { min-height: 0; padding: 24px; }
  .why-cards__card-text { font-size: 20px; }
  .why-cards__title { font-size: 30px; }
  .why-cards__btn { height: 50px; padding: 0 28px; font-size: 16px; }
}

/* =========================================================
   service-why | "Why Choose DYLSAL Plumbing?" - 6 features in 2 cols
   on a light-blue gradient with a utes photo at the bottom.
   ========================================================= */
.service-why {
  background: var(--color-white);
  padding: clamp(24px, 4vw, 60px) var(--container-pad);
}
.service-why__inner {
  position: relative;
  max-width: 1600px;
  margin: 0 auto;
  background: linear-gradient(180deg, #a0beeb 0%, #518dcf 100%);
  color: var(--color-white);
  border-radius: 20px;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  flex-direction: column;
}
.service-why__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(20px, 2.5vw, 36px);
  padding: clamp(48px, 6vw, 96px) clamp(24px, 4vw, 80px) clamp(24px, 3vw, 48px);
}
.service-why__title {
  margin: 0;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(30px, 4.5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--color-white);
  text-shadow: 0 4px 31px rgba(0, 0, 0, 0.2);
  max-width: 820px;
}
.service-why__subtitle {
  margin: -8px 0 0;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(15px, 1.4vw, 20px);
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: var(--color-white);
  opacity: 0.92;
  max-width: 760px;
}
.service-why__features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 27px;
  width: 100%;
  list-style: none;
  margin: 0;
  padding: 0;
}
.service-why__feature {
  background: var(--color-blue);
  display: flex;
  align-items: center;
  gap: 16px;
  padding: clamp(18px, 2.2vw, 32px) clamp(20px, 3vw, 42px);
  min-height: 141px;
  border-radius: 0;
}
.service-why__feature img {
  width: 45px;
  height: 45px;
  flex-shrink: 0;
}
.service-why__feature .service-why__icon {
  font-family: 'Material Symbols Rounded';
  font-weight: normal;
  font-style: normal;
  font-size: 40px;
  line-height: 1;
  color: var(--color-white);
  opacity: 0.5;
  flex-shrink: 0;
  letter-spacing: 0;
  text-transform: none;
  white-space: nowrap;
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 40;
}
.service-why__feature span {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(18px, 1.8vw, 28px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--color-white);
}
.service-why__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 54px;
  padding: 0 36px;
  background: var(--color-navy);
  color: var(--color-white);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 5px;
  transition: filter 0.2s var(--ease-out), transform 0.2s var(--ease-out);
}
.service-why__cta:hover { filter: brightness(0.85); transform: translateY(-1px); }
.service-why__footer-line {
  margin: 0;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.4;
  color: var(--color-white);
  max-width: 720px;
}
.service-why__utes {
  display: block;
  width: 100%;
  height: auto;
  max-width: none;
  pointer-events: none;
  /* Source image has lots of empty sky above the trucks - crop to the truck row.
     Aspect ratio sized so the full truck profile (cab to wheels) stays visible,
     and a small negative margin lets the image sit slightly behind the CTA. */
  aspect-ratio: 1585 / 380;
  object-fit: cover;
  object-position: center bottom;
  margin-top: -32px;
}
@media (max-width: 900px) {
  .service-why__features { grid-template-columns: 1fr; gap: 12px; }
  .service-why__feature { min-height: 0; padding: 18px 20px; }
  .service-why__feature span { font-size: 18px; }
}

/* CTA row - used when a section needs two CTAs side-by-side */
.service-why__cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.service-why__cta--ghost {
  background: transparent;
  color: var(--color-white);
  border: 2px solid var(--color-white);
}
.service-why__cta--ghost:hover { background: rgba(255, 255, 255, 0.1); filter: none; }
@media (max-width: 600px) {
  .service-why__cta-row { flex-direction: column; align-items: stretch; width: 100%; max-width: 320px; margin: 0 auto; }
  .service-why__cta-row .service-why__cta { width: 100%; }
}

/* Dark-tiles variant - dark navy bg with square white tiles, dark navy text, larger icons */
.service-why--dark-tiles .service-why__inner {
  background: #0f2843;
}
.service-why--dark-tiles .service-why__cta {
  background: var(--grad-button);
  height: 65px;
  padding: 0 53px;
  font-size: 18px;
}
.service-why--dark-tiles .service-why__cta:hover { filter: brightness(1.05); transform: translateY(-1px); }
.service-why--dark-tiles .service-why__features {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
}
.service-why--dark-tiles .service-why__feature {
  background: var(--color-white);
  border-radius: 12px;
  aspect-ratio: 1 / 1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 22px 18px;
  gap: 14px;
  min-height: 0;
}
.service-why--dark-tiles .service-why__feature span:last-child {
  color: var(--color-navy);
  font-weight: 500;
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 1.25;
}
.service-why--dark-tiles .service-why__feature .service-why__icon {
  /* Light-blue to dark-blue gradient on the icon glyph */
  background: linear-gradient(180deg, #a0beeb 0%, #0a52a2 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  opacity: 1;
  font-size: 36px;
  font-variation-settings: 'FILL' 0, 'wght' 500, 'GRAD' 0, 'opsz' 36;
}
@media (max-width: 600px) {
  .service-why--dark-tiles .service-why__features { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-why--dark-tiles .service-why__feature { aspect-ratio: 1 / 1; }
}

/* Compact variant - smaller feature tiles (used for Common Emergency Plumbing Problems) */
.service-why--compact .service-why__features {
  gap: 12px 18px;
}
.service-why--compact .service-why__feature {
  min-height: 76px;
  padding: clamp(12px, 1.4vw, 18px) clamp(16px, 2vw, 28px);
  gap: 12px;
}
.service-why--compact .service-why__feature span {
  font-size: clamp(15px, 1.2vw, 18px);
}
.service-why--compact .service-why__feature .service-why__icon {
  font-size: 28px;
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 28;
}
.service-why--compact .service-why__feature img {
  width: 32px;
  height: 32px;
}

/* =========================================================
   trust-stats | "Why Sydney Homeowners Trust DYLSAL Plumbing"
   Dark gradient bg + white-card stat tiles.
   Default background: full-width soft wave pattern behind the section.
   ========================================================= */
.trust-stats {
  position: relative;
  background-color: var(--color-white);
  background-image: url('../assets/images/background%20wave.png');
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 100% auto;
  padding: clamp(24px, 4vw, 60px) var(--container-pad);
}
.trust-stats__inner {
  max-width: 1600px;
  margin: 0 auto;
  background: linear-gradient(180deg, #0f2843 0%, #2665a9 100%);
  color: var(--color-white);
  border-radius: 20px;
  padding: clamp(48px, 7vw, 96px) clamp(24px, 4vw, 80px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(24px, 3vw, 40px);
  text-align: center;
}
.trust-stats__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(28px, 4vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  max-width: 760px;
  color: var(--color-white);
}
.trust-stats__subtitle {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(14px, 1.4vw, 18px);
  line-height: 1.4;
  color: var(--color-white);
  opacity: 0.9;
  max-width: 700px;
}
.trust-stats__list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(12px, 1.6vw, 24px);
  width: 100%;
  list-style: none;
  margin: 0;
  padding: 0;
}
.trust-stats__item {
  background: var(--color-white);
  border-radius: 8px;
  padding: clamp(28px, 3vw, 40px) clamp(16px, 2vw, 24px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 160px;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(14px, 1.4vw, 20px);
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--color-navy);
}
.trust-stats__icon {
  font-size: clamp(40px, 4.5vw, 64px);
  line-height: 1;
  color: var(--color-blue);
  font-variation-settings: 'FILL' 0, 'wght' 500, 'GRAD' 0, 'opsz' 48;
}
.trust-stats__label {
  display: block;
}
.trust-stats__footer {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(16px, 1.8vw, 24px);
  color: var(--color-white);
}
@media (max-width: 900px) {
  .trust-stats__list { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .trust-stats__inner { padding: 36px 20px 40px; gap: 18px; }
  .trust-stats__list {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .trust-stats__item {
    background: transparent;
    border-radius: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    padding: 14px 4px;
    min-height: 0;
    flex-direction: row;
    justify-content: flex-start;
    text-align: left;
    gap: 14px;
    color: var(--color-white);
    font-size: 15px;
    line-height: 1.3;
  }
  .trust-stats__item:last-child { border-bottom: none; }
  .trust-stats__icon {
    font-size: 24px;
    color: var(--color-white);
    flex-shrink: 0;
  }
  .trust-stats__label { flex: 1; }
  .trust-stats__title { font-size: 26px; }
  .trust-stats__subtitle { font-size: 14px; }
  .trust-stats__footer { font-size: 14px; margin-top: 6px; }
}

/* =========================================================
   process-steps | "How to Book a Job With DYLSAL Plumbing"
   4 step cards: photo on top, blue body with curve overlay below.
   Reuses the .service-card visual treatment for the curve.
   ========================================================= */
.process-steps {
  background: var(--color-white);
  padding: clamp(64px, 8vw, 120px) var(--container-pad);
}
/* Dark variant - black background, navy title, white eyebrow */
.process-steps--dark {
  background: #000;
}
.process-steps--dark .process-steps__title { color: var(--color-navy); }
.process-steps--dark .process-steps__eyebrow { color: var(--color-white); }

/* Curve-bg variant - mirrors .service-card layout: image fills card, SVG overlay at bottom, text on top */
.process-steps--curve-bg .process-step {
  position: relative;
  background: transparent;
  border-radius: 10px;
  overflow: hidden;
  isolation: isolate;
  aspect-ratio: 380 / 480;
}
.process-steps--curve-bg .process-step__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  z-index: 0;
}
.process-steps--curve-bg .process-step::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: url('../assets/graphics/service card background.svg') no-repeat center / 100% 100%;
  pointer-events: none;
}
.process-steps--curve-bg .process-step__body {
  position: absolute;
  inset: auto clamp(20px, 2vw, 28px) clamp(20px, 2vw, 28px);
  z-index: 2;
  margin: 0;
  padding: 0;
  background: transparent;
  background-image: none;
  border-radius: 0;
  gap: 6px;
}

/* Collapsible descriptions on how-to-book cards */
.process-steps--curve-bg .process-step[data-process-toggle] {
  cursor: pointer;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
}
.process-steps--curve-bg .process-step[data-process-toggle]:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px -12px rgba(15, 40, 67, 0.25);
}
.process-steps--curve-bg .process-step[data-process-toggle]:focus-visible {
  outline: 3px solid var(--color-blue-light);
  outline-offset: 3px;
}
/* Chevron indicator next to the title */
.process-steps--curve-bg .process-step__title {
  display: flex;
  align-items: center;
  gap: 8px;
}
.process-steps--curve-bg .process-step__title::after {
  content: '';
  margin-left: auto;
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.25s var(--ease-out);
}
.process-steps--curve-bg .process-step[aria-expanded="true"] .process-step__title::after {
  transform: rotate(-135deg) translateY(-2px);
}
/* Hide description by default; reveal on expand */
.process-steps--curve-bg .process-step__desc {
  display: none;
  margin: 6px 0 0;
}
.process-steps--curve-bg .process-step[aria-expanded="true"] .process-step__desc {
  display: block;
}
@media (prefers-reduced-motion: reduce) {
  .process-steps--curve-bg .process-step,
  .process-steps--curve-bg .process-step__title::after {
    transition: none !important;
  }
}
.process-steps__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 3vw, 40px);
}
.process-steps__header {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.process-steps__eyebrow {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(13px, 1.2vw, 16px);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-blue);
}
.process-steps__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(30px, 4.5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--color-navy);
  max-width: 760px;
}
.process-steps__list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 28px);
  list-style: none;
  margin: 0;
  padding: 0;
}
.process-step {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--color-blue);
  border-radius: 10px;
  overflow: hidden;
  isolation: isolate;
}
.process-step__image {
  width: 100%;
  height: auto;
  aspect-ratio: 380 / 290;
  object-fit: cover;
  display: block;
}
.process-step__body {
  position: relative;
  background: var(--color-blue);
  padding: 36px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: -36px;
  border-radius: 50% 50% 0 0 / 36px 36px 0 0;
  z-index: 1;
}
.process-step__num {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 16px;
  color: var(--color-blue-light);
  letter-spacing: -0.01em;
}
.process-step__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(20px, 1.8vw, 24px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--color-white);
}
.process-step__desc {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(13px, 1.2vw, 15px);
  line-height: 1.45;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.92);
}
@media (max-width: 1100px) {
  .process-steps__list { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .process-steps__list { grid-template-columns: 1fr; }
}

/* =========================================================
   Bottom navigation bar (mobile-only, app-style)
   Active item gets a filled blue pill behind the icon.
   Inactive items use a soft pastel blue colour.
   ========================================================= */
.bottom-nav {
  display: none;
}
@media (max-width: 900px) {
  .bottom-nav {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    background: var(--color-white);
    border-radius: 22px 22px 0 0;
    box-shadow: 0 -8px 24px rgba(15, 40, 67, 0.08);
    padding: 10px 4px calc(10px + env(safe-area-inset-bottom, 0px));
    font-family: var(--font-display);
  }
  .bottom-nav__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 4px;
    padding: 4px 2px;
    color: #a3b8e8;
    text-decoration: none;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.1;
    text-align: center;
    transition: color 0.2s var(--ease-out);
  }
  .bottom-nav__icon {
    font-family: 'Material Symbols Rounded';
    font-weight: normal;
    font-style: normal;
    font-size: 22px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    white-space: nowrap;
    color: inherit;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 30px;
    border-radius: 14px;
    background: transparent;
    transition: background 0.2s var(--ease-out), color 0.2s var(--ease-out), transform 0.2s var(--ease-out);
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
  }
  .bottom-nav__item:hover { color: var(--color-blue); }
  .bottom-nav__item:hover .bottom-nav__icon {
    color: var(--color-blue);
  }
  .bottom-nav__item--primary,
  .bottom-nav__item.is-active {
    color: var(--color-navy);
    font-weight: 500;
  }
  .bottom-nav__item--primary .bottom-nav__icon,
  .bottom-nav__item.is-active .bottom-nav__icon {
    background: var(--color-navy);
    color: var(--color-white);
    font-variation-settings: 'FILL' 1, 'wght' 500, 'GRAD' 0, 'opsz' 24;
  }
  /* Pad body so content above the bottom nav is reachable */
  body { padding-bottom: 76px; }
}

/* =========================================================
   Topbar status (We're Open + pulse + current time)
   ========================================================= */
.topbar__status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--color-white);
  line-height: 1;
}
.topbar__pulse {
  position: relative;
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.65);
  animation: topbar-pulse 1.6s var(--ease-out) infinite;
}
.topbar__pulse::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: #22c55e;
  opacity: 0.55;
  animation: topbar-pulse-ring 1.6s var(--ease-out) infinite;
}
@keyframes topbar-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6); }
  70%  { box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}
@keyframes topbar-pulse-ring {
  0%   { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(2.4); opacity: 0; }
}
.topbar__status-text { font-size: inherit; }
.topbar__time {
  font-variant-numeric: tabular-nums;
  font-weight: 400;
  text-transform: none;
  padding-left: 10px;
  margin-left: 4px;
  border-left: 1px solid rgba(255, 255, 255, 0.28);
  opacity: 0.88;
}
.topbar__time:empty { display: none; }
@media (prefers-reduced-motion: reduce) {
  .topbar__pulse,
  .topbar__pulse::after { animation: none; }
}

/* =========================================================
   Improved button hover contrast
   ========================================================= */
.btn:hover {
  transform: translateY(-2px);
  filter: none;
  box-shadow: 0 14px 30px -8px rgba(4, 30, 60, 0.5);
}
.btn:active {
  transform: translateY(0);
  filter: none;
  box-shadow: 0 4px 12px -6px rgba(4, 30, 60, 0.5);
}
.btn--dark:hover         { background: var(--color-blue); color: #fff; }
.btn--gradient:hover     { background: linear-gradient(149.6deg, #a0beeb 27%, #0a52a2 86%); color: #fff; }
.btn--gradient-light:hover { background: var(--color-navy); color: #fff; }
.btn--solid-blue:hover   { background: var(--color-navy); color: #fff; }
.btn--indigo:hover       { background: var(--color-blue); color: #fff; }

/* =========================================================
   Footer Google Reviews widget
   ========================================================= */
.footer__reviews {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 12px 18px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--color-white);
  text-decoration: none;
  align-self: flex-start;
  transition: background 0.2s var(--ease-out), border-color 0.2s var(--ease-out), transform 0.2s var(--ease-out);
}
.footer__reviews:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.32);
  transform: translateY(-1px);
}
.footer__reviews-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: #fff;
  border-radius: 50%;
  flex-shrink: 0;
}
.footer__reviews-icon img { width: 22px; height: 22px; }
.footer__reviews-meta {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.2;
}
.footer__reviews-row {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.footer__reviews-rating {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  color: var(--color-white);
}
.footer__reviews-stars {
  display: inline-flex;
  gap: 2px;
}
.footer__reviews-star {
  width: 14px;
  height: 14px;
  background: #FBBC04;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12 2l2.9 6.9 7.1.6-5.4 4.7 1.7 7.1L12 17.6 5.7 21.3l1.7-7.1L2 9.5l7.1-.6L12 2z'/></svg>") center/contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12 2l2.9 6.9 7.1.6-5.4 4.7 1.7 7.1L12 17.6 5.7 21.3l1.7-7.1L2 9.5l7.1-.6L12 2z'/></svg>") center/contain no-repeat;
}
.footer__reviews-count {
  font-size: 13px;
  opacity: 0.75;
  text-transform: none;
  letter-spacing: 0;
}
