/* =============================================
   PEST CONTROL PARTY OF INDIA — MAIN CSS
   Neomorphic UI | Saffron + Charcoal + White
   ============================================= */

:root {
  --primary: #FF9933;
  --primary-dark: #cc7a00;
  --primary-light: #ffb366;
  --dark: #2D3436;
  --dark2: #1a1a2e;
  --white: #ffffff;
  --bg: #f0ede6;
  --bg-dark: #1a1a2e;
  --shadow-d: #d4d0c8;
  --shadow-l: #ffffff;
  --text: #2D3436;
  --text-light: #636e72;
  --success: #27ae60;
  --error: #e74c3c;
  --border-radius: 16px;
  --transition: all 0.25s ease;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ===== NEOMORPHIC BASE ===== */
.neo-card {
  background: var(--bg);
  border-radius: var(--border-radius);
  box-shadow: 8px 8px 16px var(--shadow-d), -8px -8px 16px var(--shadow-l);
}
.neo-inset {
  background: var(--bg);
  border-radius: var(--border-radius);
  box-shadow: inset 6px 6px 12px var(--shadow-d), inset -6px -6px 12px var(--shadow-l);
}

/* ===== LAYOUT ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section {
  padding: 5rem 0;
}
.dark-section {
  background: var(--dark2);
  position: relative;
}

/* ===== TOP BAR ===== */
.top-bar {
  background: var(--dark2);
  color: #ccc;
  font-size: 0.8rem;
  padding: 0.5rem 0;
}
.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.social-links a {
  color: #ccc;
  transition: color 0.2s;
  display: inline-flex;
  align-items: center;
}
.social-links a:hover { color: var(--primary); }

/* ===== NAVBAR ===== */
.navbar {
  background: var(--bg);
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 0.8rem 0;
  transition: var(--transition);
}
.navbar.scrolled {
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}
.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}
.logo-img {
  height: 52px;
  width: 52px;
  object-fit: contain;
  border-radius: 50%;
  box-shadow: 4px 4px 10px var(--shadow-d), -4px -4px 10px var(--shadow-l);
}
.logo-text .logo-main {
  display: block;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  font-family: 'Baloo 2', sans-serif;
}
.logo-text .logo-sub {
  display: block;
  font-size: 0.65rem;
  color: var(--text-light);
  font-weight: 500;
  white-space: nowrap;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-link {
  padding: 0.5rem 0.9rem;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
  transition: var(--transition);
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active {
  color: var(--primary);
  background: rgba(255,153,51,0.1);
}
.nav-cta-btn {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff !important;
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  box-shadow: 4px 4px 12px rgba(255,153,51,0.35);
  transition: var(--transition);
  white-space: nowrap;
}
.nav-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 6px 6px 18px rgba(255,153,51,0.45);
}

/* Dropdown */
.nav-dropdown { position: relative; }
.dropdown-mega {
  display: none;
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg);
  border-radius: 12px;
  box-shadow: 12px 12px 30px var(--shadow-d), -4px -4px 16px var(--shadow-l);
  padding: 1rem;
  min-width: 400px;
  z-index: 500;
}
.nav-dropdown:hover .dropdown-mega { display: block; }
.dropdown-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.25rem;
}
.dropdown-grid a {
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  font-size: 0.82rem;
  color: var(--text);
  transition: var(--transition);
}
.dropdown-grid a:hover { background: rgba(255,153,51,0.1); color: var(--primary); }
.dropdown-grid .see-all {
  grid-column: 1/-1;
  color: var(--primary);
  font-weight: 600;
  text-align: center;
  border-top: 1px solid var(--shadow-d);
  margin-top: 0.25rem;
  padding-top: 0.5rem;
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
  display: block;
}

