/* =====================================================
   MosquitoControl.com — Home Page CSS
   Hosted: https://mosquitocontrol.com/wp-content/uploads/mc/mc-home.css
   ===================================================== */

:root {
  --mc-deep:    #0F2822;
  --mc-green:   #138A2E;
  --mc-mid:     #1a6b30;
  --white:      #ffffff;
  --cream:      #deeee2;
  --text-dark:  #1a1a1a;
  --text-mid:   #555555;
  --border:     #e0e0e0;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Open Sans', -apple-system, sans-serif; color: var(--text-dark); background: var(--white); }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== HEADER ===== */
.header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo-img {
  height: 80px !important;
  max-height: 80px !important;
  width: auto !important;
  max-width: 260px !important;
  object-fit: contain;
}
.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: nowrap;
}
.nav a {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #333;
  white-space: nowrap;
  transition: color 0.2s;
}
.nav a:hover { color: var(--mc-green); }
.nav a.active {
  color: var(--mc-green);
  font-weight: 700;
  border-bottom: 2px solid var(--mc-green);
  padding-bottom: 2px;
}
.header-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.search-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: #333;
  padding: 4px;
  display: flex;
  align-items: center;
}
.search-btn svg { width: 20px; height: 20px; }
.cta-header {
  background: var(--mc-green);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 10px 20px;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}
.cta-header:hover { background: var(--mc-deep); }

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 580px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(15,40,34,0.82) 0%,
    rgba(15,40,34,0.60) 45%,
    rgba(15,40,34,0.08) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 540px;
  padding: 0 60px;
}
.hero-tag {
  display: inline-block;
  background: var(--mc-green);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 18px;
}
.hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 48px;
  font-weight: 900;
  color: #fff;
  line-height: 1.12;
  margin-bottom: 20px;
}
.hero p {
  font-size: 17px;
  color: rgba(255,255,255,0.90);
  line-height: 1.65;
  margin-bottom: 34px;
  max-width: 460px;
}
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary {
  background: var(--mc-green);
  color: #fff;
  border: 2px solid var(--mc-green);
  border-radius: 6px;
  padding: 13px 26px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
}
.btn-primary:hover { background: #0e7225; border-color: #0e7225; }
.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.8);
  border-radius: 6px;
  padding: 13px 26px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
}
.btn-outline:hover { background: rgba(255,255,255,0.15); }

/* ===== FIGHT BACK SECTION ===== */
.fight-back {
  background: var(--mc-mid);
  padding: 80px 24px;
  text-align: center;
}
.fight-back h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 34px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 18px;
  line-height: 1.2;
}
.fight-back p {
  max-width: 640px;
  margin: 0 auto;
  font-size: 17px;
  color: rgba(255,255,255,0.80);
  line-height: 1.75;
}

/* ===== BROWSE BY CATEGORY ===== */
.browse-cats {
  background: var(--cream);
  padding: 72px 24px;
}
.section-divider {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
  margin-bottom: 44px;
}
.section-divider::before,
.section-divider::after {
  content: '';
  flex: 1;
  max-width: 100px;
  height: 1px;
  background: #bbb;
}
.section-divider h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: var(--mc-deep);
  white-space: nowrap;
}
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}
.cat-card {
  background: var(--white);
  border-radius: 12px;
  padding: 30px 20px 24px;
  text-align: center;
  border: 1px solid var(--border);
  transition: box-shadow 0.2s, transform 0.2s;
  cursor: pointer;
}
.cat-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,0.10); transform: translateY(-4px); }
.cat-icon { font-size: 38px; margin-bottom: 14px; display: block; }
.cat-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--mc-deep);
  margin-bottom: 8px;
}
.cat-desc { font-size: 13px; color: var(--text-mid); line-height: 1.5; margin-bottom: 18px; }
.cat-link {
  color: var(--mc-green);
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s;
}
.cat-link:hover { gap: 8px; }

