/*
Theme Name: Water Heater Boys
Theme URI: https://www.waterheaterboys.com
Author: Water Heater Boys LLC
Description: WordPress theme matching the Water Heater Boys Wix site design.
Version: 2.0.0
Requires at least: 6.0
Requires PHP: 8.0
Text Domain: whb
*/

/* =============================================
   DESIGN TOKENS — matched from Wix site
   ============================================= */
:root {
  /* Exact colors from Wix computed styles */
  --yellow:        #FBCA46;   /* top bar, CTA buttons, active nav */
  --yellow-dark:   #e6b52e;   /* hover state */
  --navy:          #324158;   /* header, footer background */
  --navy-dark:     #222d3d;
  --orange:        #D8630E;   /* icons, card borders, outlines */
  --orange-light:  #f0813a;
  --body-bg:       #F7F7F7;   /* page background */
  --white:         #FFFFFF;
  --text-dark:     #222222;   /* #222 */
  --text-mid:      #595959;
  --text-light:    #919191;
  --card-bg:       #FFFFFF;
  --border:        #e0e0e0;

  --font-heading: 'Epilogue', 'Trebuchet MS', Arial, sans-serif;
  --font-body:    'Inter', 'Arial', Helvetica, sans-serif;

  --max-width:    2000px;
  --radius-card:  12px;
  --radius-btn:   50px;   /* pill buttons like Wix site */
  --shadow:       0 2px 16px rgba(0,0,0,0.08);
  --shadow-card:  0 2px 12px rgba(0,0,0,0.07);
  --transition:   0.2s ease;
}

/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--body-bg);
  color: var(--text-mid);   /* #595959 — matches Wix body text color */
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--orange); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--orange-light); }
ul, ol { padding-left: 1.5em; }

/* =============================================
   TYPOGRAPHY — matching Wix Epilogue/Almarai
   ============================================= */
/* Self-hosted fonts — exact files from Wix CDN */
@font-face {
  font-family: 'Epilogue';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/epilogue-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Epilogue';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('fonts/epilogue-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Epilogue';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('fonts/epilogue-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/inter-regular.woff2') format('woff2'),
       url('fonts/inter-regular.woff')  format('woff');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('fonts/inter-medium.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('fonts/inter-semibold.woff2') format('woff2');
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-dark);
}
h1 { font-size: clamp(2rem, 5vw, 3.125rem); line-height: 1.2; }  /* ~50px */
h2 { font-size: clamp(1.4rem, 3vw, 1.6875rem); }                  /* ~27px */
h3 { font-size: clamp(1rem, 2.5vw, 1.3125rem); }                  /* ~21px */
p  { margin-bottom: 1em; color: var(--text-mid); }                /* #595959 matches Wix */

/* =============================================
   LAYOUT
   ============================================= */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.section       { padding: 72px 24px; }
.section-white { background: var(--white); }
.section-gray  { background: var(--body-bg); }
.section-navy  { background: var(--navy); color: var(--white); }
.section-navy h2, .section-navy h3 { color: var(--white); }

.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px,1fr)); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 24px; }
.text-center { text-align: center; }

/* =============================================
   BUTTONS — pill shape like Wix
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: var(--radius-btn);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9375rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}
/* Primary — yellow pill (matches Wix "CALL NOW" / "Get Quote") */
.btn-primary {
  background: var(--yellow);
  color: var(--text-dark);
  border-color: var(--yellow);
}
.btn-primary:hover {
  background: var(--yellow-dark);
  border-color: var(--yellow-dark);
  color: var(--text-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(251,202,70,0.4);
}
/* Outline — orange border (matches Wix service cards CTA) */
.btn-outline {
  background: transparent;
  color: var(--orange);
  border-color: var(--orange);
}
.btn-outline:hover {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-1px);
}
/* White pill — on dark backgrounds */
.btn-white {
  background: var(--white);
  color: var(--text-dark);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--yellow);
  border-color: var(--yellow);
  transform: translateY(-1px);
}
.btn-lg { padding: 16px 36px; font-size: 1rem; }
.btn-sm { padding: 9px 20px; font-size: 0.8125rem; }

/* =============================================
   TOP BAR — yellow, license + phone + FB
   ============================================= */
