/* ============================================================
   M. A. Parkes Heating & Plumbing — Main Stylesheet
   ============================================================ */

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

:root {
  --navy:    #0d1f35;
  --mid:     #14304f;
  --orange:  #e8651a;
  --orange2: #f07d35;
  --light:   #f4f6f8;
  --white:   #ffffff;
  --grey:    #6b7280;
  --border:  #dde2e8;
  --font-head: 'Barlow Condensed', sans-serif;
  --font-body: 'Lato', sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--navy); background: var(--white); overflow-x: hidden; }

/* ── TOP BAR ── */
.topbar {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  padding: 8px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
.topbar a { color: var(--orange2); text-decoration: none; }
.topbar a:hover { color: var(--white); }

/* ── NAV ── */
#main-nav {
  background: var(--white);
  border-bottom: 3px solid var(--orange);
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 16px rgba(13,31,53,0.08);
}
.logo {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.45rem;
  letter-spacing: 0.01em;
  color: var(--navy);
  padding: 14px 0;
  text-decoration: none;
  line-height: 1.15;
}
.logo span { color: var(--orange); }
.nav-links { display: flex; gap: 4px; align-items: center; }
.nav-links a {
  font-family: var(--font-head);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--navy);
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { background: var(--navy); color: var(--white); }
.nav-links a.nav-cta {
  background: var(--orange);
  color: var(--white);
  margin-left: 6px;
  padding: 8px 18px;
}
.nav-links a.nav-cta:hover { background: #c9530e; }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── SHARED SECTION STYLES ── */
section { padding: 70px 40px; }
.container { max-width: 1100px; margin: 0 auto; }
.section-label {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}
h1, h2, h3 { font-family: var(--font-head); font-weight: 800; letter-spacing: 0.01em; }
h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.7rem);
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: 14px;
}
h2 em { color: var(--orange); font-style: normal; }
.section-intro {
  color: var(--grey);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 100%;
  margin-bottom: 44px;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 30px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover { background: #c9530e; transform: translateY(-1px); }
.btn-outline {
  display: inline-block;
  border: 2px solid var(--navy);
  color: var(--navy);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 12px 28px;
  border-radius: 6px;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-outline-light {
  display: inline-block;
  border: 2px solid rgba(255,255,255,0.35);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 12px 28px;
  border-radius: 6px;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}
.btn-outline-light:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }

/* ── TRUST STRIP ── */
.trust-strip {
  background: var(--orange);
  padding: 16px 40px;
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-item {
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
}
.trust-item svg { width: 20px; height: 20px; flex-shrink: 0; }

/* ── HERO ── */
.hero {
  background: var(--navy);
  position: relative;
  overflow: hidden;
  padding: 80px 40px 70px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
  min-height: 480px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg, transparent, transparent 40px,
    rgba(255,255,255,0.015) 40px, rgba(255,255,255,0.015) 80px
  );
}
.hero-accent {
  position: absolute;
  right: -100px; top: -100px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,101,26,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.hero-left { position: relative; z-index: 1; }
.hero-pill {
  display: inline-block;
  background: rgba(232,101,26,0.2);
  border: 1px solid rgba(232,101,26,0.5);
  color: var(--orange2);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 18px;
}
.hero h1 {
  font-size: clamp(2.6rem, 5vw, 4rem);
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 18px;
}
.hero-sub {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  line-height: 1.65;
  margin-bottom: 32px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 32px 28px;
  position: relative;
  z-index: 1;
  backdrop-filter: blur(4px);
}
.hero-card h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--orange2);
  margin-bottom: 20px;
}
.hero-card ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.hero-card ul li {
  color: rgba(255,255,255,0.85);
  font-size: 0.92rem;
  display: flex; align-items: center; gap: 10px;
}
.hero-card ul li::before { content: '✔'; color: var(--orange); font-size: 0.8rem; flex-shrink: 0; }
.hero-badges { display: flex; gap: 10px; margin-top: 22px; flex-wrap: wrap; }
.badge {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.75);
  font-size: 0.72rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 4px;
}
.badge.gs {
  background: rgba(0,136,0,0.25);
  border-color: rgba(0,200,0,0.35);
  color: #6ddb6d;
}

