/* =========================================================
   RESET & BASE
========================================================= */

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

html,
body {
  height: 100%;
}

body {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  background: #000; /* dark page background */
  color: #000;
}

section {
  width: 100%;
}

/* Global small label */
.eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #7a8898;
}

/* Global intro paragraph */
.intro {
  font-size: 1rem;
  line-height: 1.8;
  color: #566577;
}

/* =========================================================
   GLOBAL LIST STYLES (content bullets)
   Matches your screenshot look
========================================================= */

/* Apply to real content areas only (avoid nav/footer menus) */
.page-content ul,
.page-content ol,
.content-card ul,
.content-card ol,
.post-content ul,
.post-content ol {
  margin: 1rem 0 1.2rem;
  padding-left: 1.4rem;           /* controls bullet indent */
  line-height: 1.7;
}

/* Default bullet type */
.page-content ul,
.content-card ul,
.post-content ul {
  list-style: disc;
}

/* Numbered lists */
.page-content ol,
.content-card ol,
.post-content ol {
  list-style: decimal;
}

/* List items typography */
.page-content li,
.content-card li,
.post-content li {
  font-size: 1.05rem;             /* similar scale to screenshot */
  color: #566577;
  margin: 0.55rem 0;              /* vertical spacing between bullets */
}

/* Bullet color + size */
.page-content li::marker,
.content-card li::marker,
.post-content li::marker {
  color: #566577;
  font-size: 1.15em;              /* slightly larger bullet dot */
}

/* Optional: tighten nested lists */
.page-content li > ul,
.page-content li > ol,
.content-card li > ul,
.content-card li > ol,
.post-content li > ul,
.post-content li > ol {
  margin-top: 0.5rem;
}

/* =========================================================
   SAFETY RESETS (ensure menus stay menu-like)
========================================================= */

.main-nav ul,
.footer-col ul,
.sidebar-links,
.hero-benefits {
  list-style: none;
  padding-left: 0;
  margin: 0;
}


/* =========================================================
   LOGO
========================================================= */

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

.logo-img {
  height: 68px;
  width: auto;
  display: block;
}

/* =========================================================
   HERO SYSTEM (MAIN vs CTA)
   - hero-main: editable BG + text variables
   - hero-cta: fixed gradient + strip ONLY here
========================================================= */

/* Shared hero shell */
.hero {
  position: relative;
  overflow: hidden;
  padding: 1.8rem 1.8rem 4rem;
}

/* Shared hero inner container */
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  row-gap: 3rem;
}

/* -------------------------
   MAIN HERO (editable)
-------------------------- */

.hero-main {
  min-height: 100vh;

  /* BG control */
  --hero-main-bg-image: url("/bg.jpg");
  --hero-main-image-opacity: 0.28;
  --hero-main-tint: rgba(6, 18, 32, 0.55);

  /* Text control */
  --hero-tag-color: rgba(255, 255, 255, 0.85);
  --hero-title-color: #ffffff;
  --hero-subtitle-color: rgba(255, 255, 255, 0.82);

  --hero-tag-size: 0.85rem;
  --hero-title-size: 3.2rem;
  --hero-subtitle-size: 1.02rem;

  background: #081626; /* fallback base */
}

/* Background image layer */
.hero-main::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--hero-main-bg-image);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: var(--hero-main-image-opacity);
  z-index: 0;
}

/* Tint layer */
.hero-main::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--hero-main-tint);
  z-index: 1;
  pointer-events: none;
}

/* -------------------------
   CTA HERO (locked)
-------------------------- */

.hero-cta {
  min-height: auto;
  padding-top: 4rem;
  padding-bottom: 4rem;

  background:
    radial-gradient(
      circle at 25% 20%,
      #14324a 0%,
      #0c2235 55%,
      #081626 100%
    ),
    url("/bg.jpg");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  background-blend-mode: normal; /* try: overlay, multiply, soft-light */
}

