/* ═══════════════════════════════════════════════════════════
   MORNING STAR PEST CONTROL — Main Stylesheet
   Colors: #7d091a (maroon) · #d41b36 (red) · #ffbd1b (gold)
   Fonts: Montserrat (headings) · Jost (body)
   ═══════════════════════════════════════════════════════════ */

:root {
  --primary:       #7d091a;
  --primary-dark:  #580611;
  --accent:        #d41b36;
  --gold:          #ffbd1b;
  --gold-dark:     #e6a800;
  --dark-blue:     #173561;
  --white:         #ffffff;
  --off-white:     #f8f6f6;
  --light-gray:    #f0edec;
  --text-dark:     #111111;
  --text-mid:      #2d2d2d;
  --text-muted:    #6b6b6b;
  --border:        #e6dfdf;
  --shadow-sm:     0 2px 12px rgba(0,0,0,.06);
  --shadow-md:     0 8px 32px rgba(0,0,0,.10);
  --shadow-lg:     0 20px 60px rgba(0,0,0,.13);
  --shadow-xl:     0 32px 80px rgba(0,0,0,.18);
  --radius:        10px;
  --radius-lg:     18px;
  --radius-pill:   50px;
  --tr:            .35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ─── Reset & Base ────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'DM Sans', 'Jost', Arial, sans-serif;
  color: var(--text-mid);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ─── Typography ──────────────────────────────────────── */
h1,h2,h3,h4,h5 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.15;
}
p { color: var(--text-muted); line-height: 1.75; }

/* ─── Layout ──────────────────────────────────────────── */
.container      { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-wide { max-width: 1380px; margin: 0 auto; padding: 0 28px; }
.section        { padding: 100px 0; }
.section-sm     { padding: 64px 0; }
.section-lg     { padding: 120px 0; }
.text-center    { text-align: center; }

/* ─── Section Titles ──────────────────────────────────── */
.section-label {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.section-title {
  font-size: clamp(2rem, 3.8vw, 2.9rem);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 18px;
  line-height: 1.15;
  letter-spacing: -.02em;
}
.section-title span { color: var(--primary); }
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 580px;
}
.text-center .section-subtitle { margin: 0 auto; }

/* ─── Buttons ─────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 28px;
  border-radius: var(--radius-pill);
  font-family: 'Montserrat', sans-serif;
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .02em;
  cursor: pointer;
  transition: all var(--tr);
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn svg { width: 17px; height: 17px; flex-shrink: 0; }
.btn-primary { background: var(--primary); color: var(--white); border-color: var(--primary); }
.btn-primary:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(125,9,26,.35);
}
.btn-outline-dark { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline-dark:hover { background: var(--primary); color: var(--white); }
.btn-outline-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,.75); }
.btn-outline-light:hover { background: var(--white); color: var(--primary); }
.btn-gold { background: var(--gold); color: var(--text-dark); border-color: var(--gold); }
.btn-gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(255,189,27,.4);
}
.btn-lg { padding: 16px 36px; font-size: .95rem; }
.btn-sm { padding: 9px 20px; font-size: .8rem; }
.btn-block { width: 100%; justify-content: center; }

/* ─── Top Bar ─────────────────────────────────────────── */
.top-bar {
  background: var(--primary-dark);
  padding: 8px 0;
  font-size: .8rem;
  color: rgba(255,255,255,.78);
}
.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
.top-bar-item {
  display: flex;
  align-items: center;
  gap: 6px;
}
.top-bar-item svg { width: 13px; height: 13px; }
.top-bar a { color: rgba(255,255,255,.78); transition: color var(--tr); }
.top-bar a:hover { color: var(--gold); }
.top-bar-phone {
  font-weight: 700;
  color: var(--gold) !important;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ─── Header ──────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 14px rgba(0,0,0,.09);
  transition: box-shadow var(--tr);
}
.site-header.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,.15); }
.header-inner {
  display: flex;
  align-items: center;
  height: 78px;
  gap: 28px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
}
.logo-icon-wrap {
  width: 46px; height: 46px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}
