/* ============================================================
   KARLA'S CLEANING SERVICES — Main Stylesheet
   Edit colors in :root below. All brand values live there.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* ---- BRAND TOKENS — edit these to retheme the entire site ---- */
:root {
  --navy:          #1B3F6A;
  --navy-dark:     #122D4E;
  --navy-light:    #2E5F96;
  --teal:          #2BB5A0;
  --teal-dark:     #1F8A7A;
  --teal-light:    #D4F2EE;
  --teal-xlight:   #F0FBFA;
  --amber:         #F59E0B;

  --gray-50:  #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-300: #D1D5DB;
  --gray-400: #9CA3AF;
  --gray-500: #6B7280;
  --gray-600: #4B5563;
  --gray-700: #374151;
  --gray-800: #1F2937;
  --gray-900: #111827;
  --white:    #FFFFFF;

  --font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.05);
  --shadow-lg: 0 10px 32px rgba(0,0,0,0.10), 0 4px 12px rgba(0,0,0,0.07);
  --shadow-xl: 0 20px 48px rgba(0,0,0,0.12);

  --radius-sm:   6px;
  --radius-md:   10px;
  --radius-lg:   16px;
  --radius-xl:   24px;
  --radius-full: 9999px;

  --transition:      all 0.2s ease;
  --transition-slow: all 0.35s ease;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-family);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a  { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-family); }
input, textarea, select { font-family: var(--font-family); }

/* ---- Layout helpers ---- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}
.section    { padding: 4.5rem 0; }
.section-sm { padding: 2.5rem 0; }
.section-lg { padding: 6rem 0; }

/* Background shorthands */
.bg-white      { background-color: var(--white); }
.bg-light      { background-color: var(--gray-50); }
.bg-navy       { background-color: var(--navy); }
.bg-teal       { background-color: var(--teal); }
.bg-teal-light { background-color: var(--teal-xlight); }

/* ---- Section labels & headings ---- */
.section-tag {
  display: inline-block;
  background: var(--teal-light);
  color: var(--teal-dark);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.38rem 0.9rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.85rem;
}
.section-tag-navy {
  background: rgba(27,63,106,0.1);
  color: var(--navy);
}
.section-tag-white {
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9);
}

h1,h2,h3,h4,h5,h6 { font-weight: 700; line-height: 1.2; color: var(--gray-900); }

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}
.section-title-white { color: var(--white); }

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-500);
  line-height: 1.75;
  max-width: 600px;
}
.section-subtitle-white { color: rgba(255,255,255,0.78); }

