/* P.C. Godfrey, Inc. — Heritage Industrial Green */
/* Fonts: Spectral (headings) + Karla (body) */
@import url('https://fonts.googleapis.com/css2?family=Spectral:ital,wght@0,400;0,600;0,700;0,800;1,400;1,600&family=Karla:wght@300;400;500;600;700&display=swap');

/* ─── Custom Properties ─────────────────────────────── */
:root {
  --primary:       #67C83D;
  --primary-dark:  #4BAD22;
  --primary-light: #8EDF62;
  --dark:          #1C2419;
  --charcoal:      #5F6360;
  --mid:           #3A403A;
  --light:         #F4FAF0;
  --lighter:       #EDF7E7;
  --white:         #FFFFFF;
  --text:          #222822;
  --text-muted:    #5A605A;
  --border:        #D4EAC8;
  --shadow:        0 4px 24px rgba(30,40,30,.10);
  --shadow-lg:     0 8px 40px rgba(30,40,30,.16);
  --radius:        6px;
  --radius-lg:     12px;
  --font-head:     'Spectral', Georgia, serif;
  --font-body:     'Karla', sans-serif;
  --transition:    .25s ease;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary-dark); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary); }

ul, ol { list-style: none; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  line-height: 1.15;
  color: var(--dark);
}

/* ─── Skip Link ─────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--primary);
  color: white;
  padding: .5rem 1rem;
  border-radius: 0 0 var(--radius) var(--radius);
  font-weight: 700;
  z-index: 9999;
  transition: top .2s;
}
.skip-link:focus { top: 0; }

/* ─── Emergency Bar ─────────────────────────────────── */
.emergency-bar {
  background: var(--primary);
  color: var(--white);
  text-align: center;
  padding: .5rem 1rem;
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .03em;
}
.emergency-bar a {
  color: var(--white);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.emergency-bar a:hover { opacity: .85; }

/* ─── Header ────────────────────────────────────────── */
.site-header {
  background: var(--dark);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,.3);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: .75rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.logo-link {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-shrink: 0;
  text-decoration: none;
}
.logo-img {
  height: 56px;
  width: auto;
}
.logo-text {
  display: flex;
  flex-direction: column;
}
.logo-text .brand { font-family: var(--font-head); font-weight: 700; font-size: 1.05rem; color: var(--white); line-height: 1.1; }
.logo-text .sub { font-size: .7rem; color: var(--primary-light); letter-spacing: .08em; text-transform: uppercase; }

.site-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 1.75rem;
}
.site-nav a {
  color: rgba(255,255,255,.82);
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .02em;
  transition: color var(--transition);
  white-space: nowrap;
}
.site-nav a:hover,
.site-nav a.active { color: var(--primary); }

.header-phone {
  background: var(--primary);
  color: var(--white) !important;
  padding: .5rem 1.1rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: .88rem;
  white-space: nowrap;
  transition: background var(--transition);
}
.header-phone:hover { background: var(--primary-dark) !important; color: var(--white) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all .3s;
}

/* ─── Hero ──────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .35;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(28,36,25,.95) 45%, rgba(28,36,25,.55) 100%);
}
/* Diagonal stripe texture */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 20px,
    rgba(103,200,61,.04) 20px,
    rgba(103,200,61,.04) 40px
  );
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 1.5rem;
  max-width: 680px;
  margin-left: 5%;
}
.hero-badge {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .3rem .9rem;
  border-radius: 100px;
  margin-bottom: 1.25rem;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--white);
  font-weight: 800;
  margin-bottom: 1.25rem;
  line-height: 1.1;
}
.hero h1 em {
  color: var(--primary);
  font-style: normal;
}
.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.82);
  margin-bottom: 2rem;
  max-width: 520px;
  line-height: 1.7;
}
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .8rem 1.75rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform .15s;
  text-decoration: none;
}
.btn:hover { transform: translateY(-1px); }
.btn:focus-visible { outline: 3px solid var(--primary); outline-offset: 3px; }

.btn-primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); color: var(--white); }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.6);
}
.btn-outline-white:hover { background: rgba(255,255,255,.1); color: var(--white); border-color: var(--white); }

.btn-outline-primary {
  background: transparent;
  color: var(--primary-dark);
  border-color: var(--primary);
}
.btn-outline-primary:hover { background: var(--primary); color: var(--white); }

.btn-dark {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}
.btn-dark:hover { background: var(--mid); border-color: var(--mid); color: var(--white); }

/* ─── Stats Strip ───────────────────────────────────── */
.stats-strip {
  background: var(--white);
  border-bottom: 3px solid var(--border);
  box-shadow: 0 4px 16px rgba(103,200,61,.08);
}
.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.stat-item {
  text-align: center;
  padding: 1.25rem 1rem;
}
.stat-num {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary);
  display: block;
  line-height: 1;
  margin-bottom: .4rem;
}
.stat-label {
  font-size: .78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--charcoal);
}