.logo-icon-wrap svg { width: 22px; height: 22px; }
.logo-text-wrap { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name {
  font-family: 'Montserrat', sans-serif;
  font-size: .93rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: .04em;
}
.logo-sub {
  font-family: 'Montserrat', sans-serif;
  font-size: .6rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: .12em;
  text-transform: uppercase;
}

.main-nav {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
}
.nav-item { position: relative; }
.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 13px;
  font-family: 'Montserrat', sans-serif;
  font-size: .84rem;
  font-weight: 600;
  color: var(--text-dark);
  border-radius: 7px;
  transition: all var(--tr);
}
.nav-link:hover, .nav-link.active {
  color: var(--primary);
  background: rgba(125,9,26,.06);
}
.nav-link svg { width: 13px; height: 13px; transition: transform var(--tr); }
.nav-item:hover .nav-link svg { transform: rotate(180deg); }

.dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 230px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border-top: 3px solid var(--primary);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all var(--tr);
  z-index: 200;
}
.nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 20px;
  font-family: 'Montserrat', sans-serif;
  font-size: .83rem;
  font-weight: 600;
  color: var(--text-mid);
  border-bottom: 1px solid var(--border);
  transition: all var(--tr);
}
.dropdown a:last-child { border-bottom: none; }
.dropdown a:hover { background: var(--off-white); color: var(--primary); padding-left: 28px; }
.dropdown a svg { width: 16px; height: 16px; color: var(--primary); }

.header-right {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: auto;
  flex-shrink: 0;
}
.header-phone {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .88rem;
  color: var(--primary);
}
.header-phone svg { width: 16px; height: 16px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  margin-left: auto;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 25px;
  height: 2.5px;
  background: var(--primary);
  border-radius: 3px;
  transition: all .3s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.mobile-nav {
  position: fixed;
  inset: 0;
  top: 0;
  background: var(--white);
  z-index: 999;
  transform: translateX(100%);
  transition: transform .35s ease;
  overflow-y: auto;
  padding: 92px 28px 40px;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav a {
  display: block;
  padding: 14px 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  border-bottom: 1px solid var(--border);
  transition: color var(--tr);
}
.mobile-nav a:hover { color: var(--primary); }
.mobile-nav .btn { display: flex; margin-top: 28px; }

/* ─── Page Hero (interior pages) ─────────────────────── */
.page-hero {
  background: var(--primary);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 50%, rgba(23,53,97,.6) 0%, transparent 60%),
    url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1200&q=50') center/cover;
  opacity: .1;
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); font-size: clamp(1.8rem, 4vw, 3rem); margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,.75); font-size: 1rem; max-width: 560px; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  color: rgba(255,255,255,.55);
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb svg { width: 12px; height: 12px; }

/* ─── HERO (Homepage) ─────────────────────────────────── */
.hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.07) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 1;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(88,6,17,.98) 0%, rgba(125,9,26,.92) 50%, rgba(23,53,97,.75) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 0;
  max-width: 700px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,189,27,.12);
  border: 1px solid rgba(255,189,27,.35);
  color: var(--gold);
  font-family: 'Montserrat', sans-serif;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 24px;
}
.hero-badge svg { width: 13px; height: 13px; }
.hero h1 {
  font-family: 'Barlow Condensed', 'Montserrat', sans-serif;
  font-size: clamp(3rem, 7vw, 5.2rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.02;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}
.hero h1 em {
  font-style: normal;
  color: var(--gold);
  display: block;
}
.hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,.8);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 550px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 52px;
}
.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.15);
}
.hero-stat {}
.hero-stat-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.hero-stat-num sup { color: var(--gold); font-size: 1.2rem; vertical-align: super; }
.hero-stat-label {
  font-size: .77rem;
  color: rgba(255,255,255,.58);
  font-weight: 500;
  margin-top: 5px;
  letter-spacing: .04em;
}

/* ─── Trust Strip ─────────────────────────────────────── */
.trust-strip {
  background: var(--white);
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.trust-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 13px;
}
.trust-icon-wrap {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(125,9,26,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
}
.trust-icon-wrap svg { width: 21px; height: 21px; }
.trust-text strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: .85rem;
  font-weight: 700;
  color: var(--text-dark);
}
.trust-text span { font-size: .74rem; color: var(--text-muted); }