/* Right-side strip ONLY for CTA */
.hero-cta::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 28%;
  height: 100%;
  background: linear-gradient(180deg, #183a54 0%, #15344b 50%, #102a3e 100%);
  pointer-events: none;
  z-index: 1;
}

/* Ensure CTA content sits above strip */
.hero-cta .hero-inner {
  z-index: 2;
}

.hero-cta {
  position: relative;
  overflow: hidden;
}

/* dark overlay over the image */
.hero-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(4, 10, 18, 0.85) 0%,
    rgba(4, 10, 18, 0.65) 45%,
    rgba(4, 10, 18, 0.35) 100%
  );
  z-index: 1;
  pointer-events: none;
}

/* keep content above overlay */
.hero-cta .hero-inner {
  position: relative;
  z-index: 2;
}


/* =========================================================
   HEADER (inside hero)
========================================================= */

.hero-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 2rem;
  padding-bottom: 4rem;
}

.main-nav {
  flex: 1;
}

.main-nav > ul {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: left;
  gap: 1.9rem;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.main-nav a {
  text-decoration: none;
  color: #b3c3dc;
  position: relative;
  transition: color 0.2s ease, transform 0.2s ease;
}

/* Standard underline (brand blue) */
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.2rem;
  width: 0;
  height: 2px;
  background: #6ec6ff;
  transition: width 0.2s ease;
}

.main-nav a:hover {
  color: #ffffff;
  transform: translateY(-1px);
}

.main-nav a:hover::after {
  width: 100%;
}

.header-cta {
  padding: 0.7rem 1.6rem;
  border-radius: 999px;
  border: 2px solid #6ec6ff;
  background: transparent;
  color: #6ec6ff;
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease,
    border-color 0.2s ease, box-shadow 0.2s ease;
}

.header-cta:hover {
  background: #f7fbff;
  color: #072136;
  border-color: #f7fbff;
  box-shadow: 0 0 0 1px rgba(6, 20, 33, 0.2);
}

/* =========================================================
   DROPDOWN MENU
========================================================= */

.main-nav .has-dropdown {
  position: relative;
}

.main-nav .dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  padding: 1rem 1.2rem;
  margin-top: 0.6rem;

  background: rgba(2, 9, 21, 0.96);
  border-radius: 0.9rem;
  box-shadow: 0 28px 40px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.08);

  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.18s ease, transform 0.18s ease,
    visibility 0.18s ease;

  z-index: 500;
}

.main-nav .has-dropdown:hover .dropdown,
.main-nav .has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.main-nav .dropdown li + li {
  margin-top: 0.6rem;
}

.main-nav .dropdown a {
  display: block;
  text-decoration: none;

  color: #cbd7ea;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;

  padding: 0.2rem 0;
  transition: color 0.2s ease, transform 0.14s ease;
}

.main-nav .dropdown a:hover {
  color: #ffffff;
  transform: translateX(3px);
}

/* =========================================================
   HERO GRID + TEXT + ACTIONS
========================================================= */

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 3.1fr) minmax(0, 2.5fr);
  gap: 3.4rem;
  align-items: center;
}

.hero-copy {
  max-width: 600px;
}

