/* ══════════════════════════════════════════════════════════
   Columbia Septic Systems — columbiasepticsystem.com
   Industrial-Trustworthy Design System
   ══════════════════════════════════════════════════════════ */

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

/* ── Custom Properties ── */
:root {
  /* Brand */
  --navy: #2B3E50;
  --navy-dark: #1a2a38;
  --navy-light: #3d556b;
  --charcoal: #2d2d2d;
  --blue: #4A90D9;
  --blue-light: #e3edf8;
  --green: #2d8f4e;
  --green-bright: #34a853;
  --green-dark: #1f7a3c;
  --orange: #d4722a;
  --white: #ffffff;

  /* Neutrals */
  --gray-50: #f7f8f9;
  --gray-100: #eef0f2;
  --gray-200: #dde1e6;
  --gray-300: #c1c7cd;
  --gray-500: #878d96;
  --gray-700: #4d5358;
  --gray-900: #21272a;

  /* Typography */
  --font-heading: 'Barlow', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  --leading-tight: 1.15;
  --leading-normal: 1.6;
  --leading-relaxed: 1.75;

  /* Layout */
  --max-width: 1200px;
  --header-h: 70px;
  --section-pad: 64px;
  --section-pad-lg: 96px;

  /* Effects */
  --shadow-xs: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-sm: 0 1px 4px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
  --shadow-xl: 0 16px 48px rgba(0,0,0,0.16);
  --radius: 6px;
  --radius-lg: 12px;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition: 0.2s var(--ease);
}

/* ── Base ── */
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: var(--font-body);
  color: var(--charcoal);
  line-height: var(--leading-normal);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: var(--white);
  padding-bottom: 64px; /* space for sticky CTA on mobile */
}
@media (min-width: 768px) {
  body { padding-bottom: 0; }
}
img {
  max-width: 100%; height: auto; display: block;
}
a {
  color: var(--blue);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover { color: var(--navy); }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--navy);
  line-height: var(--leading-tight);
}
p { margin-bottom: 16px; }
p:last-child { margin-bottom: 0; }

/* ── Layout ── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .container { padding: 0 32px; }
}
@media (min-width: 1024px) {
  .container { padding: 0 40px; }
}
.section {
  padding: var(--section-pad) 0;
}
.section--alt {
  background: var(--gray-50);
}
.section--navy {
  background: var(--navy);
  color: var(--white);
}
.section--navy h2,
.section--navy h3 {
  color: var(--white);
}

/* Grid */
.grid {
  display: grid;
  gap: 24px;
}
.grid--2 { grid-template-columns: 1fr; }
.grid--3 { grid-template-columns: 1fr; }
.grid--4 { grid-template-columns: 1fr 1fr; }

@media (min-width: 640px) {
  .grid--2 { grid-template-columns: 1fr 1fr; }
  .grid--3 { grid-template-columns: 1fr 1fr; }
  .grid--4 { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 768px) {
  .grid--3 { grid-template-columns: 1fr 1fr 1fr; }
  .grid--4 { grid-template-columns: 1fr 1fr 1fr 1fr; }
  .grid { gap: 32px; }
}

/* Section headers */
.section-header {
  text-align: center;
  margin-bottom: 48px;
}
.section-header h2 {
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.section-header p {
  color: var(--gray-700);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .section-header h2 { font-size: 2.1rem; }
}

/* ══════════════════════════════════════════════════════════
   HEADER
   ══════════════════════════════════════════════════════════ */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  height: var(--header-h);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}
.header__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.header__logo img {
  height: 40px;
  width: auto;
}
.header__logo span {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--navy);
  margin-left: 10px;
  white-space: nowrap;
}

/* Nav */
.header__nav {
  display: none;
}
.header__nav.is-open {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: var(--header-h);
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  padding: 12px 20px 20px;
  gap: 4px;
  box-shadow: var(--shadow-lg);
  z-index: 99;
}
.header__nav a {
  color: var(--charcoal);
  font-weight: 500;
  font-size: 15px;
  padding: 10px 0;
  transition: color var(--transition);
  border-bottom: 1px solid var(--gray-100);
}
.header__nav a:last-child { border-bottom: none; }
.header__nav a:hover,
.header__nav a.is-active {
  color: var(--navy);
  text-decoration: none;
}