/* ─── Intro Split (Home/Commercial) ──────────────────── */
.intro-split { display: grid; grid-template-columns: 1fr 1fr; }
.intro-panel { padding: 64px 52px; position: relative; overflow: hidden; }
.intro-panel-res { background: var(--off-white); }
.intro-panel-com { background: var(--primary); }
.intro-panel-com p { color: rgba(255,255,255,.78); }
.intro-panel-com h3 { color: var(--white); }
.panel-icon {
  width: 58px; height: 58px;
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
}
.intro-panel-res .panel-icon { background: rgba(125,9,26,.1); color: var(--primary); }
.intro-panel-com .panel-icon { background: rgba(255,255,255,.15); color: var(--white); }
.panel-icon svg { width: 28px; height: 28px; }
.intro-panel h3 {
  font-size: 1.45rem;
  font-weight: 800;
  margin-bottom: 14px;
}
.intro-panel p { margin-bottom: 22px; }
.panel-list { margin-bottom: 28px; display: flex; flex-direction: column; gap: 9px; }
.panel-list li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: .9rem;
  font-weight: 500;
}
.intro-panel-res .panel-list li { color: var(--text-mid); }
.intro-panel-com .panel-list li { color: rgba(255,255,255,.85); }
.panel-list li svg { width: 16px; height: 16px; flex-shrink: 0; }
.intro-panel-res .panel-list li svg { color: var(--primary); }
.intro-panel-com .panel-list li svg { color: var(--gold); }

/* ─── Pest Cards ──────────────────────────────────────── */
.pests-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.pest-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: all var(--tr);
  text-align: center;
}
.pest-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(125,9,26,.14);
  border-color: var(--primary);
}
.pest-img-wrap {
  width: 100%;
  height: 126px;
  overflow: hidden;
  background: var(--light-gray);
  position: relative;
}
.pest-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.pest-card:hover .pest-img-wrap img { transform: scale(1.06); }
.pest-name {
  padding: 12px 10px 14px;
  font-family: 'Montserrat', sans-serif;
  font-size: .82rem;
  font-weight: 700;
  color: var(--text-dark);
}

/* ─── Featured Service Cards ──────────────────────────── */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.feat-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--tr);
}
.feat-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); }
.feat-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
.feat-body { padding: 24px; }
.feat-body h3 { font-size: 1.1rem; margin-bottom: 10px; }
.feat-body p { font-size: .87rem; color: var(--text-muted); margin-bottom: 18px; line-height: 1.65; }
.feat-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Montserrat', sans-serif;
  font-size: .8rem;
  font-weight: 700;
  color: var(--primary);
  transition: gap var(--tr);
}
.feat-link svg { width: 15px; height: 15px; }
.feat-link:hover { gap: 10px; }

/* ─── Why Choose Us ───────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.why-card {
  padding: 30px 26px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--border);
  transition: all var(--tr);
  position: relative;
  overflow: hidden;
}
.why-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 3.5px;
  background: linear-gradient(180deg, var(--primary), var(--accent));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform var(--tr);
}
.why-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); border-color: transparent; }
.why-card:hover::after { transform: scaleY(1); }
.why-icon {
  width: 54px; height: 54px;
  border-radius: var(--radius);
  background: rgba(125,9,26,.08);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  color: var(--primary);
}
.why-icon svg { width: 24px; height: 24px; }
.why-card h4 { font-size: .98rem; font-weight: 700; margin-bottom: 10px; color: var(--text-dark); }
.why-card p { font-size: .86rem; color: var(--text-muted); line-height: 1.65; }

/* ─── Counters ────────────────────────────────────────── */
.counter-section { background: var(--off-white); padding: 56px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.counter-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.counter-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
}
.counter-label {
  font-family: 'Montserrat', sans-serif;
  font-size: .78rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-top: 6px;
}

/* ─── Service Areas ───────────────────────────────────── */
.areas-section {
  background: var(--primary);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.areas-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 50%, rgba(255,189,27,.07) 0%, transparent 60%);
}
.areas-section .section-label { color: var(--gold); }
.areas-section .section-title { color: var(--white); }
.areas-section .section-subtitle { color: rgba(255,255,255,.7); }
.areas-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  margin-top: 40px;
}
.area-pill {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  color: var(--white);
  text-align: center;
  padding: 10px 8px;
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: .75rem;
  font-weight: 600;
  transition: all var(--tr);
  cursor: default;
}
.area-pill:hover {
  background: var(--gold);
  color: var(--text-dark);
  border-color: var(--gold);
  transform: translateY(-2px);
}

