:root {
  --primary: #2e7d32;
  --primary-dark: #1f5e27;
  --secondary: #ff6b35;
  --dark: #17351b;
  --light: #f8f9fa;
  --text: #555;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  color: #333;
  line-height: 1.6;
  padding-top: 80px;
  background: #fff;
}

/* ---------------- NAV ---------------- */
/* ---------------- NAVBAR ---------------- */

.navbar {
  background: white;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 0.8rem 0;
}

.navbar-brand {
  display: flex;
  align-items: center;
}

.nav-logo {
  height: 42px;
  width: auto;
}

.main-logo {
  height: 38px;
  width: auto;
}

.nav-link {
  color: #17351b !important;
  font-weight: 600;
  margin-left: 1rem;
  transition: 0.2s;
}

.nav-link:hover {
  color: var(--primary) !important;
}

.navbar-toggler {
  border: 1px solid rgba(46, 125, 50, 0.3);
}

.navbar-toggler-icon {
  filter: invert(37%) sepia(42%) saturate(900%) hue-rotate(80deg);
}

/* ---------------- HERO ---------------- */

.hero {
  padding: 110px 0;
  background:
    linear-gradient(rgba(17, 55, 28, 0.82), rgba(17, 55, 28, 0.82)),
    url("van.png?auto=format&fit=crop&w=1800&q=80")
      center/cover;
  color: white;
}

.hero h1 {
  line-height: 1.1;
}

.hero p {
  color: rgba(255, 255, 255, 0.9);
}

.hero img {
  border-radius: 20px;
}

/* ---------------- HERO PROMOTION ---------------- */

.hero-offer {
  background: white;
  color: #333;
  border-radius: 18px;
  overflow: hidden;
  max-width: 650px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.18);
  border: 3px solid var(--secondary);
}

.hero-offer-top {
  background: var(--secondary);
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 18px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.hero-offer-expiry {
  text-transform: uppercase;
}

.hero-offer-content {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 22px 24px 16px;
}

.hero-discount {
  min-width: 105px;
  height: 105px;
  border-radius: 50%;
  background: #eaf6ea;
  color: var(--primary);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  line-height: 0.9;
  border: 4px solid var(--primary);
  flex-shrink: 0;
}

.hero-discount strong {
  font-size: 2.7rem;
  font-weight: 800;
}

.hero-discount span {
  font-size: 0.9rem;
  font-weight: 800;
  margin-top: 5px;
}

.hero-offer-content h3 {
  color: #17351b;
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.hero-offer-content p {
  color: #666;
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.5;
}

.hero-offer-code {
  border-top: 1px dashed #ddd;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #666;
  font-size: 0.9rem;
}

.hero-offer-code strong {
  background: #17351b;
  color: white;
  padding: 4px 10px;
  border-radius: 6px;
  letter-spacing: 0.08em;
}

/* ---------------- HERO IMAGE ---------------- */

.hero-image-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
}

.hero-image-wrapper > img {
  width: 100%;
  min-height: 460px;
  object-fit: cover;
  border: 5px solid rgba(255, 255, 255, 0.9);
}

.hero-save-badge {
  position: absolute;
  z-index: 2;
  top: -20px;
  right: -15px;

  width: 125px;
  height: 125px;

  border-radius: 50%;

  background: var(--secondary);
  color: white;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  border: 5px solid white;

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);

  transform: rotate(8deg);
}

.hero-save-badge span {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.hero-save-badge strong {
  font-size: 2.3rem;
  line-height: 1;
  font-weight: 800;
}

.hero-save-badge small {
  font-size: 0.55rem;
  font-weight: 700;
  margin-top: 4px;
}

.hero-image-card {
  position: absolute;
  bottom: 25px;
  left: -25px;

  background: white;
  color: #17351b;

  border-radius: 14px;

  padding: 15px 18px;

  display: flex;
  align-items: center;
  gap: 12px;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);

  text-align: left;
}

