@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@600;700;800&display=swap");

:root {
  font-family: "DM Sans", sans-serif;
  color: #17231d;
  background: #ffffff;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: auto;
}

/* TOP BAR */

.topbar {
  background: #14251c;
  color: #d9e6dd;
  font-size: 13px;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  padding: 9px 0;
}

/* NAVBAR */

.navbar {
  background: white;
  border-bottom: 1px solid #edf0ed;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.logo-icon {
  width: 43px;
  height: 43px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: #dff1e5;
  color: #168344;
}

.logo strong {
  display: block;
  font-family: "Manrope", sans-serif;
  font-size: 21px;
  line-height: 20px;
}

.logo strong span {
  color: #168344;
}

.logo small {
  display: block;
  font-size: 8px;
  letter-spacing: 2px;
  margin-top: 4px;
  color: #78837c;
}

.nav-links {
  display: flex;
  gap: 25px;
}

.nav-links button,
.footer button {
  border: 0;
  background: transparent;
  color: #435047;
}

.nav-links button:hover,
.footer button:hover {
  color: #168344;
}

.nav-call {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: #168344;
}

.menu-button {
  display: none;
  border: 0;
  background: transparent;
}

/* HERO */

.hero {
  min-height: 650px;
  position: relative;
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(12, 30, 20, 0.9), rgba(12, 30, 20, 0.35)),
    url("https://images.unsplash.com/photo-1581578731548-c64695cc6952?auto=format&fit=crop&w=1800&q=85")
    center / cover;
  color: white;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  padding: 9px 14px;
  border-radius: 30px;
  font-size: 14px;
  margin-bottom: 25px;
}

.hero h1 {
  font-family: "Manrope", sans-serif;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1.05;
  max-width: 800px;
  margin: 0;
  letter-spacing: -3px;
}

.hero h1 span {
  color: #8ce0a9;
}

.hero p {
  max-width: 610px;
  font-size: 19px;
  line-height: 1.7;
  color: #e1e9e3;
  margin: 25px 0 32px;
}

.hero-buttons {
  display: flex;
  gap: 13px;
}