/* Desktop header CTA */
.header__cta {
  display: none;
}

/* Hamburger */
.header__toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  width: 36px;
  height: 36px;
  padding: 6px;
}
.header__toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: var(--transition);
}

@media (min-width: 768px) {
  .header__inner { padding: 0 32px; }
}

@media (min-width: 960px) {
  .header__nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    position: static;
    padding: 0;
    box-shadow: none;
    border: none;
    background: transparent;
  }
  .header__nav a {
    border: none;
    padding: 0;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.01em;
  }
  .header__cta {
    display: inline-flex;
    margin-left: 16px;
  }
  .header__toggle { display: none; }
}

/* ══════════════════════════════════════════════════════════
   BUTTONS
   ══════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
  line-height: 1.3;
}
.btn:hover { text-decoration: none; }

.btn--primary {
  background: var(--green);
  color: var(--white);
}
.btn--primary:hover {
  background: var(--green-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--secondary {
  background: var(--navy);
  color: var(--white);
}
.btn--secondary:hover {
  background: var(--navy-dark);
  color: var(--white);
  transform: translateY(-1px);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}
.btn--outline:hover {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border-color: var(--white);
}

.btn--phone {
  background: var(--green);
  color: var(--white);
  font-size: 17px;
  padding: 15px 30px;
}
.btn--phone:hover {
  background: var(--green-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--sm {
  padding: 10px 20px;
  font-size: 14px;
}
.btn--lg {
  padding: 16px 34px;
  font-size: 17px;
}
.btn--wide {
  width: 100%;
  justify-content: center;
}

/* ══════════════════════════════════════════════════════════
   STICKY MOBILE CTA
   ══════════════════════════════════════════════════════════ */
.sticky-cta {
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 98;
  padding: 0;
  box-shadow: 0 -3px 12px rgba(0,0,0,0.18);
}
.sticky-cta a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 12px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  color: var(--white);
  transition: background var(--transition);
}
.sticky-cta__call {
  background: var(--green);
}
.sticky-cta__call:hover {
  background: var(--green-dark);
  color: var(--white);
}
.sticky-cta__text {
  background: var(--navy);
}
.sticky-cta__text:hover {
  background: var(--navy-dark);
  color: var(--white);
}

@media (min-width: 768px) {
  .sticky-cta { display: none; }
}

/* ══════════════════════════════════════════════════════════
   HERO (Homepage)
   ══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.25;
}
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(43,62,80,0.85) 0%, rgba(43,62,80,0.5) 100%);
}
.hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 48px 20px 56px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}
.hero__content {}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: rgba(255,255,255,0.9);
}
.hero__title {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 16px;
  color: var(--white);
  letter-spacing: -0.02em;
}
.hero__subtitle {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 28px;
  line-height: 1.55;
  max-width: 520px;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}
.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 8px;
}
.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  opacity: 0.85;
}
.hero__trust-item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* Hero form (right side on desktop) */
.hero__form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}
.hero__form-header {
  background: var(--green);
  color: var(--white);
  padding: 16px 24px;
  text-align: center;
}
.hero__form-header h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin: 0;
}
.hero__form-header p {
  font-size: 14px;
  opacity: 0.9;
  margin: 4px 0 0;
}
.hero__form-body {
  padding: 0;
  min-height: 428px;
}
.hero__form-body iframe {
  width: 100%;
  min-height: 420px;
  border: none;
}

@media (min-width: 768px) {
  .hero__inner {
    padding: 64px 32px 72px;
    grid-template-columns: 1fr 380px;
    gap: 48px;
  }
  .hero__title { font-size: 2.6rem; }
  .hero__subtitle { font-size: 1.15rem; }
}
@media (min-width: 1024px) {
  .hero__inner {
    padding: 72px 40px 80px;
    grid-template-columns: 1fr 420px;
    gap: 56px;
  }
  .hero__title { font-size: 3rem; }
}

