/* ============================================================
   GARRETT PLUMBING COMPANY — styles.css
   Theme: Professional Light  |  Stack: HTML / CSS / Vanilla JS
   Palette: Navy Blue · Sky · White · Amber (emergency only)
============================================================ */

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

/* ---------- Design Tokens ---------- */
:root {
  /* Blue brand palette */
  --blue-900: #0c1f3a;
  --blue-800: #1e3a5f;
  --blue-700: #1d4ed8;
  --blue-600: #2563eb;
  --blue-500: #3b82f6;
  --blue-200: #bfdbfe;
  --blue-100: #dbeafe;
  --blue-50:  #eff6ff;

  /* Backgrounds */
  --bg-white:  #ffffff;
  --bg-light:  #f8fafc;
  --bg-subtle: #f1f5f9;

  /* Text */
  --text-900: #0f172a;
  --text-700: #1e293b;
  --text-500: #475569;
  --text-400: #64748b;
  --text-300: #94a3b8;

  /* Borders */
  --border:     #e2e8f0;
  --border-mid: #cbd5e1;

  /* Utility bar */
  --util-bg:   #0c1f3a;
  --util-text: #93c5fd;

  /* Amber — emergency sections only */
  --amber:      #f59e0b;
  --amber-dark: #b45309;
  --amber-pale: #fffbeb;

  /* Spacing (4pt grid) */
  --sp-xs:  4px;
  --sp-sm:  8px;
  --sp-md:  16px;
  --sp-lg:  24px;
  --sp-xl:  40px;
  --sp-2xl: 64px;
  --sp-3xl: 96px;

  /* Typography */
  --font-display: 'Poppins', 'Segoe UI', sans-serif;
  --font-body:    'Inter', 'Segoe UI', sans-serif;

  /* Radii */
  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 12px;
  --r-xl: 24px;

  /* Motion */
  --ease:      200ms ease;
  --ease-slow: 350ms ease;

  /* Shadows */
  --shadow-sm:   0 1px 3px rgba(15,23,42,.06), 0 1px 2px rgba(15,23,42,.04);
  --shadow-md:   0 4px 16px rgba(15,23,42,.08), 0 2px 6px rgba(15,23,42,.04);
  --shadow-lg:   0 12px 32px rgba(15,23,42,.10), 0 4px 8px rgba(15,23,42,.04);
  --shadow-blue: 0 4px 16px rgba(37,99,235,.28);

  /* Header dimensions */
  --util-h:   36px;
  --nav-h:    54px;
  --header-h: 90px;   /* util-h + nav-h */
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  line-height: 1.65;
  color: var(--text-700);
  background: var(--bg-white);
  overflow-x: hidden;
}

a { color: var(--blue-600); text-decoration: none; transition: color var(--ease); }
a:hover { color: var(--blue-700); }

img { max-width: 100%; height: auto; display: block; }
ul  { list-style: none; }

/* ---------- Accessibility ---------- */
.skip-link {
  position: absolute;
  top: -100px;
  left: var(--sp-md);
  background: var(--blue-600);
  color: #fff;
  padding: 8px 16px;
  font-family: var(--font-display);
  font-size: .9rem;
  border-radius: var(--r-sm);
  z-index: 9999;
  transition: top var(--ease);
}
.skip-link:focus { top: var(--sp-md); }

:focus-visible {
  outline: 2px solid var(--blue-500);
  outline-offset: 3px;
  border-radius: var(--r-sm);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--text-900);
  line-height: 1.2;
}
h1 { font-size: clamp(2.1rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.4rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.45rem); }
h4 { font-size: 1rem; }

p { font-size: 1rem; line-height: 1.75; color: var(--text-500); }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--sp-lg);
}

.section     { padding: var(--sp-3xl) 0; }
.section--sm { padding: var(--sp-2xl) 0; }

/* ---------- Section labels ---------- */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-sm);
  font-family: var(--font-display);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue-600);
  margin-bottom: var(--sp-md);
}
.section-label::before {
  content: '';
  display: block;
  width: 18px;
  height: 2px;
  background: var(--blue-600);
  flex-shrink: 0;
}

.section-title { margin-bottom: var(--sp-md); }

.section-desc {
  font-size: 1.05rem;
  color: var(--text-500);
  max-width: 600px;
  line-height: 1.78;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-sm);
  padding: 12px 26px;
  font-family: var(--font-display);
  font-size: .88rem;
  font-weight: 600;
  letter-spacing: .02em;
  border: 2px solid transparent;
  border-radius: var(--r-md);
  cursor: pointer;
  transition: all var(--ease);
  white-space: nowrap;
  line-height: 1;
}

