/* =============================================================
   Valley Powerwash — styles.css
   Adapted from Verdant template (landscaping → power washing)
   Brand: Dark navy #141722, gold #eab24a, water blue #8bbee7
          PT Serif headlines / Nunito body
   ============================================================= */

/* -------------------------------------------------------------
   CSS Custom Properties (Design Tokens)
------------------------------------------------------------- */
:root {
  /* Primary palette — Valley Powerwash brand */
  --blue:        #141722;   /* Brand dark navy — primary dark */
  --blue-mid:    #1a2035;   /* Slightly lighter dark — hover states */
  --blue-light:  #8bbee7;   /* Brand water blue — icon accents, highlights */
  --blue-pale:   #c7dff1;   /* Brand light water blue — backgrounds */
  --blue-mist:   #eef4fa;   /* Near-white blue tint — form backgrounds */

  /* Gold */
  --gold:        #eab24a;   /* Brand gold — CTA buttons, star icons */
  --gold-dark:   #c99432;   /* Darker gold — button hover */
  --gold-light:  #ffe18b;   /* Brand light gold — badge backgrounds */

  /* Neutrals */
  --white:       #ffffff;
  --cream:       #f9f6c5;   /* Brand cream — section backgrounds */
  --cream-soft:  #fafafa;   /* Neutral off-white section variation */
  --rust:        #713e19;   /* Brand rust brown — accent */
  --border:      #c7dff1;   /* Light water blue border */

  /* Text */
  --text:        #141722;   /* Brand dark — body copy */
  --text-mid:    #2d3550;   /* Dark mid — headings */
  --text-muted:  #4a6480;   /* Medium blue-grey — body copy */
  --text-light:  #7a95ab;   /* Light — placeholders, captions */

  /* Layout */
  --container:   80rem;
}

/* -------------------------------------------------------------
   Reset + Base
------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Nunito', sans-serif;
  background: var(--white);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
  text-wrap: balance;
}

/* Section scroll targets */
#services, #why-us, #service-area, #testimonials, #contact {
  scroll-margin-top: 128px;
}

/* -------------------------------------------------------------
   Skip Link (ADA — must be the first focusable element)
------------------------------------------------------------- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 12px;
  z-index: 9999;
  background: var(--blue);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 12px;
}

/* -------------------------------------------------------------
   Global Focus States (ADA — visible on all interactive elements)
------------------------------------------------------------- */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--blue-light);
  outline-offset: 3px;
}

/* -------------------------------------------------------------
   Layout Utility
------------------------------------------------------------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 48px;
}

/* -------------------------------------------------------------
   Top Bar
------------------------------------------------------------- */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 300;
  min-height: 48px;
  padding: 8px 0;
  background: var(--blue);
  display: flex;
  align-items: center;
}

.topbar-inner {
  max-width: calc(var(--container) + 48px);
  margin: 0 auto;
  padding: 0 48px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

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

.topbar-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  transition: color 0.2s;
}

.topbar-item:hover {
  color: var(--white);
}

.topbar-item i {
  font-size: 16px;
  color: var(--gold);
}

.topbar-social {
  display: flex;
  align-items: center;
  gap: 14px;
}

.topbar-social a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  text-decoration: none;
  transition: color 0.2s;
}

.topbar-social a:hover {
  color: var(--white);
}

/* -------------------------------------------------------------
   Navigation
------------------------------------------------------------- */
.site-nav {
  position: fixed;
  top: 48px;
  left: 0;
  right: 0;
  z-index: 200;
  height: 80px;
  padding: 0 max(32px, calc((100vw - var(--container)) / 2 + 24px));
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid transparent;
  box-shadow: none;
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, backdrop-filter 0.25s ease;
}

.site-nav.scrolled,
.site-nav.nav-open,
body.solid-header .site-nav {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--border);
  box-shadow: 0 4px 24px rgba(13, 59, 110, 0.14);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  justify-self: start;
}

.nav-logo-img {
  height: 62px;
  width: auto;
  max-width: 260px;
  object-fit: contain;
  display: block;
}

.nav-logo-img--color {
  display: none;
}

.site-nav.scrolled .nav-logo-img--white,
.site-nav.nav-open .nav-logo-img--white,
body.solid-header .site-nav .nav-logo-img--white {
  display: none;
}

.site-nav.scrolled .nav-logo-img--color,
.site-nav.nav-open .nav-logo-img--color,
body.solid-header .site-nav .nav-logo-img--color {
  display: block;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  justify-self: center;
}

.nav-links a,
.nav-links button {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  transition: color 0.2s;
  position: relative;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
}

.site-nav.scrolled .nav-links a,
.site-nav.scrolled .nav-links button,
.site-nav.nav-open .nav-links a,
.site-nav.nav-open .nav-links button,
body.solid-header .site-nav .nav-links a,
body.solid-header .site-nav .nav-links button {
  color: var(--text-mid);
}

.nav-links a::after,
.nav-links button::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--blue-light);
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

.nav-links a:hover,
.nav-links button:hover {
  color: var(--white);
}

.site-nav.scrolled .nav-links a:hover,
.site-nav.scrolled .nav-links button:hover,
.site-nav.nav-open .nav-links a:hover,
.site-nav.nav-open .nav-links button:hover,
body.solid-header .site-nav .nav-links a:hover,
body.solid-header .site-nav .nav-links button:hover {
  color: var(--blue);
}

.nav-links a:hover::after,
.nav-links button:hover::after {
  transform: scaleX(1);
}

/* Services dropdown */
.nav-dropdown {
  position: relative;
  padding: 12px 0;
  margin: -12px 0;
}

.nav-dropdown > a::before,
.nav-dropdown > button::before {
  content: '\f107';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 12px;
  margin-left: 6px;
  float: right;
  margin-top: 3px;
}

.nav-dropdown-menu {
  display: block;
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%);
  width: 220px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: 0 12px 36px rgba(13, 59, 110, 0.14);
  padding: 8px 0;
  list-style: none;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.14s ease, visibility 0s linear 0.18s, transform 0.14s ease;
}

.nav-dropdown-menu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -14px;
  height: 14px;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
  transition-delay: 0s;
}

.nav-dropdown-menu li a {
  display: block;
  padding: 9px 18px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-mid);
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}

.nav-dropdown-menu li a:hover {
  background: var(--blue-pale);
  color: var(--blue);
}

.nav-dropdown-menu li a::after {
  display: none;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-self: end;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 16px;
  font-weight: 800;
  color: var(--white);
  text-decoration: none;
  transition: color 0.2s;
}

.site-nav.scrolled .nav-phone,
.site-nav.nav-open .nav-phone,
body.solid-header .site-nav .nav-phone {
  color: var(--blue);
}

.nav-phone:hover {
  color: var(--gold);
}

.site-nav.scrolled .nav-phone:hover,
.site-nav.nav-open .nav-phone:hover,
body.solid-header .site-nav .nav-phone:hover {
  color: var(--blue-mid);
}

.nav-phone i {
  font-size: 16px;
  color: var(--white);
}

.site-nav.scrolled .nav-phone i,
.site-nav.nav-open .nav-phone i,
body.solid-header .site-nav .nav-phone i {
  color: var(--gold);
}

.nav-cta {
  background: var(--gold);
  color: var(--white);
  padding: 9px 20px;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s;
}

.nav-cta:hover {
  background: var(--gold-dark);
  transform: translateY(-1px);
}

/* Hamburger toggle */
.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  justify-self: end;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 0;
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.site-nav.scrolled .nav-toggle,
.site-nav.nav-open .nav-toggle,
body.solid-header .site-nav .nav-toggle {
  background: transparent;
  color: var(--blue);
}

.nav-toggle-bars {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 18px;
}

.nav-toggle-bars span {
  display: block;
  width: 100%;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-nav.nav-open .nav-toggle-bars span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-nav.nav-open .nav-toggle-bars span:nth-child(2) {
  opacity: 0;
}

.site-nav.nav-open .nav-toggle-bars span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu panel */
.nav-mobile {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  right: 20px;
  z-index: 5;
  width: min(360px, calc(100vw - 40px));
  padding: 18px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 22px 48px rgba(13, 59, 110, 0.18);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.site-nav.nav-open .nav-mobile {
  display: block;
}

.nav-mobile-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-bottom: 14px;
}

.nav-mobile-links a {
  display: block;
  padding: 10px 14px;
  border-radius: 8px;
  text-decoration: none;
  color: var(--text-mid);
  font-size: 16px;
  font-weight: 700;
  transition: background 0.15s, color 0.15s;
}

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

.nav-mobile-dropdown {
  list-style: none;
}

.nav-mobile-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 10px 14px;
  border: none;
  border-radius: 8px;
  background: none;
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-mid);
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}

.nav-mobile-toggle:hover {
  background: var(--blue-pale);
  color: var(--blue);
}

.nav-mobile-toggle i {
  font-size: 12px;
  transition: transform 0.2s;
}

.nav-mobile-toggle[aria-expanded="true"] i {
  transform: rotate(180deg);
}

.nav-mobile-sub {
  list-style: none;
  display: none;
  flex-direction: column;
  gap: 2px;
  padding-left: 14px;
  padding-bottom: 8px;
}

.nav-mobile-sub.open {
  display: flex;
}

.nav-mobile-sub a {
  display: block;
  padding: 7px 12px;
  border-radius: 6px;
  text-decoration: none;
  color: var(--text-muted);
  font-size: 16px;
  font-weight: 600;
  transition: background 0.15s, color 0.15s;
}

.nav-mobile-sub a:hover {
  background: var(--blue-pale);
  color: var(--blue);
}

.nav-mobile-contact {
  display: grid;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.nav-mobile-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  text-decoration: none;
  font-size: 16px;
  font-weight: 800;
}

.nav-mobile-phone i {
  font-size: 16px;
  color: var(--gold);
}

.nav-mobile-cta {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--white);
  border-radius: 10px;
  text-decoration: none;
  padding: 12px 16px;
  font-size: 16px;
  font-weight: 800;
  transition: background 0.2s;
}

.nav-mobile-cta:hover {
  background: var(--gold-dark);
}

body.nav-open {
  overflow: hidden;
}

/* -------------------------------------------------------------
   Hero Animations
------------------------------------------------------------- */
@keyframes heroUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}