/* Variable-driven hero text */
.hero-tag {
  font-size: var(--hero-tag-size, 0.82rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--hero-tag-color, #8aa2c4);
  margin-bottom: 1.1rem;
}

.hero-title {
  font-size: var(--hero-title-size, 3.1rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--hero-title-color, #f2ffff);
  margin-bottom: 1.6rem;
}

.hero-subtitle {
  font-size: var(--hero-subtitle-size, 0.98rem);
  line-height: 1.8;
  color: var(--hero-subtitle-color, #c3d0e5);
  max-width: 32rem;
  margin-bottom: 2.4rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.8rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  padding: 0.95rem 1.7rem;
  border-radius: 0.4rem;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease,
    border-color 0.18s ease, box-shadow 0.18s ease,
    transform 0.12s ease;
}

.btn-primary {
  background: #de1111;
  color: #fff;
  box-shadow: 0 14px 35px rgba(1, 7, 15, 0.45),
    0 0 0 1px rgba(4, 15, 26, 0.08);
}

.btn-primary:hover {
  transform: translateY(-1px);
  background: #000;
}

.btn-tertiary {
  color: #de1111;
  border-color: #de1111;
}

.btn-tertiary:hover {
  background: #12314f;
  border-color: rgba(255, 255, 255, 0.35);
  color: rgba(255, 255, 255, 0.35);
}

/* Hero mini benefits */
.hero-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.7rem;
}

.benefit h3 {
  font-size: 0.92rem;
  margin-bottom: 0.3rem;
  color: #f8fbff;
  letter-spacing: 0.04em;
}

.benefit p {
  font-size: 0.78rem;
  line-height: 1.6;
  color: #9eb0ca;
}

/* Hero visual */
.hero-visual {
  position: relative;
  min-height: 420px;
}

.hero-plumber {
  position: absolute;
  right: -6%;
  bottom: -4%;
  height: 120%;
  max-height: 660px;
  width: auto;
  object-fit: contain;
  pointer-events: none;
}

/* =========================================================
   ABOUT (IMAGE LEFT)
========================================================= */

.about-section {
  background: #f7fbfc;
  padding: 5rem 1.8rem;
  color: #07182b;
}

.about-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 1rem;
  object-fit: cover;
  box-shadow: 0 18px 40px rgba(12, 31, 50, 0.08),
    0 0 0 1px rgba(12, 31, 50, 0.06);
}

.about-content h2 {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1.2rem;
  color: #07182b;
}

.about-text {
  font-size: 1rem;
  line-height: 1.75;
  color: #4c5f73;
  margin-bottom: 1.2rem;
}

/* =========================================================
   WHY CHOOSE US
========================================================= */

.section-why {
  background: #ffffff;
  color: #07182b;
  padding: 4.5rem 1.8rem 4.8rem;
}

.section-why-inner {
  max-width: 1240px;
  margin: 0 auto;
}

.section-why-header {
  max-width: 720px;
  margin-bottom: 2.8rem;
}

.section-why-header h2 {
  font-size: 2rem;
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin-bottom: 0.9rem;
}

.section-why-header .intro {
  font-size: 0.98rem;
  line-height: 1.8;
  color: #4a5a6c;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.9rem;
}

.why-card {
  background: #f7f8fc;
  border-radius: 0.9rem;
  padding: 1.75rem 1.75rem 1.9rem;
  box-shadow: 0 18px 45px rgba(9, 21, 38, 0.08),
    0 0 0 1px rgba(9, 21, 38, 0.04);
}

.why-card h3 {
  font-size: 1.02rem;
  margin-bottom: 0.7rem;
  color: #122236;
}

.why-card p {
  font-size: 0.92rem;
  line-height: 1.7;
  color: #5b6a7d;
}

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

.services-grid {
  background: #ffffff;
  padding: 4.8rem 1.8rem;
  color: #07182b;
}

.services-inner {
  max-width: 1240px;
  margin: 0 auto;
}

.services-header {
  text-align: center;
  margin-bottom: 5rem;
}

.services-header h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.services-header .intro {
  max-width: 600px;
  margin: 0 auto;
}

.services-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2rem;
}

.service-card {
  background: #f7f8fc;
  border-radius: 1rem;
  padding: 1.5rem 1.5rem 1.9rem;
  box-shadow: 0 18px 40px rgba(12, 31, 50, 0.08),
    0 0 0 1px rgba(12, 31, 50, 0.04);
  display: flex;
  flex-direction: column;
}

.service-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 0.7rem;
  margin-bottom: 1.1rem;
}

.service-card h3 {
  font-size: 1.02rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #112537;
}

.service-card p {
  font-size: 0.9rem;
  color: #4c5f73;
  line-height: 1.65;
  flex: 1;
}

