/* Leak Detector Sydney — shared stylesheet (About + Contact pages) */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

:root {
  --navy: #05173a;
  --navy2: #0a2156;
  --blue: #1654c0;
  --blue2: #2066d4;
  --orange: #e84d14;
  --orange2: #f26033;
  --off: #f4f7fd;
  --off2: #edf2fb;
  --dark: #0d1d3a;
  --muted: #576680;
  --border: #d3dff5;
  --F: 'Plus Jakarta Sans', sans-serif;
}

html {
  scroll-behavior: smooth
}

body {
  font-family: var(--F);
  color: var(--dark);
  background: #fff;
  line-height: 1.65;
  font-size: 17px
}

a {
  text-decoration: none;
  color: inherit
}

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

.W {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 28px
}

@keyframes blink {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: .4
  }
}

/* TOP BAR */
.topbar {
  background: var(--navy);
  padding: 9px 0
}

.topbar .W {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px
}

.topbar-l {
  display: flex;
  align-items: center;
  gap: 20px
}

.topbar span,
.topbar-l a {
  font-size: 13px;
  color: rgba(255, 255, 255, .58);
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 500
}

.topbar-l a:hover {
  color: #fff
}

.tb-verify {
  background: rgba(34, 197, 94, .15);
  border: 1px solid rgba(34, 197, 94, .3);
  color: #4ade80;
  padding: 5px 13px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 5px
}

/* HEADER */
header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: #fff;
  box-shadow: 0 1px 0 var(--border), 0 4px 24px rgba(5, 23, 58, .06)
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px
}

.nav-logo img {
  height: 54px;
  width: auto;
  max-width: 170px
}

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

.nav-links a {
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  padding: 9px 14px;
  border-radius: 10px;
  transition: all .2s;
  white-space: nowrap
}

.nav-links a:hover {
  background: var(--off);
  color: var(--blue)
}

.nav-links a.active {
  background: var(--off);
  color: var(--blue)
}

.nav-ctas {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-shrink: 0
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--navy);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  padding: 13px 20px;
  border-radius: 12px;
  transition: all .2s;
  white-space: nowrap
}

.nav-phone:hover {
  background: var(--navy2)
}

.nav-book {
  background: var(--orange);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  padding: 13px 26px;
  border-radius: 12px;
  transition: all .2s;
  white-space: nowrap
}

.nav-book:hover {
  background: var(--orange2)
}

/* SHARED SECTION HEADERS */
section {
  padding: 96px 0
}

.stag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(22, 84, 192, .08);
  border: 1px solid rgba(22, 84, 192, .18);
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 18px
}

.sh2 {
  font-size: clamp(30px, 3.2vw, 46px);
  font-weight: 900;
  color: var(--dark);
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 16px
}

.sh2 em {
  color: var(--blue);
  font-style: normal
}

.slead {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 620px
}

.center {
  text-align: center
}

.center .sh2,
.center .slead {
  margin-left: auto;
  margin-right: auto
}

/* PAGE HERO (navy) */
.pagehero {
  background: var(--navy);
  overflow: hidden;
  padding: 0
}

.ph-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 64px;
  align-items: center;
  padding: 84px 0
}

.ph-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .14);
  color: rgba(255, 255, 255, .88);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .7px;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 24px
}

.ph-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  animation: blink 2s infinite;
  flex-shrink: 0
}

.pagehero h1 {
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 900;
  color: #fff;
  line-height: 1.08;
  letter-spacing: -1.5px;
  margin-bottom: 20px
}

.pagehero h1 em {
  color: var(--orange2);
  font-style: normal
}

.ph-sub {
  font-size: 19px;
  color: rgba(255, 255, 255, .82);
  font-weight: 600;
  margin-bottom: 18px
}

.ph-lead {
  font-size: 17px;
  color: rgba(255, 255, 255, .66);
  line-height: 1.8;
  max-width: 560px;
  margin-bottom: 30px
}

.ph-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .14);
  color: rgba(255, 255, 255, .85);
  font-size: 14px;
  font-weight: 600;
  padding: 9px 16px;
  border-radius: 100px
}

