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

:root {
  --green: #1a3c6e;
  --green-mid: #2563eb;
  --green-light: #eff6ff;
  --green-border: #bfdbfe;
  --orange: #e05c00;
  --orange-hover: #c44f00;
  --text: #1a1a1a;
  --muted: #5a6472;
  --border: #e2e8ea;
  --white: #ffffff;
  --radius: 10px;
  --shadow: 0 2px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  background: #fff;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── HEADER ── */
header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 6px rgba(0,0,0,0.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 16px;
}
.logo {
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--green);
  text-decoration: none;
  letter-spacing: -0.5px;
  white-space: nowrap;
}
.logo span { color: var(--orange); }
.header-nav { display: flex; align-items: center; gap: 28px; }
.header-nav a {
  color: var(--text);
  text-decoration: none;
  font-size: 1.08rem;
  font-weight: 500;
}
.header-nav a:hover { color: var(--green); }
.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: #fff !important;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none !important;
  transition: background 0.15s;
  white-space: nowrap;
}
.header-phone:hover { background: var(--orange-hover) !important; }
.header-phone svg { flex-shrink: 0; }

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--green);
  color: #fff;
  padding: 12px 0;
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 600;
}
.trust-item svg { opacity: 0.9; }

/* ── HERO ── */
.hero {
  background: #0f2548;
  color: #fff;
  padding: 72px 0 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero-slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  animation: heroFade 35s infinite;
}
.hero-slide:nth-child(1) { animation-delay: 0s; }
.hero-slide:nth-child(2) { animation-delay: 7s; }
.hero-slide:nth-child(3) { animation-delay: 14s; }
.hero-slide:nth-child(4) { animation-delay: 21s; }
.hero-slide:nth-child(5) { animation-delay: 28s; }
@keyframes heroFade {
  0%   { opacity: 0; }
  3%   { opacity: 1; }
  20%  { opacity: 1; }
  23%  { opacity: 0; }
  100% { opacity: 0; }
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}
.hero-content { position: relative; z-index: 2; }
.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.hero h1 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.82);
  max-width: 560px;
  margin: 0 auto 32px;
}
.hero-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: #fff;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.15s, transform 0.1s;
}
.btn-primary:hover { background: var(--orange-hover); transform: translateY(-1px); }
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.15s;
}
.btn-ghost:hover { background: rgba(255,255,255,0.2); }

/* ── PAGE HERO ── */
.page-hero {
  background: linear-gradient(135deg, var(--green) 0%, #0f2548 100%);
  color: #fff;
  padding: 48px 0 40px;
  text-align: center;
}
.page-hero h1 { font-size: 2.2rem; font-weight: 800; margin-bottom: 8px; }
.page-hero p { color: rgba(255,255,255,0.8); font-size: 1.05rem; }

/* ── BREADCRUMB ── */
.breadcrumb {
  background: #f7f9f7;
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
  font-size: 0.85rem;
  color: var(--muted);
}
.breadcrumb a { color: var(--green); text-decoration: none; font-weight: 500; }
.breadcrumb a:hover { text-decoration: underline; }

/* ── CTA SECTION ── */
.cta-section { padding: 56px 0 48px; background: var(--green-light); }
.cta-box {
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  padding: 48px 40px;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  border: 1px solid var(--green-border);
}
.cta-box h2 { font-size: 1.7rem; font-weight: 800; color: var(--green); margin-bottom: 6px; }
.company-name {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 6px;
}
.cta-sub { color: var(--muted); margin-bottom: 28px; }
.phone-wrap { margin: 8px 0 16px; }
.phone-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--orange);
  color: #fff;
  font-size: 1.9rem;
  font-weight: 800;
  padding: 16px 40px;
  border-radius: 12px;
  text-decoration: none;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 16px rgba(224,92,0,0.35);
  transition: background 0.15s, transform 0.1s;
}
.phone-cta:hover { background: var(--orange-hover); transform: translateY(-2px); }
.cta-note { color: var(--muted); font-size: 0.88rem; margin-top: 12px; }
.cta-badges {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.cta-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--muted);
}
.cta-badge svg { color: var(--green); }