/* ─── CTA Banner ──────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(115deg, var(--primary-dark) 0%, var(--primary) 55%, var(--accent) 100%);
  padding: 72px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 50%, rgba(255,189,27,.08) 0%, transparent 50%),
    radial-gradient(circle at 85% 50%, rgba(255,255,255,.04) 0%, transparent 50%);
}
.cta-inner { position: relative; z-index: 1; }
.cta-banner h2 { color: var(--white); font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 14px; }
.cta-banner p { color: rgba(255,255,255,.78); font-size: 1.05rem; margin-bottom: 34px; max-width: 540px; margin-left: auto; margin-right: auto; }
.btn-group { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ─── Estimate / Contact Form ─────────────────────────── */
.estimate-section { background: var(--off-white); padding: 88px 0; }
.estimate-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  align-items: start;
}
.estimate-info .section-title { margin-bottom: 14px; }
.estimate-info p { margin-bottom: 28px; }
.contact-list { display: flex; flex-direction: column; gap: 16px; margin-top: 32px; }
.contact-list-item {
  display: flex;
  align-items: center;
  gap: 15px;
}
.cl-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius);
  background: var(--primary);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.cl-icon svg { width: 19px; height: 19px; }
.cl-text strong { display: block; font-size: .88rem; font-weight: 700; color: var(--text-dark); margin-bottom: 2px; }
.cl-text a { font-size: .9rem; color: var(--primary); font-weight: 600; }
.cl-text a:hover { text-decoration: underline; }
.cl-text span { font-size: .88rem; color: var(--text-muted); }

.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow-md);
}
.form-card h3 { font-size: 1.4rem; margin-bottom: 6px; }
.form-card > p { font-size: .88rem; margin-bottom: 28px; color: var(--text-muted); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: .78rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 7px;
}
.req { color: var(--accent); }
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 13px 15px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Jost', sans-serif;
  font-size: .93rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color var(--tr), box-shadow var(--tr);
  outline: none;
  appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(125,9,26,.1);
}
.form-textarea { resize: vertical; min-height: 100px; }
.form-select { cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }
.radio-group { display: flex; gap: 20px; }
.radio-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .9rem;
  font-weight: 500;
  color: var(--text-mid);
  cursor: pointer;
}
.radio-label input { accent-color: var(--primary); width: 16px; height: 16px; cursor: pointer; }
.form-note { font-size: .76rem; color: var(--text-muted); text-align: center; margin-top: 10px; line-height: 1.5; }
.form-msg { display: none; padding: 14px 18px; border-radius: var(--radius); font-size: .88rem; font-weight: 600; text-align: center; margin-top: 14px; }
.form-msg-ok  { background: #ecfdf5; color: #065f46; border: 1px solid #a7f3d0; }
.form-msg-err { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }

/* ─── Footer ──────────────────────────────────────────── */
.site-footer { background: #111111; color: rgba(255,255,255,.65); }
.footer-main {
  padding: 68px 0 48px;
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-logo-wrap .logo-name { color: var(--white); }
.footer-logo-wrap .logo-sub { color: rgba(255,255,255,.4); }
.footer-about {
  font-size: .87rem;
  color: rgba(255,255,255,.55);
  line-height: 1.75;
  margin-top: 14px;
  margin-bottom: 22px;
}
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: .84rem;
}
.footer-contact-item svg { width: 15px; height: 15px; color: var(--gold); flex-shrink: 0; }
.footer-contact-item a { color: rgba(255,255,255,.65); transition: color var(--tr); }
.footer-contact-item a:hover { color: var(--gold); }
.footer-col-title {
  font-family: 'Montserrat', sans-serif;
  font-size: .78rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--primary);
  display: inline-block;
}
.footer-links { display: flex; flex-direction: column; gap: 11px; }
.footer-links a {
  font-size: .85rem;
  color: rgba(255,255,255,.58);
  transition: all var(--tr);
}
.footer-links a:hover { color: var(--gold); padding-left: 4px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .78rem;
  color: rgba(255,255,255,.4);
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: rgba(255,255,255,.4); transition: color var(--tr); }
.footer-bottom-links a:hover { color: var(--white); }

/* ─── Float CTA (mobile) ──────────────────────────────── */
.float-cta {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 900;
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius-pill);
  padding: 14px 22px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .88rem;
  box-shadow: 0 6px 24px rgba(125,9,26,.5);
  align-items: center;
  gap: 8px;
  animation: pulseCTA 2.5s ease-in-out infinite;
}
.float-cta svg { width: 17px; height: 17px; }
@keyframes pulseCTA {
  0%, 100% { box-shadow: 0 6px 24px rgba(125,9,26,.5); }
  50% { box-shadow: 0 6px 40px rgba(125,9,26,.75); }
}