/* Read more link (used in services + about) */
.readmore-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: #0e2540;
  text-decoration: none;
  margin-top: 1rem;
  transition: color 0.2s ease, transform 0.2s ease;
}

.readmore-link::after {
  content: "→";
  font-size: 1rem;
  color: currentColor;
  transition: transform 0.2s ease;
}

.readmore-link:hover {
  color: #143a5c;
  transform: translateX(2px);
}

.readmore-link:hover::after {
  transform: translateX(3px);
}

/* =========================================================
   ABOUT ALT (IMAGE RIGHT)
========================================================= */

.about-section-alt {
  background: #ffffff;
  padding: 5rem 1.8rem;
  color: #07182b;
}

.about-alt-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem;
  align-items: center;
}

.about-alt-image img {
  width: 100%;
  height: auto;
  border-radius: 1rem;
  object-fit: cover;
  box-shadow: 0 18px 40px rgba(12, 31, 50, 0.08),
    0 0 0 1px rgba(12, 31, 50, 0.06);
}

.about-alt-content h2 {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1.2rem;
  color: #07182b;
}

.about-alt-text {
  font-size: 1rem;
  line-height: 1.75;
  color: #4c5f73;
  margin-bottom: 1.2rem;
}

.about-alt-btn {
  display: inline-block;
  padding: 0.9rem 1.8rem;
  background: #12314f;
  color: #ffffff;
  border-radius: 0.45rem;
  text-decoration: none;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  transition: background 0.2s ease, transform 0.15s ease;
}

.about-alt-btn:hover {
  background: #1c3f63;
  transform: translateY(-2px);
}

/* =========================================================
   BENEFITS
========================================================= */

.benefits {
  background: #ffffff;
  padding: 5rem 1.8rem;
  color: #07182b;
}

.benefits-inner {
  max-width: 1240px;
  margin: 0 auto;
}

.benefits-header {
  text-align: center;
  margin-bottom: 3rem;
}

.benefits-header h2 {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.8rem;
}

.benefits-header .intro {
  max-width: 600px;
  margin: 0 auto;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2.4rem;
}

.benefit-card {
  background: #f7f8fc;
  padding: 2.2rem 1.7rem;
  border-radius: 1.2rem;
  text-align: center;
  box-shadow: 0 18px 40px rgba(12, 31, 50, 0.08),
    0 0 0 1px rgba(12, 31, 50, 0.04);
}

.benefit-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.2rem;
  border-radius: 50%;
  background: #e7eef6;
  display: flex;
  justify-content: center;
  align-items: center;
}

.benefit-icon img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.benefit-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.7rem;
  color: #112537;
}

.benefit-card p {
  font-size: 0.92rem;
  line-height: 1.65;
  color: #4c5f73;
}

/* =========================================================
   REVIEWS
========================================================= */

.reviews {
  background: #f7fbfc;
  padding: 4.5rem 1.8rem;
  color: #07182b;
}

.reviews-inner {
  max-width: 1240px;
  margin: 0 auto;
}

.reviews-header {
  text-align: left;
  margin-bottom: 2.8rem;
}

.reviews-header h2 {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

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

.review-card {
  background: #f9fafc;
  border-radius: 1rem;
  padding: 2rem 1.7rem 2.2rem;
  box-shadow: 0 20px 45px rgba(12, 31, 50, 0.08),
    0 0 0 1px rgba(12, 31, 50, 0.05);
  display: flex;
  flex-direction: column;
}

.review-stars {
  color: #f7b500;
  font-size: 1.25rem;
  letter-spacing: 0.15rem;
  margin-bottom: 0.7rem;
}

.review-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.7rem;
  color: #0f2437;
}

.review-text {
  font-size: 0.92rem;
  line-height: 1.7;
  color: #4c5f73;
  margin-bottom: 1.2rem;
  flex: 1;
}

.review-author {
  font-size: 0.88rem;
  font-weight: 600;
  color: #122a3c;
}

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