/* ─── Section Basics ────────────────────────────────── */
section { padding: 5rem 1.5rem; }

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.section-tag {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: .6rem;
  display: block;
}
.section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1rem;
}
.section-title em { color: var(--primary); font-style: normal; }
.section-desc {
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.75;
}
.section-head { margin-bottom: 3rem; }
.section-head--center { text-align: center; }
.section-head--center .section-desc { margin: 0 auto; }

/* Divider */
.divider {
  width: 48px;
  height: 4px;
  background: var(--primary);
  border-radius: 2px;
  margin-bottom: 1.5rem;
}
.divider--center { margin: 0 auto 1.5rem; }

/* ─── Service Cards (index) ─────────────────────────── */
.services-bg {
  background: var(--light);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}
.service-icon {
  width: 52px;
  height: 52px;
  background: var(--lighter);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.6rem;
}
.service-card h3 {
  font-size: 1.15rem;
  margin-bottom: .6rem;
  color: var(--dark);
}
.service-card p {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.65;
}
.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  margin-top: 1rem;
  font-size: .85rem;
  font-weight: 600;
  color: var(--primary-dark);
}
.service-card-link:hover { gap: .6rem; color: var(--primary); }

/* ─── Legacy / Notable Projects ─────────────────────── */
.legacy-bg {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.legacy-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 30px,
    rgba(103,200,61,.04) 30px,
    rgba(103,200,61,.04) 60px
  );
}
.legacy-inner {
  position: relative;
  z-index: 1;
}
.legacy-bg .section-tag { color: var(--primary-light); }
.legacy-bg .section-title { color: var(--white); }
.legacy-bg .section-desc { color: rgba(255,255,255,.72); }

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.project-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(103,200,61,.25);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
  transition: background var(--transition), border-color var(--transition);
}
.project-card:hover {
  background: rgba(103,200,61,.12);
  border-color: var(--primary);
}
.project-icon { font-size: 2rem; margin-bottom: .75rem; }
.project-name {
  font-family: var(--font-head);
  font-size: .95rem;
  color: var(--white);
  font-weight: 600;
  line-height: 1.3;
}

/* ─── About Teaser ──────────────────────────────────── */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-split-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  object-fit: cover;
  width: 100%;
}
.about-text-block .divider { margin-bottom: 1.5rem; }
.about-text-block p {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  line-height: 1.75;
}
.about-text-block p strong { color: var(--dark); }
.about-creds {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin: 1.5rem 0 2rem;
}
.cred-badge {
  background: var(--lighter);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: .35rem .9rem;
  font-size: .8rem;
  font-weight: 600;
  color: var(--mid);
}

/* ─── PM Contracts ──────────────────────────────────── */
.pm-bg {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}
.pm-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.pm-text .section-tag { color: rgba(255,255,255,.8); }
.pm-text .section-title,
.pm-text .section-desc { color: var(--white); }
.pm-text .section-desc { opacity: .9; }
.pm-text .divider { background: rgba(255,255,255,.5); }

.pm-features {
  background: rgba(255,255,255,.15);
  border-radius: var(--radius-lg);
  padding: 2rem;
  backdrop-filter: blur(4px);
}
.pm-features h3 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 1rem;
  letter-spacing: .04em;
}
.pm-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .6rem;
}
.pm-list li {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .85rem;
  color: rgba(255,255,255,.9);
}
.pm-list li::before {
  content: '✓';
  color: var(--white);
  font-weight: 700;
  flex-shrink: 0;
}