/* ══════════════════════════════════════════════════════════
   PAGE HERO (Inner Pages — includes form)
   ══════════════════════════════════════════════════════════ */
.page-hero {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.2;
}
.page-hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(43,62,80,0.9) 0%, rgba(43,62,80,0.6) 100%);
}
.page-hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 48px 20px 56px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}
.page-hero__content {}
.page-hero__title {
  font-size: 1.85rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 12px;
  color: var(--white);
  letter-spacing: -0.02em;
}
.page-hero__subtitle {
  font-size: 1.05rem;
  opacity: 0.9;
  line-height: 1.55;
  max-width: 520px;
  margin-bottom: 20px;
}
.page-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Page hero form (same as homepage hero form) */
.page-hero__form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}
.page-hero__form-header {
  background: var(--green);
  color: var(--white);
  padding: 16px 24px;
  text-align: center;
}
.page-hero__form-header h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin: 0;
}
.page-hero__form-header p {
  font-size: 13px;
  opacity: 0.9;
  margin: 4px 0 0;
}
.page-hero__form-body {
  padding: 0;
  min-height: 428px;
}
.page-hero__form-body iframe {
  width: 100%;
  min-height: 420px;
  border: none;
}

@media (min-width: 768px) {
  .page-hero__inner {
    padding: 56px 32px 64px;
    grid-template-columns: 1fr 360px;
    gap: 40px;
  }
  .page-hero__title { font-size: 2.2rem; }
}
@media (min-width: 1024px) {
  .page-hero__inner {
    padding: 64px 40px 72px;
    grid-template-columns: 1fr 400px;
    gap: 48px;
  }
  .page-hero__title { font-size: 2.5rem; }
}

/* ══════════════════════════════════════════════════════════
   CARDS
   ══════════════════════════════════════════════════════════ */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: all 0.25s var(--ease);
  border: 1px solid var(--gray-100);
}
.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: var(--gray-200);
}
.card__img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.card__body {
  padding: 24px;
}
.card__title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.card__text {
  color: var(--gray-700);
  font-size: 15px;
  margin-bottom: 16px;
  line-height: 1.55;
}
.card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 14px;
  color: var(--green);
  transition: gap var(--transition);
}
.card__link:hover {
  gap: 10px;
  color: var(--green-dark);
  text-decoration: none;
}
@media (min-width: 768px) {
  .card__img { height: 220px; }
}

/* ══════════════════════════════════════════════════════════
   TRUST BAR
   ══════════════════════════════════════════════════════════ */
.trust-bar {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding: 40px 0;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  padding: 16px 8px;
}
.trust-item__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blue-light);
  border-radius: 50%;
  color: var(--navy);
  font-size: 22px;
}
.trust-item__label {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
}
@media (min-width: 768px) {
  .trust-bar {
    grid-template-columns: repeat(4, 1fr);
    padding: 48px 0;
  }
}

/* ══════════════════════════════════════════════════════════
   SERVICE LIST (checkmark items)
   ══════════════════════════════════════════════════════════ */
.service-list {
  list-style: none;
  padding: 0;
}
.service-list li {
  padding: 14px 0 14px 36px;
  position: relative;
  border-bottom: 1px solid var(--gray-100);
  color: var(--gray-700);
  line-height: 1.5;
}
.service-list li:last-child { border-bottom: none; }
.service-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 16px;
  width: 22px;
  height: 22px;
  background: var(--green);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 14px;
  background-repeat: no-repeat;
  background-position: center;
}
.service-list__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-100);
  color: var(--gray-700);
  line-height: 1.5;
}
.service-list__item:last-child { border-bottom: none; }
.service-list__item svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--green);
}

/* ══════════════════════════════════════════════════════════
   PROCESS STEPS (numbered)
   ══════════════════════════════════════════════════════════ */