.faq {
  background: #ffffff;
  padding: 4.8rem 1.8rem;
  color: #07182b;
}

.faq-inner {
  max-width: var(--site-width, 1200px);
  margin: 0 auto;
}

.faq-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3rem;
}

.faq-header h2 {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.8rem;
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 1rem;
}

.faq-item {
  background: #f7f8fc;
  border-radius: 0.9rem;
  padding: 0.3rem 1.2rem;
  box-shadow:
    0 16px 36px rgba(12, 31, 50, 0.06),
    0 0 0 1px rgba(12, 31, 50, 0.04);
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1.1rem 0.4rem 1.1rem 0;
  font-weight: 600;
  font-size: 1rem;
  color: #112537;
  position: relative;
}

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

/* plus/minus indicator */
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0.2rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.35rem;
  color: #12314f;
  line-height: 1;
}

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

.faq-content {
  padding: 0 0.4rem 1.2rem 0.4rem;
}

.faq-content p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #4c5f73;
}

/* Responsive */
@media (max-width: 720px) {
  .faq-header h2 {
    font-size: 1.7rem;
  }

  .faq-item summary {
    font-size: 0.98rem;
  }
}


/* =========================================================
   QUOTE PANEL (CTA right column)
========================================================= */

.quote-panel {
  background: #f7f8fc;
  border-radius: 1.2rem;
  padding: 2rem 2.1rem 2.3rem;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(5, 16, 30, 0.4);
  max-width: 400px;
  margin-left: auto;
}

.quote-panel-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1.4rem;
  color: #07182b;
}

.quote-form-row {
  margin-bottom: 1.1rem;
  text-align: left;
}

.quote-form-row input,
.quote-form-row textarea {
  width: 100%;
  border-radius: 0.55rem;
  border: 1px solid #c7d2e2;
  padding: 0.7rem 0.9rem;
  font-size: 0.9rem;
  font-family: inherit;
  color: #07182b;
  background: #ffffff;
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.quote-form-row input:focus,
.quote-form-row textarea:focus {
  border-color: #1f7fb5;
  box-shadow: 0 0 0 1px rgba(31, 127, 181, 0.25);
}

.quote-submit-btn {
  width: 100%;
  margin-top: 0.4rem;
  padding: 0.9rem 1.4rem;
  border-radius: 0.5rem;
  border: none;
  background: #de1111;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.12s ease,
    box-shadow 0.18s ease;
}

.quote-submit-btn:hover {
  background: #1c3f63;
  transform: translateY(-1px);
  box-shadow: 0 14px 32px rgba(1, 7, 15, 0.4);
}

.quote-note {
  margin-top: 0.8rem;
  font-size: 0.8rem;
  line-height: 1.6;
  color: #65758a;
}

/* =========================================================
   FOOTER — LIGHT
========================================================= */

.site-footer {
  background: #ffffff;
  padding: 4rem 1.75rem 2.5rem;
  color: #1a2a38;
  margin-top: 4rem;
  border-top: 1px solid #e4e8ee;
}

.footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 2fr;
  gap: 3rem;
}

.footer-brand {
  max-width: 340px;
}

.footer-logo {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: #0f1f2e;
}

.footer-tagline {
  font-size: 0.92rem;
  line-height: 1.6;
  color: #4c5b67;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2.5rem;
}

.footer-col h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 1.05rem;
  color: #0f1f2e;
}

.footer-col ul {
  list-style: none;
}

.footer-col li + li {
  margin-top: 0.55rem;
}