.hero-eyebrow,
.hero-h1,
.hero-tagline,
.hero-trust,
.hero-btns {
  animation: heroUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-h1      { animation-delay: 0.08s; }
.hero-tagline { animation-delay: 0.16s; }
.hero-trust   { animation-delay: 0.24s; }
.hero-btns    { animation-delay: 0.32s; }
.hero-form    { animation: heroUp 0.9s 0.12s cubic-bezier(0.22, 1, 0.36, 1) both; }

/* -------------------------------------------------------------
   Hero Section
------------------------------------------------------------- */
.hero {
  margin-top: 0;
  min-height: 72vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../assets/images/full-images/residential-siding-powerwash.jpg') center 50% / cover no-repeat;
  filter: brightness(0.52) saturate(1.1);
}

/* Fallback gradient when no hero image is present */
.hero-bg.no-image {
  background: linear-gradient(145deg, var(--blue) 0%, var(--blue-mid) 60%, #0a2d5a 100%);
  filter: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    rgba(13, 59, 110, 0.88) 0%,
    rgba(13, 59, 110, 0.68) 48%,
    rgba(13, 59, 110, 0.28) 100%
  );
}

.hero-inner-wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 156px 48px 72px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(400px, 0.85fr);
  gap: 48px;
  align-items: center;
}

.hero-left {
  max-width: 620px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero-eyebrow::after {
  display: none;
}

.hero-h1 {
  font-family: 'PT Serif', serif;
  font-size: clamp(38px, 4.6vw, 64px);
  line-height: 1.07;
  color: var(--white);
  margin-bottom: 18px;
}

.hero-h1 em {
  color: inherit;
  font-style: normal;
}

.hero-tagline {
  max-width: 460px;
  margin-bottom: 28px;
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
}

.hero-trust {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  font-weight: 700;
}

.hero-trust-item i {
  color: var(--gold);
  font-size: 16px;
  width: 14px;
  text-align: center;
  flex-shrink: 0;
}

.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  padding: 13px 26px;
  background: var(--white);
  color: var(--blue);
  font-size: 16px;
  font-weight: 800;
}

.btn-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-1px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border-radius: 5px;
  text-decoration: none;
  transition: border-color 0.2s;
  padding: 13px 26px;
  border: 2px solid rgba(255, 255, 255, 0.45);
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
}

.btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.78);
}

/* Hero form card */
.hero-right {
  display: flex;
  justify-content: flex-end;
}

.hero-form-card {
  width: 100%;
  max-width: 460px;
  background: var(--white);
  border-radius: 14px;
  padding: 38px 34px;
  border-top: 4px solid var(--gold);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.28), 0 4px 16px rgba(0, 0, 0, 0.12);
}

.hfc-title {
  font-family: 'PT Serif', serif;
  font-size: 21px;
  color: var(--blue);
  margin-bottom: 4px;
}

.hfc-sub {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.6;
}

/* -------------------------------------------------------------
   Form Shared Styles (hero + contact page)
------------------------------------------------------------- */
.hfc-fields,
.cf-fields {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hfc-row,
.cf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.hfc-group,
.cf-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.hfc-label,
.cf-label {
  display: block;
  font-size: 16px;
  font-weight: 800;
  color: var(--text-mid);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hfc-input,
.hfc-select,
.hfc-textarea,
.cf-input,
.cf-select,
.cf-textarea {
  width: 100%;
  padding: 11px 14px;
  border-radius: 6px;
  border: 1.5px solid var(--border);
  background: var(--blue-mist);
  color: var(--text);
  font-size: 16px;
  font-family: 'Nunito', sans-serif;
  line-height: 1.4;
  outline: none;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}

.hfc-input::placeholder,
.hfc-textarea::placeholder,
.cf-input::placeholder,
.cf-textarea::placeholder {
  color: var(--text-light);
}

.hfc-input:focus,
.hfc-select:focus,
.hfc-textarea:focus,
.cf-input:focus,
.cf-select:focus,
.cf-textarea:focus {
  border-color: var(--blue-light);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(59, 130, 212, 0.12);
}

.hfc-select,
.cf-select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%234a6480'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.hfc-textarea,
.cf-textarea {
  min-height: 100px;
  resize: vertical;
}

.hfc-submit,
.cf-submit {
  width: 100%;
  margin-top: 4px;
  border: none;
  border-radius: 7px;
  padding: 15px 24px;
  background: var(--gold);
  color: var(--white);
  font-size: 16px;
  font-weight: 800;
  font-family: 'Nunito', sans-serif;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background 0.2s, transform 0.15s;
}

.hfc-submit:hover,
.cf-submit:hover {
  background: var(--gold-dark);
  transform: translateY(-1px);
}

/* Form success message (Netlify Forms) */
.form-success {
  display: none;
  padding: 20px;
  background: var(--blue-pale);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--blue);
  font-weight: 700;
  text-align: center;
  font-size: 16px;
}

/* -------------------------------------------------------------
   Trust Bar
------------------------------------------------------------- */
.trust-bar {
  background: #fafafa;
  padding: 22px 48px;
}

.trust-bar-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.trust-item {
  color: var(--text-mid);
  padding: 0 30px;
}

.trust-item:first-child {
  padding-left: 0;
}

.trust-item:not(:last-child) {
  border-right: 1px solid rgba(199, 223, 241, 0.9);
}

.trust-item-title {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 7px;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trust-item-title i {
  color: var(--gold);
  font-size: 16px;
}

.trust-item p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.5;
}

/* -------------------------------------------------------------
   Section Shared Elements
------------------------------------------------------------- */
.sec-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.sec-eyebrow::after {
  display: none;
}

.sec-title {
  font-family: 'PT Serif', serif;
  font-size: clamp(28px, 3.6vw, 48px);
  color: var(--blue);
  line-height: 1.1;
  margin-bottom: 14px;
}

.sec-title em {
  color: inherit;
  font-style: normal;
}

.sec-sub {
  max-width: 520px;
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.8;
}

/* -------------------------------------------------------------
   Services Section
------------------------------------------------------------- */
.services {
  background: var(--white);
  padding: 96px 0;
}

.services .sec-header,
.testimonials .sec-header {
  text-align: center;
  margin-bottom: 52px;
}

.services .sec-header .sec-eyebrow,
.testimonials .sec-header .sec-eyebrow {
  margin: 0 auto 12px;
}

.services .sec-header .sec-sub,
.testimonials .sec-header .sec-sub {
  margin: 0 auto;
}

.services .sec-header .sec-sub {
  max-width: 760px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.srv-card {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  color: inherit;
  text-decoration: none;
  position: relative;
  overflow: visible;
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
}

.srv-card::before {
  display: none;
}

.srv-card:hover {
  background: transparent;
  transform: translateY(-2px);
  box-shadow: none;
  z-index: 2;
}

.srv-card:hover::before {
  transform: scaleX(1);
}

.service-card-media {
  height: 250px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--blue-mist);
}

.service-card-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.srv-card:hover .service-card-media img,
.geo-service-card:hover .service-card-media img {
  transform: scale(1.035);
}

.service-card-body {
  position: relative;
  z-index: 1;
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 10px;
  margin: -52px 28px 0;
  padding: 34px 28px 28px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(20, 23, 34, 0.08);
  text-align: center;
}

.srv-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blue-pale);
  border: 1px solid rgba(59, 130, 212, 0.15);
  color: var(--gold);
  font-size: 18px;
  flex-shrink: 0;
}

.srv-card h3 {
  font-family: 'PT Serif', serif;
  font-size: 17px;
  color: var(--blue);
}

.srv-card p {
  flex: 1;
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.7;
}

.srv-card-link {
  color: var(--gold);
  font-size: 16px;
  font-weight: 800;
  display: flex;
  gap: 6px;
  align-items: center;
  justify-content: center;
}

/* -------------------------------------------------------------
   Homepage Service Spotlights
------------------------------------------------------------- */
.home-service-spotlight {
  padding: 96px 0;
  overflow: hidden;
}

.home-service-spotlight--cream {
  background: var(--cream-soft);
}

.home-service-spotlight--blue-mist {
  background: var(--blue-mist);
}

.home-service-spotlight--white {
  background: var(--white);
}

.home-service-spotlight--dark {
  background: var(--blue);
  color: var(--white);
  position: relative;
}

.home-service-spotlight--dark::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: repeating-linear-gradient(-48deg, rgba(255,255,255,0.035) 0 1px, transparent 1px 20px);
}

.home-spotlight-inner {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 72px;
  align-items: center;
}

.home-service-spotlight--reverse .home-spotlight-copy {
  order: 2;
}

.home-service-spotlight--reverse .home-spotlight-media {
  order: 1;
}

.home-spotlight-copy .sec-eyebrow {
  margin-bottom: 12px;
}

.home-spotlight-copy .sec-title {
  margin-bottom: 22px;
}

.home-service-spotlight--dark .sec-title,
.home-service-spotlight--dark .home-spotlight-copy p,
.home-service-spotlight--dark .home-spotlight-list {
  color: var(--white);
}

.home-spotlight-copy p {
  color: var(--text-muted);
  font-size: 17px;
  line-height: 1.75;
  margin-bottom: 28px;
}

.home-spotlight-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 28px;
  list-style: none;
  margin: 0 0 34px;
  padding: 0;
  color: var(--text-mid);
  font-weight: 400;
}

.home-spotlight-list li {
  display: grid;
  grid-template-columns: 16px 1fr;
  gap: 10px;
  align-items: start;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.45;
}

.home-spotlight-list li::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-top: 9px;
  background: var(--gold);
}

.home-spotlight-media {
  position: relative;
}

.home-spotlight-media--collage {
  min-height: 560px;
}

.home-spotlight-img-main,
.home-spotlight-img-single,
.home-spotlight-img-overlap {
  object-fit: cover;
  display: block;
  box-shadow: 0 20px 58px rgba(13, 59, 110, 0.14);
}

.home-spotlight-img-main {
  width: 86%;
  height: 390px;
  margin-left: auto;
}

.home-spotlight-img-single {
  width: 88%;
  height: 520px;
  border-radius: 0;
}

.home-spotlight-img-single--ba {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 600px;
  object-fit: contain;
  margin-left: auto;
  margin-right: auto;
}

.home-spotlight-media:not(.home-spotlight-media--collage) .home-spotlight-stat {
  width: 200px;
  height: 180px;
  bottom: -40px;
}

.home-spotlight-img-overlap {
  position: absolute;
  left: 0;
  bottom: 0;
  width: calc(100% - 200px);
  height: 300px;
}

.home-spotlight-stat {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 180px;
  height: 150px;
  padding: 24px 20px;
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
  background: var(--blue);
  color: var(--white);
}

.home-service-spotlight--dark .home-spotlight-stat {
  background: var(--white);
  color: var(--blue);
}

.home-spotlight-stat strong {
  display: block;
  font-family: 'PT Serif', serif;
  font-size: 38px;
  line-height: 1;
}