.section-header { margin-bottom: 3rem; }
.section-header.center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  text-align: center;
  white-space: nowrap;
  line-height: 1;
}
.btn-primary {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}
.btn-primary:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(43,181,160,0.35);
}
.btn-secondary {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-secondary:hover {
  background: var(--navy-dark);
  border-color: var(--navy-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(27,63,106,0.3);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline-navy:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-lg { padding: 1.05rem 2.75rem; font-size: 1.05rem; }
.btn-sm { padding: 0.6rem 1.35rem; font-size: 0.85rem; }
.btn-full { width: 100%; }
.btn-group { display: flex; flex-wrap: wrap; gap: 0.875rem; align-items: center; }

/* ---- Navigation ---- */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow 0.3s ease;
}
.nav.scrolled { box-shadow: var(--shadow-md); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  padding: 0 1.25rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-icon { width: 36px; height: 36px; color: var(--teal); flex-shrink: 0; }
.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-name {
  font-size: 1rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.logo-tagline {
  font-size: 0.6rem;
  font-weight: 600;
  color: var(--teal-dark);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Desktop nav links */
.nav-links { display: none; align-items: center; gap: 0.15rem; }
.nav-links a {
  padding: 0.5rem 0.85rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-600);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.nav-links a:hover { color: var(--navy); background: var(--gray-100); }
.nav-links a.active { color: var(--teal-dark); background: var(--teal-xlight); }

.nav-cta { display: none; }

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.hamburger:hover { background: var(--gray-100); }
.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--gray-700);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  background: var(--white);
  border-top: 1px solid var(--gray-100);
  padding: 0.75rem 1.25rem 1.5rem;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  padding: 0.9rem 0.5rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--gray-700);
  border-bottom: 1px solid var(--gray-100);
  transition: var(--transition);
}
.mobile-menu a:last-of-type { border-bottom: none; }
.mobile-menu a:hover, .mobile-menu a.active { color: var(--teal-dark); }
.mobile-menu .btn { width: 100%; margin-top: 1rem; justify-content: center; }

/* ---- Hero (Home) ---- */
.hero {
  position: relative;
  background: linear-gradient(140deg, var(--navy-dark) 0%, var(--navy) 45%, #1E5080 100%);
  color: var(--white);
  overflow: hidden;
  padding: 5rem 0 4.5rem;
  min-height: 580px;
  display: flex;
  align-items: center;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 85% 40%, rgba(43,181,160,0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 15% 85%, rgba(43,181,160,0.10) 0%, transparent 50%);
  pointer-events: none;
}
.hero-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  position: relative;
  z-index: 1;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}
.hero-content { max-width: 620px; }

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(43,181,160,0.18);
  border: 1px solid rgba(43,181,160,0.35);
  color: rgba(255,255,255,0.92);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.42rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.25rem;
}
.hero-tag svg { color: var(--teal); }

.hero h1 {
  font-size: clamp(2.1rem, 5.5vw, 3.75rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 1.25rem;
  letter-spacing: -0.025em;
}
.hero h1 em { font-style: normal; color: var(--teal); }

.hero-desc {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255,255,255,0.78);
  line-height: 1.75;
  margin-bottom: 2.25rem;
  max-width: 500px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 2rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.72);
  font-weight: 500;
}
.hero-trust-item svg { color: var(--teal); flex-shrink: 0; }

/* Hero visual card (desktop right side) */
.hero-visual {
  display: none;
  flex-direction: column;
  gap: 1rem;
  max-width: 340px;
  margin-left: auto;
}
.hero-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  color: var(--white);
}
.hero-card-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.75rem;
}
.hero-stat-row {
  display: flex;
  gap: 1.5rem;
  align-items: baseline;
  margin-bottom: 0.25rem;
}
.hero-stat-num {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.hero-stat-unit {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
}
.hero-checklist li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.78);
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.hero-checklist li:last-child { border-bottom: none; }
.hero-checklist li svg { color: var(--teal); flex-shrink: 0; }

/* ---- Page hero (inner pages) ---- */
.page-hero {
  background: linear-gradient(140deg, var(--navy-dark) 0%, var(--navy) 100%);
  padding: 3.5rem 0 3rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 85% 50%, rgba(43,181,160,0.14) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 {
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.6rem;
  letter-spacing: -0.02em;
}
.page-hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.72);
  max-width: 580px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.72rem;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.85rem;
}
.breadcrumb a { color: rgba(255,255,255,0.5); transition: var(--transition); }
.breadcrumb a:hover { color: var(--teal); }
.breadcrumb-sep { color: rgba(255,255,255,0.3); }

/* ---- Stats bar ---- */
.stats-bar { background: var(--navy); padding: 2.5rem 0; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-number {
  font-size: clamp(1.85rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 0.35rem;
}
.stat-label { font-size: 0.82rem; color: rgba(255,255,255,0.6); }

/* ---- Service cards (home) ---- */
.service-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition-slow);
  position: relative;
  overflow: hidden;
}
.service-card-accent {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--navy-light));
  transform: scaleX(0);
  transition: var(--transition-slow);
  transform-origin: left;
}
.service-card:hover { border-color: var(--teal-light); box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.service-card:hover .service-card-accent { transform: scaleX(1); }
.service-card-icon {
  width: 54px; height: 54px;
  background: var(--teal-xlight);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--teal-dark);
  transition: var(--transition);
}
.service-card:hover .service-card-icon { background: var(--teal); color: var(--white); }
.service-card h3 { font-size: 1.2rem; font-weight: 700; color: var(--navy); margin-bottom: 0.65rem; }
.service-card p { color: var(--gray-500); line-height: 1.72; margin-bottom: 1.25rem; font-size: 0.92rem; }
.service-card-list { margin-bottom: 1.5rem; }
.service-card-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--gray-600);
  padding: 0.3rem 0;
}
.service-card-list li svg { color: var(--teal); flex-shrink: 0; margin-top: 2px; }