.btn {
  min-height: 52px;
  padding: 0 22px;
  border-radius: 9px;
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-weight: 700;
  transition: .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn.primary {
  background: #21a354;
  color: white;
}

.btn.secondary {
  background: rgba(255,255,255,.12);
  color: white;
  border: 1px solid rgba(255,255,255,.25);
}

.hero-trust {
  display: flex;
  gap: 45px;
  margin-top: 55px;
}

.hero-trust div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-trust strong {
  font-size: 24px;
}

.hero-trust span {
  color: #cbd7cf;
  font-size: 13px;
}

/* SECTIONS */

.section {
  padding: 100px 0;
}

.section-heading {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 55px;
}

.eyebrow {
  color: #168344;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
}

.section-heading h2,
.about-content h2,
.contact-info h2,
.cta-inner h2 {
  font-family: "Manrope", sans-serif;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.15;
  letter-spacing: -1.5px;
  margin: 12px 0 15px;
}

.section-heading p {
  color: #68746c;
  line-height: 1.7;
}

/* SERVICES */

.services-section {
  background: #f7faf8;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.service-card {
  background: white;
  border: 1px solid #e7ece8;
  border-radius: 15px;
  padding: 27px;
  transition: .25s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: #b9dec5;
  box-shadow: 0 15px 35px rgba(20, 60, 35, .08);
}

.service-icon {
  font-size: 38px;
  margin-bottom: 18px;
}

.service-card h3 {
  font-family: "Manrope", sans-serif;
  margin: 0 0 10px;
  font-size: 18px;
}

.service-card p {
  color: #68746c;
  line-height: 1.6;
  font-size: 14px;
  min-height: 90px;
}

.service-card button {
  border: 0;
  background: transparent;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 4px;
  color: #168344;
  font-weight: 700;
}

/* ABOUT */

.about-section {
  background: white;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image {
  min-height: 520px;
  border-radius: 25px;
  background:
    linear-gradient(0deg, rgba(0,0,0,.45), transparent),
    url("https://images.unsplash.com/photo-1585421514738-01798e348b17?auto=format&fit=crop&w=1000&q=85")
    center / cover;
  position: relative;
}

.about-card {
  position: absolute;
  bottom: 25px;
  left: 25px;
  right: 25px;
  padding: 20px;
  border-radius: 15px;
  background: white;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #168344;
}

.about-card strong {
  color: #17231d;
}

.about-card span {
  font-size: 13px;
  color: #718078;
}

.about-content h2 span {
  color: #168344;
}

.about-content > p {
  color: #66726a;
  line-height: 1.8;
}

.check-list {
  margin: 25px 0 30px;
  display: grid;
  gap: 14px;
}

.check-list div {
  display: flex;
  gap: 10px;
  align-items: center;
}

.check-list svg {
  width: 19px;
  color: #21a354;
}

/* WHY */

.why-section {
  background: #f7faf8;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.why-card {
  background: white;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  border: 1px solid #e7ece8;
}

.why-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: #e4f4e9;
  color: #168344;
}

.why-card h3 {
  font-family: "Manrope", sans-serif;
}

.why-card p {
  color: #68746c;
  font-size: 14px;
  line-height: 1.6;
}

/* PROCESS */

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.process-card {
  position: relative;
  padding: 30px;
  border-left: 2px solid #cde5d4;
}

.process-card span {
  font-size: 12px;
  font-weight: 800;
  color: #168344;
}

.process-card h3 {
  font-family: "Manrope", sans-serif;
}

.process-card p {
  color: #68746c;
  line-height: 1.6;
}

/* TESTIMONIALS */

.testimonials-section {
  background: #f7faf8;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testimonial {
  background: white;
  padding: 30px;
  border-radius: 16px;
  border: 1px solid #e7ece8;
}

.stars {
  color: #f0aa22;
  display: flex;
  gap: 3px;
}

.testimonial > p {
  line-height: 1.7;
  color: #536057;
  margin: 20px 0 25px;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #dff1e5;
  color: #168344;
  font-weight: 800;
}

.reviewer span,
.reviewer strong {
  display: block;
}

.reviewer span {
  font-size: 12px;
  color: #7a847d;
  margin-top: 3px;
}

/* CTA */

.cta-section {
  background: #168344;
  color: white;
  padding: 70px 0;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.cta-inner h2 {
  max-width: 700px;
  margin-bottom: 7px;
}

.cta-inner p {
  color: #d8f0df;
}

.btn.light {
  background: white;
  color: #168344;
  white-space: nowrap;
}

/* CONTACT */

.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 80px;
  align-items: start;
}

.contact-info h2 {
  margin-bottom: 15px;
}

.contact-info > p {
  color: #68746c;
  line-height: 1.7;
  margin-bottom: 35px;
}

.contact-item {
  display: flex;
  gap: 14px;
  align-items: center;
  margin: 20px 0;
}

.contact-item > div {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: #e4f4e9;
  color: #168344;
  display: grid;
  place-items: center;
}

.contact-item span {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-weight: 700;
}

.contact-item small {
  color: #7a847d;
  font-weight: 400;
}

.contact-form {
  background: #f7faf8;
  padding: 35px;
  border-radius: 18px;
  border: 1px solid #e7ece8;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  margin-bottom: 15px;
  border: 1px solid #dce4de;
  border-radius: 8px;
  padding: 15px;
  background: white;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: #55ae74;
}

.full {
  width: 100%;
}

/* FOOTER */

.footer {
  background: #14251c;
  color: #d5dfd8;
  padding-top: 65px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 55px;
}

.footer-logo strong {
  color: white;
}

.footer p {
  max-width: 300px;
  color: #9eaaa2;
  line-height: 1.7;
  font-size: 14px;
}

.footer h4 {
  color: white;
  margin-top: 0;
}

.footer button,
.footer a,
.footer span {
  display: block;
  margin: 12px 0;
  color: #aeb9b1;
  font-size: 14px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
  color: #849189;
  font-size: 13px;
}

/* WHATSAPP */

.whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  background: #20a957;
  color: white;
  padding: 14px 18px;
  border-radius: 50px;
  box-shadow: 0 8px 25px rgba(0,0,0,.2);
  font-weight: 700;
}

/* RESPONSIVE */