/* ===== HERO ===== */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  background: var(--bg);
  overflow: hidden;
  padding: 4rem 0 2rem;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(255,153,51,0.08) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(255,153,51,0.05) 0%, transparent 50%);
}
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}
.hero-text { max-width: 820px; width: 100%; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,153,51,0.15);
  border: 1px solid rgba(255,153,51,0.3);
  color: var(--primary-dark);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.hero-title {
  display: flex;
  flex-direction: column;
  line-height: 1;
  margin-bottom: 1rem;
}
.hero-title-top {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 900;
  color: var(--primary);
  font-family: 'Baloo 2', sans-serif;
  letter-spacing: -2px;
}
.hero-title-mid {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 600;
  color: var(--dark);
  letter-spacing: 4px;
  text-transform: uppercase;
}
.hero-title-bot {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900;
  color: var(--dark);
  font-family: 'Baloo 2', sans-serif;
  letter-spacing: -2px;
}
.hero-slogan {
  font-size: 1.15rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  font-style: italic;
}
.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
  justify-content: center;
}
.hero-stats {
  display: flex;
  gap: 2rem;
  justify-content: center;
}
.stat-item { text-align: center; }
.stat-num {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary);
}
.stat-label {
  font-size: 0.8rem;
  color: var(--text-light);
  font-weight: 500;
}
.hero-img { display: none; }
/* Homepage image-only hero */
.hero-image-section {
  background: var(--bg);
  padding: 2rem 0 0;
}
.hero-image-section .hero-banner-img {
  border-radius: 24px;
  box-shadow: 20px 20px 60px var(--shadow-d), -10px -10px 30px var(--shadow-l);
}
.hero-banner-full {
  width: 100%;
  max-width: 1200px;
  margin: 2.5rem auto 0;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}
.hero-banner-img {
  width: 100%;
  display: block;
  border-radius: 24px;
  box-shadow: 20px 20px 60px var(--shadow-d), -10px -10px 30px var(--shadow-l);
}
/* Brand banner strip — used on all interior and state pages */
.brand-banner-strip {
  background: var(--bg);
  padding: 2.5rem 0 0;
}
.brand-banner-img {
  width: 100%;
  display: block;
  border-radius: 20px;
  box-shadow: 16px 16px 48px var(--shadow-d), -8px -8px 20px var(--shadow-l);
}
.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: var(--text-light);
  font-size: 0.8rem;
}
.scroll-arrow {
  animation: bounce 2s infinite;
  font-size: 1.2rem;
  color: var(--primary);
}
@keyframes bounce {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 6px 6px 16px rgba(255,153,51,0.35);
  transition: var(--transition);
  border: none;
  cursor: pointer;
  text-decoration: none;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 8px 10px 24px rgba(255,153,51,0.45); }
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--bg);
  color: var(--dark);
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 6px 6px 12px var(--shadow-d), -6px -6px 12px var(--shadow-l);
  transition: var(--transition);
  border: none;
  cursor: pointer;
  text-decoration: none;
}
.btn-secondary:hover { transform: translateY(-2px); }
.btn-outline-white {
  display: inline-flex;
  align-items: center;
  border: 2px solid rgba(255,255,255,0.6);
  color: #fff;
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
  text-decoration: none;
}
.btn-outline-white:hover { background: rgba(255,255,255,0.15); }
.btn-primary-large {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  padding: 1.1rem 2.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 8px 8px 24px rgba(255,153,51,0.4);
  transition: var(--transition);
  text-decoration: none;
}
.btn-primary-large:hover { transform: translateY(-3px); }
.btn-outline-white-large {
  display: inline-flex;
  align-items: center;
  border: 2px solid rgba(255,255,255,0.7);
  color: #fff;
  padding: 1.1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: var(--transition);
  text-decoration: none;
}
.btn-outline-white-large:hover { background: rgba(255,255,255,0.15); }

/* ===== CAMPAIGN BANNER / TICKER ===== */
.campaign-banner {
  background: var(--primary);
  padding: 0.8rem 0;
  overflow: hidden;
}
.ticker-wrapper {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.ticker-label {
  white-space: nowrap;
  background: var(--dark);
  color: var(--primary);
  padding: 0.3rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
}
.ticker-text {
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
  animation: ticker 25s linear infinite;
}
@keyframes ticker {
  from { transform: translateX(100vw); }
  to { transform: translateX(-100%); }
}

/* ===== SECTION HEADER ===== */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-badge {
  display: inline-block;
  background: rgba(255,153,51,0.15);
  color: var(--primary-dark);
  padding: 0.3rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.section-badge.light {
  background: rgba(255,153,51,0.25);
  color: var(--primary-light);
}
.section-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}
.section-header p {
  color: var(--text-light);
  font-size: 1rem;
  max-width: 550px;
  margin: 0 auto;
}

/* ===== CARDS GRID ===== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
}
.feature-card {
  padding: 2rem;
  transition: transform 0.3s;
}
.feature-card:hover { transform: translateY(-5px); }
.card-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.feature-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--dark);
}
.feature-card p { color: var(--text-light); font-size: 0.9rem; }

/* ===== LEAD FORM SECTION ===== */
.lead-section { background: var(--bg); }
.lead-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: center;
}
.lead-content h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 1rem;
}
.lead-content p { color: var(--text-light); margin-bottom: 1.5rem; }
.lead-benefits li {
  padding: 0.4rem 0;
  font-size: 0.9rem;
  color: var(--text);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

/* Lead Form Card */
.lead-form-wrapper { width: 100%; }
.lead-form-card {
  padding: 2rem;
}
.form-header {
  text-align: center;
  margin-bottom: 1.5rem;
}
.form-icon { font-size: 2rem; margin-bottom: 0.5rem; }
.form-header h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}
.form-header p { color: var(--text-light); font-size: 0.85rem; }