.top-bar {
  background: var(--yellow);
  padding: 8px 0;
  font-family: var(--font-body);
  font-size: medium;
  font-weight: 400;
  color: var(--text-dark);
}
.top-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.top-bar-license { font-weight: 400; }
.top-bar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.top-bar-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-dark);
  font-weight: 400;
}
.top-bar-phone:hover { color: var(--navy); }
.top-bar-fb {
  width: 32px;
  height: 32px;
  background: #1877F2;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 900;
  font-size: 1rem;
  text-decoration: none;
}
.top-bar-fb:hover { background: #0d6efd; color: white; }
.header-quote-btn {
  background: var(--yellow);
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 999px;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}
.header-quote-btn:hover { background: #e6c200; color: var(--navy); }

/* =============================================
   HEADER / NAV — dark navy, white links
   ============================================= */
#site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--navy);
  box-shadow: 0 2px 12px rgba(0,0,0,0.18);
}
.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 32px;
  max-width: var(--max-width);
  margin: 0 auto;
  gap: 16px;
}
.header-inner .site-logo { justify-self: start; }
.header-inner #main-navigation { justify-self: center; }
.header-inner .header-quote-btn { justify-self: end; }
.header-inner .mobile-menu-toggle { justify-self: end; }

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.site-logo img,
.site-logo .custom-logo {
  width: 176px;
  max-width: 176px;
  height: auto;
  object-fit: contain;
}
img.custom-logo {
  width: 176px !important;
  max-width: 176px !important;
  height: auto !important;
}
.site-logo-text-wrap {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-line1 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.logo-line2 {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.15rem;
  color: var(--yellow);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

/* Primary nav */
#primary-nav {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}
#primary-nav > li { position: relative; }
#primary-nav > li > a {
  display: block;
  padding: 8px clamp(4px, 0.7vw, 14px);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-radius: 4px;
  transition: color var(--transition), background var(--transition);
}
#primary-nav > li > a:hover,
#primary-nav > li.current-menu-item > a {
  color: var(--yellow);
  background: rgba(255,255,255,0.06);
}
.nav-get-quote {
  background: var(--yellow) !important;
  color: var(--text-dark) !important;
  border-radius: var(--radius-btn) !important;
  padding: 10px 22px !important;
  margin-left: 8px;
}
.nav-get-quote:hover {
  background: var(--yellow-dark) !important;
  color: var(--text-dark) !important;
}

/* Dropdown */
.sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: var(--navy);
  border-top: 3px solid var(--yellow);
  border-radius: 0 0 8px 8px;
  list-style: none;
  padding: 8px 0;
  margin-top: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: all var(--transition);
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  z-index: 100;
}
/* Invisible bridge so mouse can travel from nav item to submenu without gap */
.sub-menu::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
}
#primary-nav > li:hover .sub-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.sub-menu a {
  display: block;
  padding: 9px 20px;
  color: rgba(255,255,255,0.85);
  font-size: 0.8125rem;
  font-family: var(--font-heading);
  text-transform: none;
  letter-spacing: 0;
  transition: all var(--transition);
}
.sub-menu a:hover {
  color: var(--yellow);
  padding-left: 28px;
  background: rgba(255,255,255,0.05);
}

/* Mobile toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.mobile-menu-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

/* =============================================
   ALERT BAR (2027 ban) — below sticky header
   ============================================= */
.alert-bar {
  background: var(--orange);
  color: var(--white);
  padding: 10px 24px;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 600;
}
.alert-bar a { color: var(--white); text-decoration: underline; }

/* =============================================
   HERO — full-bleed photo, white text overlay
   ============================================= */
.hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/hero-plumber.jpg');
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  opacity: 0.55;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(30,40,55,0.85) 0%, rgba(30,40,55,0.45) 60%, rgba(30,40,55,0.15) 100%);
}
.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding-top: 60px;
  padding-bottom: 60px;
}
.hero-content { color: var(--white); }
.hero-content h1 {
  color: var(--white);
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero-content p {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 12px;
  font-weight: 700;
}
.hero-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
}
.hero-bullets li {
  color: var(--yellow);
  font-weight: 700;
  font-size: 1.0625rem;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-bullets li::before {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  background: var(--yellow);
  border-radius: 50%;
  flex-shrink: 0;
}
.hero-badges {
  display: flex;
  gap: 16px;
  margin-top: 28px;
  flex-wrap: wrap;
  align-items: center;
}
.hero-badge-img {
  height: 80px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
}

/* Hero form card */
.hero-form-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 32px 28px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}
.hero-form-card h3 {
  font-size: 1.25rem;
  margin-bottom: 20px;
  color: var(--text-dark);
}