.chip svg {
  stroke: #4ade80
}

.ph-img {
  position: relative
}

.ph-img-frame {
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: 0 28px 80px rgba(0, 0, 0, .4)
}

.ph-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.yr-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--orange);
  color: #fff;
  border-radius: 18px;
  padding: 20px 26px;
  box-shadow: 0 20px 48px rgba(232, 77, 20, .4)
}

.yr-big {
  font-size: 42px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -2px
}

.yr-lbl {
  font-size: 13px;
  font-weight: 700;
  opacity: .85;
  text-transform: uppercase;
  letter-spacing: .8px;
  margin-top: 4px
}

/* STATS STRIP */
.stats-strip {
  background: var(--navy2);
  border-top: 3px solid var(--blue);
  border-bottom: 3px solid var(--blue)
}

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

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px 16px;
  gap: 6px;
  border-right: 1px solid rgba(255, 255, 255, .1);
  text-align: center
}

.stat:last-child {
  border-right: none
}

.stat-num {
  font-size: 38px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  letter-spacing: -1.5px
}

.stat-num.sm {
  font-size: 19px;
  letter-spacing: -.5px
}

.stat-lbl {
  font-size: 12px;
  color: rgba(255, 255, 255, .55);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .9px
}

/* STORY */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center
}

.story-text p {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 18px
}

.story-text p:last-child {
  margin-bottom: 0
}

.story-text p strong {
  color: var(--dark);
  font-weight: 700
}

.story-img {
  position: relative
}

.story-img-main {
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 3/4
}

.story-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.story-thumb {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 200px;
  height: 150px;
  border-radius: 16px;
  overflow: hidden;
  border: 4px solid #fff;
  box-shadow: 0 20px 56px rgba(0, 0, 0, .2)
}

.story-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

/* SERVICES */
.svc-bg {
  background: var(--off)
}

.svc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 52px
}

.scard {
  background: #fff;
  border-radius: 20px;
  border: 1.5px solid var(--border);
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all .28s
}

.scard:hover {
  border-color: var(--blue);
  box-shadow: 0 16px 48px rgba(22, 84, 192, .1);
  transform: translateY(-4px)
}

.scard-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--off2);
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center
}

.scard-icon svg {
  width: 26px;
  height: 26px;
  color: var(--blue)
}

.scard h3 {
  font-size: 19px;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.3
}

.scard p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7
}

/* OWNER */
.owner-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 72px;
  align-items: center
}

.owner-photo-col {
  position: relative
}

.owner-photo {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: 24px;
  border: 1.5px solid var(--border);
  box-shadow: 0 24px 64px rgba(5, 23, 58, .12);
  background: var(--off2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--muted);
  overflow: hidden
}

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

.owner-photo svg {
  width: 46px;
  height: 46px;
  opacity: .4
}

.owner-photo span {
  font-size: 14px;
  font-weight: 600
}

.owner-badge {
  position: absolute;
  bottom: -18px;
  left: -18px;
  background: var(--navy);
  color: #fff;
  border-radius: 16px;
  padding: 18px 24px;
  box-shadow: 0 18px 44px rgba(5, 23, 58, .35);
  border: 1px solid rgba(255, 255, 255, .1)
}

.owner-badge-lbl {
  font-size: 13px;
  color: #6ea8ff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px
}

.owner-badge-name {
  font-size: 18px;
  font-weight: 800;
  margin-top: 3px
}

.owner-role {
  font-size: 17px;
  color: var(--blue);
  font-weight: 700;
  margin-bottom: 22px
}

.owner-text p {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 18px
}

.owner-text p:last-child {
  margin-bottom: 0
}

/* LICENCE */
.lic-bg {
  background: var(--off)
}

.lic-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center
}

.lic-intro p {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 28px
}

.verify-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--blue);
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  padding: 15px 30px;
  border-radius: 12px;
  transition: all .2s
}

.verify-btn:hover {
  background: var(--blue2)
}

.lic-card {
  background: #fff;
  border-radius: 22px;
  border: 1.5px solid var(--border);
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(5, 23, 58, .06)
}