.lead-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: none;
  border-radius: 10px;
  background: var(--bg);
  box-shadow: inset 4px 4px 8px var(--shadow-d), inset -4px -4px 8px var(--shadow-l);
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  color: var(--dark);
  outline: none;
  transition: box-shadow 0.2s;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus {
  box-shadow: inset 5px 5px 10px #c8c5be, inset -5px -5px 10px #ffffff;
}
.form-submit-btn {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  border: none;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 4px 4px 16px rgba(255,153,51,0.4);
  transition: var(--transition);
  margin-top: 0.75rem;
}
.form-submit-btn:hover { transform: translateY(-2px); box-shadow: 6px 6px 20px rgba(255,153,51,0.5); }
.form-disclaimer {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-light);
  margin-top: 0.75rem;
}
.success-banner {
  background: linear-gradient(135deg, #27ae60, #2ecc71);
  color: #fff;
  padding: 1.5rem;
  border-radius: 12px;
  text-align: center;
  margin-bottom: 1.5rem;
}
.success-icon { font-size: 2.5rem; margin-bottom: 0.5rem; }
.success-banner h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 0.3rem; }
.success-banner p { font-size: 0.9rem; opacity: 0.9; }

/* ===== MANIFESTO ===== */
.manifesto-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.manifesto-card {
  padding: 2rem;
  position: relative;
}
.manifesto-num {
  font-size: 3rem;
  font-weight: 900;
  color: rgba(255,153,51,0.15);
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  line-height: 1;
  font-family: 'Baloo 2', sans-serif;
}
.manifesto-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.5rem; }
.manifesto-card p { color: var(--text-light); font-size: 0.9rem; }
.manifesto-cta { text-align: center; }

/* Manifesto page */
.manifesto-hero { min-height: 50vh; }
.manifesto-hero-content { text-align: center; }
.manifesto-seal { font-size: 4rem; margin-bottom: 1rem; }
.manifesto-hero h1 { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 900; color: #fff; }
.manifesto-subtitle { color: var(--primary); font-size: 1.2rem; font-weight: 600; margin: 0.5rem 0; }
.manifesto-tagline { color: rgba(255,255,255,0.7); font-size: 1rem; }
.manifesto-intro {
  padding: 2.5rem;
  margin-bottom: 3rem;
}
.manifesto-intro h2 { font-size: 1.5rem; font-weight: 800; margin-bottom: 1rem; }
.manifesto-points { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 3rem; }
.manifesto-point {
  padding: 2rem;
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  transition: transform 0.3s;
}
.manifesto-point:hover { transform: translateX(8px); }
.manifesto-point-num {
  font-size: 3rem;
  font-weight: 900;
  color: var(--primary);
  opacity: 0.3;
  flex-shrink: 0;
  line-height: 1;
  font-family: 'Baloo 2', sans-serif;
}
.manifesto-point-content h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 0.5rem; }
.manifesto-point-content p { color: var(--text-light); font-size: 0.9rem; margin-bottom: 0.75rem; }
.manifesto-commitment {
  display: inline-block;
  background: rgba(255,153,51,0.1);
  border-left: 3px solid var(--primary);
  padding: 0.4rem 1rem;
  border-radius: 0 8px 8px 0;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--primary-dark);
}
.manifesto-signature {
  padding: 3rem;
  text-align: center;
}
.manifesto-signature h2 { font-size: 1.8rem; font-weight: 800; margin-bottom: 1rem; }
.manifesto-signature p { color: var(--text-light); margin-bottom: 2rem; }