/* ─── Testimonial ───────────────────────────────────── */
.testimonial-bg { background: var(--lighter); }
.testimonial-box {
  max-width: 740px;
  margin: 0 auto;
  text-align: center;
}
.quote-mark {
  font-family: var(--font-head);
  font-size: 5rem;
  color: var(--primary);
  line-height: .8;
  margin-bottom: .5rem;
}
blockquote {
  font-family: var(--font-head);
  font-size: 1.2rem;
  line-height: 1.7;
  color: var(--dark);
  font-style: italic;
  margin-bottom: 1.5rem;
}
.cite-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
}
.cite-name {
  font-weight: 700;
  color: var(--text);
  font-size: .95rem;
}
.stars { color: #F5C800; letter-spacing: .05em; }

/* ─── CTA Banner ────────────────────────────────────── */
.cta-banner-bg {
  background: var(--mid);
}
.cta-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-banner-text h2 {
  color: var(--white);
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin-bottom: .4rem;
}
.cta-banner-text p { color: rgba(255,255,255,.75); }
.cta-phones {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  align-items: flex-end;
}
.cta-phones a {
  color: var(--white);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: .02em;
}
.cta-phones a:hover { color: var(--primary-light); }
.phone-label {
  font-size: .7rem;
  color: rgba(255,255,255,.55);
  text-transform: uppercase;
  letter-spacing: .1em;
  display: block;
  text-align: right;
}

/* ─── Footer ────────────────────────────────────────── */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,.75);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 1.5rem 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand .logo-img { height: 44px; margin-bottom: 1rem; filter: brightness(1.2); }
.footer-brand p { font-size: .88rem; line-height: 1.7; margin-bottom: 1rem; }
.footer-col h4 {
  color: var(--white);
  font-family: var(--font-head);
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .05em;
  margin-bottom: 1rem;
  padding-bottom: .5rem;
  border-bottom: 1px solid rgba(103,200,61,.3);
}
.footer-col ul li { margin-bottom: .5rem; }
.footer-col ul li a {
  font-size: .85rem;
  color: rgba(255,255,255,.65);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--primary-light); }
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  font-size: .85rem;
  margin-bottom: .65rem;
}
.footer-contact li span:first-child { color: var(--primary); flex-shrink: 0; margin-top: .1rem; }
.footer-contact a { color: rgba(255,255,255,.65); }
.footer-contact a:hover { color: var(--primary-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: .8rem;
  color: rgba(255,255,255,.45);
}
.footer-licenses { display: flex; flex-wrap: wrap; gap: .75rem; }
.lic-badge {
  background: rgba(255,255,255,.07);
  border-radius: var(--radius);
  padding: .2rem .65rem;
  font-size: .75rem;
  color: rgba(255,255,255,.55);
}

/* ─── Page Hero ─────────────────────────────────────── */
.page-hero {
  background: var(--dark);
  padding: 4rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 20px,
    rgba(103,200,61,.05) 20px,
    rgba(103,200,61,.05) 40px
  );
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); font-size: clamp(1.8rem, 4vw, 3rem); margin-bottom: .75rem; }
.page-hero p { color: rgba(255,255,255,.75); max-width: 560px; margin: 0 auto; }
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-size: .82rem;
  margin-bottom: 1rem;
}
.breadcrumb a { color: var(--primary-light); }
.breadcrumb span { color: rgba(255,255,255,.4); }

/* ─── About Page ────────────────────────────────────── */
.history-block {
  max-width: 820px;
  margin: 0 auto;
}
.history-block p {
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 1.25rem;
  font-size: 1.02rem;
}
.history-block p:first-child::first-letter {
  font-family: var(--font-head);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--primary);
  float: left;
  line-height: .8;
  margin-right: .15em;
  margin-top: .12em;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}
.team-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow);
}
.team-avatar {
  width: 72px;
  height: 72px;
  background: var(--lighter);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1rem;
  border: 3px solid var(--border);
}
.team-card h3 { font-size: 1.05rem; margin-bottom: .25rem; }
.team-card .title { font-size: .82rem; color: var(--primary-dark); font-weight: 600; letter-spacing: .04em; text-transform: uppercase; }

.creds-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.25rem;
}
.cred-card {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
}
.cred-card .icon { font-size: 2rem; margin-bottom: .75rem; }
.cred-card h4 { font-size: 1.1rem; color: var(--primary-dark); font-weight: 700; margin-bottom: .25rem; }
.cred-card p { font-size: .82rem; color: var(--text-muted); }

/* ─── Services Page ─────────────────────────────────── */
.services-category {
  margin-bottom: 3.5rem;
}
.cat-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--dark);
  color: var(--white);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  padding: 1.25rem 1.75rem;
}
.cat-icon { font-size: 1.5rem; }
.cat-header h2 { font-size: 1.2rem; color: var(--white); font-weight: 700; }
.cat-body {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: none;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  padding: 1.75rem;
}
.services-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: .75rem;
}
.svc-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .65rem .9rem;
  background: var(--light);
  border-radius: var(--radius);
  font-size: .9rem;
  font-weight: 500;
  color: var(--text);
  transition: background var(--transition), color var(--transition);
}
.svc-item:hover { background: var(--primary); color: var(--white); }
.svc-item::before {
  content: '›';
  color: var(--primary);
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: color var(--transition);
}
.svc-item:hover::before { color: var(--white); }

/* ─── PM Section (services page) ───────────────────── */
.pm-detail-box {
  background: var(--lighter);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-top: 2rem;
}
.pm-detail-box h3 { font-size: 1.1rem; margin-bottom: 1rem; color: var(--dark); }
.pm-detail-box p { color: var(--text-muted); font-size: .92rem; line-height: 1.75; margin-bottom: 1rem; }
.pm-includes { font-weight: 600; color: var(--dark); margin-bottom: .5rem; font-size: .9rem; }
.pm-tags { display: flex; flex-wrap: wrap; gap: .5rem; }
.pm-tag {
  background: var(--primary);
  color: var(--white);
  border-radius: 100px;
  padding: .25rem .8rem;
  font-size: .78rem;
  font-weight: 600;
}