.home-spotlight-stat span {
  margin-top: 8px;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.25;
}

/* -------------------------------------------------------------
   Why Choose Us Section
------------------------------------------------------------- */
.why-us {
  background: var(--cream-soft);
  padding: 96px 0;
}

.why-us-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 0.98fr 1.02fr;
  gap: 56px;
  align-items: center;
}

.why-us-media,
.why-us-content {
  min-width: 0;
}

.why-us-media {
  position: relative;
  min-height: 560px;
  --collage-gap: 20px;
}

.why-us-img-main {
  width: 86%;
  height: 370px;
  margin-left: auto;
  object-fit: cover;
  display: block;
  border-radius: 0;
  box-shadow: 0 20px 58px rgba(13, 59, 110, 0.14);
}

.why-us-img-secondary {
  position: absolute;
  left: 0;
  bottom: 0;
  width: calc(100% - 180px - var(--collage-gap));
  height: 300px;
  object-fit: cover;
  display: block;
  border-radius: 0;
  box-shadow: 0 20px 58px rgba(13, 59, 110, 0.14);
}

.why-us-badge {
  position: absolute;
  bottom: 0;
  right: 0;
  background: var(--blue);
  color: var(--white);
  border-radius: 0;
  width: 180px;
  min-height: 150px;
  padding: 26px 22px;
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
  gap: 8px;
  box-shadow: 0 8px 24px rgba(13, 59, 110, 0.3);
}

.why-badge-icon {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: var(--gold);
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 16px;
  flex-shrink: 0;
}

.why-badge-text strong {
  display: block;
  font-size: 38px;
  line-height: 1;
  font-family: 'PT Serif', serif;
  color: var(--white);
}

.why-badge-text span {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 800;
  line-height: 1.25;
}

.why-us-content .sec-sub {
  margin-bottom: 36px;
}

.why-feats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 28px;
  margin-bottom: 36px;
}

.why-feat {
  display: grid;
  grid-template-columns: 28px 1fr;
  align-items: flex-start;
  gap: 12px;
}

.feat-icon {
  width: auto;
  height: auto;
  border-radius: 0;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 0;
  color: var(--gold);
  box-shadow: none;
  font-size: 16px;
  line-height: 1;
}

.feat-text h3 {
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 3px;
}

.feat-text p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.8;
}

/* -------------------------------------------------------------
   Stats Strip
------------------------------------------------------------- */
.stats-strip {
  background: var(--blue);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}

.stats-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: repeating-linear-gradient(
    -48deg,
    rgba(59, 130, 212, 0.06) 0,
    rgba(59, 130, 212, 0.06) 1px,
    transparent 1px,
    transparent 28px
  );
}

.stats-inner {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}

.stat-item {
  padding: 0 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

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

.stat-num {
  display: block;
  color: var(--white);
  font-family: 'PT Serif', serif;
  font-size: 52px;
  line-height: 1;
}

.stat-num span {
  color: var(--gold);
}

.stat-label {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* -------------------------------------------------------------
   Service Area Section
------------------------------------------------------------- */
.service-area {
  background: var(--white);
  padding: 96px 0;
}

.service-area-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.area-cities {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 28px;
}

.area-city-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: var(--blue-pale);
  border: 1px solid var(--border);
  border-radius: 8px;
  text-decoration: none;
  color: var(--text-mid);
  font-size: 16px;
  font-weight: 700;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.area-city-link i {
  color: var(--gold);
  font-size: 16px;
}

.area-city-link:hover {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}

.area-city-link:hover i {
  color: var(--gold);
}

/* Contact page: subtle inline city list — overrides card style */
.area-cities--subtle {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 0;
}

.area-cities--subtle .area-city-link {
  display: inline-flex;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.12s;
}

.area-cities--subtle .area-city-link::after {
  content: '\00B7';
  margin: 0 8px;
  color: var(--border);
  font-weight: 400;
}

.area-cities--subtle .area-city-link:last-child::after {
  content: none;
}

.area-cities--subtle .area-city-link i {
  font-size: 16px;
  color: var(--text-muted);
  opacity: 0.6;
}

.area-cities--subtle .area-city-link:hover {
  background: none;
  border-color: transparent;
  color: var(--blue);
}

.area-cities--subtle .area-city-link:hover i {
  color: var(--blue);
  opacity: 1;
}

.area-map-placeholder {
  width: 100%;
  height: 360px;
  background: var(--blue-pale);
  border: 1px solid var(--border);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  padding: 24px;
}

/* -------------------------------------------------------------
   Testimonials Section
------------------------------------------------------------- */
.testimonials {
  background: var(--white);
  padding: 96px 0;
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testi-card {
  background: var(--blue-mist);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testi-stars {
  display: flex;
  gap: 4px;
}

.testi-stars i {
  color: var(--gold);
  font-size: 16px;
}

.testi-quote {
  flex: 1;
  color: var(--text-mid);
  font-size: 16px;
  line-height: 1.75;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blue);
  color: var(--white);
  font-family: 'PT Serif', serif;
  font-size: 16px;
}

.testi-name {
  font-family: 'PT Serif', serif;
  font-size: 16px;
  color: var(--blue);
}

.testi-loc {
  font-size: 16px;
  color: var(--text-muted);
}

/* CTA tile inside the testimonials grid */
.testi-card-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
  background: var(--blue);
  border: 1px solid var(--blue);
  border-radius: 12px;
  padding: 32px 28px;
  text-decoration: none;
  transition: background 0.2s;
  cursor: default;
}

.testi-cta-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  font-size: 26px;
  color: #4285F4;
  box-shadow: 0 8px 24px rgba(0,0,0,0.16);
}

.testi-cta-icon i {
  background: linear-gradient(90deg, #4285F4 0 28%, #34A853 28% 48%, #FBBC05 48% 72%, #EA4335 72% 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.testi-cta-title {
  font-family: 'PT Serif', serif;
  font-size: 20px;
  color: var(--white);
}

.testi-cta-sub {
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  line-height: 1.6;
}

.testi-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
  padding: 10px 22px;
  background: var(--gold);
  color: var(--white);
  border-radius: 5px;
  font-size: 16px;
  font-weight: 800;
  text-decoration: none;
  transition: background 0.2s;
}

.testi-cta-btn:hover {
  background: var(--gold-dark);
}

/* -------------------------------------------------------------
   Meet the Owner
------------------------------------------------------------- */
.meet-owner {
  background: var(--white);
  padding: 96px 0;
}

.meet-owner-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 72px;
  align-items: center;
}

.meet-owner-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.meet-owner-content .sec-eyebrow {
  margin-bottom: 0;
}

.meet-owner-content .sec-title {
  margin-bottom: 0;
}

.meet-owner-content p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.8;
}

.meet-owner-video {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(20, 23, 34, 0.16);
  background: var(--blue-dark);
}

.meet-owner-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Meet-owner 900px breakpoint merged into 1024px tablet block */

/* -------------------------------------------------------------
   CTA Banner
------------------------------------------------------------- */
.cta-banner {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: var(--blue-mid);
  padding: 88px 0;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../assets/images/cta-bg.jpg') center / cover no-repeat;
  filter: saturate(1.1) brightness(0.52);
  transform: scale(1.04);
  z-index: -2;
}

.cta-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(13, 59, 110, 0.94) 0%, rgba(13, 59, 110, 0.86) 42%, rgba(13, 59, 110, 0.8) 100%),
    radial-gradient(circle at 82% 24%, rgba(217, 119, 6, 0.14) 0%, transparent 34%);
  z-index: -1;
}

.cta-banner-inner {
  max-width: var(--container);
  min-height: 200px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.cta-banner-left h2 {
  color: var(--white);
  font-family: 'PT Serif', serif;
  font-size: clamp(22px, 2.8vw, 38px);
  line-height: 1.2;
  margin-bottom: 8px;
}

.cta-banner-left p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
}

.cta-banner-right {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-shrink: 0;
}

.cta-contact-item small {
  display: block;
  margin-bottom: 4px;
  color: var(--gold);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.cta-contact-item a {
  color: var(--white);
  font-family: 'PT Serif', serif;
  font-size: 22px;
  text-decoration: none;
  transition: color 0.2s;
}

.cta-contact-item a:hover {
  color: var(--gold);
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 28px;
  border-radius: 5px;
  background: var(--gold);
  color: var(--white);
  text-decoration: none;
  font-size: 16px;
  font-weight: 800;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}

.btn-cta:hover {
  background: var(--gold-dark);
  transform: translateY(-1px);
}

/* -------------------------------------------------------------
   Contact Section (homepage inline + contact page)
------------------------------------------------------------- */
.contact-section {
  background: var(--blue-mist);
  padding: 96px 0;
}

.contact-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-page-service-area {
  grid-column: 1;
  grid-row: 2;
  margin-top: 0;
}

.contact-page-info {
  grid-column: 1;
  grid-row: 1;
}

.contact-inner > .contact-form {
  grid-column: 2;
  grid-row: 1 / span 2;
}

.contact-left > p {
  margin-bottom: 36px;
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.75;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ci-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.ci-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 1.5px solid var(--border);
  color: var(--gold);
  box-shadow: 0 2px 8px rgba(13, 59, 110, 0.07);
  font-size: 16px;
}

.ci-text {
  color: var(--blue);
  font-size: 16px;
  font-weight: 800;
}

.ci-text span {
  display: block;
  margin-bottom: 2px;
  color: var(--text-muted);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ci-text a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

.ci-text a:hover {
  color: var(--blue-light);
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 8px 32px rgba(13, 59, 110, 0.07);
}

.contact-section--dark {
  position: relative;
  overflow: hidden;
  background: var(--blue);
  background-image: url('../assets/images/full-images/residential-siding-powerwash.jpg');
  background-position: center 50%;
  background-size: cover;
  background-repeat: no-repeat;
  border-top: 0;
}

.contact-section--dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    rgba(20,23,34,0.94) 0%,
    rgba(13,59,110,0.88) 52%,
    rgba(13,59,110,0.76) 100%
  );
  z-index: 0;
}

.contact-section--dark .contact-inner,
.contact-section--dark .geo-nearby-section {
  position: relative;
  z-index: 1;
}

.contact-section--dark .contact-left {
  text-align: left;
}

.contact-section--dark .geo-sec-eyebrow {
  color: var(--gold);
  justify-content: flex-start;
  text-align: left;
}

.contact-section--dark .geo-sec-title {
  color: var(--white);
  margin-top: 12px;
  text-align: left;
}

.contact-section--dark .contact-left > p {
  color: rgba(255,255,255,0.78);
}

.contact-section--dark .ci-text {
  color: var(--white);
}