/* ===== SERVICES ===== */
.services-preview { }
.services-scroll {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 1rem;
}
.service-pill {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
}
.service-pill:hover {
  background: var(--primary);
  border-color: var(--primary);
}
.services-detailed-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.75rem;
}
.service-detail-card {
  padding: 2rem;
  position: relative;
  transition: transform 0.3s;
}
.service-detail-card:hover { transform: translateY(-5px); }
.service-emoji { font-size: 2.5rem; margin-bottom: 0.75rem; display: block; }
.service-detail-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 0.5rem; }
.service-badge {
  display: inline-block;
  background: rgba(255,153,51,0.15);
  color: var(--primary-dark);
  padding: 0.2rem 0.7rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.service-detail-card p { color: var(--text-light); font-size: 0.9rem; margin-bottom: 0.75rem; }
.service-detail-card ul { margin-bottom: 1rem; }
.service-detail-card ul li {
  padding: 0.3rem 0;
  font-size: 0.85rem;
  color: var(--text-light);
  display: flex; align-items: flex-start; gap: 0.5rem;
}
.service-detail-card ul li::before { content: '✓'; color: var(--primary); font-weight: 700; flex-shrink: 0; }
.service-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  border-top: 1px solid var(--shadow-d);
  padding-top: 0.75rem;
  margin-top: 0.5rem;
}
.commercial-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}
.commercial-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 1.5rem;
  transition: var(--transition);
}
.commercial-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-3px);
}
.cc-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.commercial-card h3 { color: #fff; font-weight: 700; font-size: 1rem; margin-bottom: 0.5rem; }
.commercial-card p { color: rgba(255,255,255,0.7); font-size: 0.85rem; }

/* Process steps */
.service-process { margin-top: 1rem; }
.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
}
.process-step {
  flex: 1;
  min-width: 180px;
  max-width: 220px;
  text-align: center;
  padding: 2rem 1rem;
  background: var(--bg);
  border-radius: var(--border-radius);
  box-shadow: 8px 8px 16px var(--shadow-d), -8px -8px 16px var(--shadow-l);
  position: relative;
}
.step-num {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #fff;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 800;
}
.step-icon { font-size: 2rem; margin-bottom: 0.75rem; display: block; }
.process-step h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.5rem; }
.process-step p { color: var(--text-light); font-size: 0.82rem; }
.process-arrow {
  font-size: 1.5rem;
  color: var(--primary);
  margin-top: 2rem;
  flex-shrink: 0;
}