.footer-col a {
  color: #4c5b67;
  text-decoration: none;
  font-size: 0.78rem;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.footer-col a:hover {
  color: #0f1f2e;
  opacity: 1;
}

.footer-bottom {
  text-align: center;
  margin-top: 2.5rem;
  padding-top: 1.6rem;
  border-top: 1px solid #e4e8ee;
  font-size: 0.8rem;
  color: #6d7b88;
}


/* =========================================================
   INTERNAL PAGE LAYOUT
========================================================= */

/* Use your preferred site width */
.internal-container {
  max-width: 1240px; /* change to 1200px if you want */
  margin: 0 auto;
  padding: 0 1.8rem;
}

/* Make CTA hero behave as a top hero */
.hero-cta-top {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

/* If you've added a BG image to hero-cta,
   this overlay ensures readability */
.hero-cta.hero-cta-top {
  position: relative;
  overflow: hidden;
}

.hero-cta.hero-cta-top::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(4, 10, 18, 0.90) 0%,
    rgba(4, 10, 18, 0.70) 50%,
    rgba(4, 10, 18, 0.35) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.hero-cta.hero-cta-top .hero-inner {
  position: relative;
  z-index: 2;
}

.hero-cta-top {
  background:
    url("/plumber-hero4.png"),
    radial-gradient(circle at 25% 20%, #14324a 0%, #0c2235 55%, #081626 100%);
  background-size: contain, cover;
  background-position: center, center;
  background-repeat: no-repeat;
}


/* =========================================================
   INTERNAL PAGE TOP (NO BG IMAGE, STRIP ON RIGHT)
========================================================= */

.page-top {
  position: relative;
  overflow: hidden;
  padding: 4rem 1.8rem 2.5rem;

  /* keep your dark gradient background */
  background: radial-gradient(
    circle at 25% 20%,
    #14324a 0%,
    #0c2235 55%,
    #081626 100%
  );
}

/* If you previously used a BG-image layer, this ensures it's fully disabled */
.page-top::before {
  content: none !important;
}

/* Right-side strip */
.page-top .hero-strip {
  position: absolute;
  top: 0;
  right: 0;
  width: 28%;
  height: 100%;
  background: linear-gradient(
    180deg,
    #183a54 0%,
    #15344b 50%,
    #102a3e 100%
  );
  pointer-events: none;
  z-index: 1;
}

/* Content above the strip */
.page-top-inner {
  position: relative;
  z-index: 2;
  max-width: 1240px; /* change to 1200px if you're standardising */
  margin: 0 auto;
}

/* Typical text styling for this dark top band */
.page-title {
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #f2ffff;
  margin-top: 0.4rem;
  margin-bottom: 1rem;
}

.page-intro {
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.78);
  max-width: 58ch;
}

.page-top-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.6rem;
}



/* =========================================================
   BODY LAYOUT
========================================================= */

.page-body {
  background: #ffffff;
  padding: 2.5rem 1.8rem 5rem;
}

.page-body-inner {
  max-width: 1240px; /* change to 1200px if needed */
  margin: 0 auto;

  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 3rem;
  align-items: start;
}

.page-content h2 {
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #07182b;
  margin: 2.2rem 0 0.9rem;
}

.page-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f2437;
  margin: 1.6rem 0 0.6rem;
}

.page-content p {
  font-size: 1rem;
  line-height: 1.75;
  color: #4c5f73;
}

/* Content card */
.content-card {
  background: #f7f8fc;
  border-radius: 1rem;
  padding: 1.6rem 1.6rem 1.7rem;
  margin: 1.5rem 0 1.8rem;
  box-shadow:
    0 18px 40px rgba(12, 31, 50, 0.08),
    0 0 0 1px rgba(12, 31, 50, 0.04);
}

.content-list {
  margin-top: 0.8rem;
  padding-left: 1.1rem;
}

.content-list li {
  margin: 0.4rem 0;
  color: #4c5f73;
}

/* Process grid */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
  margin-top: 1.2rem;
}

.process-step {
  background: #f7f8fc;
  border-radius: 0.9rem;
  padding: 1.4rem 1.4rem 1.6rem;
  box-shadow:
    0 14px 30px rgba(12, 31, 50, 0.06),
    0 0 0 1px rgba(12, 31, 50, 0.04);
}

.process-num {
  display: inline-flex;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  background: #12314f;
  color: #fff;
  margin-bottom: 0.7rem;
}