/* ---- Why choose us features ---- */
.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
}
.feature-item { display: flex; gap: 1.25rem; align-items: flex-start; }
.feature-icon {
  width: 50px; height: 50px;
  background: var(--teal-xlight);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--teal-dark);
  flex-shrink: 0;
  transition: var(--transition);
}
.feature-item:hover .feature-icon { background: var(--teal); color: var(--white); }
.feature-body h4 { font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 0.35rem; }
.feature-body p { font-size: 0.875rem; color: var(--gray-500); line-height: 1.68; }

/* ---- Testimonials ---- */
.testimonial-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: var(--transition-slow);
  display: flex;
  flex-direction: column;
}
.testimonial-card:hover { box-shadow: var(--shadow-md); border-color: var(--teal-light); transform: translateY(-2px); }
.testimonial-stars { display: flex; gap: 3px; margin-bottom: 1rem; color: var(--amber); }
.testimonial-quote-icon { color: var(--teal-light); margin-bottom: 0.75rem; }
.testimonial-text {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.78;
  flex: 1;
  margin-bottom: 1.35rem;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-avatar {
  width: 40px; height: 40px;
  background: var(--teal-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--teal-dark);
  font-weight: 700;
  font-size: 0.8rem;
  flex-shrink: 0;
}
.testimonial-name { font-weight: 700; font-size: 0.85rem; color: var(--navy); }
.testimonial-location { font-size: 0.72rem; color: var(--gray-400); margin-top: 1px; }
.testimonial-demo-note {
  font-size: 0.7rem;
  color: var(--gray-400);
  text-align: center;
  margin-top: 1.5rem;
  font-style: italic;
}

/* ---- CTA banner ---- */
.cta-banner {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 60%, #14706A 100%);
  padding: 4.5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner-dots {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}
.cta-banner-content { position: relative; z-index: 1; max-width: 600px; margin: 0 auto; }
.cta-banner h2 {
  font-size: clamp(1.55rem, 4vw, 2.3rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}
.cta-banner p { color: rgba(255,255,255,0.85); font-size: 1.05rem; margin-bottom: 2rem; line-height: 1.65; }
.cta-phone {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  display: block;
  margin-top: 1.25rem;
}
.cta-phone small { font-size: 0.8rem; font-weight: 500; color: rgba(255,255,255,0.7); display: block; margin-bottom: 0.25rem; }

/* ---- Service areas towns ---- */
.towns-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem;
}
.town-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.72rem 0.9rem;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray-700);
  transition: var(--transition);
}
.town-item:hover { border-color: var(--teal); color: var(--teal-dark); background: var(--teal-xlight); }
.town-item svg { color: var(--teal); flex-shrink: 0; }

/* ---- Contact form ---- */
.form-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  box-shadow: var(--shadow-md);
}
.form-card h3 { font-size: 1.3rem; color: var(--navy); margin-bottom: 0.4rem; }
.form-card .form-intro { font-size: 0.875rem; color: var(--gray-500); margin-bottom: 1.75rem; }

.form-group { margin-bottom: 1.2rem; }
.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 0.45rem;
  letter-spacing: 0.01em;
}
.form-label .req { color: var(--teal); margin-left: 2px; }
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.78rem 1rem;
  background: var(--white);
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius-md);
  font-size: 0.92rem;
  color: var(--gray-800);
  transition: var(--transition);
  -webkit-appearance: none;
  appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(43,181,160,0.14);
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--gray-400); }
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%236B7280'%3E%3Cpath fill-rule='evenodd' d='M5.23 7.21a.75.75 0 011.06.02L10 11.168l3.71-3.938a.75.75 0 111.08 1.04l-4.25 4.5a.75.75 0 01-1.08 0l-4.25-4.5a.75.75 0 01.02-1.06z' clip-rule='evenodd'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  background-size: 1.1rem;
  padding-right: 2.5rem;
  cursor: pointer;
}
.form-textarea { min-height: 130px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 1.2rem; }
.form-success {
  display: none;
  background: var(--teal-xlight);
  border: 1.5px solid var(--teal-light);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  font-size: 0.875rem;
  color: var(--teal-dark);
  font-weight: 500;
  margin-top: 1rem;
  align-items: center;
  gap: 0.5rem;
}
.form-success.show { display: flex; }