/* =============================================
   CONTACT FORM
   ============================================= */
.contact-form .form-group { margin-bottom: 14px; }
.contact-form label {
  display: block;
  font-weight: 700;
  font-size: 0.8125rem;
  margin-bottom: 5px;
  color: var(--text-dark);
  font-family: var(--font-heading);
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid #d0d0d0;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color var(--transition);
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--orange);
}
.contact-form textarea { min-height: 90px; resize: vertical; }

/* =============================================
   TESTIMONIALS SECTION
   ============================================= */
.testimonials-section {
  background: var(--body-bg);
  padding: 64px 24px;
}
.testimonials-section h2 {
  text-align: center;
  margin-bottom: 48px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 28px;
  box-shadow: var(--shadow-card);
}
.testimonial-stars {
  color: var(--yellow);
  font-size: 1.125rem;
  margin-bottom: 12px;
  letter-spacing: 2px;
}
.testimonial-text {
  color: var(--text-mid);
  font-style: italic;
  line-height: 1.75;
  margin-bottom: 16px;
  font-size: 0.9375rem;
}
.testimonial-author strong { font-size: 0.9375rem; }
.testimonial-author span { font-size: 0.8125rem; color: var(--text-light); }

/* =============================================
   WHY CHOOSE US — 1 col text + 3 cards layout
   ============================================= */
.why-section {
  background: var(--white);
  padding: 72px 24px;
}
.why-intro {
  max-width: 680px;
  margin: 0 auto 40px;
  text-align: center;
}
.why-intro h2 { margin-bottom: 16px; }
.why-intro p { color: var(--text-mid); margin-bottom: 24px; font-size: 0.9375rem; }
.why-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  background: var(--body-bg);
  border-radius: var(--radius-card);
  padding: 28px 20px;
  text-align: center;
  border: 1px solid #ebebeb;
}
.why-card-icon {
  font-size: 2.5rem;
  margin-bottom: 14px;
  color: var(--orange);
  line-height: 1;
}
/* SVG icon style matching Wix orange outline icons */
.why-card-icon svg {
  width: 52px;
  height: 52px;
  stroke: var(--orange);
  fill: none;
  stroke-width: 1.5;
}
.why-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-dark);
}
.why-card p { font-size: 0.875rem; color: var(--text-mid); margin: 0; }

/* =============================================
   ABOUT / TRUST SECTION — 2 col with values list
   ============================================= */
.about-section {
  background: var(--body-bg);
  padding: 72px 24px;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.values-list { list-style: none; padding: 0; margin: 20px 0 28px; }
.values-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}
.values-list .check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--orange);
  font-weight: 700;
  font-size: 0.75rem;
}
.values-list .val-title { font-weight: 700; margin-bottom: 2px; font-size: 0.9375rem; }
.values-list .val-desc { font-size: 0.875rem; color: var(--text-mid); }

/* =============================================
   SERVICE CARDS — orange outline style like Wix
   ============================================= */
.services-section {
  background: var(--white);
  padding: 72px 24px;
}
.services-section h2 { text-align: center; margin-bottom: 12px; }
.services-section > .container > p {
  text-align: center;
  color: var(--text-mid);
  max-width: 600px;
  margin: 0 auto 48px;
}

.service-card {
  background: var(--white);
  border: 1.5px solid var(--orange);
  border-radius: var(--radius-card);
  padding: 32px 24px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.service-card .btn {
  margin-top: auto;
  align-self: center;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(216,99,14,0.15);
}
.service-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 1.75rem;
  color: var(--orange);
}
.service-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-dark);
}
.service-card p {
  font-size: 0.875rem;
  color: var(--text-mid);
  margin-bottom: 20px;
  line-height: 1.6;
  flex: 1;
}

/* =============================================
   STATS BAR — navy background
   ============================================= */
.stats-bar {
  background: var(--navy);
  padding: 40px 24px;
}
.stats-bar .grid-4 { text-align: center; }
.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--yellow);
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label { color: rgba(255,255,255,0.8); font-size: 0.875rem; }

/* =============================================
   LIVE SUPPORT CTA BANNER — yellow background
   ============================================= */
.support-banner {
  background: var(--yellow);
  padding: 56px 24px;
  text-align: center;
}
.support-banner h2 {
  color: var(--text-dark);
  margin-bottom: 8px;
  font-size: clamp(1.5rem, 3vw, 2rem);
}
.support-banner p {
  color: var(--text-dark);
  font-size: 1rem;
  margin-bottom: 28px;
  opacity: 0.8;
}
.support-banner .phone-big {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--text-dark);
  text-decoration: none;
  margin-bottom: 24px;
}
.support-banner .phone-big:hover { color: var(--navy); }