.hero-image-card i {
  width: 42px;
  height: 42px;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #eaf6ea;
  color: var(--primary);

  font-size: 1.3rem;
}

.hero-image-card strong {
  display: block;
  font-size: 0.9rem;
}

.hero-image-card span {
  display: block;
  color: #777;
  font-size: 0.75rem;
  margin-top: 2px;
}

.hero-disclaimer {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.75rem;
}

/* ---------------- HERO RESPONSIVE ---------------- */

@media (max-width: 991px) {
  .hero-offer {
    margin-left: auto;
    margin-right: auto;
    text-align: left;
  }

  .hero-image-wrapper {
    max-width: 600px;
  }

  .hero-image-wrapper > img {
    min-height: 400px;
  }

  .hero-save-badge {
    right: -5px;
  }

  .hero-image-card {
    left: 15px;
  }
}

@media (max-width: 576px) {
  .hero-offer-content {
    gap: 14px;
    padding: 18px;
  }

  .hero-discount {
    min-width: 80px;
    width: 80px;
    height: 80px;
  }

  .hero-discount strong {
    font-size: 2rem;
  }

  .hero-offer-content h3 {
    font-size: 1rem;
  }

  .hero-offer-content p {
    font-size: 0.8rem;
  }

  .hero-save-badge {
    width: 95px;
    height: 95px;
    right: 5px;
    top: -15px;
  }

  .hero-save-badge strong {
    font-size: 1.8rem;
  }

  .hero-image-card {
    left: 10px;
    right: 10px;
    bottom: 15px;
  }
}

/* ---------------- BUTTONS ---------------- */

.btn-brand {
  background: #ff6b35;
  border: none;
  color: white;
  font-weight: 700;
  padding: 0.9rem 2rem;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(255, 107, 53, 0.25);
  transition: 0.25s;
}

.btn-brand:hover {
  background: #ff5722;
  color: white;
  transform: translateY(-2px);
}

/* ---------------- SECTIONS ---------------- */

section {
  padding: 30px 0;
}

h2 {
  margin-bottom: 1rem;
}

/* ---------------- CARDS ---------------- */
.service-card {
  border: none;
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
  padding: 20px;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}

.service-photo {
  width: 110px;
  height: 110px;

  margin: auto;

  border-radius: 50%;

  object-fit: cover;

  border: 5px solid #eef7ef;

  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

.service-card h4 {
  font-weight: 700;
  margin-top: 1.5rem;
}

.service-card p {
  margin-top: 0.75rem;
}

/* ---------------- FEATURES ---------------- */

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  margin-right: 20px;
  flex-shrink: 0;
}

/* ---------------- PROCESS ---------------- */

.process-circle {
  width: 70px;
  height: 70px;
  margin: auto;
  border-radius: 50%;
  background: var(--secondary);
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8rem;
  font-weight: 800;
}

/* ---------------- TESTIMONIALS ---------------- */
.testimonial {
  background: white;
  border-radius: 20px;
  padding: 35px 25px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
  height: 100%;
  transition: 0.25s;
}

.testimonial:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

.testimonial-img {
  width: 85px;
  height: 85px;
  border-radius: 50%;
  object-fit: cover;
  margin-top: -65px;
  border: 5px solid white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.stars {
  color: #ffb400;
  font-size: 1.15rem;
  letter-spacing: 2px;
}

/* ---------------- FAQ ---------------- */

.accordion-button:not(.collapsed) {
  background: var(--primary);
  color: white;
}

.accordion-button:focus {
  box-shadow: none;
}

.custom-faq .accordion-item {
  border: none;

  margin-bottom: 15px;

  border-radius: 15px;

  overflow: hidden;

  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.07);

  background: white;
}

.custom-faq .accordion-button {
  font-size: 1.05rem;

  font-weight: 700;

  padding: 22px 25px;

  color: #17351b;

  background: white;
}

.custom-faq .accordion-button:not(.collapsed) {
  background: #2e7d32;

  color: white;

  box-shadow: none;
}