/* ===== POLL ===== */
.poll-section { }
.poll-wrapper { padding: 2.5rem; max-width: 700px; margin: 0 auto; }
.poll-header { text-align: center; margin-bottom: 2rem; }
.poll-badge {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  padding: 0.3rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.poll-header h2 { font-size: 1.4rem; font-weight: 800; margin-bottom: 0.3rem; }
.poll-header p { color: var(--text-light); font-size: 0.9rem; }
.poll-options { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 1.5rem; }
.poll-option {
  display: flex;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  transition: var(--transition);
}
.poll-option:hover { transform: translateX(4px); }
.pest-emoji { font-size: 1.5rem; flex-shrink: 0; }
.pest-name { width: 120px; font-size: 0.9rem; font-weight: 600; flex-shrink: 0; }
.poll-bar-wrapper {
  flex: 1;
  height: 12px;
  background: rgba(255,153,51,0.1);
  border-radius: 10px;
  overflow: hidden;
}
.poll-bar {
  height: 100%;
  background: linear-gradient(to right, var(--primary), var(--primary-dark));
  border-radius: 10px;
  transition: width 1s ease;
}
.poll-pct { width: 40px; text-align: right; font-size: 0.9rem; font-weight: 700; color: var(--primary); }
.poll-note { text-align: center; color: var(--text-light); font-size: 0.8rem; }

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.testimonial-card { padding: 2rem; }
.stars { font-size: 1.2rem; margin-bottom: 1rem; }
.testimonial-card p {
  color: var(--text-light);
  font-size: 0.9rem;
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}
.reviewer {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.reviewer-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.reviewer strong { display: block; font-weight: 700; font-size: 0.9rem; }
.reviewer span { color: var(--text-light); font-size: 0.8rem; }

/* ===== STATES ===== */
.states-map-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1rem;
}
.state-chip {
  padding: 0.85rem 1rem;
  text-align: center;
  transition: var(--transition);
  display: block;
  text-decoration: none;
}
.state-chip:hover { transform: translateY(-3px); }
.state-chip-name { display: block; font-size: 0.85rem; font-weight: 600; color: var(--dark); }
.state-chip-type {
  display: inline-block;
  font-size: 0.7rem;
  color: var(--primary-dark);
  font-weight: 600;
  margin-top: 0.2rem;
  background: rgba(255,153,51,0.1);
  padding: 0.1rem 0.5rem;
  border-radius: 50px;
}

/* ===== FINAL CTA ===== */
.final-cta { }
.cta-content { text-align: center; }
.cta-content h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; color: #fff; margin-bottom: 1rem; }
.cta-content p { color: rgba(255,255,255,0.8); font-size: 1.1rem; margin-bottom: 2.5rem; }
.cta-buttons { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; }

/* ===== PAGE HERO ===== */
.page-hero {
  padding: 5rem 0 4rem;
  text-align: center;
}
.page-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 1rem;
}
.page-hero p {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ===== ABOUT ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
}
.about-content h2 { font-size: 2rem; font-weight: 800; margin-bottom: 1rem; }
.about-content p { color: var(--text-light); margin-bottom: 1rem; line-height: 1.8; }
.about-stats-row {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.about-stat { text-align: center; }
.about-stat-num { display: block; font-size: 2rem; font-weight: 900; color: var(--primary); }
.about-stat-label { font-size: 0.8rem; color: var(--text-light); }
.about-image {
  padding: 2rem;
  text-align: center;
}
.about-mascot-text { margin-top: 1.5rem; }
.about-mascot-text h3 { font-size: 1.1rem; font-weight: 700; }
.about-mascot-text p { color: var(--text-light); font-size: 0.9rem; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.value-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
}
.value-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.value-card h3 { color: #fff; font-weight: 700; margin-bottom: 0.5rem; }
.value-card p { color: rgba(255,255,255,0.7); font-size: 0.9rem; }
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.5rem; }
.team-card { padding: 2rem; text-align: center; }
.team-avatar { font-size: 3rem; margin-bottom: 1rem; }
.team-card h3 { font-weight: 700; margin-bottom: 0.25rem; }
.team-title { color: var(--primary); font-size: 0.85rem; font-weight: 600; margin-bottom: 0.75rem; }
.team-card p { color: var(--text-light); font-size: 0.9rem; }

/* ===== CAMPAIGNS ===== */
.campaigns-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 1.75rem; }
.campaign-card { overflow: hidden; }
.campaign-img {
  height: 160px;
  border-radius: 12px 12px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -0.1px;
}
.campaign-body { padding: 1.5rem; }
.campaign-status {
  display: inline-block;
  padding: 0.2rem 0.75rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.campaign-status.active { background: rgba(231,76,60,0.15); color: #e74c3c; }
.campaign-status.upcoming { background: rgba(241,196,15,0.15); color: #f39c12; }
.campaign-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.5rem; }
.campaign-card p { color: var(--text-light); font-size: 0.9rem; margin-bottom: 1rem; }
.campaign-stats { display: flex; flex-wrap: wrap; gap: 1rem; }
.campaign-stats span { font-size: 0.8rem; color: var(--text-light); font-weight: 600; }
.impact-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; }
.impact-num { font-size: 2.5rem; font-weight: 900; color: var(--primary); margin-bottom: 0.5rem; }
.impact-label { color: rgba(255,255,255,0.7); font-size: 0.9rem; }
.breaking-news { padding: 2rem; margin-bottom: 2rem; }
.bn-label {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  padding: 0.3rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.breaking-news h2 { font-size: 1.5rem; font-weight: 800; margin-bottom: 0.75rem; }
.breaking-news p { color: var(--text-light); }

/* ===== JOIN ===== */
.join-intro { padding: 2.5rem; margin-bottom: 2.5rem; }
.join-intro-text h2 { font-size: 1.8rem; font-weight: 800; margin-bottom: 1rem; }
.join-intro-text p { color: var(--text-light); }
.join-options-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; margin-bottom: 3rem; }
.join-option { padding: 2rem; }
.join-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.join-option h3 { font-weight: 700; margin-bottom: 0.5rem; }
.join-option p { color: var(--text-light); font-size: 0.9rem; margin-bottom: 1rem; }
.join-option ul li {
  padding: 0.3rem 0;
  font-size: 0.85rem;
  color: var(--text-light);
  display: flex; gap: 0.5rem; align-items: flex-start;
}
.join-option ul li::before { content: '→'; color: var(--primary); font-weight: 700; flex-shrink: 0; }
.join-cta-options { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.75rem; }
.join-cta-item { font-size: 0.9rem; color: var(--text-light); }
.movement-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; }
.mvt-num { font-size: 2.5rem; font-weight: 900; color: var(--primary); }
.mvt-label { color: rgba(255,255,255,0.7); font-size: 0.9rem; }