/* ── SERVICE CARDS ── */
.services-section { padding: 64px 0; }
.services-section h2 {
  text-align: center;
  font-size: 2rem;
  font-weight: 800;
  color: var(--green);
  margin-bottom: 8px;
}
.services-section .section-sub {
  text-align: center;
  color: var(--muted);
  margin-bottom: 40px;
}
.section-photo-banner {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  padding: 72px 32px;
  margin-bottom: 40px;
  text-align: center;
}
.section-photo-banner .banner-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
.section-photo-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}
.section-photo-banner h2,
.section-photo-banner .section-sub {
  position: relative;
  z-index: 2;
  color: #fff;
  margin-bottom: 0;
}
.section-photo-banner h2 { margin-bottom: 12px; }
.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  transition: box-shadow 0.2s, transform 0.2s;
}
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.service-card.featured { border-color: var(--green); border-top: 4px solid var(--green); }
.service-card--photo {
  position: relative;
  overflow: hidden;
  color: #fff;
}
.service-card--photo .card-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
.service-card--photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}
.service-card--photo > *:not(.card-bg-img) { position: relative; z-index: 2; }
.service-card.service-card--photo h3 { color: #fff; }
.service-card.service-card--photo > p { color: #fff; }
.service-card.service-card--photo .card-list li { color: #fff; }
.service-card.service-card--photo .card-list li::before { color: #fff; }
.service-card.service-card--photo .card-phone { color: #fff; }
.card-badge {
  display: inline-block;
  background: var(--green);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.card-icon {
  font-size: 2.2rem;
  margin-bottom: 12px;
  display: block;
}
.service-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--green);
  margin-bottom: 8px;
}
.service-card > p { color: var(--muted); font-size: 0.93rem; margin-bottom: 16px; }
.card-list {
  list-style: none;
  margin-bottom: 24px;
}
.card-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text);
  padding: 4px 0;
}
.card-list li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.card-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--green);
  font-weight: 700;
  font-size: 0.92rem;
  margin-top: 12px;
  text-decoration: none;
}

/* ── STATES / COUNTIES GRID ── */
.states-section, .counties-section { padding: 56px 0; }
.section-header { text-align: center; margin-bottom: 40px; }
.section-header h2 { font-size: 2rem; font-weight: 800; color: var(--green); margin-bottom: 8px; }
.section-header p { color: var(--muted); }

.states-grid, .counties-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 10px;
}
.counties-grid { grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); }

.states-grid a, .counties-grid a {
  display: block;
  padding: 11px 16px;
  background: var(--green-light);
  border: 1px solid var(--green-border);
  border-radius: var(--radius);
  color: var(--green);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  transition: all 0.15s;
}
.states-grid a:hover, .counties-grid a:hover {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(26,92,42,0.2);
}

/* ── ABOUT / FEATURES ── */
.about { background: var(--green-light); padding: 64px 0; border-top: 1px solid var(--green-border); }
.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; margin-top: 40px; }
.feature {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
}
.feature-icon { font-size: 2rem; margin-bottom: 12px; display: block; }
.feature h3 { color: var(--green); margin-bottom: 8px; font-size: 1.05rem; font-weight: 700; }
.feature p { color: var(--muted); font-size: 0.93rem; }

/* ── COUNTY CONTENT ── */
.county-content { padding: 56px 0; }
.county-content h2 { font-size: 1.6rem; font-weight: 800; color: var(--green); margin-bottom: 12px; }
.county-content h3 { font-size: 1.15rem; font-weight: 700; color: var(--green); margin: 28px 0 10px; }
.county-content p { color: var(--muted); margin-bottom: 16px; line-height: 1.7; }

.tips-list { list-style: none; margin-bottom: 20px; }
.tips-list li {
  display: flex;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.95rem;
}
.tips-list li::before { content: '→'; color: var(--orange); font-weight: 700; flex-shrink: 0; }