/* ─── Contact Page ──────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
.contact-form-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}
.contact-form-box h2 { font-size: 1.5rem; margin-bottom: .4rem; }
.contact-form-box p { color: var(--text-muted); font-size: .9rem; margin-bottom: 2rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  margin-bottom: .4rem;
  color: var(--text);
}
.form-group label span { color: var(--primary-dark); }
.form-control {
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid #D1DCC8;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .92rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(103,200,61,.15);
}
textarea.form-control { resize: vertical; min-height: 130px; }
select.form-control { cursor: pointer; }

.form-success {
  display: none;
  background: var(--lighter);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  text-align: center;
  color: var(--primary-dark);
  font-weight: 600;
}

.contact-info-box h2 { font-size: 1.4rem; margin-bottom: 1.5rem; }
.contact-info-items { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.ci-icon {
  width: 44px;
  height: 44px;
  background: var(--lighter);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  border: 1px solid var(--border);
}
.ci-label { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--charcoal); margin-bottom: .2rem; }
.ci-value { font-size: .95rem; color: var(--text); line-height: 1.55; }
.ci-value a { color: var(--primary-dark); font-weight: 600; }
.ci-value a:hover { color: var(--primary); }

.hours-table { width: 100%; border-collapse: collapse; font-size: .88rem; }
.hours-table td { padding: .35rem 0; color: var(--text-muted); }
.hours-table td:first-child { font-weight: 600; color: var(--text); padding-right: 1rem; white-space: nowrap; }
.hours-emerg { margin-top: .75rem; display: inline-block; background: var(--primary); color: var(--white); border-radius: 100px; padding: .3rem .9rem; font-size: .78rem; font-weight: 700; }

/* ─── Map ───────────────────────────────────────────── */
.map-section { background: var(--light); }
#service-map { height: 380px; border-radius: var(--radius-lg); border: 2px solid var(--border); }

/* ─── FAQ ───────────────────────────────────────────── */
.faq-bg { background: var(--light); }
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  margin-bottom: .75rem;
  overflow: hidden;
}
.faq-item[open] { border-color: var(--primary); }
.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--white);
  color: var(--dark);
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { display: none; content: ''; }
.faq-item[open] summary { background: var(--lighter); color: var(--primary-dark); }
.faq-chevron { transition: transform .3s; flex-shrink: 0; margin-left: 1rem; }
.faq-item[open] .faq-chevron { transform: rotate(180deg); }
.faq-body {
  padding: 1rem 1.5rem 1.5rem;
  background: var(--white);
  font-size: .92rem;
  color: var(--text-muted);
  line-height: 1.75;
  border-top: 1px solid var(--border);
}

/* ─── Floating CTA ──────────────────────────────────── */
.floating-cta {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 50;
  background: var(--primary);
  color: white;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(103,200,61,.4);
  text-decoration: none;
  transition: transform .2s, box-shadow .2s, background .2s;
}
.floating-cta:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(103,200,61,.5);
  background: var(--primary-dark);
  color: white;
}
@media (min-width: 768px) {
  .floating-cta { bottom: 2rem; right: 2rem; width: 64px; height: 64px; }
}

/* ─── Scroll Reveal ─────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal:nth-child(2) { transition-delay: .1s; }
.reveal:nth-child(3) { transition-delay: .2s; }
.reveal:nth-child(4) { transition-delay: .3s; }
.reveal:nth-child(5) { transition-delay: .4s; }
.reveal:nth-child(6) { transition-delay: .5s; }

/* ─── Responsive ────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .pm-inner { grid-template-columns: 1fr; gap: 2rem; }
  .about-split { grid-template-columns: 1fr; gap: 2rem; }
  .about-split-img { max-height: 360px; }
}

@media (max-width: 768px) {
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .nav-toggle { display: flex; }
  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--dark);
    flex-direction: column;
    padding: 1.5rem;
    gap: 1rem;
    border-top: 1px solid rgba(255,255,255,.1);
  }
  .site-nav.open { display: flex; }
  .header-inner { flex-wrap: wrap; }
  .cta-banner { flex-direction: column; text-align: center; }
  .cta-phones { align-items: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .pm-list { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .stats-inner { grid-template-columns: 1fr 1fr; gap: .5rem; }
  .stat-num { font-size: 2.25rem; }
  section { padding: 3.5rem 1rem; }
  .hero-content { margin-left: 0; padding: 3.5rem 1rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