/* ===== CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 3rem; align-items: start; }
.contact-info h2 { font-size: 1.8rem; font-weight: 800; margin-bottom: 1rem; }
.contact-info p { color: var(--text-light); margin-bottom: 2rem; }
.contact-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1.5rem; }
.contact-card { padding: 1.25rem; text-align: center; }
.contact-card-icon { font-size: 1.75rem; margin-bottom: 0.5rem; }
.contact-card h3 { font-size: 0.9rem; font-weight: 700; margin-bottom: 0.25rem; }
.contact-card p { font-size: 0.85rem; font-weight: 600; color: var(--primary-dark); }
.contact-card span { font-size: 0.75rem; color: var(--text-light); }
.contact-states-note { padding: 1.5rem; }
.contact-states-note h3 { font-weight: 700; margin-bottom: 0.5rem; }
.contact-states-note p { color: var(--text-light); font-size: 0.9rem; margin-bottom: 1rem; }
.faq-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.faq-item {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 1.5rem;
}
.faq-item h3 { color: var(--primary); font-weight: 700; margin-bottom: 0.5rem; font-size: 0.95rem; }
.faq-item p { color: rgba(255,255,255,0.7); font-size: 0.85rem; }

/* ===== STATE PAGE ===== */
.state-hero { min-height: 55vh; display: flex; align-items: center; }
.state-hero-content { max-width: 700px; }
.state-breadcrumb { color: rgba(255,255,255,0.6); font-size: 0.85rem; margin-bottom: 1rem; }
.state-breadcrumb a { color: rgba(255,255,255,0.8); }
.state-type-badge {
  display: inline-block;
  background: rgba(255,153,51,0.2);
  color: var(--primary);
  padding: 0.3rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.state-hero h1 { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 900; color: #fff; margin-bottom: 0.5rem; }
.state-slogan { color: var(--primary); font-size: 1.1rem; font-weight: 600; margin-bottom: 0.75rem; }
.state-hero-tag { color: rgba(255,255,255,0.8); font-size: 1rem; margin-bottom: 2rem; }
.state-stats-bar {
  background: var(--bg);
  padding: 1rem 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}
.state-stats-row {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  padding-bottom: 0.25rem;
}
.state-stat { text-align: center; flex-shrink: 0; }
.ss-label { display: block; font-size: 0.75rem; color: var(--text-light); text-transform: uppercase; font-weight: 600; }
.ss-val { display: block; font-size: 1rem; font-weight: 700; color: var(--dark); }
.state-story-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 3rem; align-items: start; }
.state-story-content h2 { font-size: 2rem; font-weight: 800; margin-bottom: 1rem; }
.state-story-text { color: var(--text-light); line-height: 1.8; margin-bottom: 2rem; font-size: 0.95rem; }
.pest-problems-list { margin-bottom: 2rem; }
.pest-problems-list h3 { font-weight: 700; margin-bottom: 0.75rem; }
.pest-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.pest-tag {
  background: rgba(255,153,51,0.12);
  color: var(--primary-dark);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
}
.state-facts { padding: 1.5rem; }
.state-facts h3 { font-weight: 700; margin-bottom: 1rem; }
.facts-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.5rem 0;
  font-size: 0.88rem;
  color: var(--text-light);
  border-bottom: 1px solid var(--shadow-d);
}
.facts-list li:last-child { border-bottom: none; }
.facts-list li span { color: var(--primary); flex-shrink: 0; }
.state-promise-card { padding: 2rem; position: sticky; top: 100px; }
.promise-badge {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  padding: 0.3rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.state-promise-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 0.75rem; }
.state-promise-card p { color: var(--text-light); font-size: 0.9rem; margin-bottom: 1.5rem; line-height: 1.7; }
.state-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}
.state-service-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255,255,255,0.9);
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
}
.state-service-card:hover { background: rgba(255,153,51,0.15); border-color: var(--primary); }
.ssc-icon { font-size: 1.5rem; flex-shrink: 0; }
.nearby-states-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.25rem; }
.nearby-state-card { padding: 1.5rem; display: block; text-decoration: none; transition: var(--transition); }
.nearby-state-card:hover { transform: translateY(-4px); }
.nearby-state-card h3 { font-weight: 700; margin-bottom: 0.4rem; }
.nearby-state-card p { color: var(--text-light); font-size: 0.85rem; margin-bottom: 0.75rem; }
.nearby-link { color: var(--primary); font-size: 0.85rem; font-weight: 600; }
.states-strip { padding: 2.5rem 0; }
.state-links-strip { display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; }
.state-link-chip {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.8);
  padding: 0.35rem 0.75rem;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 500;
  transition: var(--transition);
}
.state-link-chip:hover, .state-link-chip.current {
  background: var(--primary);
  color: #fff;
}