.lic-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 22px 28px;
  border-bottom: 1px solid var(--off2)
}

.lic-row:last-child {
  border-bottom: none
}

.lic-row .k {
  font-size: 14px;
  color: var(--muted);
  font-weight: 600
}

.lic-row .v {
  font-size: 16px;
  color: var(--dark);
  font-weight: 800;
  text-align: right
}

.lic-row .v a {
  color: var(--blue)
}

/* CONTACT STRIP (navy) */
.contactstrip {
  background: var(--navy)
}

.cs-head {
  text-align: center;
  margin-bottom: 48px
}

.cs-head h2 {
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 900;
  color: #fff;
  line-height: 1.12;
  letter-spacing: -1px;
  margin-bottom: 14px
}

.cs-head h2 em {
  color: var(--orange2);
  font-style: normal
}

.cs-head p {
  font-size: 18px;
  color: rgba(255, 255, 255, .66);
  max-width: 560px;
  margin: 0 auto
}

.cs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px
}

.cs-card {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 18px;
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px
}

.cs-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(22, 84, 192, .3);
  border: 1px solid rgba(22, 84, 192, .5);
  display: flex;
  align-items: center;
  justify-content: center
}

.cs-icon svg {
  width: 20px;
  height: 20px
}

.cs-lbl {
  font-size: 12px;
  color: rgba(255, 255, 255, .5);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px
}

.cs-val {
  font-size: 17px;
  color: #fff;
  font-weight: 800
}

.cs-val.sm {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5
}

.cs-val.brk {
  word-break: break-all
}

a.cs-val:hover {
  color: #6ea8ff
}

.cs-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap
}

/* BUTTONS */
.btn-orange {
  background: var(--orange);
  color: #fff;
  font-size: 17px;
  font-weight: 800;
  padding: 17px 34px;
  border-radius: 13px;
  white-space: nowrap;
  transition: all .2s
}

.btn-orange:hover {
  background: var(--orange2)
}

.btn-white {
  background: #fff;
  color: var(--navy);
  font-size: 17px;
  font-weight: 800;
  padding: 17px 34px;
  border-radius: 13px;
  white-space: nowrap;
  transition: all .2s
}

.btn-white:hover {
  background: var(--off)
}

/* CONTACT PAGE HERO + FORM */
.chero-grid {
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 64px;
  align-items: center;
  padding: 80px 0
}

.contact-quick {
  display: flex;
  flex-direction: column;
  gap: 14px
}

.cquick {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 16px;
  padding: 18px 22px;
  transition: all .2s
}

.cquick:hover {
  border-color: rgba(22, 84, 192, .6);
  background: rgba(22, 84, 192, .12)
}

.cquick-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(22, 84, 192, .3);
  border: 1px solid rgba(22, 84, 192, .5);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.cquick-icon svg {
  width: 20px;
  height: 20px
}

.cquick-lbl {
  display: block;
  font-size: 12px;
  color: rgba(255, 255, 255, .5);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px
}

.cquick-val {
  display: block;
  font-size: 19px;
  color: #fff;
  font-weight: 800;
  margin-top: 2px
}

.cquick-val.sm {
  font-size: 17px;
  word-break: break-all
}

.form-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, .32)
}

.form-card h3 {
  font-size: 21px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 6px
}

.form-card .fc-sub {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 22px
}

.cform {
  display: flex;
  flex-direction: column;
  gap: 12px
}

.cform .row2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px
}

.cfield {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  font-size: 16px;
  font-family: var(--F);
  color: var(--dark);
  background: #fff
}

.cfield::placeholder {
  color: #9aa8bf
}

.cfield:focus {
  outline: none;
  border-color: var(--blue)
}

select.cfield {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23576680' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center
}

textarea.cfield {
  resize: vertical
}

.bsubmit {
  width: 100%;
  background: var(--orange);
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  padding: 16px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  font-family: var(--F);
  transition: all .2s;
  margin-top: 4px
}

.bsubmit:hover {
  background: var(--orange2)
}