/* ── SERVICE CARDS ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 22px;
}
.service-card {
  background: var(--white);
  border-radius: 10px;
  padding: 28px 26px;
  border: 1px solid var(--border);
  border-top: 4px solid var(--orange);
  transition: transform 0.2s, box-shadow 0.2s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(13,31,53,0.1); }
.service-icon {
  width: 48px; height: 48px;
  background: rgba(232,101,26,0.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  font-size: 1.5rem;
}
.service-card h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.03em;
  color: var(--navy);
  margin-bottom: 10px;
}
.service-card p { color: var(--grey); font-size: 0.9rem; line-height: 1.65; }

/* ── WHY US ── */
.why-section { background: var(--navy); color: var(--white); }
.why-section h2 { color: var(--white); }
.why-section .section-intro { color: rgba(255,255,255,0.6); }
.why-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 24px; }
.why-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 28px 24px;
  text-align: center;
}
.why-number {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 2.4rem;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 8px;
}
.why-card h4 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 10px;
}
.why-card p { color: rgba(255,255,255,0.6); font-size: 0.88rem; line-height: 1.6; }

/* ── PLUMBING LAYOUT ── */
.plumbing-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.plumbing-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.plumbing-list li {
  display: flex; gap: 14px; align-items: flex-start;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.plumbing-list li:last-child { border-bottom: none; }
.plumbing-list .icon {
  width: 38px; height: 38px;
  background: rgba(232,101,26,0.1);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.plumbing-list .info h4 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.03em;
  color: var(--navy);
  margin-bottom: 4px;
}
.plumbing-list .info p { color: var(--grey); font-size: 0.87rem; line-height: 1.55; }

/* ── ASIDE CONTACT CARD ── */
.aside-card {
  background: var(--navy);
  border-radius: 12px;
  padding: 36px 30px;
  color: var(--white);
}
.aside-card h3 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 6px;
}
.aside-card > p { color: rgba(255,255,255,0.6); font-size: 0.9rem; margin-bottom: 22px; }
.contact-method {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.contact-method:last-of-type { border-bottom: none; margin-bottom: 22px; }
.c-icon {
  width: 40px; height: 40px;
  background: var(--orange);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.c-text span {
  display: block;
  color: rgba(255,255,255,0.5);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 2px;
}
.c-text a, .c-text strong {
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
}
.c-text a:hover { color: var(--orange2); }

/* ── AREAS ── */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 14px;
  margin-top: 8px;
}
.area-tag {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 4px;
  background: var(--white);
  border: 1px solid var(--border);
  border-bottom: 3px solid var(--orange);
  border-radius: 10px;
  padding: 22px 14px 18px;
  text-decoration: none;
  transition: background 0.18s, border-color 0.18s, transform 0.18s, box-shadow 0.18s;
}
.area-tag:hover {
  background: var(--navy);
  border-color: var(--navy);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(13,31,53,0.13);
}
.area-tag-name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  color: var(--navy);
  transition: color 0.18s;
}
.area-tag-pc {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  color: var(--orange);
  transition: color 0.18s;
}
.area-tag:hover .area-tag-name { color: var(--white); }
.area-tag:hover .area-tag-pc   { color: rgba(255,255,255,0.6); }