.steps {
  counter-reset: step;
  list-style: none;
  padding: 0;
}
.steps li {
  counter-increment: step;
  padding: 20px 0 20px 64px;
  position: relative;
  border-bottom: 1px solid var(--gray-100);
}
.steps li:last-child { border-bottom: none; }
.steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 20px;
  width: 40px;
  height: 40px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 16px;
}
.steps li strong {
  display: block;
  font-family: var(--font-heading);
  color: var(--navy);
  font-size: 1.05rem;
  margin-bottom: 4px;
}

/* ══════════════════════════════════════════════════════════
   TESTIMONIAL
   ══════════════════════════════════════════════════════════ */
.testimonial {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--green);
  box-shadow: var(--shadow-sm);
}
.testimonial__stars {
  color: var(--orange);
  font-size: 18px;
  margin-bottom: 12px;
  letter-spacing: 2px;
}
.testimonial__text {
  font-size: 1.05rem;
  color: var(--gray-700);
  margin-bottom: 16px;
  line-height: var(--leading-relaxed);
  font-style: italic;
}
.testimonial__author {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--navy);
  font-size: 15px;
}

/* ══════════════════════════════════════════════════════════
   FAQ ACCORDION
   ══════════════════════════════════════════════════════════ */
.faq {
  max-width: 800px;
  margin: 0 auto;
}
.faq__item {
  border-bottom: 1px solid var(--gray-200);
}
.faq__item:last-child { border-bottom: none; }
.faq__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  color: var(--navy);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  gap: 16px;
  line-height: 1.4;
}
.faq__question:hover { color: var(--navy-dark); }
.faq__icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  font-size: 18px;
  font-weight: 300;
  color: var(--gray-500);
  line-height: 1;
}
.faq__question.is-open .faq__icon {
  background: var(--navy);
  color: var(--white);
  transform: rotate(45deg);
}
.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq__answer__inner {
  padding: 0 0 24px;
  color: var(--gray-700);
  line-height: var(--leading-relaxed);
}
.faq__answer__inner p {
  margin-bottom: 12px;
}
.faq__answer__inner p:last-child { margin-bottom: 0; }

/* ══════════════════════════════════════════════════════════
   CTA BANNER (inline)
   ══════════════════════════════════════════════════════════ */
.cta-banner {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 24px;
  text-align: center;
  margin: 48px 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: rgba(255,255,255,0.03);
  border-radius: 50%;
}
.cta-banner__title {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--white);
  position: relative;
}
.cta-banner__text {
  opacity: 0.85;
  margin-bottom: 24px;
  font-size: 1.05rem;
  position: relative;
}
.cta-banner__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  position: relative;
}

@media (min-width: 768px) {
  .cta-banner { padding: 56px 40px; }
  .cta-banner__title { font-size: 1.75rem; }
}

/* ══════════════════════════════════════════════════════════
   CONTENT (rich text on inner pages)
   ══════════════════════════════════════════════════════════ */
.content {
  max-width: 800px;
}
.content h2 {
  font-size: 1.5rem;
  font-weight: 800;
  margin: 48px 0 16px;
  letter-spacing: -0.01em;
}
.content h2:first-child { margin-top: 0; }
.content h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 36px 0 12px;
}
.content p {
  color: var(--gray-700);
  line-height: var(--leading-relaxed);
  margin-bottom: 16px;
}
.content ul,
.content ol {
  margin: 0 0 20px 24px;
  color: var(--gray-700);
}
.content li {
  margin-bottom: 8px;
  line-height: 1.6;
}
.content strong {
  color: var(--charcoal);
}

@media (min-width: 768px) {
  .content h2 { font-size: 1.7rem; }
}

/* ══════════════════════════════════════════════════════════
   AREAS LIST
   ══════════════════════════════════════════════════════════ */
.areas-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.areas-county {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  padding: 24px;
}
.areas-county h3 {
  font-size: 1.1rem;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--green);
}
.areas-county ul {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 16px;
}
.areas-county li {
  padding: 4px 0;
  color: var(--gray-700);
  font-size: 15px;
}

@media (min-width: 640px) {
  .areas-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 960px) {
  .areas-grid { grid-template-columns: 1fr 1fr 1fr; }
}