.custom-faq .accordion-button:focus {
  box-shadow: none;

  border-color: transparent;
}

.custom-faq .accordion-button::after {
  filter: none;
}

.custom-faq .accordion-button:not(.collapsed)::after {
  filter: brightness(0) invert(1);
}

.custom-faq .accordion-body {
  background: #fff;

  padding: 25px 30px;

  color: #555;

  font-size: 1rem;

  line-height: 1.8;

  border-top: 1px solid #eee;
}

/* ---------------- CONTACT ---------------- */

.disabled-form {
  opacity: 0.55;
  pointer-events: none;
}

.disabled-form .form-control {
  background: #e9ecef;
  cursor: not-allowed;
}

.contact-section .alert-warning {
  background: #fff3cd;
  border: none;
  border-radius: 12px;
  color: #664d03;
  padding: 20px;
}

.disabled-form button {
  cursor: not-allowed;
}

.contact-section {
  background: linear-gradient(180deg, #f8f9fa, #eef7ef);
}

.contact-section .card {
  border-radius: 20px;
}

.form-control {
  border-radius: 10px;
  padding: 0.9rem 1rem;
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 0.2rem rgba(46, 125, 50, 0.15);
}

/* ---------- FOOTER ---------- */

.footer {
  background: #fff;

  border-top: 6px solid var(--primary);

  padding: 45px 0 20px;

  margin-top: 80px;

  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.04);
}

.footer-logo {
  height: 80px;
  width: auto;
  display: block;
}

.footer-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 28px;

  list-style: none;

  margin: 0;
  padding: 0;
}

.footer-nav a {
  text-decoration: none;

  font-weight: 600;

  color: #3c3c3c;

  transition: 0.2s;
}

.footer-nav a:hover {
  color: var(--primary);
}

.footer-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  text-decoration: none;

  font-size: 1.2rem;
  font-weight: 700;

  color: var(--primary);
}

.footer-phone:hover {
  color: var(--secondary);
}

.footer-phone i {
  font-size: 1.15rem;
}

.footer-hours {
  margin-top: 8px;

  font-size: 0.9rem;

  color: #777;
}

.footer-bottom {
  margin-top: 35px;

  padding-top: 20px;

  border-top: 1px solid #e7e7e7;

  text-align: center;

  font-size: 0.9rem;

  color: #888;
}

@media (max-width: 991px) {
  .footer-logo {
    margin: 0 auto 20px;
  }

  .footer-nav {
    gap: 16px;

    margin-bottom: 20px;
  }

  .footer-phone {
    justify-content: center;
  }
}

/* ---------------- HELPERS ---------------- */

.bg-success {
  background: var(--primary) !important;
}

.text-success {
  color: var(--primary) !important;
}

.display-3,
.display-5 {
  color: var(--primary);
}

/* ---------------- RESPONSIVE ---------------- */

@media (max-width: 991px) {
  .hero {
    text-align: center;
    padding: 80px 0;
  }

  .hero img {
    margin-top: 40px;
  }

  .nav-link {
    margin-left: 0;
    padding: 0.75rem 0;
  }
}