/* ─── Commercial Page ─────────────────────────────────── */
.industries-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.ind-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: all var(--tr);
}
.ind-card:hover { box-shadow: var(--shadow-md); border-color: var(--primary); transform: translateY(-3px); }
.ind-icon {
  width: 48px; height: 48px;
  background: rgba(125,9,26,.08);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}
.ind-icon svg { width: 22px; height: 22px; }
.ind-card h4 { font-size: .93rem; font-weight: 700; margin-bottom: 5px; }
.ind-card p { font-size: .82rem; color: var(--text-muted); line-height: 1.55; }

/* ─── About Page ──────────────────────────────────────── */
.about-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-img-box { position: relative; border-radius: var(--radius-lg); overflow: hidden; }
.about-img-box img { width: 100%; height: 480px; object-fit: cover; }
.about-badge {
  position: absolute;
  bottom: 24px; left: 24px;
  background: var(--primary);
  color: var(--white);
  padding: 16px 22px;
  border-radius: var(--radius);
  text-align: center;
}
.about-badge strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.about-badge span { font-size: .78rem; font-weight: 600; }
.cert-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
.cert-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px 18px;
  text-align: center;
  transition: all var(--tr);
}
.cert-card:hover { border-color: var(--primary); box-shadow: var(--shadow-md); }
.cert-icon {
  width: 54px; height: 54px;
  background: rgba(125,9,26,.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
  color: var(--primary);
}
.cert-icon svg { width: 26px; height: 26px; }
.cert-card h4 { font-size: .88rem; margin-bottom: 5px; }
.cert-card p { font-size: .77rem; color: var(--text-muted); }
.values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 28px; }
.value-item { display: flex; align-items: flex-start; gap: 14px; }
.value-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: rgba(125,9,26,.15);
  line-height: 1;
  flex-shrink: 0;
  min-width: 36px;
}
.value-item h4 { font-size: .9rem; margin-bottom: 4px; }
.value-item p { font-size: .82rem; }