.contact-section--dark .ci-text span {
  color: rgba(255,255,255,0.66);
}

.contact-section--dark .ci-icon {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.18);
  color: var(--gold);
  box-shadow: none;
}

/* -------------------------------------------------------------
   Service Detail Pages
------------------------------------------------------------- */
.service-detail-page {
  background: var(--white);
}

.service-hero {
  position: relative;
  overflow: hidden;
  background: var(--blue);
  min-height: 620px;
}

.service-hero--residential {
  background-image: url('../assets/images/full-images/residential-siding-powerwash.jpg');
  background-size: cover;
  background-position: center;
}

.service-hero--commercial {
  background-image: url('../assets/images/full-images/forefront-field-commercial-powerwashing.jpg');
  background-size: cover;
  background-position: center;
}

.service-hero--fleet {
  background-image: url('../assets/images/fleet-washing-truck.jpg');
  background-size: cover;
  background-position: center;
}

.service-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(20,23,34,0.95) 0%, rgba(20,23,34,0.84) 56%, rgba(20,23,34,0.52) 100%);
}

.service-hero-inner {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  padding: 152px 48px 72px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 72px;
  align-items: center;
}

.service-eyebrow,
.service-section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.service-eyebrow::after,
.service-section-eyebrow::after {
  display: none;
}

.service-hero-copy h1 {
  max-width: 680px;
  margin: 18px 0 28px;
  color: var(--white);
  font-family: 'PT Serif', serif;
  font-size: clamp(42px, 5vw, 70px);
  line-height: 1.04;
}

.service-hero-lead {
  max-width: 720px;
  margin: -10px 0 28px;
  color: rgba(255,255,255,0.84);
  font-family: 'Nunito', sans-serif;
  font-size: 18px;
  line-height: 1.7;
}

.service-hero-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 11px 30px;
  max-width: 680px;
}

.service-hero-list li {
  color: rgba(255,255,255,0.9);
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.35;
}

.service-hero-list li::before {
  content: "✓";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  margin-right: 9px;
  border-radius: 50%;
  background: rgba(234,177,69,0.18);
  color: var(--gold);
  font-size: 12px;
}

.service-hero-form {
  width: 100%;
  border-radius: 10px;
  border-top: 4px solid var(--gold);
}

.service-form-note {
  margin: 4px 0 0;
  color: var(--text-light);
  font-size: 16px;
  text-align: center;
}

.service-intro-section {
  padding: 92px 0 104px;
  background: var(--white);
}

.service-copy-narrow {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.service-copy-narrow h2,
.service-feature-copy h2,
.service-reviews-section h2,
.service-benefits-copy h2 {
  font-family: 'PT Serif', serif;
  color: var(--text);
  font-size: clamp(30px, 3.4vw, 48px);
  line-height: 1.08;
  margin: 16px 0 24px;
}

.service-copy-narrow p,
.service-feature-copy p,
.service-benefits-copy p {
  color: var(--text-muted);
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.service-feature-section {
  padding: 96px 0;
  background: var(--cream-soft);
}

.service-feature-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 72px;
  align-items: center;
}

.service-feature-media {
  position: relative;
}

.service-feature-media img {
  width: 100%;
  aspect-ratio: 1.18 / 1;
  object-fit: cover;
  display: block;
  border-radius: 10px;
  box-shadow: 0 24px 64px rgba(20,23,34,0.12);
}

.service-media-badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2px 9px;
  align-items: center;
  padding: 13px 16px;
  border-radius: 8px;
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 14px 34px rgba(20,23,34,0.22);
}

.service-media-badge i {
  grid-row: span 2;
  color: var(--gold);
}

.service-media-badge strong {
  font-size: 16px;
}

.service-media-badge span {
  font-size: 16px;
  color: rgba(255,255,255,0.74);
}

.service-feature-list {
  display: grid;
  gap: 18px;
  margin-top: 26px;
}

.service-feature-item {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 14px;
  align-items: start;
}

.service-feature-item i {
  width: auto;
  height: auto;
  border-radius: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--gold-dark);
  font-size: 17px;
  line-height: 1.2;
}

.service-feature-item h3 {
  margin-bottom: 4px;
  color: var(--text);
  font-family: 'PT Serif', serif;
  font-size: 18px;
}

.service-feature-item p {
  margin: 0;
  line-height: 1.55;
}

.service-reviews-section {
  position: relative;
  overflow: hidden;
  padding: 96px 0;
  background: var(--blue);
  background-image: url('../assets/images/siding-2.webp');
  background-position: center;
  background-size: cover;
}

.service-reviews-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(20,23,34,0.94) 0%, rgba(13,59,110,0.9) 52%, rgba(13,59,110,0.82) 100%);
}

.service-reviews-section .geo-testi-inner {
  position: relative;
  z-index: 1;
}

.service-reviews-section .service-section-eyebrow {
  display: flex;
  justify-content: center;
}

.service-reviews-section h2,
.service-reviews-sub {
  color: var(--white);
  text-align: center;
}

.service-reviews-sub {
  max-width: 620px;
  margin: 0 auto 46px;
  color: rgba(255,255,255,0.74);
  font-size: 16px;
  line-height: 1.7;
}

.service-reviews-section .geo-testi-card {
  background: rgba(255,255,255,0.13);
  border-color: rgba(255,255,255,0.18);
}

.service-reviews-section .geo-testi-headline,
.service-reviews-section .geo-testi-quote,
.service-reviews-section .geo-testi-loc {
  color: rgba(255,255,255,0.78);
}

.service-reviews-section .geo-testi-name {
  color: var(--white);
}

.service-list-section {
  padding: 96px 0;
  background: var(--white);
}

.service-list-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 48px;
  text-align: center;
}

.service-list-inner .service-section-eyebrow {
  justify-content: center;
}

.service-list-inner h2 {
  max-width: 820px;
  margin: 16px auto 44px;
  font-family: 'PT Serif', serif;
  color: var(--text);
  font-size: clamp(30px, 3.4vw, 48px);
  line-height: 1.08;
}

.service-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.service-info-card {
  min-height: 100%;
  padding: 30px 28px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--white);
  text-align: left;
  box-shadow: 0 18px 48px rgba(20,23,34,0.06);
}

.service-info-card i {
  width: 50px;
  height: 50px;
  margin-bottom: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--blue-mist);
  color: var(--blue);
  font-size: 20px;
}

.service-info-card h3 {
  margin-bottom: 12px;
  color: var(--text);
  font-family: 'PT Serif', serif;
  font-size: 20px;
  line-height: 1.2;
}

.service-info-card p {
  color: var(--text-muted);
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  margin: 0;
}

.service-benefits-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 640px;
  background: var(--white);
}

.service-benefits-split--contained {
  max-width: var(--container);
  min-height: auto;
  margin: 0 auto;
  padding: 96px 48px;
  background: var(--blue-mist);
  box-shadow: 0 0 0 100vmax var(--blue-mist);
  clip-path: inset(0 -100vmax);
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
  gap: 72px;
  align-items: center;
}

.service-benefits-collage {
  width: 100%;
}

.service-benefits-split--fafafa {
  background: #FAFAFA;
  box-shadow: 0 0 0 100vmax #FAFAFA;
}

.service-benefits-split--reverse .service-benefits-copy {
  order: 2;
}

.service-benefits-split--reverse .service-benefits-img {
  order: 1;
}

.service-benefits-img img {
  width: 100%;
  height: 100%;
  min-height: 640px;
  display: block;
  object-fit: cover;
}

.service-benefits-copy {
  padding: 88px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-benefits-split--contained .service-benefits-copy {
  padding: 0;
}

.service-benefits-copy .btn-cta {
  align-self: flex-start;
  margin-top: 12px;
}

.service-contact-footer {
  background-image: url('../assets/images/full-images/residential-siding-powerwash.jpg');
}

/* Service detail 980px breakpoint merged into 1024px below */

/* -------------------------------------------------------------
   Footer
------------------------------------------------------------- */
footer {
  background: var(--blue);
  padding: 64px 0 40px;
}

.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 48px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-logo-mark {
  width: 96px;
  height: auto;
  margin-bottom: 14px;
}

.footer-logo-text {
  display: block;
  margin-bottom: 12px;
  font-family: 'PT Serif', serif;
  font-size: 19px;
  color: var(--white);
}

.footer-brand > p {
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 16px;
  line-height: 1.75;
}

.footer-social {
  display: flex;
  gap: 8px;
}

.social-btn {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.social-btn:hover {
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
}

.footer-col-title {
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-col ul li,
.footer-col a {
  color: rgba(255, 255, 255, 0.76);
  font-size: 16px;
  line-height: 1.5;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--gold);
}

.footer-area-cols {
  display: flex;
  gap: 16px;
}

.footer-area-cols ul {
  display: flex;
  flex-direction: column;
  gap: 9px;
  flex: 1;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding-top: 24px;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 16px;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.76);
  text-decoration: none;
}

.footer-bottom a:hover {
  color: var(--gold);
}

/* -------------------------------------------------------------
   Inner Page: Page Hero (services, geo, contact pages)
------------------------------------------------------------- */
.page-hero {
  margin-top: 0;
  background: var(--blue);
  position: relative;
  overflow: hidden;
  padding: 180px 0 88px;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../assets/images/page-hero-bg.jpg') center / cover no-repeat;
  filter: brightness(0.3) saturate(1.1);
  z-index: 0;
}

.page-hero--contact::before {
  background-image: url('../assets/images/full-images/forefront-field-commercial-powerwashing.jpg');
  background-position: center;
  filter: none;
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(13, 59, 110, 0.92) 0%, rgba(13, 59, 110, 0.8) 100%);
  z-index: 0;
}

.page-hero--contact::after,
.blog-hero::after,
.blog-hero--post::after {
  background: linear-gradient(100deg, rgba(20,23,34,0.95) 0%, rgba(20,23,34,0.84) 56%, rgba(20,23,34,0.52) 100%);
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 48px;
}

.breadcrumb-nav {
  background: var(--cream-soft);
}

.breadcrumb {
  max-width: var(--container);
  margin: 0 auto;
  padding: 16px 48px;
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  font-size: 16px;
  font-weight: 700;
  flex-wrap: wrap;
}

.breadcrumb li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
}

.breadcrumb li::after {
  content: '/';
  color: var(--blue-light);
  opacity: 0.9;
}

.breadcrumb li:last-child::after {
  display: none;
}