/* ---- Contact info card ---- */
.contact-info-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  color: var(--white);
}
.contact-info-card h3 { font-size: 1.3rem; color: var(--white); margin-bottom: 0.4rem; }
.contact-info-card > p { color: rgba(255,255,255,0.6); font-size: 0.875rem; margin-bottom: 2rem; }
.contact-info-item { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem; }
.contact-info-icon {
  width: 42px; height: 42px;
  background: rgba(43,181,160,0.16);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--teal);
  flex-shrink: 0;
}
.contact-info-text strong {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.09em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}
.contact-info-text span,
.contact-info-text a { font-size: 0.92rem; font-weight: 500; color: var(--white); }
.contact-info-text a:hover { color: var(--teal); }

.hours-block { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1.5rem; margin-top: 0.5rem; }
.hours-block h4 {
  font-size: 0.68rem;
  font-weight: 700;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.09em;
  text-transform: uppercase;
  margin-bottom: 0.875rem;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  padding: 0.38rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.hours-row:last-child { border-bottom: none; }
.hours-row span:last-child { font-weight: 600; color: var(--white); }

/* ---- Footer ---- */
.footer { background: var(--gray-900); padding: 4rem 0 2rem; }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.footer-brand p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.75;
  margin-top: 1rem;
  max-width: 270px;
}
.footer-brand .logo-name { color: var(--white); }
.footer-brand .logo-tagline { color: var(--teal); }

.footer-col h4 {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.55rem; }
.footer-links a { font-size: 0.85rem; color: rgba(255,255,255,0.45); transition: var(--transition); }
.footer-links a:hover { color: var(--teal); }

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 0.75rem;
}
.footer-contact-item svg { color: var(--teal); flex-shrink: 0; }
.footer-contact-item a { color: rgba(255,255,255,0.45); transition: var(--transition); }
.footer-contact-item a:hover { color: var(--teal); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
  text-align: center;
}
.footer-bottom p { font-size: 0.72rem; color: rgba(255,255,255,0.3); }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { font-size: 0.72rem; color: rgba(255,255,255,0.3); transition: var(--transition); }
.footer-bottom-links a:hover { color: var(--teal); }

/* ---- Grids ---- */
.grid-2 { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
.two-col { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: start; }

/* ---- About page ---- */
.value-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  text-align: center;
  transition: var(--transition-slow);
}
.value-card:hover { border-color: var(--teal-light); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.value-card-icon {
  width: 58px; height: 58px;
  background: var(--teal-xlight);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--teal-dark);
  margin: 0 auto 1.25rem;
  transition: var(--transition);
}
.value-card:hover .value-card-icon { background: var(--teal); color: var(--white); }
.value-card h3 { font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 0.5rem; }
.value-card p { font-size: 0.85rem; color: var(--gray-500); line-height: 1.68; }

.story-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--teal-xlight);
  border: 1px solid var(--teal-light);
  color: var(--teal-dark);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}

.mission-box {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.mission-box::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(43,181,160,0.14) 0%, transparent 65%);
  pointer-events: none;
}
.mission-box-content { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }
.mission-box blockquote {
  font-size: clamp(1.1rem, 2.5vw, 1.45rem);
  font-weight: 600;
  color: var(--white);
  font-style: italic;
  line-height: 1.65;
  margin-bottom: 1.25rem;
}
.mission-box cite {
  font-size: 0.82rem;
  color: var(--teal);
  font-weight: 700;
  letter-spacing: 0.04em;
  font-style: normal;
}