@media (max-width: 950px) {

  .nav-links {
    display: flex;
    position: fixed;
    top: 0;
    right: 0;
    left: auto;

    width: min(330px, 85vw);
    height: 100vh;

    padding: 90px 28px 30px;

    background: white;

    flex-direction: column;
    align-items: flex-start;
    gap: 8px;

    box-shadow: -15px 0 40px rgba(0, 0, 0, 0.15);

    transform: translateX(100%);
    transition: transform 0.3s ease;

    z-index: 200;
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .nav-links button {
    width: 100%;
    padding: 14px 5px;
    text-align: left;
    font-size: 17px;
    border-bottom: 1px solid #edf0ed;
  }

  .menu-button {
    display: block;
    border: 0;
    background: transparent;
    color: #17231d;
    z-index: 300;
  }

  .nav-call {
    margin-left: auto;
  }

}

@media (max-width: 650px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .topbar-inner {
    justify-content: center;
  }

  .topbar-inner span:last-child {
    display: none;
  }

  .nav-call span {
    display: none;
  }

  .hero {
    min-height: 600px;
  }

  .hero h1 {
    letter-spacing: -2px;
  }

  .hero-trust {
    gap: 20px;
  }

  .hero-trust strong {
    font-size: 19px;
  }

  .hero-trust span {
    font-size: 11px;
  }

  .section {
    padding: 70px 0;
  }

  .services-grid,
  .why-grid,
  .process-grid,
  .testimonial-grid,
  .form-row,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .about-image {
    min-height: 400px;
  }

  .cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-trust {
    margin-top: 35px;
  }
}
.hero {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: background-image 0.5s ease;
}

.hero-dots {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
}

.hero-dot {
  width: 9px;
  height: 9px;
  padding: 0;

  border: 0;
  border-radius: 50%;

  background: rgba(255, 255, 255, 0.55);

  cursor: pointer;

  transition: all 0.25s ease;
}

.hero-dot.active {
  width: 28px;
  border-radius: 10px;
  background: white;
}
/* =========================================================
   PUBLIC TESTIMONIAL SLIDER - 2 CARDS
   ========================================================= */

.testimonial-slider {
  position: relative;
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 60px 55px;
  box-sizing: border-box;
}

.testimonial-slides {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.testimonial-slide {
  min-width: 0;
  background: #ffffff;
  border-radius: 16px;
  padding: 30px;
  box-sizing: border-box;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
  animation: testimonialFade 0.45s ease;
}

@keyframes testimonialFade {
  from {
    opacity: 0;
    transform: translateX(15px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.testimonial-slide .stars {
  display: flex;
  gap: 3px;
  color: #f3a51c;
  margin-bottom: 18px;
}

.testimonial-slide > p {
  min-height: 70px;
  margin: 0 0 22px;
  color: #45534b;
  font-size: 14px;
  line-height: 1.7;
}

.testimonial-slide .reviewer {
  display: flex;
  align-items: center;
  gap: 11px;
}

.testimonial-slide .avatar {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #e4f4ea;
  color: #168344;
  font-size: 14px;
  font-weight: 800;
}

.testimonial-slide .reviewer > div:last-child {
  display: flex;
  flex-direction: column;
}

.testimonial-slide .reviewer strong {
  color: #18251e;
  font-size: 14px;
}

.testimonial-slide .reviewer span {
  margin-top: 3px;
  color: #7b8780;
  font-size: 12px;
}

/* Navigation */

.testimonial-prev,
.testimonial-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);

  width: 42px;
  height: 42px;

  display: grid;
  place-items: center;

  padding: 0;

  border: 1px solid #dce5df;
  border-radius: 50%;

  background: #ffffff;
  color: #168344;

  cursor: pointer;
  z-index: 5;

  transition: all 0.2s ease;
}

.testimonial-prev {
  left: 5px;
}

.testimonial-next {
  right: 5px;
}

.testimonial-prev:hover,
.testimonial-next:hover {
  background: #168344;
  border-color: #168344;
  color: #ffffff;
}

/* Dots */

.testimonial-dots {
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;

  display: flex;
  justify-content: center;
  align-items: center;
  gap: 7px;
}

.testimonial-dot {
  width: 8px;
  height: 8px;

  padding: 0;
  border: 0;
  border-radius: 50%;

  background: #cbd5cf;
  cursor: pointer;

  transition: all 0.25s ease;
}

.testimonial-dot.active {
  width: 24px;
  border-radius: 10px;
  background: #168344;
}

/* Mobile */

@media (max-width: 700px) {
  .testimonial-slider {
    padding: 0 40px 50px;
  }

  .testimonial-slides {
    grid-template-columns: 1fr;
  }

  .testimonial-slide {
    padding: 25px 22px;
  }

  .testimonial-slide:nth-child(2) {
    display: none;
  }
}

@media (max-width: 480px) {
  .testimonial-slider {
    padding-left: 35px;
    padding-right: 35px;
  }

  .testimonial-prev,
  .testimonial-next {
    width: 36px;
    height: 36px;
  }

  .testimonial-prev {
    left: 0;
  }

  .testimonial-next {
    right: 0;
  }
}

/* =========================================================
   PESTGUARD - REDESIGNED CONTACT / INSPECTION SECTION
   ========================================================= */

.contact-section {
  position: relative;
  background: #f7faf8;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: 70px;
}

/* Left side */

.contact-info {
  min-width: 0;
}

.contact-info > h2 {
  max-width: 520px;
  margin: 10px 0 14px;
  color: #12231a;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: -1.5px;
}

.contact-intro {
  max-width: 500px;
  margin: 0 0 28px;
  color: #68766e;
  font-size: 15px;
  line-height: 1.7;
}

/* Contact detail cards */

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 570px;
}

.contact-detail-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 15px 17px;
  background: #ffffff;
  border: 1px solid #e1e9e4;
  border-radius: 11px;
  box-shadow: 0 4px 16px rgba(20, 45, 32, 0.035);
}

.contact-detail-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 10px;
  background: #e5f5eb;
  color: #168344;
}