@media (max-width: 768px) {
  section {
    padding: 70px 0;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .display-3 {
    font-size: 2rem;
  }

  .process-circle {
    margin-bottom: 20px;
  }
}

.nav-logo {
  height: 42px;
  width: auto;
}

.main-logo {
  height: 36px;
  width: auto;
}

.footer-logo {
  height: 80px;
  width: auto;
}

@media (max-width: 768px) {
  .nav-logo {
    height: 36px;
  }

  .main-logo {
    height: 30px;
  }

  .footer-logo {
    height: 42px;
  }
}

.hero .btn {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hero .btn i {
  line-height: 1;
}

/* ---------------- PRICING ---------------- */

.pricing-card {
  border: none;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  position: relative;
  transition: 0.25s;
  cursor: pointer;
}

.pricing-card:hover,
.pricing-card:focus-within {
  transform: translateY(-10px);
  box-shadow: 0 25px 55px rgba(46, 125, 50, 0.25);
  border: 3px solid var(--primary);
}

.pricing-card .btn {
  transition: 0.25s;
}

.pricing-card:hover .btn,
.pricing-card:focus-within .btn {
  background: var(--primary);
  color: white;
}

.price {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
}

.price span {
  font-size: 1rem;
  font-weight: 400;
  color: #777;
}

.featured {
  border: 3px solid var(--secondary);
}

.featured:hover,
.featured:focus-within {
  border-color: var(--primary);
}

.popular-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);

  background: var(--secondary);
  color: white;

  padding: 6px 20px;

  border-radius: 30px;

  font-size: 0.8rem;

  font-weight: 700;
}

/* ---------------- INSPECTION PREP ---------------- */

.inspection-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;

  border-radius: 50%;

  background: var(--primary);
  color: white;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 1.3rem;

  margin-right: 20px;
}

.inspection-step h5 {
  font-weight: 700;
}

.inspection-step p {
  color: #666;
}

.prep-card {
  background: white;

  border-radius: 18px;

  overflow: hidden;

  height: 100%;

  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);

  transition: 0.25s;
}

.prep-card:hover {
  transform: translateY(-8px);
}

.prep-card img {
  width: 100%;

  height: 220px;

  object-fit: cover;
}

.prep-card h5 {
  padding: 20px 20px 0;

  font-weight: 700;
}

.prep-card p {
  padding: 0 20px 20px;

  color: #666;
}

/* Service dropdown */

.dropdown-menu {
  border: none;
  border-radius: 15px;
  padding: 10px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.dropdown-item {
  padding: 12px 18px;

  font-weight: 600;

  border-radius: 8px;
}

.dropdown-item:hover {
  background: #eaf6ea;

  color: #2e7d32;
}

/* =========================================================
   Pest Secure SALES HERO
   ========================================================= */

.pest-hero {
  position: relative;
  padding: 48px 0 0;
  background: #f6faf6;
  overflow: hidden;
}

/* subtle background decoration */

.pest-hero::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(46, 125, 50, 0.06);
  top: -250px;
  right: -180px;
  pointer-events: none;
}

.pest-hero::after {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: rgba(255, 107, 53, 0.04);
  bottom: -220px;
  left: -150px;
  pointer-events: none;
}

.pest-hero .container {
  position: relative;
  z-index: 2;
}

/* =========================================================
   MAIN HERO LAYOUT
   ========================================================= */

.pest-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(400px, 0.9fr);
  align-items: center;
  gap: 55px;
  min-height: 470px;
}

/* =========================================================
   LEFT CONTENT
   ========================================================= */

.pest-hero-content {
  max-width: 620px;
}

.pest-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  color: var(--primary);
  background: #eaf6ea;

  padding: 8px 14px;
  border-radius: 30px;

  font-size: 0.85rem;
  font-weight: 800;

  margin-bottom: 18px;
}

.pest-hero-eyebrow i {
  font-size: 1rem;
}

/* =========================================================
   HEADLINE
   ========================================================= */

.pest-hero h1 {
  margin: 0;
  color: var(--dark);

  font-size: clamp(2.7rem, 5vw, 4.4rem);
  line-height: 1.02;

  font-weight: 800;
  letter-spacing: -0.045em;
}

.pest-hero h1 span {
  /*display: block;*/
  color: var(--primary);
}

/* =========================================================
   DESCRIPTION
   ========================================================= */

.pest-hero-text {
  max-width: 560px;

  margin: 22px 0;

  color: #555;

  font-size: 1.1rem;
  line-height: 1.7;
}

/* =========================================================
   OFFER BOX
   ========================================================= */