.process-step h4 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
  color: #0f2437;
}

.process-step p {
  font-size: 0.95rem;
}

/* Inline CTA */
.inline-cta {
  background: #0c2235;
  border-radius: 1.2rem;
  padding: 2rem 2rem 2.2rem;
  margin: 2.6rem 0 2.2rem;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.6rem;
}

.inline-cta h3 {
  font-size: 1.4rem;
  color: #ffffff;
  margin: 0.3rem 0 0.6rem;
}

.inline-cta .intro {
  color: rgba(255,255,255,0.78);
  margin: 0;
}

.inline-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

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

.faq-block {
  margin-top: 3rem;
}

.faq-header h2 {
  margin-top: 0.2rem;
}

.faq-list {
  margin-top: 1.2rem;
  display: grid;
  gap: 0.9rem;
}

.faq-item {
  background: #f7f8fc;
  border-radius: 0.9rem;
  padding: 0.2rem 1rem;
  box-shadow:
    0 12px 26px rgba(12, 31, 50, 0.06),
    0 0 0 1px rgba(12, 31, 50, 0.04);
}

.faq-item summary {
  cursor: pointer;
  padding: 1rem 0.4rem;
  font-weight: 600;
  color: #0f2437;
  list-style: none;
}

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

.faq-answer {
  padding: 0 0.4rem 1rem;
}

.faq-answer p {
  margin: 0;
}

/* =========================================================
   SIDEBAR
========================================================= */

.page-sidebar {
  display: grid;
  gap: 1.4rem;
}

.sidebar-card {
  background: #f7f8fc;
  border-radius: 1rem;
  padding: 1.5rem 1.5rem 1.7rem;
  box-shadow:
    0 18px 40px rgba(12, 31, 50, 0.08),
    0 0 0 1px rgba(12, 31, 50, 0.04);
}

.sidebar-card h3 {
  margin: 0.4rem 0 0.7rem;
}

.sidebar-text {
  font-size: 0.95rem;
  color: #4c5f73;
  line-height: 1.6;
}

.sidebar-btn {
  width: 100%;
  margin-top: 1rem;
}

.sidebar-links {
  list-style: none;
  padding: 0;
  margin-top: 0.6rem;
}

.sidebar-links li + li {
  margin-top: 0.6rem;
}

.sidebar-links a {
  color: #12314f;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
}

.sidebar-links a:hover {
  text-decoration: underline;
}



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

@media (max-width: 1100px) {
  .page-body-inner {
    grid-template-columns: minmax(0, 1fr) 300px;
  }

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

@media (max-width: 980px) {
  .page-body-inner {
    grid-template-columns: 1fr;
  }

  .page-sidebar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .inline-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 720px) {
  .page-top-actions {
    flex-direction: column;
    align-items: stretch;
  }

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

  .page-sidebar {
    grid-template-columns: 1fr;
  }
}


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

@media (max-width: 1100px) {
  .hero-pill-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .hero-pill-band {
    padding: 0 1.25rem 1.8rem;
  }

  .hero-pill-inner {
    grid-template-columns: 1fr;
    gap: 0.85rem;
    margin-top: -0.6rem;
  }

  .pill {
    width: 100%;
  }
}


/* =========================================================
   BODY GRID
========================================================= */

.internal-body {
  background: #ffffff;
  padding: 2.5rem 0 4.5rem;
}

.internal-body-grid {
  display: grid;
  grid-template-columns: 1.6fr 0.7fr;
  gap: 3rem;
  align-items: start;
}

/* Main article */
.internal-article h3 {
  font-size: 1.4rem;
  margin: 2rem 0 0.8rem;
  color: #0f2437;
}

.internal-article p {
  font-size: 1rem;
  line-height: 1.75;
  color: #4c5f73;
}

.tick-list {
  margin-top: 1rem;
  padding-left: 1.1rem;
}

.tick-list li {
  margin-bottom: 0.5rem;
  color: #4c5f73;
}

/* Callouts */
.feature-callout {
  background: #f7f8fc;
  border: 1px solid rgba(12, 31, 50, 0.06);
  border-radius: 1rem;
  padding: 1.6rem 1.6rem 1.4rem;
  margin: 2rem 0;
  box-shadow: 0 18px 40px rgba(12, 31, 50, 0.06);
}

.feature-callout h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: #112537;
}