/* ─── Scroll Reveal ───────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .8s cubic-bezier(0.16, 1, 0.3, 1), transform .8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity .85s cubic-bezier(0.16, 1, 0.3, 1), transform .85s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-left.visible { opacity: 1; transform: none; }
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity .85s cubic-bezier(0.16, 1, 0.3, 1), transform .85s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-right.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-left, .reveal-right { opacity: 1 !important; transform: none !important; }
}

/* ─── Responsive ──────────────────────────────────────── */
@media (max-width: 1024px) {
  .pests-grid         { grid-template-columns: repeat(2, 1fr); }
  .feat-grid          { grid-template-columns: 1fr 1fr; }
  .why-grid           { grid-template-columns: 1fr 1fr; }
  .footer-main        { grid-template-columns: 1fr 1fr; gap: 36px; }
  .counter-grid       { grid-template-columns: repeat(2, 1fr); }
  .areas-grid         { grid-template-columns: repeat(4, 1fr); }
  .industries-grid    { grid-template-columns: 1fr 1fr; }
  .cert-grid          { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .top-bar            { display: none; }
  .main-nav           { display: none; }
  .header-right       { display: none; }
  .hamburger          { display: flex; }
  .float-cta          { display: flex; }

  .hero-content       { padding: 64px 0 72px; }
  .hero h1            { font-size: clamp(2.6rem, 9vw, 3.6rem); }
  .hero-desc          { font-size: .97rem; }
  .hero-stats         { gap: 24px; padding-top: 24px; }
  .hero-stat-num      { font-size: 1.8rem; }
  .hero-stat-label    { font-size: .7rem; }

  .intro-split        { grid-template-columns: 1fr; }
  .intro-panel        { padding: 48px 28px; }

  .pests-grid         { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .feat-grid          { grid-template-columns: 1fr; }
  .why-grid           { grid-template-columns: 1fr; }
  .areas-grid         { grid-template-columns: repeat(3, 1fr); }
  .industries-grid    { grid-template-columns: 1fr; }
  .about-layout       { grid-template-columns: 1fr; }
  .about-img-box img  { height: 300px; }
  .cert-grid          { grid-template-columns: 1fr 1fr; }
  .values-grid        { grid-template-columns: 1fr; }

  .estimate-layout    { grid-template-columns: 1fr; gap: 36px; }
  .form-row           { grid-template-columns: 1fr; }
  .form-card          { padding: 28px 22px; }

  .footer-main        { grid-template-columns: 1fr; gap: 28px; padding-top: 48px; }
  .footer-bottom      { flex-direction: column; text-align: center; }

  .counter-grid       { grid-template-columns: 1fr 1fr; }
  .section            { padding: 56px 0; }
  .trust-grid         { justify-content: center; gap: 20px; }
}
@media (max-width: 480px) {
  .pests-grid         { grid-template-columns: 1fr 1fr; }
  .areas-grid         { grid-template-columns: repeat(2, 1fr); }
  .hero-actions       { flex-direction: column; }
  .hero-actions .btn  { justify-content: center; }
  .btn-group          { flex-direction: column; align-items: center; }
  .cert-grid          { grid-template-columns: 1fr; }
}

/* ─── Logo Image ──────────────────────────────────────── */
.logo-img {
  height: 190px;
  width: auto;
  object-fit: contain;
  display: block;
  margin: -30px 0;
}
.footer-logo-wrap .logo-img {
  height: 150px;
  margin: -20px 0;
}

/* ─── Pest Scatter Background ─────────────────────────── */
.pest-scatter-section { position: relative; overflow: hidden; background: var(--white); }
.pest-scatter-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.ps-img {
  position: absolute;
  border-radius: 50%;
  object-fit: cover;
  opacity: 0.09;
  filter: grayscale(15%);
}
.ps-img.ps-1  { top:1%;left:1%;width:68px;height:68px;transform:rotate(-15deg); }
.ps-img.ps-2  { top:0%;left:13%;width:62px;height:62px;transform:rotate(8deg); }
.ps-img.ps-3  { top:3%;left:23%;width:70px;height:70px;transform:rotate(-6deg); }
.ps-img.ps-4  { top:1%;right:23%;width:66px;height:66px;transform:rotate(12deg); }
.ps-img.ps-5  { top:0%;right:13%;width:64px;height:64px;transform:rotate(-10deg); }
.ps-img.ps-6  { top:1%;right:1%;width:70px;height:70px;transform:rotate(18deg); }
.ps-img.ps-7  { top:38%;left:0%;width:78px;height:78px;transform:rotate(-22deg); }
.ps-img.ps-8  { top:55%;left:1%;width:66px;height:66px;transform:rotate(14deg); }
.ps-img.ps-9  { top:38%;right:0%;width:75px;height:75px;transform:rotate(20deg); }
.ps-img.ps-10 { top:54%;right:1%;width:64px;height:64px;transform:rotate(-16deg); }
.ps-img.ps-11 { bottom:1%;left:1%;width:68px;height:68px;transform:rotate(15deg); }
.ps-img.ps-12 { bottom:0%;left:12%;width:64px;height:64px;transform:rotate(-10deg); }
.ps-img.ps-13 { bottom:3%;left:22%;width:70px;height:70px;transform:rotate(6deg); }
.ps-img.ps-14 { bottom:1%;right:22%;width:66px;height:66px;transform:rotate(-14deg); }
.ps-img.ps-15 { bottom:0%;right:12%;width:64px;height:64px;transform:rotate(9deg); }
.ps-img.ps-16 { bottom:1%;right:1%;width:68px;height:68px;transform:rotate(-20deg); }
@media(max-width:900px) {
  .ps-img.ps-7,.ps-img.ps-8,.ps-img.ps-9,.ps-img.ps-10 { display:none; }
}
@media(max-width:600px) {
  .ps-img { display:none; }
  .ps-img.ps-1,.ps-img.ps-6,.ps-img.ps-11,.ps-img.ps-16 { display:block; }
}