.pest-hero-offer {
  display: inline-flex;
  align-items: center;
  gap: 14px;

  padding: 12px 18px;

  background: white;

  border: 1px solid #dcebdc;
  border-radius: 14px;

  box-shadow: 0 8px 25px rgba(23, 53, 27, 0.08);

  margin-bottom: 22px;
}

.offer-icon {
  width: 42px;
  height: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: var(--secondary);
  color: white;

  font-size: 1.1rem;
}

.pest-hero-offer strong {
  display: block;

  color: var(--secondary);

  font-size: 1.15rem;
  font-weight: 800;

  line-height: 1.1;
}

.pest-hero-offer span {
  display: block;

  margin-top: 3px;

  color: #777;

  font-size: 0.82rem;
}

/* =========================================================
   ACTIONS
   ========================================================= */

.pest-hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.pest-hero-actions .btn-brand {
  min-height: 54px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 0.85rem 1.6rem;
}

.pest-hero-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;

  color: var(--dark);

  text-decoration: none;

  font-weight: 700;

  transition: 0.2s;
}

.pest-hero-link:hover {
  color: var(--primary);
}

.pest-hero-link i {
  font-size: 0.8rem;
}

/* =========================================================
   SMALL DISCLAIMER / TRUST LINE
   ========================================================= */

.pest-hero-note {
  display: flex;
  align-items: center;
  gap: 7px;

  margin-top: 16px;

  color: #777;

  font-size: 0.85rem;
}

.pest-hero-note i {
  color: var(--primary);
}

/* =========================================================
   RIGHT IMAGE
   ========================================================= */

.pest-hero-visual {
  position: relative;
}

.pest-hero-image-wrap {
  position: relative;

  height: 455px;

  overflow: hidden;

  border-radius: 28px;

  background: #dfeee0;

  box-shadow: 0 25px 55px rgba(23, 53, 27, 0.16);
}

.pest-hero-image {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;
  object-position: center;

  transition: transform 0.5s ease;
}

.pest-hero-image-wrap:hover .pest-hero-image {
  transform: scale(1.03);
}

/* =========================================================
   IMAGE OVERLAY
   ========================================================= */

.pest-hero-image-overlay {
  position: absolute;

  inset: 0;

  background: linear-gradient(
    180deg,
    rgba(23, 53, 27, 0) 45%,
    rgba(23, 53, 27, 0.48) 100%
  );

  pointer-events: none;
}

/* =========================================================
   IMAGE BADGE
   ========================================================= */

.pest-hero-badge {
  position: absolute;

  left: 22px;
  bottom: 22px;

  display: flex;
  align-items: center;
  gap: 12px;

  padding: 13px 17px;

  background: rgba(255, 255, 255, 0.96);

  border-radius: 14px;

  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.pest-hero-badge > i {
  color: var(--primary);

  font-size: 1.6rem;
}

.pest-hero-badge strong {
  display: block;

  color: var(--dark);

  font-size: 0.9rem;
  font-weight: 800;
}

.pest-hero-badge span {
  display: block;

  margin-top: 2px;

  color: #777;

  font-size: 0.75rem;
}

/* =========================================================
   BOTTOM BENEFITS
   ========================================================= */

.pest-hero-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);

  margin-top: 35px;

  background: white;

  border-radius: 18px 18px 0 0;

  box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.04);

  overflow: hidden;
}

.hero-benefit {
  display: flex;
  align-items: center;

  gap: 14px;

  padding: 21px 25px;

  border-right: 1px solid #e9eee9;
}

.hero-benefit:last-child {
  border-right: none;
}

.hero-benefit > i {
  width: 42px;
  height: 42px;

  min-width: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: #eaf6ea;
  color: var(--primary);

  font-size: 1.1rem;
}

.hero-benefit strong {
  display: block;

  color: var(--dark);

  font-size: 0.9rem;
  font-weight: 800;
}