/* =============================================
   CITY SERVICE AREAS
   ============================================= */
.areas-section {
  background: var(--body-bg);
  padding: 72px 24px;
}
.city-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px;
  list-style: none;
  padding: 0;
  margin-top: 32px;
}
.city-grid li a {
  display: block;
  padding: 12px 16px;
  background: var(--white);
  border-radius: 8px;
  border: 1.5px solid var(--border);
  text-align: center;
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--text-dark);
  font-family: var(--font-heading);
  transition: all var(--transition);
}
.city-grid li a:hover {
  background: var(--navy);
  color: var(--yellow);
  border-color: var(--navy);
  transform: translateY(-2px);
}

/* =============================================
   FAQ ACCORDION
   ============================================= */
.faq-section {
  background: var(--white);
  padding: 72px 24px;
}
.faq-item {
  border: 1.5px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 10px;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 22px;
  text-align: left;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: background var(--transition);
}
.faq-question:hover { background: var(--body-bg); }
.faq-question.active { background: var(--body-bg); color: var(--orange); }
.faq-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  transition: transform var(--transition);
}
.faq-question.active .faq-icon { transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding: 0 22px 18px;
  color: var(--text-mid);
  font-size: 0.9375rem;
  line-height: 1.75;
}
.faq-answer.active { display: block; }

/* =============================================
   BLOG CARDS
   ============================================= */
.post-card {
  background: var(--white);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid var(--border);
}
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.post-card-img { height: 200px; overflow: hidden; }
.post-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.post-card:hover .post-card-img img { transform: scale(1.04); }
.post-card-body { padding: 22px; }
.post-card-meta { font-size: 0.8125rem; color: var(--text-light); margin-bottom: 8px; }
.post-card h3 { font-size: 1rem; margin-bottom: 8px; color: var(--text-dark); }
.post-card p { font-size: 0.875rem; color: var(--text-mid); }
.post-category-badge {
  display: inline-block;
  padding: 3px 10px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50px;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}

/* =============================================
   BREADCRUMBS
   ============================================= */
.breadcrumb {
  background: var(--body-bg);
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.8125rem;
  color: var(--text-light);
}
.breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.breadcrumb-list .breadcrumb-item { display: flex; align-items: center; }
.breadcrumb-list .separator { margin: 0 4px; opacity: 0.5; list-style: none; }
.breadcrumb a { color: var(--orange); }
.breadcrumb a:hover { color: var(--orange-light); }

/* Hero breadcrumb — floats over the top of the hero section */
.page-hero-wrap { position: relative; }
.breadcrumb-hero {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
  background: transparent;
  border: none;
  padding: 12px 0;
}
.breadcrumb-hero .breadcrumb-list { padding: 0; }
.breadcrumb-hero a { color: rgba(255,255,255,0.8); }
.breadcrumb-hero a:hover { color: var(--white); }
.breadcrumb-hero .current { color: rgba(255,255,255,0.55); }
.breadcrumb-hero .separator { color: rgba(255,255,255,0.4); }

/* =============================================
   FOOTER — dark navy, multi-column
   ============================================= */
#site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.9);
  padding: 56px 24px 0;
}
#site-footer p { color: rgba(255,255,255,0.9); }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo { margin-bottom: 14px; }
.footer-logo img { height: 56px; width: auto; }
.footer-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.footer-logo-text .logo-line1 { font-size: 0.9rem; color: rgba(255,255,255,0.7); }
.footer-logo-text .logo-line2 { font-size: 1.25rem; color: var(--yellow); font-weight: 900; }
.footer-about p { font-size: 0.875rem; line-height: 1.75; margin-bottom: 16px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.1);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 0.875rem;
  transition: background var(--transition);
  text-decoration: none;
}
.footer-social a:hover { background: var(--yellow); color: var(--text-dark); }
.footer-heading {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 9px; }
.footer-links a {
  color: rgba(255,255,255,0.9);
  font-size: 0.875rem;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--yellow); }
.footer-contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 12px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.9);
}
.footer-contact-item .icon { color: var(--yellow); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a { color: rgba(255,255,255,0.9); }
.footer-contact-item a:hover { color: var(--yellow); }
.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.75);
}
.footer-bottom a { color: rgba(255,255,255,0.75); }
.footer-bottom a:hover { color: var(--yellow); }
.footer-bottom-links { display: flex; gap: 16px; }