/* States index */
.states-full-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; }
.state-full-card {
  padding: 1.75rem;
  display: block;
  text-decoration: none;
  transition: var(--transition);
}
.state-full-card:hover { transform: translateY(-5px); }
.sfc-region { font-size: 0.75rem; font-weight: 700; color: var(--primary-dark); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 0.5rem; }
.state-full-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--dark); margin-bottom: 0.4rem; }
.sfc-slogan { color: var(--text-light); font-size: 0.85rem; margin-bottom: 0.75rem; font-style: italic; }
.sfc-pests { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 1rem; }
.sfc-pest-tag {
  background: rgba(255,153,51,0.1);
  color: var(--primary-dark);
  padding: 0.2rem 0.6rem;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 600;
}
.sfc-cta { color: var(--primary); font-size: 0.85rem; font-weight: 600; }

/* ===== FOOTER ===== */
.footer { background: #1a1a2e; }
.footer-wave { line-height: 0; }
.footer-main { padding: 4rem 0 2rem; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 2rem;
}
.footer-brand {}
.footer-logo { height: 60px; width: 60px; border-radius: 50%; margin-bottom: 1rem; }
.footer-tagline { color: rgba(255,255,255,0.6); font-size: 0.85rem; line-height: 1.7; margin-bottom: 1.5rem; }
.footer-social { }
.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.8);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  transition: var(--transition);
}
.social-btn:hover { background: var(--primary); color: #fff; }
.footer-col h4 { color: #fff; font-weight: 700; font-size: 0.95rem; margin-bottom: 1rem; }
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul li a {
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--primary); }
.contact-list li { color: rgba(255,255,255,0.6); font-size: 0.82rem; margin-bottom: 0.5rem; }
.contact-list li a { color: rgba(255,255,255,0.6); }
.contact-list li a:hover { color: var(--primary); }
.footer-badges { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.badge {
  display: inline-block;
  background: rgba(255,153,51,0.15);
  color: var(--primary);
  padding: 0.3rem 0.8rem;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  width: fit-content;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.5rem 0;
}
.footer-bottom-content { text-align: center; }
.footer-bottom-content p { color: rgba(255,255,255,0.5); font-size: 0.8rem; margin-bottom: 0.25rem; }
.footer-disclaimer { font-size: 0.72rem !important; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand { grid-column: 1/-1; }
}

@media (max-width: 768px) {
  .nav-menu { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--bg); padding: 1.5rem; box-shadow: 0 20px 40px rgba(0,0,0,0.1); z-index: 999; }
  .nav-menu.open { display: flex; }
  .nav-toggle { display: flex; }
  .hero-content { grid-template-columns: 1fr; text-align: center; }
  .hero-ctas { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-image { order: -1; }
  .lead-grid { grid-template-columns: 1fr; }
  .lead-form .form-row { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-cards { grid-template-columns: 1fr 1fr; }
  .state-story-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1/-1; }
  .impact-grid { grid-template-columns: repeat(2, 1fr); }
  .movement-stats { grid-template-columns: repeat(2, 1fr); }
  .manifesto-point { flex-direction: column; gap: 0.75rem; }
  .section { padding: 3rem 0; }
  .process-steps { flex-direction: column; align-items: center; }
  .process-arrow { transform: rotate(90deg); margin: 0.5rem 0; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; justify-content: center; gap: 1rem; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
}