.fc-note {
  font-size: 13px;
  color: var(--muted);
  text-align: center;
  margin-top: 2px
}

.fc-note a {
  color: var(--blue);
  font-weight: 700
}

/* LOCATION */
.loc-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 40px;
  align-items: stretch
}

.loc-cards {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.lcard {
  background: var(--off);
  border: 1.5px solid var(--border);
  border-radius: 18px;
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px
}

.lcard-icon {
  width: 48px;
  height: 48px;
  border-radius: 13px;
  background: rgba(22, 84, 192, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.lcard-icon svg {
  width: 22px;
  height: 22px;
  color: var(--blue)
}

.lcard .k {
  font-size: 13px;
  color: var(--muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .6px
}

.lcard .v {
  font-size: 16px;
  color: var(--dark);
  font-weight: 700;
  margin-top: 4px;
  line-height: 1.5;
  display: block
}

.lcard a.v:hover {
  color: var(--blue)
}

.map-wrap {
  border-radius: 22px;
  overflow: hidden;
  border: 1.5px solid var(--border);
  min-height: 480px;
  display: flex;
  flex-direction: column
}

.map-wrap iframe {
  width: 100%;
  flex: 1;
  border: 0;
  min-height: 400px
}

.map-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--blue);
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  padding: 16px;
  transition: background .2s
}

.map-btn:hover {
  background: var(--blue2)
}

/* CTA BAND (orange) */
.cta-band {
  background: var(--orange);
  padding: 80px 0
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap
}

.cta-inner h2 {
  font-size: clamp(28px, 3.5vw, 50px);
  font-weight: 900;
  color: #fff;
  line-height: 1.12;
  letter-spacing: -1px
}

.cta-inner p {
  font-size: 18px;
  color: rgba(255, 255, 255, .85);
  margin-top: 12px;
  max-width: 520px;
  line-height: 1.65
}

.cta-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  flex-shrink: 0
}

.btn-ow {
  background: transparent;
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  padding: 17px 34px;
  border-radius: 13px;
  border: 2px solid rgba(255, 255, 255, .45);
  transition: all .2s;
  white-space: nowrap
}

.btn-ow:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, .1)
}

.cta-band .btn-white {
  color: var(--orange)
}

/* FOOTER */
footer {
  background: var(--navy)
}

.footer-main {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 56px;
  padding: 72px 0 48px;
  border-top: 3px solid var(--blue)
}

.footer-logo {
  height: 54px;
  width: auto;
  max-width: 170px;
  margin-bottom: 18px;
  background: #fff;
  padding: 6px 10px;
  border-radius: 10px
}

.footer-about {
  font-size: 15px;
  color: rgba(255, 255, 255, .48);
  line-height: 1.8
}

.footer-abn {
  font-size: 13px;
  color: rgba(255, 255, 255, .28);
  margin-top: 14px;
  line-height: 1.6
}

.footer-verify {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #6ea8ff;
  font-size: 13px;
  font-weight: 600;
  margin-top: 14px
}

.footer-col h4 {
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  letter-spacing: .8px;
  text-transform: uppercase;
  margin-bottom: 22px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(22, 84, 192, .35)
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px
}

.footer-links a {
  font-size: 15px;
  color: rgba(255, 255, 255, .48);
  transition: color .2s
}

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

.fcont {
  display: flex;
  flex-direction: column;
  gap: 14px
}

.fcont-item {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 15px;
  color: rgba(255, 255, 255, .6)
}

.fcont-item svg {
  color: #6ea8ff;
  flex-shrink: 0;
  width: 18px;
  height: 18px
}

.fcont-item a {
  color: rgba(255, 255, 255, .6);
  transition: color .2s
}

.fcont-item a:hover {
  color: #fff
}

.footer-call {
  display: block;
  margin-top: 4px;
  background: var(--orange);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  padding: 14px 22px;
  border-radius: 11px;
  text-align: center;
  transition: background .2s
}

.footer-call:hover {
  background: var(--orange2)
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap
}

.footer-copy {
  font-size: 13px;
  color: rgba(255, 255, 255, .3)
}