/* =============================================
   PAGE CONTENT (inner pages)
   ============================================= */
.page-hero {
  background: var(--navy);
  padding: 48px 24px;
  color: var(--white);
}
.page-hero h1 { color: var(--white); font-size: clamp(1.75rem, 4vw, 2.5rem); }
.page-content {
  padding: 56px 24px 80px;
  background: var(--white);
}
.page-content .container { max-width: 860px; }
.page-content h2 { margin: 32px 0 14px; color: var(--navy); }
.page-content h3 { margin: 24px 0 10px; color: var(--navy); }
.page-content ul, .page-content ol { margin-bottom: 16px; }
.page-content li { margin-bottom: 6px; color: var(--text-mid); }
.page-content p { color: var(--text-mid); }

/* Blog single */
.post-hero { background: var(--body-bg); padding: 48px 24px 40px; }
.post-content { font-size: 1.0625rem; line-height: 1.85; color: var(--text-mid); }
.post-content h2 { color: var(--navy); margin: 36px 0 14px; }
.post-content h3 { color: var(--navy); margin: 28px 0 10px; }
.post-content ul, .post-content ol { margin-bottom: 20px; }
.post-content table { width: 100%; border-collapse: collapse; margin: 20px 0; font-size: 0.9375rem; }
.post-content th { background: var(--navy); color: var(--white); padding: 10px 14px; text-align: left; }
.post-content td { padding: 9px 14px; border-bottom: 1px solid var(--border); }
.post-content tr:nth-child(even) td { background: var(--body-bg); }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .why-cards { grid-template-columns: repeat(3, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .about-intro-grid { grid-template-columns: 1fr; gap: 32px; }
  .values-cards { grid-template-columns: 1fr; }
  .apart-grid { grid-template-columns: 1fr; }
}

/* ══ FAQ PAGE ════════════════════════════════════════════════════ */
.faq-page-section { background: var(--white); padding: 64px 24px 80px; }
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 4px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  transition: color var(--transition);
}
.faq-question:hover { color: var(--orange); }
.faq-question.active { color: var(--orange); }
.faq-chevron { flex-shrink: 0; transition: transform 0.25s ease; color: var(--orange); }
.faq-question.active .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  font-size: 0.9375rem;
  color: var(--text-mid);
  line-height: 1.7;
  padding: 0 4px;
}
.faq-answer.active {
  max-height: 400px;
  padding: 0 4px 20px;
}
.faq-answer a { color: var(--orange); font-weight: 600; }

/* ══ REQUEST SERVICE PAGE ════════════════════════════════════════ */
.request-service-section {
  background: var(--body-bg);
  padding: 64px 24px 80px;
}
.request-service-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  max-width: var(--max-width);
  margin: 0 auto;
  align-items: start;
}
.request-form-col h2 { color: var(--navy); margin-bottom: 8px; }
.request-form-col > p { color: var(--text-mid); margin-bottom: 24px; }
.request-form-col .contact-form {
  background: var(--white);
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.jobber-pending-notice {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff8e1;
  border: 1px solid var(--yellow);
  border-radius: 8px;
  padding: 14px 16px;
  margin-bottom: 20px;
  font-size: 0.875rem;
  color: var(--text-dark);
}
.jobber-pending-notice span { font-size: 1.25rem; flex-shrink: 0; }
.jobber-pending-notice p { margin: 0; }
.trust-card {
  background: var(--white);
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}
.trust-card h3 { color: var(--navy); margin-bottom: 16px; font-size: 1rem; }
.trust-list { list-style: none; padding: 0; margin: 0; }
.trust-list li { padding: 6px 0; border-bottom: 1px solid var(--border); font-size: 0.9rem; color: var(--text-mid); }
.trust-list li:last-child { border-bottom: none; }
.hours-table { width: 100%; border-collapse: collapse; font-size: 0.875rem; }
.hours-table td { padding: 6px 0; color: var(--text-mid); }
.hours-table td:last-child { text-align: right; font-weight: 600; color: var(--navy); }
.trust-badges {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 20px;
}
.trust-badges img { height: 80px; width: auto; object-fit: contain; }
#jobber-booking-widget iframe { width: 100% !important; border-radius: 12px; }

@media (max-width: 900px) {
  .request-service-grid { grid-template-columns: 1fr; }
}

/* ══ SERVICE PAGE SHARED STYLES ═════════════════════════════════ */
.service-intro {
  background: var(--white);
  padding: 56px 24px 48px;
}
.service-subtitle {
  font-style: italic;
  color: var(--text-mid);
  margin-bottom: 24px;
  font-size: 0.9375rem;
}
.service-intro h2 { color: var(--navy); margin-bottom: 16px; }
.service-intro p   { color: var(--text-mid); margin-bottom: 14px; }

/* Job gallery */
.job-gallery-section { background: var(--body-bg); padding: 56px 24px 72px; }
.job-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.job-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}
.job-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}
.job-card-body { padding: 16px 20px 20px; }
.job-card-body h3 { font-size: 0.9rem; color: var(--navy); margin-bottom: 6px; line-height: 1.4; }
.job-card-body p  { font-size: 0.85rem; color: var(--text-mid); }