/* Inline CTA */
.inline-cta {
  margin-top: 2.2rem;
  padding: 1.4rem 1.6rem;
  background: #0c2235;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
}

.inline-cta h4 {
  color: #ffffff;
  margin-bottom: 0.2rem;
}

.inline-cta p {
  color: rgba(255,255,255,0.75);
  margin: 0;
}

/* Sidebar */
.internal-sidebar {
  position: sticky;
  top: 1.5rem;
}

.sidebar-card {
  background: #f7f8fc;
  border-radius: 1rem;
  padding: 1.4rem 1.4rem 1.2rem;
  box-shadow: 0 18px 40px rgba(12, 31, 50, 0.06);
}

.sidebar-card + .sidebar-card {
  margin-top: 1.2rem;
}

.sidebar-nav {
  display: grid;
  gap: 0.6rem;
  margin-top: 0.8rem;
}

.sidebar-nav a {
  color: #0e2540;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}

.sidebar-nav a:hover {
  color: #1c3f63;
}

.small-muted {
  font-size: 0.9rem;
  color: #5c6b7c;
}

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

.internal-related {
  background: #ffffff;
  padding: 2rem 0 5rem;
}

.internal-related-head {
  text-align: left;
  margin-bottom: 2rem;
}

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


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

@media (max-width: 1100px) {
  .internal-head-grid {
    grid-template-columns: 1fr;
  }

  .internal-head-badges {
    justify-content: flex-start;
  }

  .internal-body-grid {
    grid-template-columns: 1fr;
  }

  .internal-sidebar {
    position: static;
  }

  .internal-related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .internal-related-grid {
    grid-template-columns: 1fr;
  }

  .inline-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}


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

@media (max-width: 1100px) {
  .hero-grid {
    column-gap: 2.4rem;
  }

  .services-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  /* HERO */
  .hero {
    padding: 1.5rem 1.25rem 3rem;
  }

  .hero-header {
    flex-wrap: wrap;
    row-gap: 0.75rem;
  }

  .main-nav {
    width: auto;
    margin-left: auto;
  }

  .main-nav ul {
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 1.2rem;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    row-gap: 2.7rem;
  }

  .hero-visual {
    min-height: 360px;
  }

  .hero-plumber {
    position: relative;
    right: auto;
    bottom: 0;
    margin: 0 auto;
    height: auto;
    max-width: 360px;
    display: block;
  }

  .hero-benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  /* MAIN hero text scaling only */
  .hero-main {
    --hero-title-size: 2.5rem;
  }

  /* SECTIONS */
  .why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-inner,
  .about-alt-inner {
    grid-template-columns: 1fr;
  }

  .services-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  /* QUOTE PANEL */
  .quote-panel {
    margin: 0 auto;
    max-width: 100%;
  }

  /* FOOTER */
  .footer-inner {
    grid-template-columns: 1fr;
    text-align: left;
  }

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

@media (max-width: 720px) {
  .logo-img {
    height: 40px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
    min-width: 0;
  }

  .hero-benefits,
  .why-grid,
  .services-list,
  .benefits-grid,
  .review-grid,
  .footer-columns {
    grid-template-columns: 1fr;
  }

  .section-why {
    padding: 3rem 1.25rem 3.5rem;
  }

  .section-why-header h2,
  .about-content h2,
  .about-alt-content h2,
  .benefits-header h2,
  .services-header h2,
  .reviews-header h2 {
    font-size: 1.7rem;
  }

  /* MAIN hero text scaling only */
  .hero-main {
    --hero-title-size: 2.1rem;
  }
}