/* ── PRICING ── */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; margin-bottom: 30px; }
.price-card { border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }
.price-card-header {
  background: var(--navy);
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.price-card-header h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  color: var(--white);
}
.price-tag {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--orange2);
  white-space: nowrap;
}
.price-card-body { padding: 20px 24px; }
.price-card-body p { color: var(--grey); font-size: 0.88rem; line-height: 1.65; margin-bottom: 12px; }
.price-card-body p:last-child { margin-bottom: 0; }
.price-includes { list-style: none; display: flex; flex-direction: column; gap: 7px; margin-bottom: 12px; }
.price-includes li {
  font-size: 0.87rem; color: var(--navy);
  display: flex; gap: 8px; align-items: flex-start;
}
.price-includes li::before { content: '✔'; color: var(--orange); font-size: 0.75rem; margin-top: 2px; flex-shrink: 0; }
.price-note {
  background: #fff8f4;
  border-left: 3px solid var(--orange);
  border-radius: 0 6px 6px 0;
  padding: 10px 14px;
  font-size: 0.82rem !important;
  color: #7a4020 !important;
  line-height: 1.6 !important;
  margin-top: 14px !important;
}
.price-addon {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  gap: 12px;
}
.price-addon:last-child { border-bottom: none; padding-bottom: 0; }
.price-addon .addon-text { font-size: 0.87rem; color: var(--navy); line-height: 1.5; }
.price-addon .addon-text small { display: block; color: var(--grey); font-size: 0.8rem; margin-top: 2px; }
.price-addon .addon-price {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--orange);
  white-space: nowrap;
}
.callout-banner {
  background: var(--navy);
  border-radius: 12px;
  padding: 30px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.callout-banner h3 { font-family: var(--font-head); font-weight: 800; font-size: 1.4rem; color: var(--white); margin-bottom: 6px; }
.callout-banner p { color: rgba(255,255,255,0.6); font-size: 0.9rem; max-width: 500px; line-height: 1.6; }
.callout-rate { text-align: right; flex-shrink: 0; }
.callout-rate .rate-num { font-family: var(--font-head); font-weight: 800; font-size: 2.6rem; color: var(--orange2); line-height: 1; }
.callout-rate .rate-label { font-size: 0.78rem; color: rgba(255,255,255,0.45); letter-spacing: 0.08em; text-transform: uppercase; font-weight: 700; margin-top: 4px; }
.pricing-sub-label { font-family: var(--font-head); font-weight: 700; font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--orange); margin-bottom: 16px; margin-top: 40px; }

/* ── GAS SAFE BADGE ── */
.gas-safe-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,160,0,0.15);
  border: 1px solid rgba(0,200,0,0.25);
  border-radius: 6px;
  padding: 6px 14px;
  color: #6ddb6d;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.gas-safe-dot { width: 10px; height: 10px; background: #00c800; border-radius: 50%; flex-shrink: 0; }