.btn--primary {
  background: var(--blue-600);
  color: #fff;
  border-color: var(--blue-600);
}
.btn--primary:hover {
  background: var(--blue-700);
  border-color: var(--blue-700);
  color: #fff;
  box-shadow: var(--shadow-blue);
  transform: translateY(-1px);
}

.btn--outline {
  background: transparent;
  color: var(--blue-600);
  border-color: var(--blue-600);
}
.btn--outline:hover {
  background: var(--blue-50);
  color: var(--blue-700);
  border-color: var(--blue-700);
}

.btn--white {
  background: #fff;
  color: var(--blue-800);
  border-color: #fff;
  font-weight: 700;
}
.btn--white:hover {
  background: var(--blue-50);
  color: var(--blue-700);
  border-color: var(--blue-100);
}

/* =====================================================
   UTILITY BAR (thin top strip)
===================================================== */
.utility-bar {
  background: var(--util-bg);
  height: var(--util-h);
  display: flex;
  align-items: center;
  position: fixed;
  inset: 0 0 auto;
  z-index: 201;
}

.utility-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: var(--sp-md);
}

.util-item {
  font-size: .76rem;
  color: var(--blue-200);
  white-space: nowrap;
}

.util-phone {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-display);
  font-size: .92rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: .01em;
  transition: color var(--ease);
  white-space: nowrap;
  text-decoration: none;
}
.util-phone:hover { color: var(--blue-200); }
.util-phone svg { flex-shrink: 0; }

.util-hours {
  font-size: .76rem;
  color: var(--blue-200);
  white-space: nowrap;
  text-align: right;
}

/* =====================================================
   SITE HEADER / NAV
===================================================== */
.site-header {
  position: fixed;
  top: var(--util-h);
  inset-inline: 0;
  z-index: 200;
  background: var(--bg-white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--ease-slow);
}
.site-header.scrolled {
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  gap: var(--sp-xl);
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-900);
}
.logo-tagline {
  font-size: .62rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--blue-600);
  margin-top: 2px;
}

/* Nav */
.site-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: center;
}
.nav-link {
  padding: 7px 14px;
  font-family: var(--font-display);
  font-size: .85rem;
  font-weight: 500;
  color: var(--text-500);
  border-radius: var(--r-md);
  transition: all var(--ease);
  text-decoration: none;
}
.nav-link:hover  { color: var(--blue-600); background: var(--blue-50); }
.nav-link.active { color: var(--blue-700); background: var(--blue-50); font-weight: 600; }

.nav-cta { flex-shrink: 0; padding: 9px 20px; font-size: .84rem; }

/* Hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: 1px solid var(--border-mid);
  border-radius: var(--r-md);
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text-500);
  transition: all var(--ease);
}
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-h);
  inset-inline: 0;
  bottom: 0;
  background: var(--bg-white);
  z-index: 199;
  flex-direction: column;
  padding: var(--sp-lg) var(--sp-lg) var(--sp-xl);
  overflow-y: auto;
  border-top: 1px solid var(--border);
}
.mobile-nav.open { display: flex; }
.mobile-nav .nav-link {
  font-size: 1.1rem;
  padding: var(--sp-md) var(--sp-sm);
  border-bottom: 1px solid var(--border);
  border-radius: 0;
  background: none;
}
.mobile-nav .nav-cta {
  margin-top: var(--sp-xl);
  justify-content: center;
  font-size: 1rem;
  padding: 14px 20px;
}

/* =====================================================
   PAGE HERO (sub-pages)
===================================================== */
.page-hero {
  padding: calc(var(--header-h) + 52px) 0 52px;
  background: var(--blue-50);
  border-bottom: 1px solid var(--blue-100);
}
.page-hero h1 { color: var(--text-900); }
.page-hero p  { color: var(--text-500); margin-top: var(--sp-md); max-width: 600px; }

/* =====================================================
   HOME HERO
===================================================== */
.hero {
  padding: calc(var(--header-h) + 72px) 0 80px;
  background: var(--bg-white);
  position: relative;
  overflow: hidden;
}

/* Decorative light-blue panel on the right */
.hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 52%;
  height: 100%;
  background: linear-gradient(135deg, var(--blue-50) 0%, #dbeafe55 100%);
  clip-path: polygon(12% 0%, 100% 0%, 100% 100%, 0% 100%);
  pointer-events: none;
}