/* Safety valves */
.safety-discount {
  display: inline-block;
  background: var(--yellow);
  color: var(--text-dark);
  padding: 10px 20px;
  border-radius: 6px;
  margin-top: 20px;
  font-size: 0.9rem;
}
.safety-products {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.safety-product-card {
  background: var(--white);
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  text-align: center;
}
.safety-product-card img { max-height: 180px; object-fit: contain; margin-bottom: 20px; }
.safety-product-body h3  { color: var(--navy); margin-bottom: 12px; }
.safety-product-body p   { color: var(--text-mid); font-size: 0.9rem; margin-bottom: 12px; }

/* General plumbing grid */
.plumbing-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.plumbing-service-card {
  background: var(--white);
  border-radius: 10px;
  padding: 28px 24px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}
.plumbing-service-icon { font-size: 2rem; margin-bottom: 12px; }
.plumbing-service-card h3 { color: var(--navy); font-size: 1rem; margin-bottom: 10px; }
.plumbing-service-card p  { color: var(--text-mid); font-size: 0.9rem; }

@media (max-width: 768px) {
  .job-gallery          { grid-template-columns: 1fr; }
  .safety-products      { grid-template-columns: 1fr; }
  .plumbing-services-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .plumbing-services-grid { grid-template-columns: 1fr; }
}

/* ══ CTA BANNER (above footer) ═══════════════════════════════════ */
.cta-banner {
  background: var(--body-bg);
  padding: 64px 24px;
  text-align: center;
  border-top: 1px solid var(--border);
  margin-bottom: 0;
}
.cta-banner h2 { color: var(--navy); margin-bottom: 12px; }
.cta-banner p { color: var(--text-mid); margin-bottom: 28px; max-width: 600px; margin-left: auto; margin-right: auto; }
.cta-banner .btn-group { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ══ PAGE HERO BANNER ════════════════════════════════════════════ */
.page-hero {
  position: relative;
  background: var(--navy) center center / cover no-repeat;
  color: var(--white);
  text-align: center;
  padding: 36px 24px 32px;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(30, 40, 55, 0.65);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin: 0;
}

/* ══ ABOUT INTRO (two-col) ═══════════════════════════════════════ */
.about-intro-section {
  padding: 72px 24px;
  background: var(--white);
}
.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
}
.about-intro-photo img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  max-height: 520px;
}
.about-intro-text .eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}
.about-intro-text h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.25rem);
  color: var(--navy);
  margin-bottom: 20px;
}
.about-intro-text p { color: var(--text-mid); margin-bottom: 28px; }