/* ── CONTACT FORM ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }
.contact-info-list { display: flex; flex-direction: column; gap: 20px; }
.ci-item { display: flex; gap: 16px; align-items: flex-start; }
.ci-icon {
  width: 46px; height: 46px;
  background: rgba(232,101,26,0.2);
  border: 1px solid rgba(232,101,26,0.35);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
}
.ci-item span { display: block; color: rgba(255,255,255,0.45); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 700; margin-bottom: 4px; }
.ci-item strong, .ci-item a { color: var(--white); font-size: 1.05rem; text-decoration: none; font-weight: 700; }
.ci-item a:hover { color: var(--orange2); }
.contact-form { display: flex; flex-direction: column; gap: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 6px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.92rem;
  padding: 12px 16px;
  width: 100%;
  outline: none;
  transition: border-color 0.2s;
}
.contact-form input::placeholder, .contact-form textarea::placeholder { color: rgba(255,255,255,0.3); }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--orange); }
.contact-form select option { background: var(--navy); }
.contact-form textarea { min-height: 120px; resize: vertical; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--navy);
  padding: 60px 40px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    -45deg, transparent, transparent 40px,
    rgba(255,255,255,0.015) 40px, rgba(255,255,255,0.015) 80px
  );
}
.page-hero-inner { position: relative; z-index: 1; max-width: 100%; }
.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.1;
}
.page-hero h1 em { color: var(--orange); font-style: normal; }
.page-hero p { color: rgba(255,255,255,0.7); font-size: 1rem; line-height: 1.65; }
.breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 14px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}
.breadcrumb a { color: var(--orange2); text-decoration: none; }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: rgba(255,255,255,0.25); }

/* ── BLOG ── */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 28px; }
.blog-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(13,31,53,0.1); }
.blog-card-img {
  height: 180px;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
}
.blog-card-body { padding: 22px; }
.blog-meta {
  font-size: 0.78rem;
  color: var(--grey);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 8px;
}
.blog-card h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.25;
}
.blog-card h3 a { text-decoration: none; color: var(--navy); transition: color 0.15s; }
.blog-card h3 a:hover { color: var(--orange); }
.blog-card p { color: var(--grey); font-size: 0.88rem; line-height: 1.6; margin-bottom: 16px; }
.read-more {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--orange);
  text-decoration: none;
  transition: color 0.15s;
}
.read-more:hover { color: #c9530e; }

/* Blog single post */
.blog-post-layout { display: grid; grid-template-columns: 1fr 300px; gap: 50px; align-items: start; }
.blog-post-content { font-size: 1rem; line-height: 1.8; color: #374151; }
.blog-post-content h2 { font-size: 1.6rem; color: var(--navy); margin: 32px 0 14px; }
.blog-post-content h3 { font-size: 1.25rem; color: var(--navy); margin: 24px 0 10px; }
.blog-post-content p { margin-bottom: 18px; }
.blog-post-content ul, .blog-post-content ol { padding-left: 22px; margin-bottom: 18px; }
.blog-post-content li { margin-bottom: 8px; }
.blog-post-content strong { color: var(--navy); }
.blog-sidebar { position: sticky; top: 90px; display: flex; flex-direction: column; gap: 24px; }
.sidebar-widget {
  background: var(--light);
  border-radius: 10px;
  padding: 22px;
  border: 1px solid var(--border);
}
.sidebar-widget h4 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--orange);
}
.sidebar-widget ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.sidebar-widget ul li a {
  color: var(--navy);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.15s;
  display: flex; gap: 8px; align-items: center;
}
.sidebar-widget ul li a::before { content: '→'; color: var(--orange); font-size: 0.8rem; }
.sidebar-widget ul li a:hover { color: var(--orange); }
.sidebar-cta {
  background: var(--navy);
  border-radius: 10px;
  padding: 24px;
  text-align: center;
}
.sidebar-cta h4 { color: var(--white); font-family: var(--font-head); font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.sidebar-cta p { color: rgba(255,255,255,0.6); font-size: 0.85rem; line-height: 1.6; margin-bottom: 18px; }

/* ── FOOTER ── */
footer {
  background: #080f1a;
  padding: 50px 40px 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.foot-logo {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.4rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.2;
  margin-bottom: 12px;
}
.foot-logo span { color: var(--orange); }
.foot-tagline { color: rgba(255,255,255,0.4); font-size: 0.85rem; line-height: 1.6; margin-bottom: 16px; }
.footer-col h4 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-col ul li a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.15s;
}
.footer-col ul li a:hover { color: var(--orange2); }
.footer-contact li { color: rgba(255,255,255,0.55); font-size: 0.88rem; }
.footer-contact li a { color: rgba(255,255,255,0.55); text-decoration: none; }
.footer-contact li a:hover { color: var(--orange2); }
.footer-bottom {
  padding: 20px 0;
  text-align: center;
}
.footer-bottom p { color: rgba(255,255,255,0.2); font-size: 0.78rem; }

/* ── WHATSAPP FLOAT ── */
.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-decoration: none;
  padding: 10px 18px 10px 10px;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}
.whatsapp-float:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(37,211,102,0.5); }
.whatsapp-float svg { width: 34px; height: 34px; flex-shrink: 0; }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-pill  { animation: fadeUp 0.5s ease both; }
.hero h1    { animation: fadeUp 0.5s 0.1s ease both; }
.hero-sub   { animation: fadeUp 0.5s 0.2s ease both; }
.hero-btns  { animation: fadeUp 0.5s 0.3s ease both; }
.hero-card  { animation: fadeUp 0.6s 0.25s ease both; }
.page-hero-inner { animation: fadeUp 0.5s ease both; }