.hero-inner { position: relative; z-index: 1; max-width: 660px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-sm);
  padding: 5px 14px;
  background: var(--blue-50);
  border: 1px solid var(--blue-200);
  border-radius: var(--r-xl);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--blue-700);
  margin-bottom: var(--sp-lg);
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--blue-500);
  border-radius: 50%;
  animation: blink 2.2s infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .45; transform: scale(.75); }
}

.hero h1 {
  font-size: clamp(2.3rem, 5.5vw, 3.8rem);
  font-weight: 700;
  color: var(--text-900);
  line-height: 1.1;
  margin-bottom: var(--sp-lg);
}
.hero h1 .accent { color: var(--blue-600); }

.hero-desc {
  font-size: 1.08rem;
  color: var(--text-500);
  max-width: 500px;
  margin-bottom: var(--sp-xl);
  line-height: 1.78;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: var(--sp-md);
  flex-wrap: wrap;
  margin-bottom: var(--sp-2xl);
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: var(--sp-xl);
  padding-top: var(--sp-xl);
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.hero-stat { display: flex; flex-direction: column; }
.hero-stat-value {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--blue-600);
  line-height: 1;
}
.hero-stat-label {
  font-size: .71rem;
  color: var(--text-400);
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-top: 4px;
}

/* =====================================================
   SERVICES OVERVIEW (home)
===================================================== */
.services-overview { background: var(--bg-light); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-md);
  margin-top: var(--sp-2xl);
}

.service-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp-xl) var(--sp-lg);
  position: relative;
  overflow: hidden;
  transition: all var(--ease-slow);
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: var(--blue-600);
  border-radius: var(--r-lg) var(--r-lg) 0 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--ease-slow);
}
.service-card:hover {
  border-color: var(--blue-200);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 44px; height: 44px;
  color: var(--blue-600);
  background: var(--blue-50);
  border-radius: var(--r-md);
  padding: 8px;
  margin-bottom: var(--sp-md);
}
.service-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-900);
  margin-bottom: var(--sp-sm);
}
.service-card p { font-size: .9rem; color: var(--text-500); line-height: 1.65; }

/* =====================================================
   TRUST BAR
===================================================== */
.trust-bar {
  background: var(--bg-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: var(--sp-xl) 0;
}
.trust-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2xl);
  flex-wrap: wrap;
}
.trust-item { display: flex; align-items: center; gap: var(--sp-md); }
.trust-item svg { color: var(--blue-600); flex-shrink: 0; }
.trust-item-value {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-900);
  line-height: 1;
  display: block;
}
.trust-item-label {
  font-size: .7rem;
  color: var(--text-400);
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-top: 2px;
  display: block;
}

/* =====================================================
   CTA BANNER
===================================================== */
.cta-banner {
  background: var(--blue-800);
  padding: var(--sp-2xl) 0;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-xl);
  flex-wrap: wrap;
}
.cta-inner h2 { font-size: clamp(1.4rem, 3vw, 2rem); color: #fff; margin-bottom: var(--sp-sm); }
.cta-inner p  { color: rgba(255,255,255,.75); }

/* =====================================================
   FOOTER
===================================================== */
.site-footer {
  background: var(--blue-900);
  padding: var(--sp-3xl) 0 var(--sp-xl);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.6fr;
  gap: var(--sp-2xl);
  margin-bottom: var(--sp-2xl);
}
.footer-desc {
  font-size: .88rem;
  color: rgba(255,255,255,.5);
  margin-top: var(--sp-md);
  line-height: 1.72;
  max-width: 270px;
}
.footer-heading {
  font-family: var(--font-display);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue-200);
  margin-bottom: var(--sp-md);
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-link  { font-size: .88rem; color: rgba(255,255,255,.5); }
.footer-link:hover { color: rgba(255,255,255,.85); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-sm);
  font-size: .88rem;
  color: rgba(255,255,255,.5);
  margin-bottom: var(--sp-md);
}
.footer-contact-item:last-child { margin-bottom: 0; }
.footer-contact-item svg { color: var(--blue-200); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a { color: rgba(255,255,255,.5); }
.footer-contact-item a:hover { color: rgba(255,255,255,.85); }

.site-footer .logo-name    { color: #fff; }
.site-footer .logo-tagline { color: var(--blue-200); }

.footer-bottom {
  padding-top: var(--sp-xl);
  border-top: 1px solid rgba(255,255,255,.10);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-md);
  flex-wrap: wrap;
}
.footer-copy { font-size: .78rem; color: rgba(255,255,255,.38); }
.footer-legal { display: flex; gap: var(--sp-lg); }
.footer-legal a { font-size: .78rem; color: rgba(255,255,255,.38); }
.footer-legal a:hover { color: rgba(255,255,255,.65); }

/* =====================================================
   ABOUT PAGE
===================================================== */
.about-story-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-3xl);
  align-items: center;
}