.hero-benefit span {
  display: block;

  margin-top: 2px;

  color: #777;

  font-size: 0.76rem;
}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991px) {
  .pest-hero {
    padding-top: 40px;
  }

  .pest-hero-inner {
    grid-template-columns: 1fr;
    gap: 35px;

    min-height: auto;
  }

  .pest-hero-content {
    max-width: 750px;
    text-align: center;
    margin: 0 auto;
  }

  .pest-hero-text {
    margin-left: auto;
    margin-right: auto;
  }

  .pest-hero-offer {
    text-align: left;
  }

  .pest-hero-actions {
    justify-content: center;
  }

  .pest-hero-note {
    justify-content: center;
  }

  .pest-hero-visual {
    max-width: 700px;
    width: 100%;
    margin: 0 auto;
  }

  .pest-hero-image-wrap {
    height: 400px;
  }

  .pest-hero-benefits {
    grid-template-columns: 1fr;
  }

  .hero-benefit {
    border-right: none;
    border-bottom: 1px solid #e9eee9;
  }

  .hero-benefit:last-child {
    border-bottom: none;
  }
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 768px) {
  .pest-hero {
    padding-top: 30px;
  }

  .pest-hero-inner {
    gap: 28px;
  }

  .pest-hero h1 {
    font-size: 2.65rem;
    letter-spacing: -0.035em;
  }

  .pest-hero-text {
    font-size: 1rem;
    margin: 18px auto;
  }

  .pest-hero-offer {
    margin-bottom: 18px;
  }

  .pest-hero-actions {
    flex-direction: column;
    gap: 14px;
  }

  .pest-hero-actions .btn-brand {
    width: 100%;
  }

  .pest-hero-link {
    padding: 5px;
  }

  .pest-hero-image-wrap {
    height: 330px;
    border-radius: 20px;
  }

  .pest-hero-badge {
    left: 14px;
    bottom: 14px;

    padding: 10px 13px;
  }

  .pest-hero-badge > i {
    font-size: 1.35rem;
  }

  .pest-hero-badge strong {
    font-size: 0.8rem;
  }

  .pest-hero-badge span {
    font-size: 0.7rem;
  }

  .pest-hero-benefits {
    margin-top: 25px;
    border-radius: 14px 14px 0 0;
  }

  .hero-benefit {
    padding: 17px 18px;
  }
}

/* =========================================================
   SMALL PHONES
   ========================================================= */

@media (max-width: 480px) {
  .pest-hero h1 {
    font-size: 2.25rem;
  }

  .pest-hero-eyebrow {
    font-size: 0.75rem;
  }

  .pest-hero-image-wrap {
    height: 290px;
  }

  .pest-hero-offer {
    width: 100%;
    justify-content: flex-start;
  }

  .hero-benefit span {
    font-size: 0.72rem;
  }
}

/* -------------------------------------------------
         PRICING PAGE ADDITIONS
         Uses the existing Pest Secure styles.css
      ------------------------------------------------- */

.pricing-hero {
  padding: 100px 0;
  background:
    linear-gradient(rgba(17, 55, 28, 0.86), rgba(17, 55, 28, 0.86)),
    url("van.png?auto=format&fit=crop&w=1800&q=80")
      center/cover;
  color: white;
}

.pricing-hero h1 {
  color: white;
  font-weight: 800;
}

.pricing-hero p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 750px;
  margin: 0 auto;
}

.pricing-nav {
  position: sticky;
  top: 80px;
  z-index: 900;
  background: white;
  border-bottom: 1px solid #e8e8e8;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.pricing-nav a {
  color: #17351b;
  font-weight: 700;
  text-decoration: none;
  padding: 15px 12px;
  display: inline-block;
}

.pricing-nav a:hover {
  color: var(--primary);
}

.pricing-card .card-body {
  display: flex;
  flex-direction: column;
}

.pricing-card ul {
  flex-grow: 1;
}

.pricing-card li {
  margin-bottom: 12px;
}

.pricing-card li i {
  margin-right: 8px;
}

.pricing-note {
  font-size: 0.9rem;
  color: #777;
}