/* ===== FEATURED PRODUCTS (Do Your Own) ===== */
.featured-products {
  background: var(--cream);
  padding: 80px 24px;
}
.featured-products-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 36px;
  flex-wrap: wrap;
  gap: 12px;
}
.featured-products-header h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--mc-deep);
  line-height: 1.2;
}
.featured-products-header p {
  font-size: 14px;
  color: var(--text-mid);
  margin-top: 6px;
}
.dyopc-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 6px 16px;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--mc-deep);
  white-space: nowrap;
}
.dyopc-badge span { color: var(--mc-green); }
.fp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.fp-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
}
.fp-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,0.10); transform: translateY(-4px); }
.fp-img-wrap {
  background: var(--white);
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.fp-img-wrap img { width: 100%; height: 100%; object-fit: contain; padding: 20px; }
.fp-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.fp-source {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--mc-green);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.fp-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--mc-deep);
  margin-bottom: 10px;
  line-height: 1.3;
}
.fp-desc {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 18px;
}
.fp-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  gap: 12px;
}
.fp-price {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--mc-deep);
}
.fp-btn {
  background: var(--mc-green);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 10px 18px;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  transition: background 0.2s;
  display: inline-block;
}
.fp-btn:hover { background: var(--mc-deep); }
.fp-view-all {
  text-align: center;
  margin-top: 36px;
}
.fp-view-all a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--mc-green);
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 700;
  transition: gap 0.2s;
}
.fp-view-all a:hover { gap: 12px; }

/* ===== BEST BACKYARD PRODUCTS ===== */
.best-products {
  background: var(--white);
  padding: 80px 24px;
}
.best-products-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: start;
}
.best-products-callout {
  background: var(--mc-deep);
  border-radius: 16px;
  padding: 44px 36px;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-height: 340px;
  justify-content: center;
}
.best-products-callout .eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #a8e6b4;
}
.best-products-callout h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.25;
  color: #fff;
}
.best-products-callout p {
  font-size: 15px;
  color: rgba(255,255,255,0.80);
  line-height: 1.65;
}
.callout-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--mc-green);
  color: #fff;
  border-radius: 6px;
  padding: 12px 22px;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  width: fit-content;
  transition: background 0.2s;
}
.callout-btn:hover { background: #0e7225; }
.best-products-list { display: flex; flex-direction: column; gap: 0; }
.best-products-list h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--mc-deep);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.product-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.product-row:last-child { border-bottom: none; }
.product-thumb {
  width: 64px;
  height: 64px;
  border-radius: 10px;
  object-fit: cover;
  background: var(--cream);
  flex-shrink: 0;
}
.product-row-name {
  flex: 1;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--mc-deep);
  line-height: 1.3;
}
.product-row-btn {
  background: var(--mc-green);
  color: #fff;
  border: none;
  border-radius: 20px;
  padding: 9px 20px;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background 0.2s;
  text-decoration: none;
}
.product-row-btn:hover { background: var(--mc-deep); }
.view-all-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  color: var(--mc-green);
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  transition: gap 0.2s;
}
.view-all-link:hover { gap: 10px; }

/* ===== SEASONAL GUIDES ===== */
.seasonal {
  background: var(--cream);
  padding: 72px 24px;
}
.seasonal h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--mc-deep);
  margin-bottom: 32px;
}
.season-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.season-card {
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  height: 210px;
  cursor: pointer;
}
.season-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s;
}
.season-card:hover img { transform: scale(1.06); }
.season-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,40,34,0.88) 0%, rgba(15,40,34,0.18) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px 18px;
}
.season-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #a8e6b4;
  margin-bottom: 6px;
}
.season-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.92);
  line-height: 1.45;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--mc-deep);
  color: rgba(255,255,255,0.80);
  padding: 60px 24px 32px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer-logo-img {
  height: 60px;
  width: auto;
  margin-bottom: 16px;
  border-radius: 8px;
  padding: 6px 10px;
  background: #fff;
}
.footer-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  max-width: 270px;
}
.footer h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
  margin-bottom: 16px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,0.65); transition: color 0.2s; }
.footer-links a:hover { color: #fff; }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  text-align: center;
}