.about-graphic {
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  border-radius: var(--r-xl);
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--sp-2xl);
}
.about-year {
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 7.5rem);
  font-weight: 700;
  color: var(--blue-600);
  line-height: 1;
}
.about-year-label {
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--text-400);
  margin-top: var(--sp-sm);
}
.about-content h2 { margin-bottom: var(--sp-lg); }
.about-content p  { margin-bottom: var(--sp-md); font-size: 1.02rem; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-md);
  margin-top: var(--sp-2xl);
}
.value-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp-xl) var(--sp-lg);
  text-align: center;
}
.value-icon {
  width: 44px; height: 44px;
  color: var(--blue-600);
  background: var(--blue-50);
  border-radius: var(--r-md);
  padding: 8px;
  margin: 0 auto var(--sp-md);
  display: block;
}
.value-card h4 {
  font-family: var(--font-display);
  font-size: .92rem;
  font-weight: 600;
  color: var(--text-900);
  margin-bottom: var(--sp-sm);
}
.value-card p { font-size: .88rem; color: var(--text-500); }

/* Credentials strip */
.credentials-strip {
  background: var(--blue-50);
  border-top: 1px solid var(--blue-100);
  border-bottom: 1px solid var(--blue-100);
  padding: var(--sp-xl) 0;
}
.cred-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2xl);
  flex-wrap: wrap;
}
.cred-item {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
  font-family: var(--font-display);
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--text-500);
}
.cred-item svg { color: var(--blue-600); }

/* =====================================================
   SERVICES PAGE
===================================================== */
.services-full-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-lg);
  margin-top: var(--sp-2xl);
}

.svc-detail-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp-xl);
  transition: all var(--ease-slow);
}
.svc-detail-card:hover {
  border-color: var(--blue-200);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.svc-card-header {
  display: flex;
  align-items: center;
  gap: var(--sp-md);
  margin-bottom: var(--sp-md);
}
.svc-icon-wrap {
  width: 44px; height: 44px;
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--blue-600);
}
.svc-detail-card h3 { font-size: 1.02rem; font-weight: 600; color: var(--text-900); }
.svc-detail-card > p { font-size: .92rem; margin-bottom: var(--sp-md); color: var(--text-500); }

.svc-features { display: flex; flex-direction: column; gap: 7px; }
.svc-feature {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
  font-size: .85rem;
  color: var(--text-500);
}
.svc-feature::before {
  content: '';
  display: block;
  width: 7px; height: 7px;
  background: var(--blue-500);
  border-radius: 50%;
  flex-shrink: 0;
}

/* Emergency callout */
.emergency-section { background: var(--bg-light); }
.emergency-card {
  display: flex;
  align-items: center;
  gap: var(--sp-xl);
  padding: var(--sp-xl) var(--sp-2xl);
  background: var(--amber-pale);
  border: 1px solid rgba(245,158,11,.3);
  border-radius: var(--r-lg);
  flex-wrap: wrap;
}
.emergency-card svg { color: var(--amber); flex-shrink: 0; }
.emergency-text { flex: 1; }
.emergency-text h3 { margin-bottom: var(--sp-sm); color: var(--text-900); }
.emergency-text p  { margin: 0; }