/* ══════════════════════════════════════════════════════════
   FORM WRAP (contact page)
   ══════════════════════════════════════════════════════════ */
.form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  border: 1px solid var(--gray-200);
}
.form-wrap iframe {
  width: 100%;
  min-height: 450px;
  border: none;
}

/* ══════════════════════════════════════════════════════════
   CONTACT INFO
   ══════════════════════════════════════════════════════════ */
.contact-info {}
.contact-info__item {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--gray-100);
}
.contact-info__item:last-child { border-bottom: none; }
.contact-info__icon {
  width: 44px;
  height: 44px;
  background: var(--blue-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 20px;
}
.contact-info__detail h4 {
  font-size: 15px;
  margin-bottom: 4px;
}
.contact-info__detail p {
  color: var(--gray-700);
  font-size: 15px;
  margin: 0;
}
.contact-info__detail a {
  color: var(--green);
  font-weight: 600;
  font-size: 1.15rem;
}

/* ══════════════════════════════════════════════════════════
   THANK YOU PAGE
   ══════════════════════════════════════════════════════════ */
.thank-you {
  text-align: center;
  padding: 80px 20px;
  min-height: 55vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.thank-you__icon {
  width: 80px;
  height: 80px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}
.thank-you__icon svg {
  width: 40px;
  height: 40px;
  stroke: var(--white);
}
.thank-you__title {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 12px;
}
.thank-you__text {
  font-size: 1.1rem;
  color: var(--gray-700);
  max-width: 500px;
  margin: 0 auto 32px;
  line-height: 1.6;
}

/* ══════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════ */
.footer {
  background: var(--navy-dark);
  color: var(--white);
  padding: 56px 0 0;
}
.footer__grid {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}
.footer__heading {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.6);
}
.footer__links {
  list-style: none;
  padding: 0;
}
.footer__links li { margin-bottom: 10px; }
.footer__links a {
  color: rgba(255,255,255,0.8);
  font-size: 15px;
  transition: color var(--transition);
}
.footer__links a:hover {
  color: var(--white);
  text-decoration: none;
}
.footer__phone {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  display: block;
  margin-bottom: 4px;
}
.footer__phone:hover {
  color: var(--blue-light);
  text-decoration: none;
}
.footer__hours {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  line-height: 1.6;
}
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 40px;
  padding: 20px 0;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}
.footer__bottom .container {
  display: flex;
  justify-content: center;
}

@media (min-width: 768px) {
  .footer { padding: 64px 0 0; }
  .footer__grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    padding: 0 32px;
  }
}

/* ══════════════════════════════════════════════════════════
   ABOUT PAGE SPECIFIC
   ══════════════════════════════════════════════════════════ */
.about-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}
.about-split__img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.about-split__img img {
  width: 100%;
  height: auto;
  display: block;
}
@media (min-width: 768px) {
  .about-split { grid-template-columns: 1fr 1fr; gap: 48px; }
  .about-split--reverse { direction: rtl; }
  .about-split--reverse > * { direction: ltr; }
}

/* ══════════════════════════════════════════════════════════
   UTILITIES
   ══════════════════════════════════════════════════════════ */
.text-center { text-align: center; }
.text-navy { color: var(--navy); }
.text-green { color: var(--green); }
.mb-0 { margin-bottom: 0; }
.mt-24 { margin-top: 24px; }
.mt-48 { margin-top: 48px; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}
.phone-link {
  color: var(--green);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
}
.phone-link:hover {
  color: var(--green-dark);
  text-decoration: none;
}

/* ══════════════════════════════════════════════════════════
   404 PAGE
   ══════════════════════════════════════════════════════════ */
.error-page {
  text-align: center;
  padding: 100px 20px;
  min-height: 55vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.error-page__code {
  font-family: var(--font-heading);
  font-size: 6rem;
  font-weight: 800;
  color: var(--gray-200);
  line-height: 1;
  margin-bottom: 16px;
}
.error-page__title {
  font-size: 1.5rem;
  margin-bottom: 12px;
}
.error-page__text {
  color: var(--gray-700);
  margin-bottom: 32px;
  max-width: 400px;
}