.footer-blinks {
  display: flex;
  gap: 20px
}

.footer-blinks a {
  font-size: 13px;
  color: rgba(255, 255, 255, .32);
  transition: color .2s
}

.footer-blinks a:hover {
  color: rgba(255, 255, 255, .75)
}

/* RESPONSIVE */
@media(max-width:1024px) {

  .ph-grid,
  .chero-grid,
  .story-grid,
  .owner-grid,
  .lic-grid,
  .loc-grid {
    grid-template-columns: 1fr;
    gap: 40px
  }

  .ph-img,
  .story-img {
    display: none
  }

  .svc-grid {
    grid-template-columns: 1fr 1fr
  }

  .cs-grid {
    grid-template-columns: 1fr 1fr
  }

  .stats-strip .W {
    grid-template-columns: 1fr 1fr
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 36px
  }
}

@media(max-width:768px) {
  body {
    font-size: 16px
  }

  section {
    padding: 64px 0
  }

  .ph-grid,
  .chero-grid {
    padding: 56px 0
  }

  .svc-grid,
  .cs-grid,
  .loc-cards {
    grid-template-columns: 1fr
  }

  .cform .row2 {
    grid-template-columns: 1fr
  }

  .cta-inner {
    flex-direction: column;
    text-align: center
  }

  .cta-btns {
    width: 100%;
    justify-content: center
  }

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

  .nav-links {
    display: none
  }

  .stats-strip .W {
    grid-template-columns: 1fr 1fr
  }
}

/* ============ ROOF LEAK DETECTION PAGE ============ */
.roofhero {
  position: relative;
  background: var(--navy);
  overflow: hidden;
  padding: 0
}

.roofhero-bg {
  position: absolute;
  inset: 0;
  background-image: url('assets/roof/hero.jpg');
  background-size: cover;
  background-position: center 35%
}

.roofhero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(5, 23, 58, .96) 0%, rgba(5, 23, 58, .86) 42%, rgba(5, 23, 58, .42) 75%, rgba(5, 23, 58, .25) 100%)
}

.roofhero-inner {
  position: relative;
  max-width: 680px;
  padding: 96px 0
}

.roofhero h1 {
  font-size: clamp(34px, 4.2vw, 56px);
  font-weight: 900;
  color: #fff;
  line-height: 1.08;
  letter-spacing: -1.5px;
  margin-bottom: 20px
}

.roofhero h1 em {
  color: var(--orange2);
  font-style: normal
}

.roofhero p.lead {
  font-size: 18px;
  color: rgba(255, 255, 255, .78);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 34px
}

.rhero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, .1);
  border: 1.5px solid rgba(255, 255, 255, .4);
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  padding: 17px 32px;
  border-radius: 13px;
  transition: all .2s
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, .18);
  border-color: #fff
}

.btn-orange svg {
  margin-right: 2px
}

/* Trust bar */
.tbar {
  background: var(--blue)
}

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

.tbar-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 26px 20px;
  border-right: 1px solid rgba(255, 255, 255, .16)
}

.tbar-item:last-child {
  border-right: none
}

.tbar-item svg {
  flex-shrink: 0;
  stroke: #cfe0ff
}

.tbar-item span {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3
}

.intro-narrow {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 28px;
  text-align: center
}

.intro-narrow p {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 18px
}

.intro-narrow p.em {
  color: var(--dark);
  font-weight: 600
}

/* Roof gallery */
.rgal {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px
}

.rgcard {
  background: #fff;
  border-radius: 18px;
  border: 1.5px solid var(--border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all .25s
}

.rgcard:hover {
  border-color: var(--blue);
  box-shadow: 0 16px 48px rgba(22, 84, 192, .1)
}

.rgcard-img {
  aspect-ratio: 4/3;
  overflow: hidden
}

.rgcard-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s
}

.rgcard:hover .rgcard-img img {
  transform: scale(1.05)
}

.rgcard-body {
  padding: 22px 22px 24px
}

.rgcard-body h3 {
  font-size: 17px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 8px;
  line-height: 1.3
}