.breadcrumb a {
  color: var(--blue);
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb a:hover {
  color: var(--gold-dark);
}

.breadcrumb li:last-child {
  color: var(--text-mid);
}

.page-hero h1 {
  font-family: 'PT Serif', serif;
  font-size: clamp(30px, 4vw, 52px);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 14px;
}

.page-hero-sub {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 560px;
  line-height: 1.7;
}

/* -------------------------------------------------------------
   Inner Page Content
------------------------------------------------------------- */
.page-content {
  padding: 80px 0;
}

.page-content-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 64px;
  align-items: start;
}

.page-content-inner.no-sidebar {
  grid-template-columns: 1fr;
  max-width: 860px;
}

.page-body h2 {
  font-family: 'PT Serif', serif;
  font-size: clamp(22px, 2.8vw, 34px);
  color: var(--blue);
  line-height: 1.2;
  margin-bottom: 16px;
  margin-top: 48px;
}

.page-body h2:first-child {
  margin-top: 0;
}

.page-body h3 {
  font-family: 'PT Serif', serif;
  font-size: 20px;
  color: var(--blue);
  margin-bottom: 10px;
  margin-top: 32px;
}

.page-body p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.page-body ul,
.page-body ol {
  margin-left: 20px;
  margin-bottom: 20px;
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.8;
}

.page-body li {
  margin-bottom: 6px;
}

/* Sidebar */
.page-sidebar {
  position: sticky;
  top: 160px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sidebar-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 24px;
  box-shadow: 0 4px 16px rgba(13, 59, 110, 0.07);
}

.sidebar-card-title {
  font-family: 'PT Serif', serif;
  font-size: 17px;
  color: var(--blue);
  margin-bottom: 14px;
}

.sidebar-cta-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--blue);
  color: var(--white);
  border-radius: 8px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 800;
  transition: background 0.2s;
  margin-bottom: 10px;
}

.sidebar-cta-phone:hover {
  background: var(--blue-mid);
}

.sidebar-cta-phone i {
  color: var(--gold);
}

.sidebar-cta-quote {
  display: block;
  padding: 11px 16px;
  background: var(--gold);
  color: var(--white);
  border-radius: 8px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 800;
  text-align: center;
  transition: background 0.2s;
}

.sidebar-cta-quote:hover {
  background: var(--gold-dark);
}

.sidebar-services-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.sidebar-services-list a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 7px;
  text-decoration: none;
  color: var(--text-mid);
  font-size: 16px;
  font-weight: 600;
  transition: background 0.15s, color 0.15s;
}

.sidebar-services-list a i {
  color: var(--gold);
  font-size: 16px;
  width: 12px;
}

.sidebar-services-list a:hover {
  background: var(--blue-pale);
  color: var(--blue);
}

/* FAQ section */
.faq-section {
  margin-top: 56px;
  padding-top: 48px;
}

.faq-section h2 {
  font-family: 'PT Serif', serif;
  font-size: clamp(22px, 2.6vw, 32px);
  color: var(--blue);
  margin-bottom: 28px;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  font-family: 'PT Serif', serif;
  font-size: 17px;
  color: var(--blue);
  margin-bottom: 10px;
}

.faq-answer {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.8;
}

/* Geo page: neighboring cities */
.nearby-cities {
  margin-top: 48px;
  padding-top: 36px;
}

.nearby-cities h3 {
  font-family: 'PT Serif', serif;
  font-size: 18px;
  color: var(--blue);
  margin-bottom: 16px;
}

.nearby-city-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
}

.nearby-city-list a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  background: var(--blue-pale);
  border: 1px solid var(--border);
  border-radius: 6px;
  text-decoration: none;
  color: var(--text-mid);
  font-size: 16px;
  font-weight: 700;
  transition: background 0.15s, color 0.15s;
}

.nearby-city-list a:hover {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}

/* -------------------------------------------------------------
   Blog
------------------------------------------------------------- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.blog-hero {
  background: var(--blue);
}

.blog-hero::before {
  background-image: url('/src/assets/images/siding-2.webp');
  background-position: center;
  filter: none;
}

.blog-hero--post {
  background: var(--blue);
}

.blog-hero--post::before {
  background-image: var(--blog-hero-image, url('/src/assets/images/siding-2.webp'));
  background-position: center;
  filter: none;
}

.blog-index-section {
  background: var(--blue-mist);
  padding: 88px 0 104px;
}

.blog-related-section {
  background: var(--white);
  padding: 88px 0 104px;
}

.blog-index-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 48px;
}

.blog-index-inner .sec-head {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.blog-index-inner .sec-eyebrow {
  margin-left: auto;
  margin-right: auto;
}

.blog-index-inner .sec-sub {
  margin-left: auto;
  margin-right: auto;
}

.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
  color: inherit;
}

.blog-card:hover {
  box-shadow: 0 12px 36px rgba(13, 59, 110, 0.12);
  transform: translateY(-2px);
}

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

.blog-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 10px;
}

.blog-card-taxonomies {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.blog-card-taxonomies a {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 10px;
  border-radius: 6px;
  background: var(--blue-pale);
  color: var(--blue);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
}

.blog-card-taxonomies a:hover {
  background: var(--blue);
  color: var(--white);
}

.blog-card-title {
  font-family: 'PT Serif', serif;
  font-size: 17px;
  line-height: 1.3;
}

.blog-card-title a {
  color: var(--blue);
  text-decoration: none;
}

.blog-card-title a:hover {
  color: var(--gold-dark);
}

.blog-card-excerpt {
  flex: 1;
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.7;
}

.blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 4px;
}

.blog-card-meta {
  font-size: 16px;
  color: var(--text-light);
}

.blog-card-readmore {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 9px 14px;
  border-radius: 6px;
  background: var(--gold);
  color: var(--white);
  font-size: 16px;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.blog-card-readmore:hover {
  background: var(--gold-dark);
}

/* Blog post page */
.blog-post-section {
  background: var(--blue-mist);
  padding: 88px 0 104px;
}

.blog-post-layout {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: minmax(0, 780px) 320px;
  gap: 56px;
  align-items: start;
}

.blog-post-header {
  margin-bottom: 36px;
}

.blog-post-header h1 {
  font-family: 'PT Serif', serif;
  font-size: clamp(26px, 3.6vw, 44px);
  color: var(--blue);
  line-height: 1.15;
  margin-bottom: 14px;
}

.blog-post-meta {
  font-size: 16px;
  color: var(--text-muted);
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.blog-taxonomy-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.blog-taxonomy-list a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 12px;
  border-radius: 6px;
  background: var(--blue-pale);
  color: var(--blue);
  font-size: 16px;
  font-weight: 800;
  text-decoration: none;
}

.blog-taxonomy-list a:hover {
  background: var(--blue);
  color: var(--white);
}

.blog-post-featured-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 36px;
}

.blog-post-body h2 {
  font-family: 'PT Serif', serif;
  font-size: clamp(20px, 2.4vw, 28px);
  color: var(--blue);
  margin: 36px 0 14px;
}

.blog-post-body h3 {
  font-family: 'PT Serif', serif;
  font-size: 19px;
  color: var(--blue);
  margin: 28px 0 10px;
}

.blog-post-body p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.85;
  margin-bottom: 20px;
}

.blog-post-body a {
  color: var(--blue-mid);
  font-weight: 700;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.blog-post-body ul,
.blog-post-body ol {
  margin: 6px 0 20px 22px;
  padding-left: 18px;
  color: var(--text-muted);
}

.blog-post-body li {
  margin-bottom: 6px;
  padding-left: 2px;
  font-size: 16px;
  line-height: 1.65;
}

.blog-sidebar {
  position: sticky;
  top: 112px;
}

.blog-form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 26px 24px;
  box-shadow: 0 8px 24px rgba(13, 59, 110, 0.08);
}

.blog-form-card p {
  margin-bottom: 22px;
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.65;
}

.blog-quote-form {
  display: grid;
  gap: 12px;
}

.blog-quote-form label {
  color: var(--blue);
  font-size: 16px;
  font-weight: 800;
}

.blog-quote-form input,
.blog-quote-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 12px 14px;
  color: var(--text);
  font: inherit;
  font-size: 16px;
  background: var(--white);
}

.blog-quote-form textarea {
  resize: vertical;
}

.blog-quote-form button {
  min-height: 48px;
  border: none;
  border-radius: 6px;
  background: var(--gold);
  color: var(--white);
  font: inherit;
  font-size: 16px;
  font-weight: 900;
  cursor: pointer;
}

.hidden-field {
  display: none;
}