/* ---- Services page ---- */
.service-detail {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--gray-200);
  overflow: hidden;
  margin-bottom: 2rem;
}
.service-detail-header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 2.5rem;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.service-detail-header::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 90% 50%, rgba(43,181,160,0.15) 0%, transparent 55%);
  pointer-events: none;
}
.service-detail-header-inner { position: relative; z-index: 1; }
.service-detail-header .service-icon-lg {
  width: 64px; height: 64px;
  background: rgba(43,181,160,0.18);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--teal);
  margin-bottom: 1.25rem;
}
.service-detail-header h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--white);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}
.service-detail-header p { color: rgba(255,255,255,0.78); max-width: 600px; line-height: 1.72; font-size: 0.95rem; }
.service-detail-body { padding: 2.25rem; }

.sub-service-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
.sub-service-item {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--gray-50);
  border-radius: var(--radius-md);
  border: 1.5px solid var(--gray-200);
  transition: var(--transition);
}
.sub-service-item:hover { border-color: var(--teal); background: var(--teal-xlight); }
.sub-service-icon {
  width: 44px; height: 44px;
  background: var(--white);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--teal-dark);
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.sub-service-item:hover .sub-service-icon { background: var(--teal); color: var(--white); }
.sub-service-body h4 { font-size: 0.92rem; font-weight: 700; color: var(--navy); margin-bottom: 0.3rem; }
.sub-service-body p { font-size: 0.82rem; color: var(--gray-500); line-height: 1.62; }

.process-steps { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.process-step { display: flex; gap: 1.25rem; align-items: flex-start; }
.process-num {
  width: 42px; height: 42px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.process-body h4 { font-weight: 700; color: var(--navy); margin-bottom: 0.3rem; font-size: 0.92rem; }
.process-body p { font-size: 0.82rem; color: var(--gray-500); line-height: 1.62; }

/* ---- Service areas page ---- */
.area-highlight-box {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 3rem;
}
.area-highlight-box::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(43,181,160,0.16) 0%, transparent 65%);
  pointer-events: none;
}
.area-highlight-box-inner { position: relative; z-index: 1; }
.area-highlight-box h2 {
  font-size: clamp(1.4rem, 3vw, 1.95rem);
  color: var(--white);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}
.area-highlight-box p { color: rgba(255,255,255,0.75); max-width: 600px; margin: 0 auto; font-size: 0.95rem; }

.not-in-area-box {
  background: var(--teal-xlight);
  border: 2px dashed var(--teal-light);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  margin-top: 3rem;
}
.not-in-area-box h3 { font-size: 1.2rem; color: var(--navy); margin-bottom: 0.6rem; }
.not-in-area-box p { color: var(--gray-500); font-size: 0.9rem; margin-bottom: 1.5rem; max-width: 480px; margin-left: auto; margin-right: auto; }

/* ---- Divider ---- */
.divider { height: 1px; background: var(--gray-200); }
.divider-space { height: 1px; background: var(--gray-200); margin: 2.5rem 0; }

/* ---- Animations ---- */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }

/* Scroll anchor offset for sticky nav */
[id] { scroll-margin-top: 80px; }

/* ---- Responsive breakpoints ---- */

/* sm: 640px */
@media (min-width: 640px) {
  .towns-grid    { grid-template-columns: repeat(3, 1fr); }
  .form-row      { grid-template-columns: repeat(2, 1fr); }
  .sub-service-grid { grid-template-columns: repeat(2, 1fr); }
  .grid-4        { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
}

/* md: 768px */
@media (min-width: 768px) {
  .grid-2  { grid-template-columns: repeat(2, 1fr); }
  .grid-3  { grid-template-columns: repeat(3, 1fr); }
  .two-col { grid-template-columns: 1fr 1fr; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

/* lg: 1024px */
@media (min-width: 1024px) {
  .nav-links  { display: flex; }
  .nav-cta    { display: block; }
  .hamburger  { display: none; }

  .hero-container { grid-template-columns: 1fr 380px; }
  .hero-visual    { display: flex; }

  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
  .towns-grid { grid-template-columns: repeat(4, 1fr); }
  .sub-service-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.5fr; }
  .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; }
  .two-col { gap: 4.5rem; }
  .process-steps { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 1200px) {
  .container { padding: 0 2rem; }
}