.rgcard-body p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6
}

/* Process */
.proc-bg {
  background: var(--navy)
}

.proc-bg .stag {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .15);
  color: rgba(255, 255, 255, .85)
}

.proc-bg .sh2 {
  color: #fff
}

.proc-bg .slead {
  color: rgba(255, 255, 255, .6)
}

.proc {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 1000px;
  margin: 0 auto
}

.pstep {
  display: flex;
  gap: 28px;
  align-items: center;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 20px;
  padding: 28px 32px
}

.pstep.alt {
  background: rgba(22, 84, 192, .18);
  border-color: rgba(22, 84, 192, .4)
}

.pnum {
  font-size: 40px;
  font-weight: 900;
  color: var(--orange2);
  letter-spacing: -2px;
  flex-shrink: 0;
  width: 64px
}

.pstep h3 {
  font-size: 21px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px
}

.pstep p {
  font-size: 16px;
  color: rgba(255, 255, 255, .62);
  line-height: 1.7
}

/* DIY vs Pro */
.cmp {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto
}

.cmp-col {
  border-radius: 22px;
  padding: 32px
}

.cmp-col.diy {
  background: var(--off);
  border: 1.5px solid var(--border)
}

.cmp-col.pro {
  background: var(--navy);
  border: 1.5px solid var(--navy)
}

.cmp-col h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 22px
}

.cmp-col.diy h3 {
  color: var(--muted)
}

.cmp-col.pro h3 {
  color: #fff
}

.cmp-rows {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.cmprow {
  display: flex;
  gap: 12px;
  align-items: flex-start
}

.cmprow svg {
  flex-shrink: 0;
  margin-top: 1px
}

.cmp-col.diy .cmprow svg {
  stroke: #94a3b8
}

.cmp-col.pro .cmprow svg {
  stroke: #4ade80
}

.cmp-col.diy .cmprow span {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.55
}

.cmp-col.pro .cmprow span {
  font-size: 15px;
  color: rgba(255, 255, 255, .82);
  line-height: 1.55
}

/* Warning signs */
.warn-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px
}

.wsign {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 18px 20px
}

.wnum {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: rgba(232, 77, 20, .1);
  color: var(--orange);
  font-size: 13px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.wsign span.t {
  font-size: 15px;
  color: var(--dark);
  line-height: 1.5
}

.stag.alert {
  background: rgba(232, 77, 20, .1);
  border-color: rgba(232, 77, 20, .25);
  color: var(--orange)
}

/* Roof types + areas */
.rtypes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px
}

.rtype {
  background: var(--off);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 28px
}

.rtype h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 10px
}

.rtype p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65
}

.areas-grid2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px
}

.acard {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 24px
}

.acard .a-region {
  font-size: 15px;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 8px
}

.acard p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6
}

/* Final CTA centered */
.cta-center {
  background: var(--navy);
  padding: 84px 0;
  text-align: center
}

.cta-center h2 {
  font-size: clamp(28px, 3.4vw, 46px);
  font-weight: 900;
  color: #fff;
  line-height: 1.12;
  letter-spacing: -1px;
  margin: 0 auto 16px;
  max-width: 760px
}

.cta-center p.sub {
  font-size: 18px;
  color: rgba(255, 255, 255, .66);
  line-height: 1.7;
  max-width: 620px;
  margin: 0 auto 36px
}

.cta-center .cta-btns {
  justify-content: center;
  margin-bottom: 28px
}

.cta-center p.email {
  font-size: 15px;
  color: rgba(255, 255, 255, .5)
}

.cta-center p.email a {
  color: #6ea8ff;
  font-weight: 600
}

@media(max-width:1024px) {

  .rgal,
  .rtypes,
  .areas-grid2 {
    grid-template-columns: 1fr 1fr
  }

  .tbar .W {
    grid-template-columns: 1fr 1fr
  }

  .tbar-item:nth-child(2) {
    border-right: none
  }
}