/* -------------------------------------------------------------
   Scroll Reveal Animations
------------------------------------------------------------- */
.anim {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.anim.left  { transform: translateX(-28px); }
.anim.right { transform: translateX(28px); }
.anim.on    { opacity: 1; transform: none; }

.d1 { transition-delay: 0.06s; }
.d2 { transition-delay: 0.13s; }
.d3 { transition-delay: 0.20s; }
.d4 { transition-delay: 0.27s; }
.d5 { transition-delay: 0.34s; }

/* -------------------------------------------------------------
   Reduced Motion
------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  .anim,
  .hero-eyebrow,
  .hero-h1,
  .hero-tagline,
  .hero-trust,
  .hero-btns,
  .hero-form {
    opacity: 1;
    transform: none;
    transition: none;
    animation: none;
  }
}

/* -------------------------------------------------------------
   Responsive — Tablet (≤1024px)
------------------------------------------------------------- */
@media (max-width: 1024px) {
  .site-nav {
    grid-template-columns: auto 1fr auto;
  }

  .nav-logo {
    grid-column: 1;
  }

  .nav-toggle {
    grid-column: 3;
    justify-self: end;
  }

  .hero-inner-wrap,
  .why-us-inner,
  .home-spotlight-inner,
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }

  .home-service-spotlight--reverse .home-spotlight-copy,
  .home-service-spotlight--reverse .home-spotlight-media {
    order: initial;
  }

  .why-us-media {
    max-width: 720px;
    width: 100%;
    margin: 0 auto;
  }

  .home-spotlight-media,
  .why-us-media,
  .service-feature-media,
  .service-benefits-img,
  .service-benefits-collage,
  .geo-why-media {
    width: 100%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .home-spotlight-img-single,
  .service-feature-media img,
  .service-benefits-img img,
  .geo-why-img-wrap {
    position: static;
    width: 100%;
    max-width: 100%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
  }

  .home-spotlight-img-single--ba,
  .service-feature-media img.service-image--ba,
  .service-benefits-img img.service-image--ba {
    width: auto;
    max-width: 100%;
    height: auto;
    min-height: 0;
    max-height: 600px;
    object-fit: contain;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-h1, .hero-eyebrow, .hero-tagline, .hero-btns { text-align: center; justify-content: center; }
  .hero-left { width: 100%; margin: 0 auto; }
  .hero-tagline { margin: 0 auto 28px; }
  .hero-trust { align-items: center; }
  .hero-right { justify-content: center; }
  .hero-form-card { max-width: 100%; }

  /* Keep stacked content columns centered while preserving natural left-aligned copy */
  .home-spotlight-copy,
  .why-us-content,
  .service-area-inner > div {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
  }

  .home-spotlight-copy .sec-eyebrow,
  .why-us-content .sec-eyebrow {
    justify-content: flex-start;
    margin-left: 0;
    margin-right: 0;
  }

  .home-spotlight-copy .sec-sub,
  .why-us-content .sec-sub {
    margin-left: 0;
    margin-right: 0;
  }

  .home-spotlight-copy .btn-cta,
  .why-us-content .btn-cta {
    align-self: flex-start;
    margin: 0;
  }

  .home-spotlight-list { justify-content: flex-start; max-width: 520px; margin-left: 0; margin-right: 0; }

  .why-feats { max-width: 520px; margin-left: 0; margin-right: 0; }

  .contact-info { align-items: flex-start; }

  .contact-page-info,
  .contact-form,
  .contact-page-service-area {
    max-width: 720px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .contact-page-info { order: 1; }
  .contact-inner > .contact-form {
    order: 2;
    grid-column: auto;
    grid-row: auto;
  }
  .contact-page-service-area {
    order: 3;
    grid-column: auto;
    grid-row: auto;
    margin-top: 0;
  }

  .contact-page-info .contact-info {
    align-items: flex-start;
  }

  .contact-page-info .ci-row {
    justify-content: flex-start;
    text-align: left;
  }

  .contact-section--dark .contact-left { text-align: left; }
  .contact-section--dark .geo-sec-eyebrow { justify-content: flex-start; text-align: left; }
  .contact-section--dark .geo-sec-title { text-align: left; }

  .cta-banner-inner { flex-direction: column; align-items: center; text-align: center; gap: 28px; }
  .cta-banner-right { flex-wrap: wrap; gap: 20px; justify-content: center; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .testi-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .service-area-inner { grid-template-columns: 1fr; }
  .page-content-inner { grid-template-columns: 1fr; }
  .page-sidebar { position: static; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .blog-post-layout { grid-template-columns: 1fr; gap: 40px; }
  .blog-sidebar { position: static; }

  .nav-links,
  .nav-phone,
  .nav-right {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  /* Service detail pages — merged from 980px to match homepage */
  .service-hero-inner,
  .service-feature-inner,
  .service-card-grid,
  .service-benefits-split {
    grid-template-columns: 1fr;
  }

  .service-hero-inner {
    padding: 132px 24px 64px;
    gap: 40px;
  }

  .service-hero-copy {
    max-width: 720px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
  }

  .service-hero-copy h1,
  .service-hero-lead {
    margin-left: auto;
    margin-right: auto;
  }

  .service-hero-form {
    margin: 0 auto;
  }

  .service-eyebrow {
    justify-content: center;
  }

  .service-hero-list {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
    text-align: center;
  }

  .service-feature-inner {
    padding: 0 24px;
    gap: 42px;
  }

  .service-copy-narrow {
    text-align: left;
  }

  .service-feature-copy {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
  }
  .service-feature-copy .service-section-eyebrow { justify-content: flex-start; }
  .service-feature-copy .btn-cta { margin: 0; }
  .service-feature-list { max-width: 520px; margin-left: auto; margin-right: auto; text-align: left; }

  .service-list-inner {
    padding: 0 24px;
  }

  .service-card-grid {
    max-width: 640px;
    margin: 0 auto;
  }

  .service-benefits-split {
    display: flex;
    flex-direction: column;
  }

  .service-benefits-split--reverse .service-benefits-copy,
  .service-benefits-split--reverse .service-benefits-img {
    order: initial;
  }

  .service-benefits-img img {
    width: 100%;
    min-height: 340px;
  }

  .service-benefits-copy {
    padding: 56px 24px;
    text-align: left;
    align-items: flex-start;
  }

  .service-benefits-copy .service-section-eyebrow { justify-content: flex-start; }
  .service-benefits-copy .btn-cta { align-self: flex-start; }

  .service-benefits-split--contained {
    padding: 64px 24px;
    gap: 40px;
  }

  .service-benefits-split--contained .service-benefits-copy { text-align: left; align-items: flex-start; }

  /* Meet the owner — merged from 900px */
  .meet-owner { padding: 72px 0; }
  .meet-owner-inner { grid-template-columns: 1fr; gap: 36px; padding: 0 24px; }
  .meet-owner { text-align: left; }
  .meet-owner-content { max-width: 720px; margin: 0 auto; align-items: flex-start; }
  .meet-owner-content .sec-eyebrow { justify-content: flex-start; margin-left: 0; margin-right: 0; }
  .meet-owner-content .btn-cta { align-self: flex-start; }
}

/* -------------------------------------------------------------
   Responsive — Mobile (≤768px)
------------------------------------------------------------- */
@media (max-width: 768px) {
  .topbar { display: none; }

  .site-nav {
    top: 0;
    height: 72px;
    padding: 0 20px;
    grid-template-columns: auto 1fr auto;
  }

  #services, #why-us, #service-area, #testimonials, #contact {
    scroll-margin-top: 60px;
  }

  .page-hero { margin-top: 0; padding-top: 116px; padding-bottom: 72px; }
  .hero { margin-top: 0; min-height: auto; }
  .breadcrumb-nav { display: none; }

  .nav-links, .nav-phone, .nav-right { display: none; }
  .nav-toggle { display: inline-flex; }



  .hero-inner-wrap { padding: 96px 24px 48px; }
  .hero-h1 { font-size: clamp(32px, 10vw, 46px); }
  .hero-tagline { font-size: 16px; }
  .hero-trust { max-width: 340px; margin: 0 auto 28px; align-items: flex-start; }
  .hero-btns a { width: 100%; justify-content: center; }
  .hero-form-card { padding: 24px 18px; }

  .hfc-row, .cf-row { grid-template-columns: 1fr; }

  .trust-bar { padding: 18px 24px; }
  .trust-bar-inner { grid-template-columns: 1fr; gap: 18px; }
  .trust-item { padding: 0 0 18px; }
  .trust-item:not(:last-child) {
    border-right: 0;
    border-bottom: 1px solid rgba(199, 223, 241, 0.9);
  }
  .trust-item:last-child { padding-bottom: 0; }

  .container,
  .why-us-inner,
  .home-spotlight-inner,
  .contact-inner,
  .page-hero-inner,
  .footer-inner,
  .stats-inner,
  .cta-banner-inner,
  .service-area-inner,
  .page-content-inner { padding-left: 24px; padding-right: 24px; }

  .services, .home-service-spotlight, .why-us, .testimonials, .contact-section { padding: 64px 0; }

  /* Service intro — reduce bottom padding on mobile */
  .service-intro-section { padding: 56px 0 48px; }
  .services-grid, .testi-grid, .footer-grid, .blog-grid { grid-template-columns: 1fr; }
  .blog-index-section, .blog-post-section { padding: 64px 0; }
  .blog-post-layout, .blog-index-inner { padding-left: 24px; padding-right: 24px; }
  .blog-post-featured-img { height: 240px; border-radius: 8px; }
  .service-card-media { height: 220px; }
  .service-card-body {
    margin: -42px 18px 0;
    padding: 30px 22px 26px;
  }
  .home-spotlight-list {
    grid-template-columns: 1fr;
  }
  .home-spotlight-media--collage {
    min-height: clamp(360px, 78vw, 560px);
    display: block;
  }

  .home-spotlight-img-main {
    width: 86%;
    height: clamp(240px, 52vw, 390px);
    margin-left: auto;
  }

  .home-spotlight-img-overlap {
    position: absolute;
    left: 0;
    bottom: 0;
    width: calc(100% - clamp(150px, 44vw, 180px) - 16px);
    height: clamp(180px, 40vw, 300px);
  }

  .home-spotlight-img-single {
    width: 100%;
    height: auto;
  }

  .home-spotlight-img-single--ba {
    width: auto;
    max-width: 100%;
    height: auto;
    min-height: 0;
    max-height: 600px;
    object-fit: contain;
    margin-left: auto;
    margin-right: auto;
  }
  .home-spotlight-stat {
    position: absolute;
    right: 0;
    bottom: 0;
    width: clamp(150px, 44vw, 180px);
    height: clamp(130px, 38vw, 150px);
    min-height: 0;
    z-index: 2;
  }
  .why-us-media {
    min-height: clamp(360px, 78vw, 560px);
    display: block;
  }

  .why-us-img-main {
    width: 86%;
    height: clamp(240px, 52vw, 370px);
    margin-left: auto;
  }

  .why-us-img-secondary {
    position: absolute;
    left: 0;
    bottom: 0;
    width: calc(100% - 120px);
    height: clamp(180px, 40vw, 300px);
  }
  .why-feats {
    grid-template-columns: 1fr;
  }
  .stats-strip { padding: 44px 0; }

  /* Stats 2x2 grid — remove borders and center items */
  .stat-item { border-right: none; padding: 0; }
  .stats-inner { justify-items: center; }

  /* Why Us — put copy above collage on mobile */
  .why-us-content { order: -1; }
  .why-us-media { order: 1; }
  .stat-num { font-size: 42px; }
  .cta-banner { padding: 64px 0; }
  .contact-form { padding: 28px 20px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .page-content { padding: 48px 0; }
  .area-cities { grid-template-columns: 1fr; }
  .blog-card-img { height: 180px; }
  .blog-post-featured-img { height: 240px; }
}


/* =============================================================
   GEO PAGES — Redesigned Template
   All classes prefixed .geo- to isolate from other page types
============================================================= */

/* ── Shared Helpers ─────────────────────────────────────── */
.geo-sec-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.geo-sec-eyebrow {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 12px;
  text-align: center;
  display: block;
}

.geo-sec-title {
  font-family: 'PT Serif', serif;
  font-size: clamp(28px, 3.6vw, 48px);
  font-weight: 700;
  color: var(--blue);
  line-height: 1.1;
  text-align: center;
  margin-bottom: 14px;
}

.geo-sec-sub {
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.7;
  max-width: 760px;
  margin: 0 auto 48px;
}

/* ── Geo Hero ───────────────────────────────────────────── */
.geo-hero {
  position: relative;
  min-height: 600px;
  background-color: var(--blue);
  background-image: url('../assets/images/full-images/residential-driveway-cleveland.jpg');
  background-size: cover;
  background-position: center;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.geo-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(20,23,34,0.97) 0%, rgba(20,23,34,0.84) 55%, rgba(20,23,34,0.55) 100%);
}

.geo-hero-inner {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  padding: 80px 24px 72px;
  display: flex;
  align-items: center;
  gap: 64px;
  width: 100%;
}

.geo-hero-content {
  flex: 1;
  max-width: 560px;
}

.geo-eyebrow {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}

.geo-hero h1 {
  font-family: 'PT Serif', serif;
  font-size: clamp(38px, 4.6vw, 64px);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 16px;
}

.geo-hero h1 em {
  color: var(--gold);
  font-style: normal;
}

.geo-hero-sub {
  color: rgba(255,255,255,0.78);
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 22px;
}

.geo-hero-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.geo-hero-bullets li {
  color: rgba(255,255,255,0.88);
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}

.geo-hero-bullets li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.geo-hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-cta-outline {
  background: transparent;
  color: #fff;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 16px;
  padding: 11px 22px;
  border: 2px solid rgba(255,255,255,0.65);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s, border-color 0.2s;
  letter-spacing: 0.3px;
}

.btn-cta-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
}

/* Hero Quote Form */
.geo-hero-form {
  flex-shrink: 0;
  width: 420px;
  background: rgba(255,255,255,0.98);
  padding: 28px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.4);
}

.geo-hero-form h3 {
  font-family: 'PT Serif', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 4px;
  text-align: center;
}

.geo-hero-form > p {
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 18px;
}

.geo-form {
  display: flex;
  flex-direction: column;
}

.geo-form-row {
  display: flex;
  gap: 10px;
}

.geo-form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 10px;
  flex: 1;
}

.geo-form-group label {
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.geo-form-group input,
.geo-form-group select {
  padding: 9px 12px;
  border: 1.5px solid var(--border);
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  color: var(--text);
  background: #fff;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
  appearance: none;
  border-radius: 0;
}

.geo-form-group input:focus,
.geo-form-group select:focus { border-color: var(--gold); }

.geo-form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%234a6480'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 30px;
}

.geo-form-submit {
  width: 100%;
  padding: 13px;
  background: var(--gold);
  color: #fff;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 6px;
}

.geo-form-submit:hover { background: var(--gold-dark); }

.geo-form-note {
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  color: var(--text-light);
  text-align: center;
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

/* ── Trust Bar ──────────────────────────────────────────── */
.geo-trust-bar {
  background: #fff;
  padding: 18px 0;
}

.geo-trust-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.geo-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: var(--text-mid);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.geo-trust-item i {
  color: var(--gold);
  font-size: 18px;
}

/* ── Services Grid ──────────────────────────────────────── */
.geo-services-section {
  padding: 80px 0;
  background: #fff;
}

.geo-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.geo-service-card {
  display: flex;
  flex-direction: column;
  border: 0;
  padding: 0;
  transition: box-shadow 0.2s, transform 0.2s;
}

.geo-service-card:hover {
  box-shadow: none;
  transform: translateY(-2px);
}

.geo-service-icon {
  width: 52px;
  height: 52px;
  background: var(--gold-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 20px;
  color: var(--blue);
}

.geo-service-card h3 {
  font-family: 'PT Serif', serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 10px;
}

.geo-service-card p {
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 18px;
}

.geo-service-link {
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: var(--gold);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: color 0.2s;
}

.geo-service-link:hover { color: var(--gold); }

/* ── City Content ───────────────────────────────────────── */
.geo-city-section {
  padding: 80px 0;
  background: var(--blue-mist);
}

.geo-city-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.geo-city-block--full { grid-column: 1 / -1; }

.geo-city-block h3 {
  font-family: 'PT Serif', serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 14px;
}

.geo-city-block p {
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 14px;
}

.geo-city-block p:last-of-type { margin-bottom: 0; }

.geo-text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: var(--gold);
  text-decoration: none;
  margin-top: 10px;
  transition: color 0.2s;
}

.geo-text-link:hover { color: var(--gold); }

/* ── Process Steps ──────────────────────────────────────── */
.geo-process-section {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
  background: var(--white);
  background-image: url('../assets/images/overhead-1.webp');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.geo-process-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.88);
  z-index: 0;
}

.geo-process-section .geo-sec-inner {
  position: relative;
  z-index: 1;
}

.geo-process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.geo-process-step {
  text-align: center;
  padding: 32px 24px;
}

.geo-step-num {
  width: 64px;
  height: 64px;
  background: var(--blue);
  color: var(--gold);
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  border-radius: 50%;
}

.geo-process-step h3 {
  font-family: 'PT Serif', serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 10px;
}

.geo-process-step p {
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── FAQ Accordion ──────────────────────────────────────── */
.geo-faq-section {
  padding: 80px 0;
  background: #eef4fa;
}

.geo-faq-section .geo-sec-eyebrow {
  color: var(--gold);
}

.geo-faq-section .geo-sec-title {
  color: var(--blue);
}

.geo-faq-section .geo-sec-sub {
  color: var(--text-muted);
}

.geo-faq-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 24px;
}

.geo-faq-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border);
}