/* ══ OUR VALUES ══════════════════════════════════════════════════ */
.values-section {
  background: var(--body-bg);
  padding: 72px 24px;
}
.values-section h2 { color: var(--navy); margin-bottom: 12px; }
.values-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 8px;
}
.value-card {
  background: var(--white);
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.value-icon { font-size: 2rem; margin-bottom: 14px; }
.value-card h3 { font-size: 1rem; color: var(--navy); margin-bottom: 10px; }
.value-card p { font-size: 0.9rem; color: var(--text-mid); }

/* ══ WHAT SETS US APART ══════════════════════════════════════════ */
.apart-section {
  background: var(--white);
  padding: 72px 24px 80px;
}
.apart-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.apart-card {
  text-align: center;
  padding: 24px;
}
.apart-icon { font-size: 2.5rem; margin-bottom: 16px; }
.apart-card h3 { font-size: 1.05rem; color: var(--navy); margin-bottom: 12px; }
.apart-card p { color: var(--text-mid); font-size: 0.9375rem; }

@media (max-width: 768px) {
  .section { padding: 52px 20px; }

  .hero .container { grid-template-columns: 1fr; }
  .hero-form-card { display: none; }

  .header-inner { display: flex; align-items: center; gap: 12px; padding: 0 16px; }
  #main-navigation { position: absolute; width: 0; height: 0; overflow: visible; padding: 0; }

  #primary-nav { display: none; flex-direction: column; align-items: stretch; position: absolute; top: 100%; left: 0; right: 0; background: var(--navy); padding: 12px 0; z-index: 99; border-top: 2px solid var(--yellow); }
  #primary-nav.open { display: flex; }
  #primary-nav > li > a { padding: 12px 20px; border-radius: 0; }
  .mobile-menu-toggle { display: flex; }

  .why-cards { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .top-bar-license { font-size: medium; }
}

@media (max-width: 480px) {
  .hero-cta-group { flex-direction: column; align-items: flex-start; }
  .stats-bar .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

/* ── Contact Us ────────────────────────────────── */
.contact-page-section { padding: 64px 0; }

.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-phone-link {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--navy);
  text-decoration: none;
  margin: 8px 0 4px;
}
.contact-phone-link:hover { color: var(--orange); }

.contact-email-link {
  display: block;
  font-size: 1rem;
  color: var(--orange);
  text-decoration: none;
  margin-bottom: 4px;
}
.contact-email-link:hover { text-decoration: underline; }

.contact-city-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 16px;
}
.contact-city-list li {
  color: var(--text-mid);
  font-size: .95rem;
  padding-left: 18px;
  position: relative;
}
.contact-city-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
}
.contact-city-list a { color: var(--navy); text-decoration: none; font-weight: 600; }
.contact-city-list a:hover { color: var(--orange); text-decoration: underline; }

.contact-about-section { padding: 48px 0; background: var(--body-bg); }
.contact-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-about-text h3 { color: var(--navy); margin-bottom: 16px; }
.contact-about-text p { color: var(--text-mid); margin-bottom: 12px; line-height: 1.7; }

.contact-hours-card {
  background: #fff;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 2px 10px rgba(0,0,0,.07);
}
.contact-hours-card h3 { color: var(--navy); margin-bottom: 16px; }