.contact-detail-content {
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding-top: 1px;
}

.contact-detail-label {
  margin-bottom: 6px;
  color: #7a8780;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.contact-detail-content > a {
  width: fit-content;
  max-width: 100%;
  color: #1c2b23;
  font-size: 13px;
  font-weight: 650;
  line-height: 1.55;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.contact-detail-content > a:hover {
  color: #168344;
}

.contact-detail-content small {
  display: inline-block;
  margin-left: 6px;
  padding: 2px 6px;
  border-radius: 5px;
  background: #eef8f1;
  color: #168344;
  font-size: 9px;
  font-weight: 750;
  vertical-align: middle;
}

.contact-extra-numbers {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2px 24px;
  margin-top: 3px;
}

.contact-extra-numbers a {
  color: #536159;
  font-size: 12px;
  font-weight: 550;
  line-height: 1.6;
  text-decoration: none;
}

.contact-extra-numbers a:hover {
  color: #168344;
}

.contact-extra-numbers small {
  font-size: 8px;
}

.contact-address {
  max-width: 430px;
  color: #3f4e46;
  font-size: 13px;
  font-weight: 550;
  line-height: 1.6;
}

/* Right side form */

.contact-form {
  width: 100%;
  box-sizing: border-box;
  padding: 30px;
  background: #ffffff;
  border: 1px solid #dfe8e2;
  border-radius: 18px;
  box-shadow: 0 14px 40px rgba(20, 45, 32, 0.07);
}

.contact-form-header {
  margin-bottom: 22px;
}

.contact-form-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 9px;
  border-radius: 6px;
  background: #e7f6ec;
  color: #168344;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.2px;
}

.contact-form-header h3 {
  margin: 11px 0 5px;
  color: #18271f;
  font-size: 23px;
  line-height: 1.3;
}

.contact-form-header p {
  margin: 0;
  color: #7a8780;
  font-size: 12px;
  line-height: 1.6;
}

/* Inputs */

.contact-form .form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  box-sizing: border-box;
  margin: 0 0 13px;
  padding: 0 13px;
  border: 1px solid #d8e2dc;
  border-radius: 8px;
  outline: none;
  background: #ffffff;
  color: #27362e;
  font-family: inherit;
  font-size: 13px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input,
.contact-form select {
  height: 46px;
}

.contact-form textarea {
  min-height: 125px;
  padding: 12px 13px;
  resize: vertical;
  line-height: 1.6;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #8c9891;
}

.contact-form select {
  cursor: pointer;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #168344;
  box-shadow: 0 0 0 3px rgba(22, 131, 68, 0.09);
}

/* Submit */

.contact-form .btn.primary.full {
  width: 100%;
  min-height: 46px;
  justify-content: center;
  margin-top: 2px;
  border: 0;
  border-radius: 8px;
}

.contact-form .btn.primary.full:disabled {
  opacity: 0.7;
  cursor: wait;
}

.contact-form-note {
  display: block;
  margin-top: 11px;
  color: #8a958f;
  font-size: 10px;
  line-height: 1.5;
  text-align: center;
}

/* Responsive */

@media (max-width: 950px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-info > h2 {
    max-width: 650px;
  }

  .contact-intro {
    max-width: 650px;
  }

  .contact-details {
    max-width: 700px;
  }

  .contact-form {
    max-width: 700px;
  }
}

@media (max-width: 600px) {
  .contact-grid {
    gap: 30px;
  }

  .contact-info > h2 {
    font-size: 34px;
    letter-spacing: -1px;
  }

  .contact-detail-card {
    padding: 13px;
  }

  .contact-extra-numbers {
    grid-template-columns: 1fr;
    gap: 1px;
  }

  .contact-form {
    padding: 20px;
    border-radius: 14px;
  }

  .contact-form .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
/* Website Settings logo - public navbar/footer */
.site-logo-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  border-radius: 8px;
}