.geo-faq-item { border-bottom: 1px solid var(--border); }

.geo-faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-mid);
  cursor: pointer;
  gap: 16px;
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  text-decoration: none !important;
  -webkit-text-decoration: none !important;
  transition: color 0.2s;
}

.geo-faq-q * {
  text-decoration: none !important;
}

.geo-faq-q:hover { color: var(--gold-dark); }

.geo-faq-toggle {
  flex-shrink: 0;
  font-size: 24px;
  color: var(--gold);
  transition: transform 0.25s;
  font-weight: 300;
  line-height: 1;
}

.geo-faq-a {
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.75;
  padding-bottom: 20px;
  display: none;
}

.geo-faq-item.open .geo-faq-a { display: block; }
.geo-faq-item.open .geo-faq-toggle { transform: rotate(45deg); }
.geo-faq-item.open .geo-faq-q { color: var(--gold-dark); }

/* ── Nearby Cities Strip ────────────────────────────────── */
.geo-nearby-section {
  padding: 54px 0 0;
  margin-top: 56px;
  background: transparent;
  border-top: 0;
}

.geo-nearby-title {
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  text-align: center;
  margin-bottom: 20px;
}

.geo-nearby-list {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.geo-nearby-list li a {
  display: inline-block;
  padding: 9px 20px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.28);
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.geo-nearby-list li a:hover {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}

/* ── Geo Page Responsive ────────────────────────────────── */
@media (max-width: 1024px) {
  .geo-hero-inner { flex-direction: column; padding: 56px 24px 48px; }
  .geo-hero-content { max-width: 760px; text-align: center; }
  .geo-eyebrow { justify-content: center; text-align: center; }
  .geo-hero h1,
  .geo-hero-sub { margin-left: auto; margin-right: auto; }
  .geo-hero-bullets { align-items: center; }
  .geo-hero-bullets li { justify-content: center; text-align: left; }
  .geo-hero-ctas { justify-content: center; }
  .geo-hero-form { width: 100%; max-width: 520px; margin: 0 auto; }
  .geo-hero h1 { font-size: clamp(28px, 5vw, 38px); }
  .geo-services-grid { grid-template-columns: 1fr; }
  .geo-services-grid .service-card-media { height: 240px; }
  .geo-city-grid { grid-template-columns: 1fr; }
  .geo-process-grid { grid-template-columns: 1fr; }
  .geo-testi-grid { grid-template-columns: 1fr; }
  .geo-surfaces-grid { grid-template-columns: 1fr; }
  .geo-services-section .geo-sec-eyebrow,
  .geo-city-section .geo-sec-eyebrow,
  .geo-process-section .geo-sec-eyebrow,
  .geo-surfaces-section .geo-sec-eyebrow {
    text-align: left;
  }
  .geo-services-section .geo-sec-title,
  .geo-city-section .geo-sec-title,
  .geo-process-section .geo-sec-title,
  .geo-surfaces-section .geo-sec-title {
    text-align: left;
  }
  .geo-services-section .geo-sec-sub,
  .geo-city-section .geo-sec-sub,
  .geo-process-section .geo-sec-sub,
  .geo-surfaces-section .geo-sec-sub {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
  }
  .geo-sec-title { font-size: clamp(24px, 4vw, 32px); }
}

@media (max-width: 600px) {
  .geo-hero-ctas { flex-direction: column; }
  .geo-hero-ctas a { text-align: center; justify-content: center; }
  .geo-trust-inner { gap: 14px; }
  .geo-trust-item { font-size: 16px; }
}

/* =============================================================
   GEO PAGES — v2 Additions & Overrides
   Extends/corrects the initial geo-page block above
============================================================= */

/* ── Hero fixes: more top padding, eyebrow with lines ── */
.geo-hero-inner {
  padding-top: 180px;
  padding-bottom: 110px;
}

.geo-hero-form {
  border-radius: 14px;
  border-top: 4px solid var(--gold);
  box-shadow: 0 28px 72px rgba(0,0,0,0.32);
  padding: 32px;
}

.geo-hero-form .hfc-input,
.geo-hero-form .hfc-textarea {
  background: var(--white);
}

.geo-hero-form .hfc-textarea {
  min-height: 112px;
}

.geo-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
}

.geo-eyebrow::before,
.geo-eyebrow::after {
  display: none;
}

/* ── Trust bar: 3-col grid with descriptions ── */
.geo-trust-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-content: unset;
  flex-wrap: unset;
  align-items: unset;
  gap: 0;
}

.geo-trust-item {
  padding: 0 28px;
  border-right: 1px solid var(--border);
  display: block;
  font-size: unset;
  font-weight: unset;
  letter-spacing: unset;
  text-transform: unset;
}

.geo-trust-item:first-child { padding-left: 0; }
.geo-trust-item:last-child { border-right: none; }

.geo-trust-item-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 6px;
}

.geo-trust-item-title i { color: var(--gold); font-size: 16px; }