/* =====================================================
   CONTACT PAGE
===================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: var(--sp-2xl);
  margin-top: var(--sp-2xl);
}

.form-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--sp-2xl);
  box-shadow: var(--shadow-sm);
}
.form-card > h3 { margin-bottom: var(--sp-sm); color: var(--text-900); }
.form-card > p  { font-size: .93rem; color: var(--text-400); margin-bottom: var(--sp-xl); }

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-md);
}
.form-group { margin-bottom: var(--sp-lg); }

.form-label {
  display: block;
  font-family: var(--font-display);
  font-size: .73rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-500);
  margin-bottom: 7px;
}
.form-label .req { color: var(--blue-600); margin-left: 2px; }

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 11px 14px;
  background: var(--bg-white);
  border: 1px solid var(--border-mid);
  border-radius: var(--r-md);
  color: var(--text-700);
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
  appearance: none;
  transition: border-color var(--ease), box-shadow var(--ease);
  min-height: 44px;
}
.form-input::placeholder,
.form-textarea::placeholder { color: var(--text-300); }
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--blue-500);
  box-shadow: 0 0 0 3px rgba(59,130,246,.15);
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3E%3Cpath stroke='%2364748b' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 20px;
  padding-right: 44px;
  cursor: pointer;
}

.form-textarea { min-height: 140px; resize: vertical; }

.form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-md);
  flex-wrap: wrap;
  padding-top: var(--sp-sm);
}
.form-note { font-size: .78rem; color: var(--text-300); flex: 1; }

/* Success state */
.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--sp-2xl) 0;
  gap: var(--sp-md);
}
.form-success.visible { display: flex; }
.success-icon {
  width: 60px; height: 60px;
  background: #ecfdf5;
  border: 2px solid #10b981;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #10b981;
}
.form-success h3 { margin-bottom: var(--sp-xs); color: var(--text-900); }
.form-success p  { color: var(--text-400); max-width: 340px; }

/* Contact info panel */
.contact-info-panel { display: flex; flex-direction: column; gap: var(--sp-md); }

.info-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp-lg);
  box-shadow: var(--shadow-sm);
}
.info-card-title {
  font-family: var(--font-display);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue-600);
  margin-bottom: var(--sp-md);
}

.info-row {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-md);
  margin-bottom: var(--sp-md);
}
.info-row:last-child { margin-bottom: 0; }
.info-icon {
  width: 34px; height: 34px;
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--blue-600);
}
.info-label { font-size: .72rem; color: var(--text-300); margin-bottom: 2px; display: block; }
.info-value { font-size: .92rem; color: var(--text-700); }
.info-value a { color: var(--text-700); }
.info-value a:hover { color: var(--blue-600); }

.hours-table { width: 100%; }
.hours-row { display: flex; justify-content: space-between; padding: 5px 0; font-size: .87rem; }
.hours-row .day   { color: var(--text-400); }
.hours-row .time  { color: var(--text-700); }
.hours-row.emerg .time { color: var(--amber); font-weight: 600; }

.emerg-badge {
  display: flex;
  align-items: center;
  gap: var(--sp-md);
  padding: var(--sp-md);
  background: var(--amber-pale);
  border: 1px solid rgba(245,158,11,.3);
  border-radius: var(--r-md);
}
.emerg-badge svg { flex-shrink: 0; color: var(--amber); }
.emerg-title  { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--text-900); display: block; }
.emerg-sub    { font-size: .78rem; color: var(--text-400); }

/* =====================================================
   RESPONSIVE
===================================================== */
@media (max-width: 1024px) {
  .footer-grid    { grid-template-columns: 1fr 1fr; gap: var(--sp-xl); }
  .values-grid    { grid-template-columns: repeat(2, 1fr); }
  .services-grid  { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .utility-inner      { justify-content: center; }
  .util-item,
  .util-hours         { display: none; }

  .site-nav,
  .nav-cta            { display: none; }
  .menu-toggle        { display: flex; }

  .services-grid      { grid-template-columns: 1fr; }
  .services-full-grid { grid-template-columns: 1fr; }
  .contact-grid       { grid-template-columns: 1fr; }
  .about-story-wrap   { grid-template-columns: 1fr; }
  .values-grid        { grid-template-columns: 1fr 1fr; }
  .form-row-2         { grid-template-columns: 1fr; }
  .footer-grid        { grid-template-columns: 1fr; gap: var(--sp-xl); }
  .trust-items        { gap: var(--sp-lg); justify-content: flex-start; }
  .cred-items         { gap: var(--sp-lg); justify-content: flex-start; }

  .cta-inner          { flex-direction: column; text-align: center; }
  .form-actions       { flex-direction: column; align-items: stretch; }
  .footer-bottom      { flex-direction: column; align-items: flex-start; gap: var(--sp-sm); }
  .emergency-card     { flex-direction: column; text-align: center; }
}

/* =====================================================
   UTILITY
===================================================== */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* =====================================================
   SCROLL ANIMATION
===================================================== */
.fade-up {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .4s ease, transform .4s ease;
}
.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 480px) {
  .container      { padding: 0 var(--sp-md); }
  .values-grid    { grid-template-columns: 1fr; }
  .hero h1        { font-size: 2.1rem; }
  .hero-actions   { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}