.plan-label {
  display: inline-block;
  background: #eaf6ea;
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 800;
  padding: 6px 12px;
  border-radius: 30px;
  margin-bottom: 12px;
}

.recurring-card {
  border: none;
  border-radius: 20px;
  background: white;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
  height: 100%;
  transition: 0.25s;
  overflow: hidden;
}

.recurring-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(46, 125, 50, 0.18);
}

.recurring-header {
  background: var(--primary);
  color: white;
  padding: 25px;
}

.recurring-header h3 {
  color: white;
  font-weight: 800;
}

.recurring-header p {
  margin-bottom: 0;
  opacity: 0.9;
}

.recurring-body {
  padding: 25px;
}

.recurring-price {
  color: var(--primary);
  font-size: 1.5rem;
  font-weight: 800;
}

.recurring-price small {
  color: #777;
  font-size: 0.9rem;
  font-weight: 500;
}

.discount-card {
  background: white;
  border-radius: 20px;
  padding: 30px;
  height: 100%;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.07);
  border-left: 5px solid var(--secondary);
}

.discount-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff0eb;
  color: var(--secondary);
  font-size: 1.5rem;
  margin-bottom: 18px;
}

.discount-percent {
  color: var(--secondary);
  font-size: 2rem;
  font-weight: 800;
}

.pest-price-card {
  background: white;
  border-radius: 18px;
  padding: 28px;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
  transition: 0.25s;
  border: 1px solid #eeeeee;
}

.pest-price-card:hover {
  transform: translateY(-6px);
  border-color: #b8dcb9;
  box-shadow: 0 18px 40px rgba(46, 125, 50, 0.14);
}

.pest-icon {
  width: 62px;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eaf6ea;
  color: var(--primary);
  border-radius: 15px;
  font-size: 1.8rem;
  margin-bottom: 18px;
}

.pest-price {
  color: var(--primary);
  font-size: 1.5rem;
  font-weight: 800;
}

.bundle-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
  transition: 0.25s;
  border: 2px solid transparent;
}

.bundle-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
  box-shadow: 0 20px 45px rgba(46, 125, 50, 0.16);
}

.bundle-top {
  background: #eef7ef;
  padding: 25px;
}

.bundle-top h3 {
  color: var(--dark);
  font-weight: 800;
}

.bundle-body {
  padding: 25px;
}

.bundle-saving {
  color: var(--secondary);
  font-weight: 800;
}

.original-price {
  text-decoration: line-through;
  color: #999;
  margin-right: 8px;
}

.final-price {
  color: var(--primary);
  font-size: 1.5rem;
  font-weight: 800;
}

.pricing-cta {
  background: linear-gradient(135deg, #eef7ef, #f8f9fa);
  border-radius: 25px;
  padding: 60px 30px;
}

.pricing-cta h2 {
  color: var(--dark);
  font-weight: 800;
}

.check-list {
  list-style: none;
  padding: 0;
}

.check-list li {
  margin-bottom: 12px;
}

.check-list i {
  color: var(--primary);
  margin-right: 8px;
}

@media (max-width: 991px) {
  .pricing-nav {
    top: 68px;
  }

  .pricing-nav .container {
    overflow-x: auto;
    white-space: nowrap;
  }
}

/* ---------------- FULLY BOOKED MODAL ---------------- */

.fully-booked-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eaf6ea;
  color: var(--primary);
  font-size: 1.8rem;
}

#fullyBookedModal .modal-content {
  border-radius: 20px !important;
}

#fullyBookedModal .modal-header {
  background: var(--primary) !important;
}

#fullyBookedModal .alert-warning {
  background: #fff8e1;
  color: #664d03;
}

/* =========================================================
   ABOUT PAGE — COMPANY STORY
   ========================================================= */

.about-story {
  background: #fff;
  overflow: hidden;
}

.about-story h2,
.about-story h3,
.about-story h5 {
  color: var(--dark);
}