.geo-trust-item p {
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ── Service cards: rounded corners + rounded-square icons ── */
.geo-service-card {
  border-radius: 12px;
}

.geo-service-icon {
  border-radius: 10px;
  background: var(--blue-pale);
  color: var(--blue);
}

/* ── Why Us ─────────────────────────────────────────────── */
.geo-why-section {
  padding: 88px 0;
  background: var(--cream-soft);
}

.geo-why-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.geo-why-media { position: relative; }

.geo-why-img-wrap {
  width: 88%;
  height: 440px;
  overflow: hidden;
  box-shadow: 0 20px 58px rgba(13, 59, 110, 0.14);
}

.geo-why-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.geo-why-badge {
  position: absolute;
  right: 0;
  bottom: -40px;
  width: 200px;
  height: 180px;
  background: var(--blue);
  color: var(--white);
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
  padding: 24px 20px;
  box-shadow: 0 8px 24px rgba(13, 59, 110, 0.3);
}

.geo-why-badge-icon {
  display: none;
}

.geo-why-badge-text strong {
  display: block;
  font-family: 'PT Serif', serif;
  font-size: 38px;
  line-height: 1;
  color: var(--white);
}

.geo-why-badge-text span {
  display: block;
  margin-top: 8px;
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.25;
  color: rgba(255,255,255,0.88);
}

.geo-why-content { padding-top: 20px; }

.geo-why-content .geo-sec-eyebrow,
.geo-why-content .geo-sec-title {
  text-align: left;
}

.geo-why-content .geo-sec-title {
  color: var(--blue);
  margin-bottom: 14px;
}

.geo-why-intro {
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 28px;
  max-width: 480px;
}

.geo-why-feats {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 34px;
}

.geo-why-feat {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.geo-feat-icon {
  width: auto;
  height: auto;
  border-radius: 0;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 0;
  font-size: 18px;
  color: var(--gold);
  box-shadow: none;
  line-height: 1.2;
}

.geo-feat-text h4 {
  font-family: 'PT Serif', serif;
  font-size: 16px;
  color: var(--blue);
  margin-bottom: 3px;
}

.geo-feat-text p {
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── Stats Strip ────────────────────────────────────────── */
.geo-stats-strip {
  background: var(--blue);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}

.geo-stats-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: repeating-linear-gradient(-48deg, rgba(59,130,212,0.06) 0, rgba(59,130,212,0.06) 1px, transparent 1px, transparent 28px);
}

.geo-stats-inner {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}

.geo-stat-item {
  padding: 0 16px;
  border-right: 1px solid rgba(255,255,255,0.1);
}

.geo-stat-item:last-child { border-right: none; }

.geo-stat-num {
  display: block;
  font-family: 'PT Serif', serif;
  font-size: 52px;
  color: var(--white);
  line-height: 1;
}

.geo-stat-num span { color: var(--gold); }

.geo-stat-label {
  margin-top: 8px;
  color: rgba(255,255,255,0.72);
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ── Surfaces ───────────────────────────────────────────── */
.geo-surfaces-section {
  position: relative;
  overflow: hidden;
  padding: 88px 0;
  background: var(--blue);
  background-image: url('../assets/images/full-images/paver-patio-powerwashed.jpg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-bottom: 0;
}

.geo-surfaces-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    rgba(20,23,34,0.96) 0%,
    rgba(13,59,110,0.92) 52%,
    rgba(13,59,110,0.84) 100%
  );
  z-index: 0;
}

.geo-surfaces-section .geo-sec-inner {
  position: relative;
  z-index: 1;
}

.geo-surfaces-section .geo-sec-eyebrow {
  color: var(--gold);
}

.geo-surfaces-section .geo-sec-title {
  color: var(--white);
}

.geo-surfaces-section .geo-sec-sub {
  color: rgba(255,255,255,0.84);
}

.geo-surfaces-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 0;
}

.geo-surface-card {
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 10px;
  padding: 28px 22px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: box-shadow 0.2s, transform 0.2s;
}

.geo-surface-card:hover {
  box-shadow: none;
  transform: none;
}

.geo-surface-thumb {
  flex-shrink: 0;
  width: 68px;
  height: 68px;
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255,255,255,0.14) !important;
}

.geo-surfaces-section .geo-surface-thumb i {
  color: var(--gold) !important;
}

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

.geo-surface-card h4 {
  font-family: 'PT Serif', serif;
  font-size: 16px;
  color: var(--white);
  margin-bottom: 6px;
}

.geo-surface-card p {
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  color: rgba(255,255,255,0.88);
  line-height: 1.7;
}

/* ── Testimonials ───────────────────────────────────────── */
.geo-testi-section {
  padding: 88px 0;
  background: var(--white);
}

.geo-testi-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 48px;
}

.geo-testi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 300px;
  gap: 22px;
}

.geo-testi-card {
  background: var(--blue-mist);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.geo-testi-stars { display: flex; gap: 3px; }
.geo-testi-stars span { color: var(--gold); font-size: 16px; }

.geo-testi-headline {
  font-family: 'PT Serif', serif;
  font-size: 16px;
  color: var(--text-light);
  font-style: italic;
  letter-spacing: 0.04em;
}

.geo-testi-quote {
  flex: 1;
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.75;
  font-style: italic;
}

.geo-testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.geo-testi-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--blue);
  color: var(--white);
  font-family: 'PT Serif', serif;
  font-size: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.geo-testi-name {
  font-family: 'PT Serif', serif;
  font-size: 16px;
  color: var(--blue);
}

.geo-testi-loc {
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  color: var(--text-muted);
}

.geo-google-card {
  background: var(--blue);
  border: 1px solid var(--blue);
  border-radius: 12px;
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
}

.geo-google-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'PT Serif', serif;
  font-size: 26px;
  color: #4285F4;
  font-weight: 700;
}

.geo-google-card strong {
  font-family: 'PT Serif', serif;
  font-size: 18px;
  color: var(--white);
  display: block;
}

.geo-google-card p {
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  color: rgba(255,255,255,0.72);
  line-height: 1.6;
}

.btn-geo-google {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 5px;
  background: var(--gold);
  color: var(--white);
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  font-weight: 800;
  text-decoration: none;
  transition: background 0.2s;
}

.btn-geo-google:hover { background: var(--gold-dark); }

/* ── FAQ toggle: circular button ────────────────────────── */
.geo-faq-toggle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 300;
  color: var(--gold);
  transition: transform 0.22s, background 0.2s, border-color 0.2s;
  flex-shrink: 0;
}

.geo-faq-item.open .geo-faq-toggle {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

/* ── Process section connected grid style ────────────────── */
.geo-process-grid {
  background: transparent;
  border: 0;
  border-radius: 0;
  overflow: visible;
  gap: 28px;
}

.geo-process-step {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px 28px;
  transition: none;
}

.geo-process-step:hover { background: var(--white); }

.geo-step-num {
  border-radius: 10px;
  width: 56px;
  height: 56px;
  font-family: 'PT Serif', serif;
  font-size: 26px;
  font-weight: 700;
  background: var(--blue-pale);
  color: var(--blue);
}

/* ── Responsive additions for new sections ───────────────── */
@media (max-width: 1024px) {
  .geo-why-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 24px;
    text-align: left;
  }

  .geo-why-content {
    order: 1;
    padding-top: 0;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
  }

  .geo-why-media {
    order: 2;
    width: 100%;
    max-width: 720px;
    margin: 0 auto;
  }

  .geo-why-content .geo-sec-eyebrow {
    justify-content: flex-start;
    text-align: left;
  }

  .geo-why-content .geo-sec-title {
    text-align: left;
  }

  .geo-why-intro {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
  }

  .geo-why-feats {
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
  }

  .geo-why-feat {
    display: grid;
    grid-template-columns: 24px minmax(0, 1fr);
    justify-content: flex-start;
    align-items: start;
    text-align: left;
  }

  .geo-feat-icon {
    justify-content: center;
    margin-top: 3px;
  }

  .geo-why-feat h4,
  .geo-why-feat p {
    text-align: left;
  }

  .geo-why-img-wrap { width: 100%; height: 300px; }
  .geo-why-badge { width: 160px; height: 140px; bottom: -30px; }
  .geo-why-badge-text strong { font-size: 28px; }
  .geo-stats-inner { grid-template-columns: repeat(2, 1fr); }
  .geo-testi-grid { grid-template-columns: 1fr; }
  .geo-surfaces-grid { grid-template-columns: 1fr; }
  .geo-trust-inner { grid-template-columns: 1fr; }
  .geo-trust-item { padding: 14px 0; border-right: none; border-bottom: 1px solid var(--border); }
  .geo-trust-item:last-child { border-bottom: none; }
}

@media (max-width: 600px) {
  .geo-stats-inner { grid-template-columns: repeat(2, 1fr); }
  .geo-stat-item { border-right: none; }
  .geo-why-inner { padding: 0 24px; }
  .geo-why-feats { padding: 0; }
  .geo-why-section { padding: 56px 0; }
}

/* -------------------------------------------------------------
   Body Content Links (internal linking)
------------------------------------------------------------- */
.geo-sec-sub a,
.geo-why-intro a,
.geo-why-content a:not(.btn-cta),
.geo-city-block a,
.geo-surfaces-section a,
.geo-faq-a a,
.service-copy-narrow a,
.service-feature-copy a:not(.btn-cta),
.service-benefits-copy a:not(.btn-cta),
.service-reviews-sub a,
.contact-left > p a,
.sec-sub a {
  color: var(--blue-light);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.geo-sec-sub a:hover,
.geo-why-intro a:hover,
.geo-why-content a:not(.btn-cta):hover,
.geo-city-block a:hover,
.geo-surfaces-section a:hover,
.geo-faq-a a:hover,
.service-copy-narrow a:hover,
.service-feature-copy a:not(.btn-cta):hover,
.service-benefits-copy a:not(.btn-cta):hover,
.service-reviews-sub a:hover,
.contact-left > p a:hover,
.sec-sub a:hover {
  color: var(--gold);
}

.contact-section--dark .contact-left > p a,
.geo-hero a:not(.btn-cta):not(.btn-cta-outline),
.geo-testi-section .sec-sub a,
.service-reviews-section .service-reviews-sub a {
  color: var(--gold-light);
  text-decoration: none;
  font-weight: 600;
}

.thank-you-section { padding: 80px 24px; text-align: center; }
.thank-you-inner { max-width: 600px; margin: 0 auto; }
.thank-you-icon { font-size: 56px; color: var(--gold); margin-bottom: 24px; }
.thank-you-inner h2 { font-family: 'PT Serif', serif; font-size: clamp(24px, 3vw, 32px); color: var(--blue); margin-bottom: 16px; }
.thank-you-inner p { font-size: 18px; line-height: 1.75; color: var(--text-muted); margin-bottom: 20px; }
.thank-you-phone { display: inline-flex; align-items: center; gap: 8px; font-size: 20px; font-weight: 700; color: var(--blue); text-decoration: none; }
.thank-you-phone:hover { color: var(--gold); }
.thank-you-inner .btn-cta { margin-top: 12px; }

.contact-section--dark .contact-left > p a:hover,
.geo-hero a:not(.btn-cta):not(.btn-cta-outline):hover,
.geo-testi-section .sec-sub a:hover,
.service-reviews-section .service-reviews-sub a:hover {
  color: var(--gold);
}