/* ── Water Heater Installations page ─────────────────────────── */
.whi-intro-section { padding: 56px 0 40px; background: #fff; }
.whi-intro-inner { max-width: 800px; }
.whi-intro-text p { font-size: 1.0625rem; color: var(--text-mid); line-height: 1.75; margin-bottom: 28px; }
.whi-intro-ctas { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.whi-discount-badge {
  display: inline-block;
  background: var(--yellow);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.875rem;
  padding: 8px 16px;
  border-radius: 6px;
}
.whi-choose-section { background: var(--body-bg); padding: 56px 0 40px; }
.whi-choose-section h2 { margin-bottom: 20px; }
.whi-choose-intro { color: var(--text-mid); max-width: 800px; line-height: 1.75; font-size: 1rem; }
.whi-types-section { background: #fff; padding: 56px 0 72px; }
.whi-types-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.whi-type-card {
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.whi-type-icon { font-size: 2rem; }
.whi-type-card h3 { font-size: 1.25rem; color: var(--navy); margin: 0; }
.whi-type-tagline { font-weight: 600; color: var(--orange); font-size: 0.9375rem; margin: 0; }
.whi-type-card p { color: var(--text-mid); font-size: 0.9375rem; line-height: 1.7; margin: 0; }
.whi-best-for { background: var(--body-bg); border-radius: 8px; padding: 14px 16px; }
.whi-best-for strong { color: var(--navy); display: block; margin-bottom: 8px; font-size: 0.9rem; }
.whi-best-for ul { margin: 0; padding-left: 18px; }
.whi-best-for li { color: var(--text-mid); font-size: 0.9rem; line-height: 1.6; }
.whi-reg-note {
  font-size: 0.875rem;
  color: var(--text-mid);
  background: #fff8e1;
  border-left: 3px solid var(--yellow);
  padding: 10px 14px;
  border-radius: 0 6px 6px 0;
  margin: 0;
}
.whi-type-ctas { display: flex; flex-direction: column; gap: 10px; margin-top: auto; }
.whi-why-tagline { font-weight: 700; color: var(--orange); font-size: 1rem; margin-bottom: 12px; }

@media (max-width: 900px) {
  .whi-types-grid { grid-template-columns: 1fr; }
}

.contact-service-banner {
  background: var(--navy);
  color: #fff;
  padding: 40px 0;
}
.contact-service-banner h3 { color: #fff; margin-bottom: 12px; }
.contact-service-banner p { color: rgba(255,255,255,.8); max-width: 700px; margin: 0 auto; line-height: 1.7; }

@media (max-width: 768px) {
  .contact-page-grid,
  .contact-about-grid { grid-template-columns: 1fr; }
  .contact-city-list { grid-template-columns: 1fr; }
}

/* ── Blog Index ────────────────────────────────── */
.blog-index-section { padding: 64px 0 80px; background: var(--body-bg); }

.blog-post-list { display: flex; flex-direction: column; gap: 32px; }

.blog-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 28px;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,.07);
}

.blog-card-thumb { display: block; }
.blog-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-card-body {
  padding: 28px 28px 28px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.blog-card-date { font-size: .85rem; color: var(--text-mid); margin: 0; }

.blog-card-title { font-size: 1.2rem; margin: 0; }
.blog-card-title a { color: var(--navy); text-decoration: none; }
.blog-card-title a:hover { color: var(--orange); }

.blog-card-excerpt { color: var(--text-mid); font-size: .95rem; margin: 0; flex: 1; }

.blog-card-link { font-weight: 700; color: var(--orange); text-decoration: none; font-size: .9rem; }
.blog-card-link:hover { text-decoration: underline; }

/* ── Blog pagination ─────────────────────────────────────────── */
.blog-index-section .navigation.pagination {
  margin-top: 48px;
  display: flex;
  justify-content: center;
}
.blog-index-section .nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.blog-index-section .nav-links .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border-radius: 6px;
  font-size: .9rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--navy);
  background: #fff;
  border: 1px solid #dde2ea;
  transition: background .15s, color .15s;
}
.blog-index-section .nav-links .page-numbers:hover {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
}
.blog-index-section .nav-links .page-numbers.current {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.blog-index-section .nav-links .page-numbers.dots {
  background: none;
  border: none;
  color: var(--text-mid);
}

/* ── Sitemap page ─────────────────────────────────────────────── */
.sitemap-container { padding: 56px 0 80px; }
.sitemap-container .sitemap-section { margin-bottom: 48px; }
.sitemap-container h2 { color: var(--navy); font-size: 1.25rem; margin-bottom: 16px; padding-bottom: 8px; border-bottom: 2px solid var(--yellow); display: inline-block; }
.sitemap-list { list-style: none; padding: 0; columns: 2; column-gap: 32px; }
.sitemap-list li { margin-bottom: 8px; break-inside: avoid; }
.sitemap-list a { color: var(--text-mid); text-decoration: none; font-size: 0.9375rem; }
.sitemap-list a:hover { color: var(--orange); text-decoration: underline; }
@media (max-width: 600px) { .sitemap-list { columns: 1; } }

@media (max-width: 640px) {
  .blog-card { grid-template-columns: 1fr; }
  .blog-card-thumb img { height: 200px; }
  .blog-card-body { padding: 20px; }
}

/* ── City Service Area Pages ────────────────────────────────── */
.city-content-section { padding: 56px 24px 48px; }
.city-content-wrap {
  max-width: 860px;
}
.city-content-wrap h2 {
  color: var(--navy);
  font-size: 1.5rem;
  margin: 40px 0 12px;
}
.city-content-wrap h3 {
  color: var(--navy);
  font-size: 1.15rem;
  margin: 28px 0 8px;
}
.city-content-wrap ul {
  padding-left: 20px;
  margin-bottom: 16px;
}
.city-content-wrap ul li { margin-bottom: 6px; }
.city-content-wrap p { color: var(--text-mid); margin-bottom: 14px; }
.city-content-wrap a { color: var(--orange); }
.city-content-wrap strong { color: var(--text-dark); }
.city-content-wrap hr { border: none; border-top: 1px solid #e8e8e8; margin: 36px 0; }

.city-cta-section {
  background: var(--navy);
  color: #fff;
  padding: 64px 24px;
}
.city-cta-section h2 { color: #fff; margin-bottom: 12px; }
.city-cta-section p { color: rgba(255,255,255,0.85); margin-bottom: 16px; }
.city-cta-section .contact-form { background: #fff; padding: 28px; border-radius: 12px; }
.city-cta-section .contact-form label { color: var(--text-dark); }
.city-cta-section .contact-form p { color: var(--text-mid); }