.about-story-image {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(23, 53, 27, 0.14);
  background: #eef7ef;
}

.about-story-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.about-story-image:hover img {
  transform: scale(1.03);
}

.about-story-image-main {
  border: 6px solid #eef7ef;
}

.about-image-badge {
  position: absolute;
  left: 22px;
  bottom: 22px;

  display: flex;
  align-items: center;
  gap: 12px;

  padding: 14px 18px;

  background: rgba(255, 255, 255, 0.96);
  border-radius: 15px;

  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.about-image-badge i {
  width: 42px;
  height: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: #eaf6ea;
  color: var(--primary);

  font-size: 1.3rem;
}

.about-image-badge strong {
  display: block;
  color: var(--dark);
  font-size: 0.9rem;
}

.about-image-badge span {
  display: block;
  color: #777;
  font-size: 0.75rem;
  margin-top: 2px;
}


/* STORY SECTIONS */

.about-story-row {
  padding: 45px 0;
}

.about-story-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 44px;
  height: 44px;

  border-radius: 50%;

  background: var(--secondary);
  color: white;

  font-weight: 800;
  font-size: 0.95rem;
}

.about-story-highlight {
  display: flex;
  align-items: center;
  gap: 14px;

  margin-top: 25px;
  padding: 18px;

  background: #f6faf6;
  border-left: 4px solid var(--primary);
  border-radius: 12px;
}

.about-story-highlight > i {
  width: 42px;
  height: 42px;

  min-width: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #eaf6ea;
  color: var(--primary);

  border-radius: 50%;

  font-size: 1.15rem;
}

.about-story-highlight strong {
  display: block;
  color: var(--dark);
  font-size: 0.9rem;
}

.about-story-highlight span {
  display: block;
  color: #777;
  font-size: 0.78rem;
  margin-top: 2px;
}


/* PHOTO COLLAGE */

.about-photo-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 220px 220px;
  gap: 18px;
}

.about-photo-grid > div {
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.about-photo-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.about-photo-grid > div:hover img {
  transform: scale(1.05);
}

.about-photo-large {
  grid-row: span 2;
}


/* VALUES */

.about-values {
  padding: 70px 0;
  margin-top: 40px;

  background: #f6faf6;
  border-radius: 28px;
}

.about-value-card {
  height: 100%;
  background: white;
  border-radius: 18px;
  padding: 30px 24px;

  text-align: center;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);

  transition: 0.25s;
}

.about-value-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 18px 40px rgba(46, 125, 50, 0.14);
}

.about-value-icon {
  width: 60px;
  height: 60px;

  margin: 0 auto 18px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: #eaf6ea;
  color: var(--primary);

  font-size: 1.5rem;
}

.about-value-card h5 {
  font-weight: 800;
}

.about-value-card p {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 0;
}


/* CLOSING SECTION */

.about-story-ending {
  padding: 60px 50px;

  background:
    linear-gradient(135deg, #eef7ef, #f8f9fa);

  border-radius: 28px;
}

.about-ending-image {
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(23, 53, 27, 0.15);
}

.about-ending-image img {
  width: 100%;
  height: 330px;
  object-fit: cover;
  display: block;
}


/* RESPONSIVE */

@media (max-width: 991px) {
  .about-story-image img {
    height: 400px;
  }

  .about-photo-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 260px 200px;
  }

  .about-photo-large {
    grid-column: span 2;
    grid-row: auto;
  }

  .about-story-ending {
    padding: 45px 30px;
  }
}

@media (max-width: 576px) {
  .about-story-image img {
    height: 330px;
  }

  .about-image-badge {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .about-photo-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 220px);
  }

  .about-photo-large {
    grid-column: auto;
    grid-row: auto;
  }

  .about-values {
    padding: 45px 18px;
    border-radius: 20px;
  }

  .about-story-ending {
    padding: 35px 20px;
    border-radius: 20px;
  }

  .about-ending-image img {
    height: 260px;
  }
}