/* ── RESPONSIVE ── */
@media (max-width: 1000px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .topbar { padding: 8px 20px; font-size: 0.72rem; }
  #main-nav { padding: 0 20px; }
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--white);
    border-top: 1px solid var(--border);
    padding: 16px 20px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    gap: 4px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 10px 14px; }
  .nav-links a.nav-cta { margin-left: 0; text-align: center; }
  .nav-hamburger { display: flex; }
  .hero { grid-template-columns: 1fr; gap: 30px; padding: 50px 24px; min-height: auto; }
  .hero-card { display: none; }
  section { padding: 50px 24px; }
  .plumbing-layout { grid-template-columns: 1fr; }
  .aside-card { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .trust-strip { padding: 14px 20px; gap: 18px; }
  .blog-post-layout { grid-template-columns: 1fr; }
  .blog-sidebar { position: static; }
  footer { padding: 40px 24px 0; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 28px; }
  .page-hero { padding: 50px 24px; }
  .pricing-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .footer-inner { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .callout-banner { flex-direction: column; text-align: center; }
  .callout-rate { text-align: center; }
  .whatsapp-float span { display: none; }
  .whatsapp-float { padding: 10px; border-radius: 50%; bottom: 20px; right: 20px; }
}

@media (max-width: 900px) {
  .cs-item:not(.cs-cta) { flex: 1 1 200px; }
}

/* ── AREA PAGES ── */
.area-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 50px;
  align-items: start;
}
.area-sidebar { display: flex; flex-direction: column; gap: 22px; position: sticky; top: 90px; align-self: start; }
.area-subhead {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.03em;
  color: var(--navy);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--orange);
  display: inline-block;
}
.area-services-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 10px;
}
.area-services-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.93rem;
  color: var(--navy);
  line-height: 1.5;
}
.area-services-list li::before { content: '✔'; color: var(--orange); font-size: 0.75rem; margin-top: 3px; flex-shrink: 0; }

.how-steps { display: flex; flex-direction: column; gap: 20px; }
.how-step {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.step-num {
  width: 40px; height: 40px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.how-step > div > strong {
  display: block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.03em;
  color: var(--navy);
  margin-bottom: 4px;
}
.how-step > div > p { color: var(--grey); font-size: 0.88rem; line-height: 1.6; }

.area-details-card {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 22px;
}
.area-details-card h4 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 12px;
}
.details-table { width: 100%; border-collapse: collapse; }
.details-table tr { border-bottom: 1px solid var(--border); }
.details-table tr:last-child { border-bottom: none; }
.details-table td { padding: 8px 0; font-size: 0.83rem; vertical-align: top; }
.details-table td:first-child { color: var(--grey); width: 55%; }
.details-table td:last-child { color: var(--navy); font-weight: 600; }

.nearby-grid { display: flex; flex-wrap: wrap; gap: 12px; }
.nearby-card {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 18px;
  text-decoration: none;
  transition: background 0.15s, border-color 0.15s;
}
.nearby-card:hover { background: var(--navy); border-color: var(--navy); }
.nearby-card:hover .nearby-name,
.nearby-card:hover .nearby-pc,
.nearby-card:hover .nearby-arrow { color: var(--white); }
.nearby-name { font-family: var(--font-head); font-weight: 700; font-size: 1rem; color: var(--navy); }
.nearby-pc { font-size: 0.78rem; color: var(--grey); }
.nearby-arrow { color: var(--orange); font-size: 0.9rem; margin-left: auto; padding-left: 6px; }
.nearby-all { border-color: var(--orange); }
.nearby-all .nearby-name { color: var(--orange); }

/* ── FAQ ACCORDION — two columns ── */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 40px;
  max-width: 1100px;
}
/* Each column gets its own set of top/bottom borders */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:nth-child(odd):nth-last-child(1),
.faq-item:nth-child(odd):nth-last-child(2),
.faq-item:nth-child(1),
.faq-item:nth-child(2) { border-top: 1px solid var(--border); }
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 20px 0;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color 0.15s;
}
.faq-q:hover { color: var(--orange); }
.faq-q::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--orange);
  flex-shrink: 0;
  transition: transform 0.25s;
  line-height: 1;
}
.faq-q[aria-expanded="true"]::after { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.2s ease;
}
.faq-a.open { max-height: 600px; padding-bottom: 18px; }
.faq-a p {
  color: var(--grey);
  font-size: 0.93rem;
  line-height: 1.75;
}
.faq-a p a { color: var(--orange); }