@media(max-width:768px) {
  .roofhero-inner {
    padding: 64px 0
  }

  .rgal,
  .rtypes,
  .areas-grid2,
  .cmp,
  .warn-grid {
    grid-template-columns: 1fr
  }

  .tbar .W {
    grid-template-columns: 1fr
  }

  .tbar-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, .16)
  }

  .pstep {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px
  }
  .footer-inner {
    display: flex !important;
    flex-direction: column;
  }
  .map-wrap{
    max-width: 100%;
  }
  .lcard{
    padding: 16px 12px;
  }
  .lcard .v{
    font-size: 14px;
  }
  .leak-types,.request-form{
    display: flex !important;flex-wrap: wrap;
  }
  .cred{
    grid-template-columns: 1fr 1fr !important;
  }
  .cred-wrap{
    padding: 0 !important;
  }
}

/* ============ NAVIGATION: hamburger + Services dropdown (pure CSS) ============ */
.nav {
  position: relative
}

.nav-cb,
.svc-cb {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 9px;
  border-radius: 10px;
  transition: background .2s
}

.hamburger:hover {
  background: var(--off)
}

.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  border-radius: 2px;
  background: var(--navy);
  transition: transform .25s, opacity .2s
}

/* dropdown */
.nav-dd {
  position: relative
}

.nav-dd-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  padding: 9px 14px;
  border-radius: 10px;
  cursor: pointer;
  white-space: nowrap;
  transition: all .2s;
  user-select: none
}

.nav-dd-label:hover,
.nav-dd-label.active {
  background: var(--off);
  color: var(--blue)
}

.nav-dd-label .chev {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  transition: transform .25s
}

.nav-dd-menu {
  position: absolute;
  top: calc(100% + 0px);
  left: 0;
  min-width: 300px;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 18px 48px rgba(5, 23, 58, .16);
  padding: 8px;
  display: none;
  flex-direction: column;
  gap: 2px;
  z-index: 300
}

.nav-dd:hover .nav-dd-menu {
  display: flex
}

.nav-dd-menu a {
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  padding: 12px 14px;
  border-radius: 10px;
  white-space: nowrap;
  transition: all .15s
}

.nav-dd-menu a:hover,
.nav-dd-menu a.active {
  background: var(--off);
  color: var(--blue)
}

@media(max-width:1024px) {
  .hamburger {
    display: flex
  }

  .nav-menu {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid var(--border);
    box-shadow: 0 24px 48px rgba(5, 23, 58, .14);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 6px 0 18px;
    display: none;
    border-radius: 0 0 16px 16px
  }

  .nav-cb:checked~.nav-menu {
    display: flex
  }

  .nav-links {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%
  }

  .nav-links>a {
    font-size: 17px;
    padding: 16px 28px;
    border-radius: 0;
    border-bottom: 1px solid #edf2fb
  }

  .nav-dd {
    width: 100%
  }

  .nav-dd-label {
    font-size: 17px;
    padding: 16px 28px;
    border-radius: 0;
    border-bottom: 1px solid #edf2fb;
    justify-content: space-between
  }

  .nav-dd-menu {
    position: static;
    display: none;
    border: none;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
    min-width: 0;
    background: var(--off)
  }

  .nav-dd:hover .nav-dd-menu {
    display: none
  }

  .svc-cb:checked~.nav-dd-menu {
    display: flex
  }

  .svc-cb:checked~.nav-dd-label .chev {
    transform: rotate(180deg)
  }

  .nav-dd-menu a {
    padding: 14px 28px 14px 46px;
    border-bottom: 1px solid #edf2fb;
    font-weight: 500
  }

  .nav-ctas {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    padding: 16px 28px 0;
    gap: 10px
  }

  .nav-ctas a {
    justify-content: center
  }

  .nav-cb:checked~.hamburger span:nth-child(1) {
    transform: translateY(8px) rotate(45deg)
  }

  .nav-cb:checked~.hamburger span:nth-child(2) {
    opacity: 0
  }

  .nav-cb:checked~.hamburger span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg)
  }
}

.nav img {
    max-width: 150px;
}
.footer-service-area a{
   pointer-events: none; /* Prevents user from clicking the link */
    cursor: default; 
}