/* ── STATE CONTENT ── */
.state-content { padding: 56px 0; background: var(--green-light); border-top: 1px solid var(--green-border); }
.state-content h2 { font-size: 1.6rem; font-weight: 800; color: var(--green); margin-bottom: 12px; }
.state-content h3 { font-size: 1.1rem; font-weight: 700; color: var(--green); margin: 24px 0 10px; }
.state-content p { color: var(--muted); margin-bottom: 14px; }
.wildlife-list { list-style: none; }
.wildlife-list li { padding: 6px 0; color: var(--muted); border-bottom: 1px solid var(--border); font-size: 0.95rem; }
.wildlife-list li::before { content: '🐾 '; }

/* ── MAP ── */
.map-section { padding: 40px 0 24px; }
.map-hint { text-align: center; color: var(--muted); font-size: 0.88rem; margin-top: 10px; }
#us-map { width: 100%; cursor: pointer; }
.state { fill: var(--green); stroke: #fff; stroke-width: 1; transition: fill 0.15s; }
.state:hover { fill: #60a5fa; }
.state-border { fill: none; stroke: #fff; stroke-width: 1; pointer-events: none; }
.map-tooltip {
  display: none;
  position: absolute;
  background: var(--green);
  color: #fff;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 0.88rem;
  font-weight: 700;
  pointer-events: none;
  white-space: nowrap;
  z-index: 10;
  box-shadow: var(--shadow);
}
.map-section .container { position: relative; }

/* ── FOOTER ── */
footer {
  background: #0f2548;
  color: rgba(255,255,255,0.55);
  padding: 32px 0;
  text-align: center;
  font-size: 0.85rem;
  margin-top: 0;
}
footer a { color: rgba(255,255,255,0.7); text-decoration: none; }
footer a:hover { color: #fff; }

/* ── CONTACT FORM ── */
.contact-form { text-align: left; margin-top: 24px; }
.form-group { margin-bottom: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group label { display: block; font-size: 0.88rem; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 0.95rem;
  color: var(--text);
  background: #fff;
  transition: border-color 0.15s;
  font-family: inherit;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: var(--green); }
.form-group textarea { resize: vertical; }
.btn-submit {
  width: 100%;
  background: var(--orange);
  color: #fff;
  border: none;
  padding: 14px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s;
  margin-top: 4px;
}
.btn-submit:hover { background: var(--orange-hover); }
.form-error {
  background: #fff0f0;
  border: 1px solid #f5c0c0;
  color: #c0392b;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.9rem;
  margin-bottom: 16px;
}
.success-msg { text-align: center; padding: 16px 0; }
.success-msg h2 { color: var(--green); margin: 12px 0 8px; font-size: 1.6rem; }
.success-msg p { color: var(--muted); }

/* No-contractor contact section on county pages */
.no-contractor-section {
  display: none;
  background: #fff8f5;
  border: 1px solid #f5d5c0;
  border-radius: var(--radius);
  padding: 24px;
  margin-top: 20px;
  text-align: center;
}
.no-contractor-section h3 { color: var(--orange); margin-bottom: 8px; }
.no-contractor-section p { color: var(--muted); font-size: 0.92rem; margin-bottom: 16px; }
.btn-contact {
  display: inline-block;
  background: var(--green);
  color: #fff;
  padding: 11px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: background 0.15s;
}
.btn-contact:hover { background: var(--green-mid); }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .hero h1 { font-size: 2.1rem; }
  .page-hero h1 { font-size: 1.7rem; }
  .phone-cta { font-size: 1.5rem; padding: 14px 28px; }
  .cta-box { padding: 32px 20px; }
  .states-grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); }
  .header-nav { display: none; }
  .trust-bar-inner { gap: 20px; }
  .trust-item:nth-child(n+2) { display: none; }
  .header-inner { height: 68px; }
  .logo { font-size: 1.25rem; }
  .header-phone { font-size: 0.95rem; padding: 10px 20px; }
}