/* ── MOBILE RESPONSIVE OVERHAUL ── */
@media (max-width: 900px) {
  .area-layout { grid-template-columns: 1fr; }
  .area-sidebar { position: static; }
  .nearby-grid { gap: 8px; }
  .nearby-card { flex: 0 0 auto; }
}

/* Better topbar on mobile */
@media (max-width: 700px) {
  .topbar { flex-direction: column; align-items: flex-start; gap: 4px; padding: 8px 16px; }
  .topbar-right { display: flex; flex-wrap: wrap; gap: 6px; align-items: center; }
  .topbar-divider { display: none; }
  .topbar-right a { font-size: 0.75rem; }
  #main-nav { padding: 0 16px; }
  section { padding: 44px 16px; }
  .page-hero { padding: 44px 16px; }
  footer { padding: 36px 16px 0; }
  .footer-inner { grid-template-columns: 1fr; gap: 24px; }
  .hero { padding: 44px 16px 40px; }
  .trust-strip { padding: 12px 16px; gap: 12px; }
  .trust-item { font-size: 0.82rem; }
  .why-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .why-card { padding: 20px 16px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .callout-banner { flex-direction: column; text-align: center; }
  .callout-rate { text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .blog-post-layout { grid-template-columns: 1fr; }
  .blog-sidebar { position: static; }
  .plumbing-layout { grid-template-columns: 1fr; }
  .aside-card { position: static; }
  .logo { font-size: 1.15rem; }
  h2 { font-size: 1.7rem; }
  .hero h1 { font-size: 2.2rem; }
  .page-hero h1 { font-size: 1.8rem; }
  .how-steps { gap: 16px; }
  .faq-grid { grid-template-columns: 1fr; }
  .faq-item:nth-child(2) { border-top: none; }
  .areas-grid { grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); gap: 10px; }
  .area-tag { padding: 18px 10px 14px; }
  .area-tag-name { font-size: 1rem; }
}

/* Ensure services grid is 1-col on small screens */
@media (max-width: 560px) {
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .area-tag { padding: 16px 8px 12px; }
  .area-tag-name { font-size: 0.95rem; }
  .area-tag-pc { font-size: 0.8rem; }
  .nearby-grid { gap: 6px; }
}

/* Additional mobile fixes */
@media (max-width: 700px) {
  .faq-q { font-size: 0.95rem; }
  .whatsapp-float { bottom: 16px; right: 16px; padding: 10px; border-radius: 50%; }
  .whatsapp-float span { display: none; }
}

/* ── AREA PAGE BODY TEXT ── */
.area-body p {
  color: var(--grey);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 20px;
}
.area-body p:last-child { margin-bottom: 28px; }

/* ── PRICING 3-COL VARIANT ── */
.pricing-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 900px) {
  .pricing-grid-3 { grid-template-columns: 1fr; }
}
@media (min-width: 600px) and (max-width: 900px) {
  .pricing-grid-3 { grid-template-columns: 1fr 1fr; }
}

/* ── PRICING PAGE LAYOUT ── */
.pricing-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 30px;
}
.price-card-wide {
  max-width: 100%;
  margin-bottom: 0;
}
.price-card-body-addons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 40px;
}
.price-card-body-addons > p {
  grid-column: 1 / -1;
  margin-bottom: 16px;
}
.addon-row-group {
  grid-column: 1 / -1;
}

/* Remove contact-strip on mobile (already hidden but clean up) */
.contact-strip { display: none; }

@media (max-width: 700px) {
  .pricing-2col { grid-template-columns: 1fr; }
  .price-card-body-addons { grid-template-columns: 1fr; }
}
