/* ============================================
   Freshleaf Professional Cleaning - Homepage
   Semantic, responsive, Bootstrap
   ============================================ */


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

/* ---------- CSS custom properties (colors & fonts) ---------- */
:root {
  /* Colors */
  --color-primary: #006738;
  --color-primary-dark-1: #338061;
  --color-primary-dark-2: #2F785B;
  --color-yellow-bg: #FFFAC5;
  --color-light-green: #CCDDC2;
  --color-black: #000;
  --color-white: #FFF;
  --color-gray: rgba(97, 97, 97, 1);
  --color-gray-alt: #656565;
  --color-light-gray: #EDEDED;

  /* Fonts */
  --font-heading: 'Puritan', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-content: 'Public Sans', sans-serif;
}


/* ---------- Base ---------- */
body {
  font-family: var(--font-body);
  color: var(--color-black);
  line-height: 1.5;
  overflow-x: hidden;
}

img.img-fluid {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ---------- Header: top bar ---------- */
.header-top {
  background-color: var(--color-black);
  color: var(--color-white);
}

.header-top-link {
  color: var(--color-white) !important;
  text-decoration: none;
  font-family: var(--font-content);
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  transition: opacity 0.2s;
}

.header-top-link:hover {
  color: var(--color-white) !important;
  opacity: 0.85;
}

/* ---------- Header: main navigation ---------- */
.site-header {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.header-nav {
  background-color: var(--color-white) !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

/* Logo */
.navbar-brand {
  margin-right: 1rem;
  padding: 0;
}

.logo-img {
  width: 141px;
  height: 102px;
  object-fit: cover;
}

.logo-text {
  line-height: 1.2;
}

.logo-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--color-primary);
  letter-spacing: 0.02em;
  display: block;
}

.logo-tagline {
  font-family: var(--font-content);
  font-size: 0.65rem;
  color: var(--color-primary);
  font-weight: 400;
}

/* Nav links */
.header-nav .nav-link {
  color: var(--color-black) !important;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  padding: 0.5rem 0.75rem !important;
  transition: color 0.2s;
}

.header-nav .nav-link:hover,
.header-nav .nav-link:focus {
  color: var(--color-primary) !important;
}

.header-nav .nav-link.active {
  color: var(--color-primary) !important;
  font-weight: 600;
}

/* Get A Quote button */
.btn-quote {
  background-color: var(--color-primary) !important;
  color: var(--color-white) !important;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 20px;
  padding: 11px 54px;
  border: none;
  border-radius: 50px;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.2s, transform 0.15s;
}

.btn-quote:hover {
  background-color: var(--color-primary-dark-2) !important;
  color: var(--color-white) !important;
  transform: translateY(-1px);
}

/* Navbar toggler (mobile) */
.navbar-toggler {
  border-color: rgba(0, 103, 56, 0.3);
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 103, 56, 0.25);
}

/* ---------- Banner Section ---------- */
.banner-section {
  /* padding handled by Bootstrap py-5 in HTML */
  overflow: hidden;
  position: relative;
  background-color: var(--color-yellow-bg);
}

.badge-clean {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--color-white);
  padding: 10px 22px;
  border-radius: 60px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 20px;
  color: var(--color-black);
  position: relative;
  overflow: hidden;
}

/* Shimmer sweep across the badge every 4s */
.badge-clean::after {
  content: "";
  position: absolute;
  top: 0;
  left: -80%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg,
      transparent 0%,
      rgba(0, 103, 56, 0.12) 50%,
      transparent 100%);
  transform: skewX(-20deg);
  animation: badgeShimmer 4s ease-in-out 2s infinite;
  pointer-events: none;
}

@media (max-width: 767.98px) {
  .badge-clean {
    font-size: 14px;
    padding: 8px 18px;
  }
}

.badge-clean img {
  width: 43px;
  height: 43px;
  object-fit: contain;
  /* Broom sweep: slides in from right, settles, pauses, repeats */
  animation: broomSweep 2.5s ease-out 1.2s infinite;
  flex-shrink: 0;
}

@keyframes badgeShimmer {
  0% {
    left: -80%;
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  50% {
    left: 130%;
  }

  51% {
    opacity: 0;
  }

  100% {
    left: 130%;
    opacity: 0;
  }
}

@keyframes broomSweep {
  0% {
    transform: translateX(18px) rotate(15deg);
    opacity: 0.4;
  }

  30% {
    transform: translateX(0px) rotate(0deg);
    opacity: 1;
  }

  70% {
    transform: translateX(0px) rotate(0deg);
    opacity: 1;
  }

  85% {
    transform: translateX(4px) rotate(-5deg);
    opacity: 0.8;
  }

  100% {
    transform: translateX(18px) rotate(15deg);
    opacity: 0.4;
  }
}

/* ── Typewriter effect on badge text ──────────── */
.badge-typewriter {
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  vertical-align: bottom;
  border-right: 2px solid var(--color-primary);
  width: 0;
}

/* Cursor blink — added via JS class */
.badge-typewriter.tw-cursor {
  animation: twCursor 0.6s step-end infinite;
}

/* Cursor hidden after typing */
.badge-typewriter.tw-done {
  border-right-color: transparent;
}

@keyframes twCursor {

  0%,
  100% {
    border-color: var(--color-primary);
  }

  50% {
    border-color: transparent;
  }
}


.banner-title {
  font-family: var(--font-heading);
  font-size: 56px;
  margin-top: 24px;
  line-height: 1.1;
}

.banner-title .dark {
  color: var(--color-black);
  font-weight: 700;
}

.banner-title .green {
  color: var(--color-primary);
}

.banner-desc {
  margin-top: 20px;
  max-width: 520px;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 28px;
  color: var(--color-gray);
}

.banner-btn {
  display: inline-block;
  margin-top: 30px;
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: 50px;
  padding: 12px 35px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 20px;
  border: none;
  text-decoration: none;
  transition: background-color 0.2s, transform 0.15s;
}

.banner-btn:hover {
  background: var(--color-primary-dark-2);
  color: var(--color-white);
  transform: translateY(-2px);
}

.banner-right {
  position: relative;
  min-height: 0px;
  z-index: 5;
}

.banner-section--desktop {
	padding-bottom: 5rem!important;
}

@media (min-width: 576px) {
  .design-wrap {
    position: relative;
    width: 100%;
    min-height: 520px;
  }

  .card-img {
    position: absolute;
    overflow: visible;
    background: var(--color-white);
  }

  .back-card-wrap {
    width: 340px;
    height: 520px;
    left: 80px;
    top: 20px;
    background: transparent;
  }

  .back-card {
    width: 100%;
    height: 100%;
    border: 2px solid var(--color-primary);
    border-bottom-left-radius: 186px;
    /* overflow: hidden; */
    /* clip banner-img-1.webp */
    position: relative;
  }

  .back-card-wrap::before {
    content: "";
    position: absolute;
    width: 60px;
    height: 60px;
    background-image: url("../images/banner-img-msk-1.webp");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    top: -38px;
    /* outside border */
    left: -38px;
    /* outside border */
    z-index: 2;
  }

  .back-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-bottom-left-radius: 186px;
    transform: translate(10px, -9px);
  }

  .front-card-wrap {
    width: 300px;
    height: 520px;
    right: 20px;
    top: 0;
    background: transparent;
  }

  .front-card {
    width: 100%;
    height: 100%;
    border: 2px solid var(--color-primary);
    border-top-right-radius: 186px;
    /* overflow: hidden; */
    /* clip banner-img-2.webp */
    position: relative;
  }

  .front-card-wrap::before {
    content: "";
    position: absolute;
    width: 60px;
    height: 60px;
    background-image: url("../images/banner-img-msk-2.webp");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    bottom: -79px;
    /* slightly outside bottom */
    left: -10px;
    /* slight outside left */
    z-index: 6;
  }

  .front-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-top-right-radius: 186px;
    transform: translate(8px, 10px);
  }

  .circle-big {
    position: absolute;
    width: 121px;
    height: 170px;
    /* bottom: -97px; */
    left: 50%;
    transform: translate(-19%, -29%);
    z-index: -1;
    object-fit: contain;
  }

  .circle-light {
    position: absolute;
    width: 120px;
    height: 120px;
    left: 60px;
    top: 440px;
    /* 40(top) + 520(card) - 120(circle) */
    z-index: 6;
    object-fit: contain;
  }
}



/* ---------- Banner Glass Form ---------- */
.banner-glass-form {
  position: absolute;
  inset: 0;
  z-index: 10;
  background: rgba(0, 60, 30, 0.75);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 20px;
  padding: 28px 30px;
  display: flex;
  flex-direction: column;
  /* justify-content: center; */
}

.banner-glass-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 26px;
  font-style: italic;
  color: #fff;
  margin: 0 0 18px;
  text-align: center;
}

.banner-glass-fields {
  display: flex;
  flex-direction: column;
  gap: 34px;
}

.banner-glass-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.banner-glass-fields input,
.banner-glass-fields select,
.banner-glass-fields textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 0;
  padding: 10px 0;
  font-family: var(--font-body);
  font-size: 14px;
  color: #fff;
  background: transparent;
  outline: none;
  transition: border-color 0.2s ease;
}

.banner-glass-fields input::placeholder,
.banner-glass-fields textarea::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.banner-glass-fields input:focus,
.banner-glass-fields select:focus,
.banner-glass-fields textarea:focus {
  border-bottom-color: #fff;
}

.banner-glass-fields select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23fff' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0 center;
  padding-right: 20px;
  cursor: pointer;
}

.banner-glass-fields select option {
  background: #1a3d2a;
  color: #fff;
}

.banner-glass-fields textarea {
  resize: none;
  min-height: 60px;
}

.banner-glass-submit {
  display: block;
  width: 85%;
  margin: 8px auto 0;
  padding: 14px;
  background: var(--color-primary);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
}

.banner-glass-submit:hover {
  background: var(--color-primary-dark-2);
  transform: translateY(-2px);
}


/* ---------- Mobile Banner Quote Form ---------- */
.banner-glass-form-mobile {
  margin-top: 24px;
  background: rgba(0, 60, 30, 0.9);
  border-radius: 20px;
  padding: 28px 24px;
}

@media (max-width: 575.98px) {
  .banner-glass-form-mobile .banner-glass-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

/* Mobile/simple layout: use dedicated mobile banner up to 768px */
@media (max-width: 767.98px) {
  .banner-section--mobile {
    padding: 60px 0 40px;
  }

  .banner-title--mobile {
    font-size: 28px;
    text-align: center;
    margin-top: 20px;
  }

  .banner-desc--mobile {
    font-size: 14px;
    line-height: 24px;
    text-align: center;
    max-width: 320px;
    margin: 12px auto 0;
  }

  .banner-section--mobile .badge-clean {
    margin-left: auto;
    margin-right: auto;
  }

  .banner-section--mobile .banner-btn {
    display: block;
    margin: 22px auto 0;
    width: fit-content;
  }

  .banner-mobile-images {
    margin-top: 26px;
    display: flex;
    justify-content: center;
    gap: 12px;
  }

  .banner-mobile-card {
    flex: 1 1 0;
    max-width: 48%;
    border: 2px solid var(--color-primary);
    border-radius: 18px;
    overflow: hidden;
    background: var(--color-white);
  }

  .banner-mobile-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
  }
}


/* Banner Desktop Alignment */
@media (min-width: 992px) {
  .banner-section--desktop .col-lg-5 {
    padding-top: 40px;
    /* Align with back-card top: 40px */
  }
}

/* ---------- About Section ---------- */
.about-section {
  padding-top: 80px !important;
  background: var(--color-white);
}

.about-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.about-photo-frame {
  width: 492px;
  max-width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  position: relative;
  background: transparent;
  overflow: visible;
  /* allow photo to peek outside ring */
}

.about-photo-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--color-primary);
  pointer-events: none;
  z-index: 2;
}

.about-photo-frame::after {
  content: none;
}

.about-photo-clip {
  position: absolute;
  /* inset: 14px; */
  /* ring gap */
  border-radius: 50%;
  overflow: visible;
  /* don't mask the photo */
  z-index: 2;
}

.about-photo {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  /* keep it circular even outside ring */
  object-fit: cover;
  object-position: 50% center;
  display: block;
  /* If object-position doesn't visibly move (due to aspect ratio),
     this forces a horizontal pan to reveal the left side. */
  transform: translate(-20px, -19px) scale(1.03);
}

.about-sparkle {
  position: absolute;
  pointer-events: none;
  z-index: 6;
}

/* Top-right sparkle group (image provided) */
.about-sparkle--top {
  width: 110px;
  height: auto;
  top: 12px;
  right: 80px;
  filter: drop-shadow(0 2px 0 rgba(0, 0, 0, 0.02));
}

/* Bottom-left soft sparkle (CSS) */
.about-sparkle--bottom {
  width: 71px;
  height: 71px;
  left: 40px;
  bottom: 30px;
  border-radius: 12px;
  opacity: 0.9;
}

.about-content {
  max-width: 560px;
}

.about-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 14px;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-black);
  font-size: 30px;
}

.about-kicker-line {
  width: 44px;
  height: 3px;
  background: var(--color-primary);
  border-radius: 999px;
}

.about-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 50px;
  line-height: 1.15;
  margin: 0 0 14px;
  color: var(--color-black);
}

.about-title-accent {
  color: var(--color-primary);
}

.about-text {
  font-family: var(--font-body);
  color: rgba(97, 97, 97, 1);
  font-size: 16px;
  line-height: 24px;
  margin: 0 0 18px;
  max-width: 520px;
}

.about-lists {
  margin-bottom: 22px;
}

.about-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.about-list li {
  display: flex;
  align-items: baseline;
  gap: 7px;
  font-family: var(--font-body);
  font-size: 16px;
  color: rgba(97, 97, 97, 1);
  line-height: 1.5;
  white-space: nowrap;
}

.about-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  min-width: 8px;
  border-radius: 50%;
  background: var(--color-primary);
  transform: translateY(2px);
}

.about-btn {
  background: var(--color-primary) !important;
  color: var(--color-white) !important;
  border-radius: 50px;
  padding: 10px 47px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  border: none;
  text-decoration: none;
}

.about-btn:hover {
  background: var(--color-primary-dark-2) !important;
  color: var(--color-white) !important;
}

/* ---------- Services Section ---------- */
.services-section {
  position: relative;
  /* padding handled by Bootstrap py-5 in HTML */
  background: linear-gradient(rgba(0, 103, 56, 0.5), rgba(0, 103, 56, 0.5)), url("../images/services-bg.webp") no-repeat center / cover;
  /* overflow: hidden; Removed to allow arrows to be visible outside */
  background-attachment: fixed;
}

.services-bubble {
  position: absolute;
  top: 47px;
  right: 28%;
  width: 10%;
  max-width: 380px;
  height: 200px;
  background: url("../images/services-bubble-bg.webp") no-repeat center / contain;
  pointer-events: none;
  z-index: 0;
}

.services-section .container {
  z-index: 1;
}

.services-header {
  align-items: flex-end;
}

.services-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 30px;
  color: var(--color-white);
}

.services-kicker-line {
  width: 44px;
  height: 3px;
  background: var(--color-white);
  border-radius: 999px;
}

.services-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 50px;
  line-height: 1.2;
  margin: 0;
  color: var(--color-white);
  max-width: 700px;
}

.services-title-accent {
  color: #CCDDC2;
}

.services-view-more {
  background: transparent !important;
  color: var(--color-white) !important;
  border: 2px solid var(--color-white);
  border-radius: 50px;
  padding: 10px 28px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  flex-shrink: 0;
}

.services-view-more:hover {
  background: rgba(255, 255, 255, 0.15) !important;
  color: var(--color-white) !important;
  border-color: var(--color-white);
}

.services-slider {
  margin-top: 48px;
  /* Ensure dots don't overflow */
  margin-bottom: 20px;
}

.services-slide {
  padding: 0 12px;
  /* Creates the gap between slides */
  height: 100%;
}

/* Slick Equal Height Fix */
.services-slider .slick-track {
  display: flex !important;
}

.services-slider .slick-slide {
  height: auto;
  display: flex;
  flex-direction: column;
}

/* Slick Dots Customization */
.services-slider .slick-dots {
  bottom: -40px;
}

.services-slider .slick-dots li {
  margin: 0 4px;
}

.services-slider .slick-dots li button:before {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.4);
  opacity: 1;
}

.services-slider .slick-dots li.slick-active button:before {
  color: var(--color-light-green);
  opacity: 1;
}

/* Slick Custom Arrows */
.services-slider .slick-prev,
.services-slider .slick-next {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  z-index: 10;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.services-slider .slick-prev:before,
.services-slider .slick-next:before {
  content: none;
  /* Remove default characters */
}

.services-slider .slick-prev i,
.services-slider .slick-next i {
  color: var(--color-white);
  font-size: 14px;
}

.services-slider .slick-prev:hover,
.services-slider .slick-next:hover {
  background: var(--color-white);
  border-color: var(--color-white);
}

.services-slider .slick-prev:hover i,
.services-slider .slick-next:hover i {
  color: var(--color-primary);
}

.services-slider .slick-prev {
  left: -40px;
}

.services-slider .slick-next {
  right: -40px;
}

.services-grid .col-12 {
  display: flex;
}

.services-grid .col-12>a {
  display: flex;
  width: 100%;
}

.services-card {
  background: var(--color-primary-dark-1);
  border-radius: 20px;
  padding: 24px 20px 24px;
  height: 420px;

  display: flex;
  flex-direction: column;
  transition: background-color 0.25s ease;
  width: 100%;
	

}

.services-card:hover {
  background: var(--color-yellow-bg) !important;
}

.services-card:hover .services-card-title,
.services-card:hover .services-card-desc {
  color: var(--color-primary);
}

.services-card-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 30px;
  margin: 0 0 10px;
  color: var(--color-white);
  transition: color 0.25s ease;

}

.services-card-desc {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 16px;
/*   flex-grow: 1; */
  transition: color 0.25s ease;
}

.services-card-img-wrap {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  margin: 0 -4px -4px;
    flex: 1;

  
}

.services-card-img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.services-card-arrow {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  rotate: -400deg;
}

.services-card:hover .services-card-arrow {
  background: var(--color-primary-dark-2);
}

/* ---------- How It Works Section ---------- */
.how-it-works-section {
  position: relative;
  /* padding handled by Bootstrap py-5 in HTML */
  background-color: #FFFFFF;
  background-image: url("../images/how-it-works-bg.webp");
  background-repeat: no-repeat;
  background-position: top right;
  background-size: cover;
  overflow: hidden;
}

.how-it-works-header {
  margin-bottom: 52px;
}

.how-it-works-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 12px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 30px;
  color: var(--color-black);
}

.how-it-works-kicker-line {
  width: 44px;
  height: 3px;
  background: var(--color-primary);
  border-radius: 999px;
}

.how-it-works-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 44px;
  line-height: 1.2;
  margin: 0;
  color: var(--color-black);
}

.how-it-works-title-accent {
  color: var(--color-primary);
  font-size: 48px;
}

.how-it-works-steps {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0;
  /* max-width: 1100px; */
  margin: 0 auto;
}

.how-it-works-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 0;
}

.how-it-works-circle {
  flex-shrink: 0;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background-color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.how-it-works-circle img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.how-it-works-connector {
  flex: 1;
  min-width: 146px;
  max-width: 100px;
  min-height: 90px;
  display: flex;
  align-items: center;
  padding: 0 8px;
}

.how-it-works-connector::after {
  content: "";
  display: block;
  width: 0;
  /* Start at 0 width */
  height: 2px;
  background-color: var(--color-primary);
  transition: width 1.5s ease-out;
  /* Animate width */
}

.how-it-works-connector.reveal-visible::after {
  width: 100%;
}

.how-it-works-step-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 26px;
  color: var(--color-primary);
  margin: 0 0 10px;
/*   white-space: nowrap; */
}

.how-it-works-step-desc {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.5;
  color: rgba(97, 97, 97, 1);
  margin: 0;
  max-width: 220px;
}

@media (max-width: 991px) {
  .how-it-works-steps {
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px 0;
  }

  .how-it-works-step {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .how-it-works-connector {
    display: none;
  }
}

@media (max-width: 575px) {
  .how-it-works-step {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/* ---------- Why Choose Us Section ---------- */
.why-choose-section {
  position: relative;
  /* padding handled by Bootstrap py-5 in HTML */
    background: url("../images/why-choose-bg.webp") center / cover no-repeat;

  overflow: hidden;
  background-attachment: fixed;
}

.why-choose-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 103, 56, 0.5);
  z-index: 0;
  pointer-events: none;
}

.why-choose-section>.container {
  position: relative;
  z-index: 1;
}

.why-choose-header {
  margin-bottom: 20px;
}

.why-choose-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 12px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 30px;
  color: var(--color-light-green);
}

.why-choose-kicker-line {
  width: 44px;
  height: 3px;
  background: var(--color-light-green);
  border-radius: 999px;
}

.why-choose-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 44px;
  line-height: 1.2;
  margin: 0;
  color: var(--color-white);
}

.why-choose-desc {
  font-family: var(--font-content);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-white);
  margin: 0 0 32px;
  max-width: 540px;
}

/* .why-choose-features {
  margin: 0 -6px;
} */

/* .why-choose-feature {
  padding: 4px 0;
} */

.why-choose-feature-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 22px;
  margin-bottom: 12px;
}

.why-choose-feature-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 25px;
  line-height: 1.25;
  color: var(--color-white);
  margin: 0 0 6px;
  min-height: 2.5em;
}

.why-choose-feature-desc {
  font-family: var(--font-content);
  font-size: 16px;
  color: var(--color-white);
  margin: 0;
  font-weight: 400;
  line-height: 24px !important;
}

.why-choose-quote-box {
  background: #FFFAC5;
  border-radius: 16px;
  padding: 36px 42px 40px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
}

.why-choose-quote-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.02em;
  color: var(--color-primary);
  text-align: center;
  margin: 0 0 28px;
  text-transform: uppercase;
}


.why-choose-input,
.why-choose-select,
.why-choose-textarea {
  display: block;
  width: 100%;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-primary);
  background: transparent;
  border: none;
  border-bottom: 2px solid var(--color-primary);
  border-radius: 0;
  padding: 10px 0 12px;
  outline: none;
  transition: border-color 0.2s;
}

.why-choose-input::placeholder,
.why-choose-textarea::placeholder {
  color: var(--color-primary);
  opacity: 0.9;
}

.why-choose-input:focus,
.why-choose-select:focus,
.why-choose-textarea:focus {
  border-bottom-color: var(--color-primary-dark-2);
}

.why-choose-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23006738' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0 center;
  padding-right: 24px;
  cursor: pointer;
}

.why-choose-label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.why-choose-textarea {
  min-height: 100px;
  resize: vertical;
  border: 2px solid var(--color-primary);
  padding: 12px 14px;
  background: #FFFAC5;
}

.why-choose-submit {
  display: block;
  width: 100%;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 20px;
  color: var(--color-white);
  background: var(--color-primary);
  border: none;
  border-radius: 50px;
  padding: 14px 24px;
  cursor: pointer;
  transition: background-color 0.2s;
  margin-top: 8px;
}

.why-choose-submit:hover {
  background: var(--color-primary-dark-2);
}

@media (max-width: 991px) {
  .why-choose-quote-box {
    margin-top: 24px;
  }
}

/* ---------- Testimonials Section ---------- */
.testimonials-section {
  position: relative;
  /* padding handled by Bootstrap py-5 in HTML */
  background-color: #FFFFFF;
  background-image: url("../images/how-it-works-bg.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  /* overflow: hidden; Removed to allow arrows */
  position: relative;
  padding-top: 80px !important;
  padding-bottom: 80px !important;
}

.section-floating-star {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(-24%, 80%);
  z-index: 1;
  pointer-events: none;
  max-width: 150px;
  animation: starFloat 6s ease-in-out infinite;
  transform-origin: center;
}

@keyframes starFloat {
  0% {
    transform: translate(-24%, 80%) rotate(0deg) scale(1);
  }

  25% {
    transform: translate(-24%, 68%) rotate(8deg) scale(1.06);
  }

  50% {
    transform: translate(-24%, 80%) rotate(0deg) scale(1);
  }

  75% {
    transform: translate(-24%, 92%) rotate(-8deg) scale(0.95);
  }

  100% {
    transform: translate(-24%, 80%) rotate(0deg) scale(1);
  }
}


.testimonials-section .row {
  align-items: flex-start;
}

.testimonials-section .col-lg-9 {
  display: flex;
  align-items: flex-start;
}

.testimonials-section .col-lg-9>.row {
  align-items: stretch;
  padding-top: 0;
  margin-top: 0;
}

.testimonials-header {
  margin-bottom: 0;
}

.testimonials-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 16px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 30px;
  color: var(--color-black);
}

.testimonials-kicker-line {
  width: 44px;
  height: 3px;
  background: var(--color-primary);
  border-radius: 999px;
}

.testimonials-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 30px;
  line-height: 1.2;
  margin: 0;
  color: var(--color-black);
}

.testimonials-title-accent {
  color: var(--color-primary);
}

.testimonials-rating {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
}

.testimonials-google-logo {
  width: 70px;
  height: 70px;
  object-fit: cover;
}

.testimonials-rating-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testimonials-rating-number {
  font-family: var(--font-content);
  font-weight: 700;
  font-size: 25px;
  color: #656565;
  line-height: 1;
}

.testimonials-rating-label {
  font-family: var(--font-content);
  font-size: 25px;
  color: #656565;
  line-height: 1.2;
  font-weight: 700;
}

.testimonial-card {
  background: var(--color-white);
  border-radius: 12px;
  padding: 28px 24px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.09);
  height: 236px !important;
  display: flex;
  flex-direction: column;
}

.testimonial-quote {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-primary);
  margin: 0 0 24px;
  flex-grow: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 25px;
  /* padding-top: 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.08); */
}

.testimonial-google-logo {
  width: 45px;
  height: 45px;
  object-fit: cover;
  flex-shrink: 0;
}

.testimonial-author-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.testimonial-author-name {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 20px;
  color: var(--color-primary);
  margin: 0;
  line-height: 1.2;
}

.testimonial-stars {
  display: flex;
  gap: 2px;
}

.testimonial-stars .fa-star {
  color: var(--color-primary);
  font-size: 14px;
}



/* ---------- Blogs Section ---------- */
.blogs-section {
  position: relative;
  /* padding handled by Bootstrap py-5 in HTML */
  background: var(--color-white);
  overflow: hidden;
  padding-bottom: 85px !important;
}

.blogs-slider {
  margin-bottom: 20px;
}

.blogs-slider .slick-list {
  padding: 0 0 20px;
}

.blogs-slide {
  padding: 10px 14px;
}

.blogs-slider .slick-dots {
  bottom: -40px;
}

.blogs-slider .slick-dots li button:before {
  font-size: 10px;
  color: var(--color-primary);
}

.blogs-slider .slick-dots li.slick-active button:before {
  color: var(--color-primary);
}

.blog-card-meta .blog-meta-item span{
   color: #000;
}

.blogs-header {
  margin-bottom: 44px;
}

.blogs-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 12px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 30px;
  color: var(--color-black);
}

.blogs-kicker-line {
  width: 44px;
  height: 3px;
  background: var(--color-primary);
  border-radius: 999px;
}

.blogs-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 44px;
  line-height: 1.15;
  margin: 0;
  color: var(--color-black);
}

/* ---------- BLOG CARD (PERFECT MATCH VERSION) ---------- */
/* ---------- Testimonials Slider ---------- */
.testimonials-slider {
  width: 100%;
  margin-bottom: 20px;
}

.testimonials-slide {
  padding: 0 12px;
  height: 100%;
}

/* Equal Height Fix */
.testimonials-slider .slick-track {
  display: flex !important;
}

.testimonials-slider .slick-slide {
  height: auto;
  display: flex;
  flex-direction: column;
}

.testimonial-card {
  height: 100%;
}

/* Dots */
.testimonials-slider .slick-dots {
  bottom: -40px;
}

.testimonials-slider .slick-dots li {
  margin: 0 4px;
}

.testimonials-slider .slick-dots li button:before {
  color: #ccc;
  opacity: 1;
  font-size: 10px;
}

.testimonials-slider .slick-dots li.slick-active button:before {
  color: var(--color-primary);
  opacity: 1;
}

/* Arrows */
.testimonials-slider .slick-prev,
.testimonials-slider .slick-next {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-primary);
  border: none;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.testimonials-slider .slick-prev:before,
.testimonials-slider .slick-next:before {
  content: none;
}

.testimonials-slider .slick-prev i,
.testimonials-slider .slick-next i {
  color: var(--color-white);
  font-size: 14px;
}

.testimonials-slider .slick-prev:hover,
.testimonials-slider .slick-next:hover {
  background: var(--color-primary-dark-2);
}

.testimonials-slider .slick-prev {
  left: -20px;
}

.testimonials-slider .slick-next {
  right: -20px;
}

.blog-card {
  position: relative;
  overflow: visible;
}

/* OUTER OFFSET BORDER */
.blog-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid var(--color-primary);
  border-radius: 0 0 80px 0;
  transform: translate(12px, 12px);
  z-index: 0;
}

/* INNER WRAPPER */
.blog-card-inner {
  position: relative;
  z-index: 1;
  background: transparent;
  /* IMPORTANT FIX */
}

/* IMAGE */
.blog-card-img img {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

/* YELLOW BODY (MAIN SHAPE) */
.blog-card-body {
  position: relative;
  z-index: 1;
  background: var(--color-yellow-bg);
  border: 2px solid var(--color-primary);
  padding: 18px 56px 24px 18px;
  border-radius: 0 0 80px 0;
}

/* META ROW */
.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 40px;
  /* spacing like design */
  margin-bottom: 14px;
}

.blog-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.blog-meta-item i {
  color: var(--color-primary);
}

/* TITLE */
.blog-card-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 20px;
  /* MATCH DESIGN SCALE */
  color: var(--color-primary);
  margin: 0 0 10px;
}

/* DESCRIPTION */
.blog-card-desc {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.5;
  color: #5c5c5c;
  margin: 0;

  /* 2 line clamp */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}


/* ---------- Footer ---------- */
.site-footer {
  margin-top: 0;
}

.footer-main{
  position: relative;
  background-color:#006738;   /* solid color */
  color: var(--color-white);
  overflow:hidden;
}

/* image layer */
.footer-main::before{
  content:"";
  position:absolute;
  inset:0;
  background:url("../images/footer-banner.webp") center/cover repeat;
  opacity:0.04;        /* control ONLY image visibility */
  z-index:0;
}

/* keep content above */
.footer-main > *{
  position:relative;
  z-index:1;
}

.footer-logo-wrap {
  margin-bottom: 0px;
}

.footer-logo {
  width: 226px;
  height: 122px;
  display: block;
  margin-bottom: 0px;
  object-fit: cover;
  filter: brightness(0) invert(1);
  overflow: visible;
}

.footer-brand-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 32px;
  line-height: 1;
  margin: 0;
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.footer-brand-subtitle {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  margin: 5px 0 0;
  color: var(--color-white);
  opacity: 0.9;
}

.footer-brand-text {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-white);
  max-width: 300px;
  margin: 0;
  opacity: 0.8;
}

.footer-column {
  color: var(--color-white);
}

.footer-heading {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 28px;
  margin: 0 0 24px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  font-family: var(--font-body);
  font-size: 15px;
}

.footer-links li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-links li+li {
  margin-top: 12px;
}

.footer-links li::before {
  content: "\f054";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--color-light-green);
  font-size: 11px;
  width: 16px;
  text-align: center;
  flex-shrink: 0;
/*   opacity: 0.9; */
}

.footer-links a {
  color: var(--color-white);
  text-decoration: none;
/*   opacity: 0.9; */
  transition: opacity 0.2s, padding-left 0.2s;
  font-size; 18px;
}

.footer-links a:hover {
  opacity: 1;
  text-decoration: none;
  padding-left: 2px;
}

.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
  font-family: var(--font-body);
  font-size: 15px;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  opacity: 0.9;
}

.footer-contact i {
  font-size: 16px;
  margin-top: 4px;
  /* Align icon with first line of text */
}

.footer-bottom {
  background: #000;
  padding: 20px 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-text {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-white);
  margin: 0;
  opacity: 0.8;
}

/* .footer-main {
  padding-top: 5rem !important;
  padding-bottom: 5rem !important;
}
 */


/* ============================================
   MOBILE RESPONSIVE STYLES
   ============================================ */

/* ---------- Tablet (≤991px) ---------- */
@media (max-width: 991px) {
  .about-title {
    font-size: 34px;
  }

  .services-title {
    font-size: 34px;
  }

  .why-choose-title {
    font-size: 34px;
  }

  .testimonials-title {
    font-size: 34px;
  }

  .blogs-title {
    font-size: 34px;
  }
}

/* ---------- Mobile (≤767px) ---------- */
@media (max-width: 767px) {

  /* --- About Section --- */
  .about-section {
    padding: 60px 20px 40px;
  }

  .about-visual {
    margin-bottom: 32px;
  }

  .about-photo-frame {
    width: 320px;
  }

  .about-kicker {
    font-size: 22px;
  }

  .about-title {
    font-size: 28px;
  }

  .about-text {
    font-size: 14px;
  }

  .about-lists {
    margin-bottom: 22px;
  }

  .about-btn {
    display: inline-block;
  }

  .about-sparkle--top {
    width: 70px;
    right: 20px;
  }

  .about-sparkle--bottom {
    width: 50px;
    left: 10px;
  }

  /* --- Services Section --- */
  .services-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .services-kicker {
    font-size: 22px;
  }

  .services-title {
    font-size: 28px;
    max-width: 100%;
  }

  .services-view-more {
    margin-top: 8px;
  }

  .services-cards {
    margin-top: 32px;
  }

  .services-card {
    border-radius: 16px;
    padding: 20px 16px 20px;
  }

  .services-card-title {
    font-size: 18px;
  }

  /* --- How It Works Section --- */
  .how-it-works-kicker {
    font-size: 22px;
  }

  .how-it-works-title {
    font-size: 28px;
  }

  .how-it-works-title-accent {
    font-size: 32px;
  }

  .how-it-works-step-title {
    font-size: 24px;
  }

  .how-it-works-circle {
    width: 70px;
    height: 70px;
  }

  .how-it-works-header {
    margin-bottom: 32px;
  }

  /* --- Why Choose Us Section --- */
  .why-choose-kicker {
    font-size: 22px;
  }

  .why-choose-title {
    font-size: 28px;
  }

  .why-choose-desc {
    font-size: 14px;
    max-width: 100%;
  }

  .why-choose-features {
    margin: 0;
  }

  .why-choose-feature {
    padding: 12px 0;
  }

  .why-choose-feature-icon {
    margin: 0 0 12px;
  }

  .why-choose-feature-title {
    font-size: 20px;
    min-height: auto;
  }

  .why-choose-feature-desc {
    font-size: 14px;
  }

  .why-choose-quote-box {
    padding: 28px 20px 32px;
  }

  .why-choose-quote-title {
    font-size: 20px;
  }

  /* --- Testimonials Section --- */
  .testimonials-kicker {
    font-size: 22px;
  }

  .testimonials-title {
    font-size: 28px;
  }

  .testimonials-header {
    margin-bottom: 32px;
  }

  .testimonials-rating {
    margin-top: 24px;
  }

  .testimonials-section .col-lg-9 {
    padding-top: 0;
  }

  .testimonial-card {
    height: auto;
    min-height: 200px;
  }

  .testimonial-quote {
    font-size: 14px;
  }

  /* --- Blog Section --- */
  .blogs-kicker {
    font-size: 16px;
  }

  .blogs-title {
    font-size: 28px;
  }

  .blogs-header {
    margin-bottom: 32px;
  }

  .blog-card-body {
    padding: 16px 40px 20px 16px;
  }

  .blog-card-title {
    font-size: 18px;
  }

  .blog-card-meta {
    gap: 20px;
  }

  /* --- Footer --- */
  .footer-main {
    text-align: left;
  }

  .footer-brand-text {
    margin: 0 0 16px;
    max-width: 100%;
  }

  .footer-column {
    text-align: left;
  }

  .footer-heading {
    font-size: 16px;
  }

  .footer-contact {
    align-items: flex-start;
  }

  .footer-contact li {
    justify-content: flex-start;
  }
}

/* ---------- Small phone (≤420px) ---------- */
@media (max-width: 420px) {
  .about-photo-frame {
    width: 260px;
  }

  .about-title {
    font-size: 24px;
  }

  .services-title {
    font-size: 24px;
  }

  .how-it-works-title {
    font-size: 24px;
  }

  .how-it-works-title-accent {
    font-size: 28px;
  }

  .how-it-works-step-title {
    font-size: 20px;
  }

  .why-choose-title {
    font-size: 24px;
  }

  .why-choose-feature-title {
    font-size: 18px;
  }

  .testimonials-title {
    font-size: 24px;
  }

  .blogs-title {
    font-size: 24px;
  }

  .testimonial-card {
    padding: 20px 16px;
  }

  .testimonial-author {
    gap: 14px;
  }

  .testimonial-author-name {
    font-size: 16px;
  }
}

/* ============================================
   Figma-safe scaling for 1400px desktop design
   (includes banner section)
   ============================================ */

/* 1) Base: on desktop, let .container match the 1400px Figma width */
@media (min-width: 992px) {

  body>header .container,
  body>section .container,
  body>footer .container {
    max-width: 1400px !important;
    width: 100% !important;
  }
}

/* 2) Scale ALL sections (including banner) when viewport < 1400px */
@media (min-width: 992px) and (max-width: 1400px) {

  body>header,
  body>section,
  body>footer {
    zoom: 0.88;
    transform-origin: top center;
  }
}

/* 3) Extra scaling for ~1366px / 125% zoom desktop */
@media (min-width: 992px) and (max-width: 1300px) {

  body>header,
  body>section,
  body>footer {
    zoom: 0.82;
  }
}

/* SCALING CLOSED */

/* ============================================
   ANIMATIONS (Desktop Only)
   ============================================ */

@media (min-width: 992px) {

  /* --- 1. Scroll Reveal --- */
  .reveal-on-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    will-change: opacity, transform;
  }

  .reveal-on-scroll.reveal-visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* Variants */
  .reveal-on-scroll.reveal-left {
    transform: translateX(-24px);
  }

  .reveal-on-scroll.reveal-right {
    transform: translateX(24px);
  }

  .reveal-on-scroll.reveal-fade {
    transform: translateY(0);
  }

  .reveal-on-scroll.reveal-visible.reveal-left,
  .reveal-on-scroll.reveal-visible.reveal-right,
  .reveal-on-scroll.reveal-visible.reveal-fade {
    transform: translate(0, 0);
  }







}

/* User Provided Typewriter CSS */
@keyframes typewriter-reveal {
  from {
    clip-path: inset(0 100% 0 0);
  }

  to {
    clip-path: inset(0 0 0 0);
  }
}

@media (min-width: 992px) {

  h2.typewriter.typewriter-visible,
  .feature-title.typewriter.typewriter-visible,
  .inner-banner-content h1.typewriter.typewriter-visible,
  .banner-title.typewriter.typewriter-visible {
    animation: typewriter-reveal 1.4s ease-out forwards;
  }
}

@media (max-width: 991.98px) {

  h2.typewriter.typewriter-visible,
  .feature-title.typewriter.typewriter-visible,
  .inner-banner-content h1.typewriter.typewriter-visible,
  .banner-title.typewriter.typewriter-visible {
    animation: none;
  }
}

/* ============================================
   INNER PAGES STYLES
   ============================================ */

/* --- Inner Banner --- */
.inner-banner {
  position: relative;
  padding: 160px 0 100px;
  background-color: var(--color-black);
  color: var(--color-white);
  overflow: hidden;
  background-position: center !important;
}

.inner-banner-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0.4;
  z-index: 0;
  /* Optional: Add a subtle scale animation */
  animation: scaleBg 20s linear infinite alternate;

}

@keyframes scaleBg {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.1);
  }
}

.inner-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4));
  z-index: 1;
}

.inner-banner .container {
  position: relative;
  z-index: 2;
}

.page-title {
  font-family: var(--font-heading);
  font-size: 64px;
  font-weight: 700;
  margin-bottom: 24px;
  text-transform: capitalize;
  color: var(--color-white);
  line-height: 1.1;
}

.breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0;
  font-family: var(--font-body);
  font-size: 18px;
  opacity: 0.9;
}

.breadcrumb-item a {
  color: var(--color-white);
  text-decoration: none;
  transition: color 0.3s;
  font-weight: 500;
}

.breadcrumb-item a:hover {
  color: var(--color-primary);
}

.breadcrumb-item.active {
  color: #ffffff;
  font-weight: 600;
}

.breadcrumb-item+.breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.5);
  content: "/";
  padding: 0 12px;
}

/* --- Mission Cards --- */
.mission-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.mission-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08) !important;
}



/* Responsive Inner Banner */
@media (max-width: 991px) {
  .inner-banner {
    padding: 120px 0 80px;
  }

  .page-title {
    font-size: 48px;
  }
}

@media (max-width: 575px) {
  .inner-banner {
    padding: 100px 0 60px;
  }

  .page-title {
    font-size: 36px;
  }

  .breadcrumb {
    font-size: 16px;
  }


}

/* =============================================================
   FRESH LEAVES — PREMIUM ANIMATION PACK v2
   ALL EFFECTS ARE DESKTOP-ONLY (min-width: 992px)
   Themed around: freshness, cleanliness, green nature, gleam
   ============================================================= */


/* ─── CORE KEYFRAMES (global scope) ─────────────────────────── */

@keyframes fl-shimmer {
  0% {
    transform: translateX(-200%) skewX(-15deg);
  }

  100% {
    transform: translateX(400%) skewX(-15deg);
  }
}

@keyframes fl-float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-14px);
  }
}

@keyframes fl-pulse-ring {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }

  100% {
    transform: scale(2.4);
    opacity: 0;
  }
}

@keyframes fl-glow-pulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(0, 103, 56, 0.28);
  }

  50% {
    box-shadow: 0 0 0 16px rgba(0, 103, 56, 0);
  }
}

@keyframes fl-border-draw {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes fl-ripple {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

@keyframes fl-leaf-drop {
  0% {
    transform: translateY(-20px) rotate(-12deg);
    opacity: 0;
  }

  60% {
    opacity: 1;
  }

  100% {
    transform: translateY(0) rotate(0deg);
    opacity: 1;
  }
}

@keyframes fl-wipe-clean {
  0% {
    left: -100%;
  }

  100% {
    left: 110%;
  }
}

@keyframes fl-sparkle-pop {
  0% {
    transform: scale(0) rotate(0deg);
    opacity: 0;
  }

  50% {
    transform: scale(1.3) rotate(45deg);
    opacity: 1;
  }

  100% {
    transform: scale(1) rotate(30deg);
    opacity: 0;
  }
}

@keyframes fl-slide-up {
  from {
    transform: translateY(100%);
    opacity: 0;
  }

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

@keyframes fl-count-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

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


/* ─── DESKTOP-ONLY ANIMATION BLOCK ─────────────────────────── */

@media (min-width: 992px) {

  /* ══════════════════════════════════════════════════════
     1. ABOUT IMAGE — Hover-only float + leaf border ring
     ══════════════════════════════════════════════════════ */

  /* Idle: static, no animation */
  .about-photo-frame {
    transition: transform 0.5s ease;
  }

  /* On hover: frame floats */
  .about-visual:hover .about-photo-frame {
    animation: fl-float 3s ease-in-out infinite;
  }

  /* ::before — idle keeps the original solid green border (from base styles).
     On hover it upgrades to the conic gradient + glow */
  .about-photo-frame::before {
    transition: filter 0.5s ease;
  }

  .about-visual:hover .about-photo-frame::before {
    border: 3px solid transparent;
    background:
      linear-gradient(white, white) padding-box,
      conic-gradient(var(--color-primary) 0deg,
        var(--color-light-green) 120deg,
        var(--color-primary) 240deg,
        rgba(0, 103, 56, 0.15) 360deg) border-box;
    filter: drop-shadow(0 0 14px rgba(0, 103, 56, 0.5));
  }

  /* Outer dashed ring — appears on hover */
  .about-photo-frame::after {
    content: "";
    position: absolute;
    inset: -12px;
    border-radius: 50%;
    border: 2px dashed rgba(0, 103, 56, 0.3);
    pointer-events: none;
    z-index: 0;
    opacity: 0;
    transform: scale(0.85);
    transition: opacity 0.5s ease, transform 0.5s ease;
  }

  .about-visual:hover .about-photo-frame::after {
    opacity: 1;
    transform: scale(1);
  }

  /* Photo scale on hover */
  .about-visual:hover .about-photo {
    transform: translate(-20px, -19px) scale(1.07) !important;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1) !important;
  }

  /* Sparkle decorators — always floating */
  .about-sparkle--top {
    animation: fl-float 4s ease-in-out 0.2s infinite;
  }

  .about-sparkle--bottom {
    animation: fl-float 4.5s ease-in-out 0.5s infinite;
    transform-origin: center;
  }


  /* ══════════════════════════════════════════════════════
     2. SERVICES CARDS — "Clean Cloth Wipe" Effect
     A translucent white cloth sweeps across on hover
     ══════════════════════════════════════════════════════ */

  .services-card {
    position: relative;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
      box-shadow 0.4s ease !important;
  }

  .services-card:hover {
    transform: translateY(-10px) !important;
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.22) !important;
  }

  /* The wipe cloth element */
  .services-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 55%;
    height: 100%;
    background: linear-gradient(120deg,
        transparent 0%,
        rgba(255, 255, 255, 0.12) 40%,
        rgba(255, 255, 255, 0.28) 50%,
        rgba(255, 255, 255, 0.12) 60%,
        transparent 100%);
    transform: skewX(-10deg);
    pointer-events: none;
    z-index: 5;
  }

  .services-card:hover::after {
    animation: fl-wipe-clean 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  }

  /* Image zoom + green reveal overlay from bottom */
  .services-card-img-wrap {
    overflow: hidden;
    border-radius: 14px;
    position: relative;
  }

  .services-card-img {
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1) !important;
  }

  .services-card:hover .services-card-img {
    transform: scale(1.08) !important;
  }

  /* Green leaf-colored bottom overlay */
  .services-card-img-wrap::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: linear-gradient(to top,
        rgba(0, 103, 56, 0.75) 0%,
        rgba(0, 103, 56, 0.3) 60%,
        transparent 100%);
    transition: height 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    border-radius: 14px;
    z-index: 2;
  }

  .services-card:hover .services-card-img-wrap::after {
    height: 70%;
  }

  /* Arrow becomes white on hover */
  .services-card-arrow {
    transition: background 0.3s ease, transform 0.4s cubic-bezier(0.22, 1, 0.36, 1) !important;
    z-index: 5;
  }

  .services-card:hover .services-card-arrow {
    background: #fff !important;
    transform: scale(1.2) rotate(45deg) !important;
  }

  .services-card:hover .services-card-arrow i {
    color: var(--color-primary) !important;
  }


  /* ══════════════════════════════════════════════════════
     3. TESTIMONIAL CARDS — Gleam + Sparkle Stars
     On hover: green left accent + floating star sparkles
     ══════════════════════════════════════════════════════ */

  .testimonial-card {
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
      box-shadow 0.4s ease !important;
    position: relative;
    overflow: hidden;
  }

  /* Left green accent bar */
  .testimonial-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0%;
    background: linear-gradient(to bottom, var(--color-light-green), var(--color-primary));
    transition: height 0.4s ease;
    border-radius: 0 4px 4px 0;
    z-index: 3;
  }

  .testimonial-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 20px 40px rgba(0, 103, 56, 0.12) !important;
  }

  .testimonial-card:hover::before {
    height: 100%;
  }

  /* Gleam sweep on hover */
  .testimonial-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: -80%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg,
        transparent 0%,
        rgba(255, 255, 255, 0.22) 50%,
        transparent 100%);
    transform: skewX(-15deg);
    pointer-events: none;
    z-index: 2;
  }

  .testimonial-card:hover::after {
    animation: fl-shimmer 0.6s ease forwards;
  }

  /* Stars rise on hover */
  .testimonial-card:hover .fa-star {
    display: inline-block;
    animation: fl-leaf-drop 0.4s ease forwards;
  }

  .testimonial-card:hover .fa-star:nth-child(1) {
    animation-delay: 0s;
  }

  .testimonial-card:hover .fa-star:nth-child(2) {
    animation-delay: 0.05s;
  }

  .testimonial-card:hover .fa-star:nth-child(3) {
    animation-delay: 0.1s;
  }

  .testimonial-card:hover .fa-star:nth-child(4) {
    animation-delay: 0.15s;
  }

  .testimonial-card:hover .fa-star:nth-child(5) {
    animation-delay: 0.2s;
  }


  /* ══════════════════════════════════════════════════════
     4. BLOG CARDS — Elegant Lift + Image Zoom + Shine
     Border traces around the card in brand green
     ══════════════════════════════════════════════════════ */

  .blog-card {
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1) !important;
  }

  .blog-card:hover {
    transform: translateY(-8px) !important;
  }

  /* Animated border shimmer on the offset shadow ::before */
  .blog-card::before {
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
      border-color 0.4s ease,
      opacity 0.4s ease !important;
  }

  .blog-card:hover::before {
    transform: translate(16px, 16px) !important;
    border-color: var(--color-light-green) !important;
    opacity: 0.7;
  }

  /* Image zoom */
  .blog-card-img {
    overflow: hidden;
  }

  .blog-card-img img {
    transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1) !important;
  }

  .blog-card:hover .blog-card-img img {
    transform: scale(1.08) !important;
  }

  /* Shine sweep on hover */
  .blog-card-inner {
    position: relative;
    overflow: hidden;
  }

  .blog-card-inner::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 55%;
    height: 100%;
    background: linear-gradient(120deg,
        transparent 0%,
        rgba(255, 255, 255, 0.2) 50%,
        transparent 100%);
    transform: skewX(-15deg);
    z-index: 5;
    pointer-events: none;
  }

  .blog-card:hover .blog-card-inner::after {
    animation: fl-shimmer 0.7s ease forwards;
  }


  /* ══════════════════════════════════════════════════════
     5. HOW IT WORKS — Pulsing Green Glow Rings
     Each step circle breathes with a green glow ring
     ══════════════════════════════════════════════════════ */

  .how-it-works-circle {
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
  }

  /* Persistent pulse ring behind the circle */
  .how-it-works-circle::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid rgba(0, 103, 56, 0.35);
    animation: fl-pulse-ring 2.8s ease-out infinite;
  }

  .how-it-works-step:nth-child(1) .how-it-works-circle::after {
    animation-delay: 0s;
  }

  .how-it-works-step:nth-child(3) .how-it-works-circle::after {
    animation-delay: 0.7s;
  }

  .how-it-works-step:nth-child(5) .how-it-works-circle::after {
    animation-delay: 1.4s;
  }

  .how-it-works-step:nth-child(7) .how-it-works-circle::after {
    animation-delay: 2.1s;
  }

  .how-it-works-step:hover .how-it-works-circle {
    transform: scale(1.12) !important;
    animation: fl-glow-pulse 1s ease-in-out 1;
  }

  .how-it-works-step-title {
    transition: transform 0.3s ease, color 0.3s ease !important;
  }

  .how-it-works-step:hover .how-it-works-step-title {
    transform: translateY(-4px) !important;
  }


  /* ══════════════════════════════════════════════════════
     6. BUTTONS — Shine Sweep + Magnetic Lift
     Premium button interactions
     ══════════════════════════════════════════════════════ */

  .banner-btn,
  .about-btn,
  .btn-quote,
  .services-view-more {
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
  }

  /* Shine layer */
  .banner-btn::before,
  .about-btn::before,
  .btn-quote::before {
    content: "";
    position: absolute;
    top: 0;
    left: -80%;
    width: 55%;
    height: 100%;
    background: linear-gradient(120deg,
        transparent 0%,
        rgba(255, 255, 255, 0.35) 50%,
        transparent 100%);
    transform: skewX(-15deg);
    pointer-events: none;
    z-index: 2;
  }

  .banner-btn:hover::before,
  .about-btn:hover::before,
  .btn-quote:hover::before {
    animation: fl-shimmer 0.6s ease forwards;
  }

  .banner-btn:hover,
  .about-btn:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 14px 30px rgba(0, 103, 56, 0.4) !important;
  }

  .btn-quote:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 10px 22px rgba(0, 103, 56, 0.35) !important;
  }

  /* Ghost button fill */
  .services-view-more {
    transition: background 0.35s ease, color 0.35s ease,
      transform 0.3s ease, box-shadow 0.3s ease !important;
  }

  .services-view-more:hover {
    background: #fff !important;
    color: var(--color-primary) !important;
    transform: translateY(-4px) !important;
    box-shadow: 0 10px 24px rgba(255, 255, 255, 0.2) !important;
  }

  /* Ripple click effect */
  .banner-btn,
  .about-btn,
  .btn-quote {
    -webkit-tap-highlight-color: transparent;
  }


  /* ══════════════════════════════════════════════════════
     7. NAV LINKS — Green Underline Slide-In
     ══════════════════════════════════════════════════════ */

  .header-nav .nav-link {
    position: relative;
    transition: color 0.25s ease !important;
  }

  .header-nav .nav-link::after {
    content: "";
    position: absolute;
    bottom: 2px;
    left: 50%;
    right: 50%;
    height: 2px;
    background: var(--color-primary);
    border-radius: 999px;
    transition: left 0.3s ease, right 0.3s ease;
  }

  .header-nav .nav-link:hover::after,
  .header-nav .nav-link.active::after {
    left: 0.5rem;
    right: 0.5rem;
  }


  /* ══════════════════════════════════════════════════════
     8. BANNER HERO IMAGES — Float on hover only
     ══════════════════════════════════════════════════════ */

  .back-card-wrap,
  .front-card-wrap {
    transition: transform 0.4s ease;
  }

  .banner-visual:hover .back-card-wrap {
    animation: fl-float 5s ease-in-out 0s infinite;
  }

  .banner-visual:hover .front-card-wrap {
    animation: fl-float 5s ease-in-out 0.8s infinite;
  }


  /* ══════════════════════════════════════════════════════
     9. SECTION KICKER LINES — Animate on reveal
     ══════════════════════════════════════════════════════ */

  .about-kicker-line,
  .services-kicker-line,
  .how-it-works-kicker-line,
  .why-choose-kicker-line,
  .testimonials-kicker-line,
  .blogs-kicker-line {
    transition: width 0.7s cubic-bezier(0.22, 1, 0.36, 1) !important;
  }

  .reveal-visible .about-kicker-line,
  .reveal-visible .services-kicker-line,
  .reveal-visible .how-it-works-kicker-line,
  .reveal-visible .why-choose-kicker-line,
  .reveal-visible .testimonials-kicker-line,
  .reveal-visible .blogs-kicker-line {
    width: 44px;
  }


  /* ══════════════════════════════════════════════════════
     10. LOGO — Subtle Lift on hover
     ══════════════════════════════════════════════════════ */

  .navbar-brand {
    transition: transform 0.35s ease !important;
  }

  .navbar-brand:hover {
    transform: scale(1.04) !important;
  }


  /* ══════════════════════════════════════════════════════
     11. STICKY HEADER — Box shadow when scrolled
     Applied via JS class 'is-sticky'
     ══════════════════════════════════════════════════════ */

  .site-header.is-sticky {
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: box-shadow 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1) !important;
  }


  /* ══════════════════════════════════════════════════════
     12. SCROLL REVEAL — Up variant
     ══════════════════════════════════════════════════════ */

  .reveal-on-scroll.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .reveal-on-scroll.reveal-up.reveal-visible {
    opacity: 1;
    transform: translateY(0);
  }

}

/* end @media (min-width: 992px) */


/* ══════════════════════════════════════════════════════
   MOBILE RESET — ZERO ANIMATIONS BELOW 992px
   All hover transforms, animations, transitions off
   ══════════════════════════════════════════════════════ */

@media (max-width: 991.98px) {

  /* Kill all transforms and animations */
  *,
  *::before,
  *::after {
    animation-play-state: paused !important;
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }

  /* Exceptions: keep opacity transitions for reveal */
  .reveal-on-scroll {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  /* Prevent hover transforms */
  .services-card:hover,
  .testimonial-card:hover,
  .blog-card:hover,
  .banner-btn:hover,
  .about-btn:hover,
  .btn-quote:hover,
  .navbar-brand:hover,
  .how-it-works-step:hover .how-it-works-circle {
    transform: none !important;
    box-shadow: none !important;
  }

  /* Remove floating images */
  .back-card-wrap,
  .front-card-wrap,
  .about-photo-frame,
  .about-sparkle--top,
  .about-sparkle--bottom {
    animation: none !important;
    transform: none !important;
  }

  /* Banner cards look normal */
  .back-card-wrap,
  .front-card-wrap {
    animation: none !important;
  }
}


/* ── PREFERS REDUCED MOTION (global) ─────────────────── */

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}


/* ════════════════════════════════════════════════════
   CONTACT US PAGE
   ════════════════════════════════════════════════════ */

/* ---- Curved Banner ---- */
.contact-banner {
  position: relative;
  height: 260px;
  overflow: hidden;
  border-radius: 0 0 40px 40px;
  margin: 0 20px;
}

.contact-banner-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.contact-banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 103, 56, 0.65);
}

.contact-banner-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  height: 100%;
  text-align: center;
}

.contact-banner-content h1 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 42px;
  color: #fff;
  margin-bottom: 10px;
  font-style: italic;
}

.contact-banner .breadcrumb {
  gap: 6px;
}

.contact-banner .breadcrumb-item,
.contact-banner .breadcrumb-item a {
  color: rgba(255, 255, 255, 0.8);
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 1.5px;
  text-decoration: none;
}

.contact-banner .breadcrumb-item.active {
  color: #fff;
}

.contact-banner .breadcrumb-item+.breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.6);
  content: "/";
}

/* ---- Contact Section ---- */
.contact-page-section {
  padding: 80px 0;
  background: #fff;
}

/* Form Card */
.contact-page-form-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 16px;
  padding: 40px 36px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.contact-page-label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  color: var(--color-black);
  margin-bottom: 8px;
}

.contact-page-input {
  width: 100%;
  border: 1px solid #d4d4d4;
  border-radius: 8px;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-black);
  background: #fff;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  outline: none;
}

.contact-page-input:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(0, 103, 56, 0.08);
}

.contact-page-textarea {
  resize: vertical;
  min-height: 140px;
}

.contact-page-select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

.contact-page-submit {
  display: block;
  width: 100%;
  margin-top: 20px;
  padding: 14px;
  background: var(--color-primary);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.2s ease;
}

.contact-page-submit:hover {
  background: var(--color-primary-dark-2);
  transform: translateY(-1px);
}

/* Contact Info */
.contact-page-info {
  padding: 10px 0 10px 20px;
}

.contact-page-kicker {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  color: var(--color-primary);
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.contact-page-info-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 36px;
  color: var(--color-black);
  margin: 0 0 16px;
  line-height: 1.2;
}

.contact-page-info-desc {
  font-family: var(--font-body);
  font-size: 14px;
  color: #666;
  line-height: 1.75;
  margin-bottom: 32px;
}

/* Detail list */
.contact-page-details {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-page-details li,
.contact-page-details li a {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--color-black);
  font-family: var(--font-body);
  font-size: 14px;
  transition: color 0.2s ease;
}

.contact-page-details li a:hover {
  color: var(--color-primary);
}

.contact-page-details li i {
  color: var(--color-primary);
  font-size: 16px;
  width: 20px;
  text-align: center;
  flex-shrink: 0;
}

/* Social */
.contact-page-social-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  color: var(--color-black);
  margin: 0 0 12px;
}

.contact-page-social-links {
  display: flex;
  gap: 14px;
}

.contact-page-social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #f0f0f0;
  color: var(--color-black);
  font-size: 16px;
  transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease;
}

.contact-page-social-links a:hover {
  background: var(--color-primary);
  color: #fff;
  transform: translateY(-2px);
}

/* ---- Map ---- */
.contact-page-map {
  width: 100%;
  line-height: 0;
}

.contact-page-map iframe {
  width: 100%;
  display: block;
}

/* ---- Newsletter Bar ---- */
.contact-page-newsletter {
  background: var(--color-primary);
  padding: 36px 0;
}

.contact-page-newsletter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.contact-page-newsletter-text h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 22px;
  color: #fff;
  margin: 0 0 4px;
  font-style: italic;
}

.contact-page-newsletter-text p {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.contact-page-newsletter-input-wrap {
  display: flex;
  background: #fff;
  border-radius: 999px;
  overflow: hidden;
  min-width: 320px;
}

.contact-page-newsletter-input-wrap input {
  flex: 1;
  border: none;
  outline: none;
  padding: 12px 20px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-black);
  background: transparent;
}

.contact-page-newsletter-input-wrap button {
  border: none;
  background: transparent;
  padding: 12px 18px;
  color: var(--color-primary);
  font-size: 16px;
  cursor: pointer;
  transition: color 0.2s ease;
}

.contact-page-newsletter-input-wrap button:hover {
  color: var(--color-primary-dark-2);
}

/* ---- Responsive ---- */
@media (max-width: 991.98px) {
  .contact-banner {
    height: 220px;
    margin: 0 12px;
    border-radius: 0 0 28px 28px;
  }

  .contact-banner-content h1 {
    font-size: 32px;
  }

  .contact-page-section {
    padding: 50px 0;
  }

  .contact-page-info {
    padding: 10px 0;
  }
}

@media (max-width: 767.98px) {
  .contact-banner {
    height: 190px;
    margin: 0 10px;
    border-radius: 0 0 22px 22px;
  }

  .contact-banner-content h1 {
    font-size: 26px;
  }

  .contact-page-form-card {
    padding: 28px 22px;
  }

  .contact-page-info-title {
    font-size: 28px;
  }

  .contact-page-newsletter-inner {
    flex-direction: column;
    text-align: center;
  }

  .contact-page-newsletter-input-wrap {
    min-width: 100%;
  }
}



/* ============================================
   BLOG TEMPLATES STYLING
   ============================================ */

.blog-detail-section,
.blog-list-section {
  padding: 80px 0 100px;
  background: #f5f5f5;
}

/* ── Blog List Grid ────────────────────────── */
.blog-list-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

@media (max-width: 767.98px) {
  .blog-list-grid {
    grid-template-columns: 1fr;
  }
}

.blog-list-item {
  background: #111111;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(.22, 1, .36, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.blog-list-item:hover {
  transform: translateY(-6px);
  border-color: var(--color-primary);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.blog-list-thumb {
  height: 220px;
  overflow: hidden;
}

.blog-list-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.blog-list-item:hover .blog-list-thumb img {
  transform: scale(1.08);
}

.blog-list-content {
  padding: 28px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.blog-list-content h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 14px;
  line-height: 1.4;
}

.blog-list-content h3 a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-list-content h3 a:hover {
  color: var(--color-primary);
}

.blog-list-excerpt {
  font-size: 14px;
  line-height: 1.7;
  color: #fff;
  font-weight: 600;
  margin-bottom: 18px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.blog-list-meta {
  display: flex;
  gap: 18px;
  font-size: 13px;
  color: #fff;
  font-weight: 700;
  font-family: var(--font-body);
  margin-top: auto;
}

.blog-list-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.blog-list-meta i {
  color: var(--color-primary);
}

/* ── Pagination ─────────────────────────────── */
.blog-list-wrapper .pagination {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.blog-list-wrapper .pagination .page-numbers {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  color: #fff;
  background: #111111;
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
}

.blog-list-wrapper .pagination .page-numbers.current,
.blog-list-wrapper .pagination .page-numbers:hover {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}

.blog-list-wrapper .pagination .page-numbers.prev,
.blog-list-wrapper .pagination .page-numbers.next {
  width: auto;
  padding: 0 20px;
}

/* ── Sidebar ─────────────────────────────────── */
.service-sidebar {
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: sticky;
  top:100px;
}

.sidebar-widget {
  background: #111111;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 28px;
}

.sidebar-widget-title {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

.sidebar-widget-title::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 36px;
  height: 2px;
  background: var(--color-primary);
  border-radius: 2px;
}

/* Search */
.sidebar-widget .search-form .form-control {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px 0 0 8px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 14px;
  outline: none;
  box-shadow: none;
}

.sidebar-widget .search-form .form-control::placeholder {
  color: #fff;
}

.sidebar-widget .search-form .form-control:focus {
  border-color: var(--color-primary);
  background: rgba(255, 255, 255, 0.1);
}

.sidebar-widget .search-form .btn-warning {
  background: var(--color-primary);
  border: none;
  border-radius: 0 8px 8px 0;
  color: #fff;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 700;
  transition: background 0.25s ease;
}

.sidebar-widget .search-form .btn-warning:hover {
  background: #00522c;
  color: #fff;
}

/* Latest posts */
.sidebar-posts-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.sidebar-post-item {
  display: flex;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.sidebar-post-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.sidebar-post-thumb {
  width: 70px;
  height: 70px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

.sidebar-post-thumb a {
  display: block;
  height: 100%;
}

.sidebar-post-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.sidebar-post-item:hover .sidebar-post-thumb img {
  transform: scale(1.08);
}

.sidebar-post-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sidebar-post-info h5 {
  font-family: var(--font-heading);
  font-size: 14px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 5px;
  line-height: 1.4;
}

.sidebar-post-info h5 a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.sidebar-post-info h5 a:hover {
  color: var(--color-primary);
}

.sidebar-post-date {
  font-size: 12px;
  color: #fff;
  font-weight: 700;
  font-family: var(--font-body);
}

/* Sidebar CTA */
.sidebar-cta {
  background: linear-gradient(145deg, var(--color-primary) 0%, #003d20 100%) !important;
  border: none !important;
  position: relative;
  overflow: hidden;
}

.sidebar-cta::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  bottom: -50px;
  right: -50px;
  pointer-events: none;
}

.sidebar-cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sidebar-cta-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #a8e6c0;
  margin-bottom: 4px;
}

.sidebar-cta-inner h4 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

.sidebar-cta-inner p {
  font-size: 14px;
  color: #fff;
  font-weight: 600;
  margin: 0;
  line-height: 1.6;
}

.btn-sidebar-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
  padding: 11px 22px;
  background: #fff;
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  border-radius: 999px;
  text-decoration: none;
  width: fit-content;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-sidebar-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  color: var(--color-primary);
  text-decoration: none;
}

/* ── Single post content ─────────────────────── */
.blog-detail-wrapper {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  padding: 40px 42px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.single-service-featured {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 28px;
}

.single-service-featured img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  object-fit: cover;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  margin-bottom: 28px;
}

.blog-meta span {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: #333 !important;
  font-weight: 700;
  font-family: var(--font-body);
}

.blog-meta i {
  color: var(--color-primary) !important;
}

/* Post body typography */
.single-service-body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.85;
  color: #222;
  font-weight: 500;
}

.single-service-body h1,
.single-service-body h2,
.single-service-body h3,
.single-service-body h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: #006839;
  margin: 36px 0 14px;
}

.single-service-body h2 {
  font-size: 24px;
  padding-left: 16px;
  border-left: 3px solid var(--color-primary);
}

.single-service-body h3 {
  font-size: 20px;
}

.single-service-body h4 {
  font-size: 16px;
}

.single-service-body p {
  margin-bottom: 20px;
}

.single-service-body ul,
.single-service-body ol {
  padding-left: 22px;
  margin-bottom: 20px;
  color: #222;
  font-weight: 500;
}

.single-service-body li {
  margin-bottom: 8px;
}

.single-service-body a {
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 700;
}

.single-service-body a:hover {
  color: #004d2a;
}

.single-service-body img {
  border-radius: 10px;
  max-width: 100%;
  height: auto;
  margin: 18px 0;
}

.single-service-body blockquote {
  margin: 28px 0;
  padding: 20px 24px;
  background: #f8f8f8;
  border-left: 3px solid var(--color-primary);
  border-radius: 0 10px 10px 0;
  font-size: 16px;
  font-style: italic;
  color: #333;
  font-weight: 500;
}

/* ── Post navigation ─────────────────────────── */
.post-navigation {
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid rgba(0, 0, 0, 0.1) !important;
}

.nav-card {
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 24px;
  transition: all 0.4s ease;
  height: 100%;
}

.nav-card a {
  text-decoration: none;
  display: block;
}

.nav-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-primary);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  background: #222222;
}

.nav-label {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--color-primary);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  margin-bottom: 8px;
  font-family: var(--font-body);
}

.nav-title {
  font-family: var(--font-heading);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 0;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.nav-card:hover .nav-title {
  color: var(--color-primary);
}

.next-nav-card {
  text-align: right;
}

.next-nav-card .nav-label {
  justify-content: flex-end;
}

/* ── Responsive ──────────────────────────────── */
@media (max-width: 991.98px) {

  .blog-detail-section,
  .blog-list-section {
    padding: 60px 0 80px;
  }

  .blog-detail-wrapper {
    padding: 28px 22px;
  }
}

@media (max-width: 575.98px) {
  .blog-detail-wrapper {
    padding: 20px 16px;
  }

  .blog-meta {
    gap: 12px;
  }

  .next-nav-card {
    text-align: left;
  }

  .next-nav-card .nav-label {
    justify-content: flex-start;
  }
}

/* ============================================
   SERVICES PAGE
   ============================================ */

.services-page-section {
  position: relative;
  padding: 80px 0 100px;
  background: #f5f5f5;
  overflow: hidden;
}

.services-page-bg {
  position: absolute;
  inset: 0;
  background-image: url('assets/images/services-bg.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.04;
  pointer-events: none;
}

.services-page-subtitle {
  color: #555;
  font-family: var(--font-body);
  font-size: 15px;
  max-width: 620px;
  margin: 0 auto 20px;
  letter-spacing: 0.3px;
  line-height: 1.7;
}

/* Floating star decoration */
.services-page-star {
  position: absolute;
  left: 20px;
  top: 60px;
  z-index: 2;
  pointer-events: none;
  max-width: 110px;
  animation: servicesStarFloat 7s ease-in-out infinite;
  opacity: 0.7;
}

@keyframes servicesStarFloat {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  25% {
    transform: translateY(-12px) rotate(5deg);
  }

  50% {
    transform: translateY(0) rotate(0deg);
  }

  75% {
    transform: translateY(12px) rotate(-5deg);
  }
}

/* Kicker */
.services-page-kicker {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 14px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.services-page-kicker-line {
  width: 40px;
  height: 2px;
  background: var(--color-primary);
  border-radius: 999px;
  display: inline-block;
}

/* Title */
.services-page-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 44px;
  line-height: 1.2;
  margin: 0 0 16px;
  color: var(--color-black);
}

.services-page-title-accent {
  color: var(--color-primary);
}

/* Divider with leaf */
.services-page-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 8px;
}

.services-page-divider span {
  width: 50px;
  height: 1px;
  background: var(--color-primary);
  opacity: 0.4;
}

.services-page-divider i {
  color: var(--color-primary);
  font-size: 18px;
  opacity: 0.6;
}

@media (max-width: 767.98px) {
  .services-page-title {
    font-size: 30px;
  }

  .services-page-star {
    max-width: 60px;
    top: 30px;
    left: 10px;
  }
}

/* Service card */
.sp-service-card {
  position: relative;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  height: 100%;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Animated corner border */
.sp-card-border {
  position: absolute;
  inset: 0;
  border-radius: 14px;
  z-index: 1;
  pointer-events: none;
}

.sp-card-border::before,
.sp-card-border::after {
  content: '';
  position: absolute;
  transition: all 0.5s ease;
}

/* Top-left corner accent */
.sp-card-border::before {
  top: 0;
  left: 0;
  width: 60px;
  height: 60px;
  border-top: 2px solid var(--color-primary);
  border-left: 2px solid var(--color-primary);
  border-radius: 14px 0 0 0;
}

/* Bottom-right corner accent */
.sp-card-border::after {
  bottom: 0;
  right: 0;
  width: 60px;
  height: 60px;
  border-bottom: 2px solid var(--color-primary);
  border-right: 2px solid var(--color-primary);
  border-radius: 0 0 14px 0;
}

/* On hover — expand corner accents to full border */
.sp-service-card:hover .sp-card-border::before {
  width: 100%;
  height: 100%;
  border-radius: 14px;
  border: 2px solid rgba(0, 103, 56, 0.5);
}

.sp-service-card:hover .sp-card-border::after {
  width: 0;
  height: 0;
}

.sp-service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0, 103, 56, 0.15);
}

/* Image */
.sp-service-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.sp-service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.sp-service-card:hover .sp-service-image img {
  transform: scale(1.06);
}

/* Content */
.sp-service-content {
  padding: 28px 24px 32px;
}

.sp-service-title {
  color: #fff;
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.sp-service-desc {
  color: rgba(255, 255, 255, 0.65);
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.sp-service-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-light-green);
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
}

.sp-service-btn i {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.sp-service-btn:hover {
  color: var(--color-primary);
}

.sp-service-btn:hover i {
  transform: translateX(4px);
}

@media (max-width: 991.98px) {
  .services-page-section {
    padding: 60px 20px;
  }
}

@media (max-width: 767.98px) {
  .services-page-section {
    padding: 50px 15px;
  }

  .sp-service-image {
    height: 180px;
  }
}

/* ============================================
   SINGLE SERVICE PAGE
   ============================================ */

.single-service-section {
  padding: 80px 0 100px;
  background: #f5f5f5;
}

/* Featured image — scoped to service page */
.single-service-section .single-service-featured {
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 36px;
  border: 1px solid rgba(0, 103, 56, 0.2);
}

.single-service-section .single-service-featured img {
  width: 100%;
  height: 450px;
  display: block;
  object-fit: cover;
}

/* Content body — scoped to service page */
.single-service-section .single-service-body {
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.85;
}

.single-service-section .single-service-body h2,
.single-service-section .single-service-body h3,
.single-service-section .single-service-body h4 {
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  margin: 32px 0 14px;
}

.single-service-section .single-service-body h2 {
  font-size: 26px;
  padding-left: 16px;
  border-left: 3px solid var(--color-primary);
  color: var(--color-primary);
}

.single-service-section .single-service-body h3 {
  font-size: 21px;
  color: var(--color-primary);
}

.single-service-section .single-service-body h4 {
  font-size: 17px;
  color: var(--color-light-green);
	
}

.single-service-section .single-service-body p {
  margin-bottom: 18px;
 color: var(--bs-black);
}

.single-service-section .single-service-body ul,
.single-service-section .single-service-body ol {
  padding-left: 20px;
  margin-bottom: 20px;
}

.single-service-section .single-service-body li {
  margin-bottom: 8px;
}

.single-service-section .single-service-body img {
  max-width: 100%;
  border-radius: 10px;
  margin: 20px 0;
}

.single-service-section .single-service-body a {
  color: var(--color-light-green);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.single-service-section .single-service-body a:hover {
  color: var(--color-primary);
}

.single-service-section .single-service-body blockquote {
  border-left: 3px solid var(--color-primary);
  padding: 16px 24px;
  margin: 24px 0;
  background: rgba(0, 103, 56, 0.06);
  border-radius: 0 10px 10px 0;
  font-style: italic;
  color: rgba(255, 255, 255, 0.8);
}

/* ---- Sidebar — scoped to service page ---- */
.single-service-section .service-sidebar {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Sidebar widgets — service page overrides */
.single-service-section .sidebar-widget {
  background: rgba(10, 20, 12, 0.92);
  border: 1px solid rgba(0, 103, 56, 0.2);
  border-radius: 14px;
  padding: 28px;
  margin-bottom: 0;
}

.single-service-section .sidebar-widget-title {
  color: #fff;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(0, 103, 56, 0.2);
  position: relative;
}

.single-service-section .sidebar-widget-title::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 36px;
  height: 2px;
  background: var(--color-primary);
  border-radius: 2px;
}

/* Services list */
.sidebar-services-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-services-list li {
  margin-bottom: 0;
}

.sidebar-services-list li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--font-body);
  font-size: 14px;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.sidebar-services-list li a i {
  font-size: 10px;
  color: var(--color-primary);
  transition: transform 0.3s ease;
}

.sidebar-services-list li a:hover,
.sidebar-services-list li.active a {
  background: rgba(0, 103, 56, 0.1);
  color: var(--color-light-green);
}

.sidebar-services-list li.active a {
  font-weight: 700;
  border-left: 3px solid var(--color-primary);
  border-radius: 0 8px 8px 0;
}

.sidebar-services-list li a:hover i {
  transform: translateX(3px);
}

/* Sidebar CTA — service page overrides */
.single-service-section .sidebar-cta {
  background: linear-gradient(145deg, var(--color-primary) 0%, #003d20 100%) !important;
  border: none !important;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.single-service-section .sidebar-cta::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  bottom: -50px;
  right: -50px;
  pointer-events: none;
}

.single-service-section .sidebar-cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
}

.single-service-section .sidebar-cta-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.single-service-section .sidebar-cta-icon i {
  font-size: 22px;
  color: #a8e6c0;
}

.single-service-section .sidebar-cta h4 {
  color: #fff;
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 6px;
}

.single-service-section .sidebar-cta p {
  color: rgba(255, 255, 255, 0.8);
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.single-service-section .btn-sidebar-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--color-primary);
  border: none;
  border-radius: 999px;
  padding: 11px 24px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.single-service-section .btn-sidebar-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  color: var(--color-primary);
}

/* Why Choose Us features list */
.sidebar-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  color: rgba(255, 255, 255, 0.75);
  font-family: var(--font-body);
  font-size: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.sidebar-features li:last-child {
  border-bottom: none;
}

.sidebar-features li i {
  color: var(--color-primary);
  font-size: 14px;
  flex-shrink: 0;
}

/* Responsive */
@media (max-width: 991.98px) {
  .single-service-section {
    padding: 60px 20px;
  }

  .single-service-section .service-sidebar {
    position: static;
  }
}

@media (max-width: 767.98px) {
  .single-service-section {
    padding: 50px 15px;
  }
}


/* ============================================
   QUOTE POPUP MODAL
   ============================================ */
.quote-popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
	  pointer-events: none;

  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.quote-popup-overlay.active {
  opacity: 1;
  visibility: visible;
	  pointer-events: auto;

}

.quote-popup {
  position: relative;
  width: 90%;
  max-width: 520px;
  background: rgba(0, 60, 30, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 20px;
  padding: 40px 36px;
  transform: translateY(30px) scale(0.95);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.quote-popup-overlay.active .quote-popup {
  transform: translateY(0) scale(1);
}

.quote-popup-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease;
}

.quote-popup-close:hover {
  background: rgba(255, 255, 255, 0.25);
}

.quote-popup-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 28px;
  font-style: italic;
  color: #fff;
  margin: 0 0 6px;
  text-align: center;
}

.quote-popup-desc {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  margin: 0 0 24px;
}

.quote-popup-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.quote-popup-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.quote-popup-field {
  display: flex;
  flex-direction: column;
}

.quote-popup-field label {
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.quote-popup-field input,
.quote-popup-field select,
.quote-popup-field textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 0;
  padding: 10px 0;
  font-family: var(--font-body);
  font-size: 14px;
  color: #fff;
  background: transparent;
  outline: none;
  transition: border-color 0.2s ease;
}

.quote-popup-field input::placeholder,
.quote-popup-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.quote-popup-field input:focus,
.quote-popup-field select:focus,
.quote-popup-field textarea:focus {
  border-bottom-color: #fff;
}

.quote-popup-field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23fff' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0 center;
  padding-right: 20px;
  cursor: pointer;
}

.quote-popup-field select option {
  background: #1a3d2a;
  color: #fff;
}

.quote-popup-field textarea {
  resize: none;
  min-height: 70px;
}

.quote-popup-submit {
  display: block;
  width: 80%;
  margin: 6px auto 0;
  padding: 14px;
  background: var(--color-primary);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
}

.quote-popup-submit:hover {
  background: var(--color-primary-dark-2);
  transform: translateY(-2px);
}

@media (max-width: 575.98px) {
  .quote-popup {
    padding: 32px 24px;
  }

  .quote-popup-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .quote-popup-title {
    font-size: 24px;
  }
}

/* ============================================
   WPFORMS OVERRIDES (Glass Forms + Popup)
   ============================================ */
.banner-glass-form .wpforms-container,
.banner-glass-form-mobile .wpforms-container,
.quote-popup .wpforms-container {
  max-width: 100% !important;
}

.banner-glass-form .wpforms-form input[type="text"],
.banner-glass-form .wpforms-form input[type="email"],
.banner-glass-form .wpforms-form input[type="tel"],
.banner-glass-form .wpforms-form input[type="number"],
.banner-glass-form .wpforms-form select,
.banner-glass-form .wpforms-form textarea,
.banner-glass-form-mobile .wpforms-form input[type="text"],
.banner-glass-form-mobile .wpforms-form input[type="email"],
.banner-glass-form-mobile .wpforms-form input[type="tel"],
.banner-glass-form-mobile .wpforms-form input[type="number"],
.banner-glass-form-mobile .wpforms-form select,
.banner-glass-form-mobile .wpforms-form textarea,
.quote-popup .wpforms-form input[type="text"],
.quote-popup .wpforms-form input[type="email"],
.quote-popup .wpforms-form input[type="tel"],
.quote-popup .wpforms-form input[type="number"],
.quote-popup .wpforms-form select,
.quote-popup .wpforms-form textarea {
  background: transparent !important;
  border: none !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4) !important;
  border-radius: 0 !important;
  color: #fff !important;
  padding: 10px 0 !important;
  font-family: var(--font-body) !important;
  font-size: 14px !important;
  box-shadow: none !important;
}

.banner-glass-form .wpforms-form input::placeholder,
.banner-glass-form .wpforms-form textarea::placeholder,
.banner-glass-form-mobile .wpforms-form input::placeholder,
.banner-glass-form-mobile .wpforms-form textarea::placeholder,
.quote-popup .wpforms-form input::placeholder,
.quote-popup .wpforms-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.6) !important;
}

.banner-glass-form .wpforms-form input:focus,
.banner-glass-form .wpforms-form select:focus,
.banner-glass-form .wpforms-form textarea:focus,
.banner-glass-form-mobile .wpforms-form input:focus,
.banner-glass-form-mobile .wpforms-form select:focus,
.banner-glass-form-mobile .wpforms-form textarea:focus,
.quote-popup .wpforms-form input:focus,
.quote-popup .wpforms-form select:focus,
.quote-popup .wpforms-form textarea:focus {
  border-bottom-color: #fff !important;
}

.banner-glass-form .wpforms-form label,
.banner-glass-form-mobile .wpforms-form label,
.quote-popup .wpforms-form label {
  color: rgba(255, 255, 255, 0.7) !important;
  font-family: var(--font-body) !important;
  font-size: 13px !important;
}

.banner-glass-form .wpforms-form .wpforms-field-label,
.banner-glass-form-mobile .wpforms-form .wpforms-field-label,
.quote-popup .wpforms-form .wpforms-field-label {
  color: rgba(255, 255, 255, 0.7) !important;
}

.banner-glass-form .wpforms-form .wpforms-required-label,
.banner-glass-form-mobile .wpforms-form .wpforms-required-label,
.quote-popup .wpforms-form .wpforms-required-label {
  color: rgba(255, 200, 200, 0.8) !important;
}

/* Submit Button */
.banner-glass-form .wpforms-form button[type="submit"],
.banner-glass-form .wpforms-form .wpforms-submit,
.banner-glass-form-mobile .wpforms-form button[type="submit"],
.banner-glass-form-mobile .wpforms-form .wpforms-submit,
.quote-popup .wpforms-form button[type="submit"],
.quote-popup .wpforms-form .wpforms-submit {
  display: block !important;
  width: 80% !important;
  margin: 10px auto 0 !important;
  padding: 14px 24px !important;
  background: var(--color-primary) !important;
  color: #fff !important;
  font-family: var(--font-heading) !important;
  font-weight: 700 !important;
  font-size: 16px !important;
  border: none !important;
  border-radius: 50px !important;
  cursor: pointer !important;
  transition: background 0.2s ease, transform 0.15s ease !important;
}

.banner-glass-form .wpforms-form button[type="submit"]:hover,
.banner-glass-form .wpforms-form .wpforms-submit:hover,
.banner-glass-form-mobile .wpforms-form button[type="submit"]:hover,
.banner-glass-form-mobile .wpforms-form .wpforms-submit:hover,
.quote-popup .wpforms-form button[type="submit"]:hover,
.quote-popup .wpforms-form .wpforms-submit:hover {
  background: var(--color-primary-dark-2) !important;
  transform: translateY(-2px) !important;
}

/* Select dropdown arrow */
.banner-glass-form .wpforms-form select,
.banner-glass-form-mobile .wpforms-form select,
.quote-popup .wpforms-form select {
  appearance: none !important;
  -webkit-appearance: none !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23fff' stroke-width='1.5' fill='none'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 0 center !important;
  padding-right: 20px !important;
}

.banner-glass-form .wpforms-form select option,
.banner-glass-form-mobile .wpforms-form select option,
.quote-popup .wpforms-form select option {
  background: #fff;
  color: #000;
}


/* ============================================
   WPFORMS OVERRIDES (Glass Forms + Popup)
   ============================================ */
.banner-glass-form .wpforms-container,
.banner-glass-form-mobile .wpforms-container,
.quote-popup .wpforms-container {
  max-width: 100% !important;
}

.banner-glass-form .wpforms-form input[type="text"],
.banner-glass-form .wpforms-form input[type="email"],
.banner-glass-form .wpforms-form input[type="tel"],
.banner-glass-form .wpforms-form input[type="number"],
.banner-glass-form .wpforms-form select,
.banner-glass-form .wpforms-form textarea,
.banner-glass-form-mobile .wpforms-form input[type="text"],
.banner-glass-form-mobile .wpforms-form input[type="email"],
.banner-glass-form-mobile .wpforms-form input[type="tel"],
.banner-glass-form-mobile .wpforms-form input[type="number"],
.banner-glass-form-mobile .wpforms-form select,
.banner-glass-form-mobile .wpforms-form textarea,
.quote-popup .wpforms-form input[type="text"],
.quote-popup .wpforms-form input[type="email"],
.quote-popup .wpforms-form input[type="tel"],
.quote-popup .wpforms-form input[type="number"],
.quote-popup .wpforms-form select,
.quote-popup .wpforms-form textarea {
  background: transparent !important;
  border: none !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4) !important;
  border-radius: 0 !important;
  color: #fff !important;
  padding: 10px 0 !important;
  font-family: var(--font-body) !important;
  font-size: 14px !important;
  box-shadow: none !important;
}

.banner-glass-form .wpforms-form input::placeholder,
.banner-glass-form .wpforms-form textarea::placeholder,
.banner-glass-form-mobile .wpforms-form input::placeholder,
.banner-glass-form-mobile .wpforms-form textarea::placeholder,
.quote-popup .wpforms-form input::placeholder,
.quote-popup .wpforms-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.6) !important;
}

.banner-glass-form .wpforms-form input:focus,
.banner-glass-form .wpforms-form select:focus,
.banner-glass-form .wpforms-form textarea:focus,
.banner-glass-form-mobile .wpforms-form input:focus,
.banner-glass-form-mobile .wpforms-form select:focus,
.banner-glass-form-mobile .wpforms-form textarea:focus,
.quote-popup .wpforms-form input:focus,
.quote-popup .wpforms-form select:focus,
.quote-popup .wpforms-form textarea:focus {
  border-bottom-color: #fff !important;
}

.banner-glass-form .wpforms-form label,
.banner-glass-form-mobile .wpforms-form label,
.quote-popup .wpforms-form label {
  color: rgba(255, 255, 255, 0.7) !important;
  font-family: var(--font-body) !important;
  font-size: 13px !important;
}

.banner-glass-form .wpforms-form .wpforms-field-label,
.banner-glass-form-mobile .wpforms-form .wpforms-field-label,
.quote-popup .wpforms-form .wpforms-field-label {
  color: rgba(255, 255, 255, 0.7) !important;
}

.banner-glass-form .wpforms-form .wpforms-required-label,
.banner-glass-form-mobile .wpforms-form .wpforms-required-label,
.quote-popup .wpforms-form .wpforms-required-label {
  color: rgba(255, 200, 200, 0.8) !important;
}

/* Submit Button */
.banner-glass-form .wpforms-form button[type="submit"],
.banner-glass-form .wpforms-form .wpforms-submit,
.banner-glass-form-mobile .wpforms-form button[type="submit"],
.banner-glass-form-mobile .wpforms-form .wpforms-submit,
.quote-popup .wpforms-form button[type="submit"],
.quote-popup .wpforms-form .wpforms-submit {
  display: block !important;
  width: 80% !important;
  margin: 10px auto 0 !important;
  padding: 14px 24px !important;
  background: var(--color-primary) !important;
  color: #fff !important;
  font-family: var(--font-heading) !important;
  font-weight: 700 !important;
  font-size: 16px !important;
  border: none !important;
  border-radius: 50px !important;
  cursor: pointer !important;
  transition: background 0.2s ease, transform 0.15s ease !important;
}

.banner-glass-form .wpforms-form button[type="submit"]:hover,
.banner-glass-form .wpforms-form .wpforms-submit:hover,
.banner-glass-form-mobile .wpforms-form button[type="submit"]:hover,
.banner-glass-form-mobile .wpforms-form .wpforms-submit:hover,
.quote-popup .wpforms-form button[type="submit"]:hover,
.quote-popup .wpforms-form .wpforms-submit:hover {
  background: var(--color-primary-dark-2) !important;
  transform: translateY(-2px) !important;
}

/* Select dropdown arrow */
.banner-glass-form .wpforms-form select,
.banner-glass-form-mobile .wpforms-form select,
.quote-popup .wpforms-form select {
  appearance: none !important;
  -webkit-appearance: none !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23fff' stroke-width='1.5' fill='none'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 0 center !important;
  padding-right: 20px !important;
}

.banner-glass-form .wpforms-form select option,
.banner-glass-form-mobile .wpforms-form select option,
.quote-popup .wpforms-form select option {
  background: #fff;
  color: #000;
}

/* ============================================
   WPFORMS — Why Choose Us Yellow Box
   ============================================ */
.why-choose-quote-box .wpforms-container {
  max-width: 100% !important;
  margin: 0 !important;
}

.why-choose-quote-box .wpforms-form .wpforms-field-label,
.why-choose-quote-box .wpforms-form .wpforms-field-sublabel {
  display: none !important;
}

.why-choose-quote-box .wpforms-form .wpforms-field {
  margin-bottom: 25px !important;
  padding: 0 !important;
}

.why-choose-quote-box .wpforms-form input,
.why-choose-quote-box .wpforms-form select {
  background: transparent !important;
  border: none !important;
  border-bottom: 2px solid var(--color-primary) !important;
  border-radius: 0 !important;
  color: var(--color-primary) !important;
  font-family: var(--font-body) !important;
  font-size: 15px !important;
  padding: 10px 0 12px !important;
  height: auto !important;
  box-shadow: none !important;
  outline: none !important;
}

.why-choose-quote-box .wpforms-form input::placeholder {
  color: var(--color-primary) !important;
  opacity: 0.9 !important;
}

.why-choose-quote-box .wpforms-form input:focus,
.why-choose-quote-box .wpforms-form select:focus,
.why-choose-quote-box .wpforms-form textarea:focus {
  border-bottom-color: var(--color-primary-dark-2) !important;
  box-shadow: none !important;
}

.why-choose-quote-box .wpforms-form select {
  appearance: none !important;
  -webkit-appearance: none !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23006738' d='M6 8L1 3h10z'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 0 center !important;
  padding-right: 24px !important;
}

.why-choose-quote-box .wpforms-form textarea {
  min-height: 100px !important;
  resize: vertical !important;
  border: 2px solid var(--color-primary) !important;
  border-radius: 0 !important;
  padding: 12px 14px !important;
  background: #FFFAC5 !important;
  color: var(--color-primary) !important;
  font-family: var(--font-body) !important;
  font-size: 15px !important;
  box-shadow: none !important;
  outline: none !important;
}

.why-choose-quote-box .wpforms-form textarea::placeholder {
  color: var(--color-primary) !important;
  opacity: 0.9 !important;
}

.why-choose-quote-box .wpforms-form button[type="submit"],
.why-choose-quote-box .wpforms-form .wpforms-submit {
  display: block !important;
  width: 100% !important;
  background: var(--color-primary) !important;
  color: #fff !important;
  font-family: var(--font-heading) !important;
  font-weight: 700 !important;
  font-size: 20px !important;
  border: none !important;
  border-radius: 50px !important;
  padding: 14px 24px !important;
  cursor: pointer !important;
  margin-top: 8px !important;
  transition: background-color 0.2s !important;
}

.why-choose-quote-box .wpforms-form button[type="submit"]:hover {
  background: var(--color-primary-dark-2) !important;
}

.why-choose-quote-box .wpforms-form .wpforms-submit-container {
  padding: 0 !important;
  margin-top: 4px !important;
}

/* ============================================
   WPFORMS — Contact Us Page
   ============================================ */
.contact-page-form-card {
  background: #fff;
  border-radius: 16px;
  padding: 36px 42px 40px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
  max-width: 700px;
  margin: 0 auto;
}

.contact-page-form-card::before {
  content: "Contact Us";
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 28px;
  color: var(--color-primary);
  text-align: center;
  margin-bottom: 28px;
}

.contact-page-form-card .wpforms-container {
  max-width: 100% !important;
}

.contact-page-form-card .wpforms-form .wpforms-field {
  margin-bottom: 10px !important;
}

.contact-page-form-card .wpforms-form input,
.contact-page-form-card .wpforms-form select {
  background: transparent !important;
  border: none !important;
  border-bottom: 2px solid var(--color-primary) !important;
  border-radius: 0 !important;
  color: var(--color-primary) !important;
  font-family: var(--font-body) !important;
  font-size: 15px !important;
  padding: 10px 0 12px !important;
  height: auto !important;
  box-shadow: none !important;
  outline: none !important;
}

.contact-page-form-card .wpforms-form .wpforms-field-label {
  display: none !important;
}

.contact-page-form-card .wpforms-form input::placeholder,
.contact-page-form-card .wpforms-form textarea::placeholder {
  color: var(--color-primary) !important;
  opacity: 0.9 !important;
}

.contact-page-form-card .wpforms-form input:focus,
.contact-page-form-card .wpforms-form select:focus,
.contact-page-form-card .wpforms-form textarea:focus {
  border-bottom-color: var(--color-primary-dark-2) !important;
  box-shadow: none !important;
}

.contact-page-form-card .wpforms-form select {
  appearance: none !important;
  -webkit-appearance: none !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23006738' d='M6 8L1 3h10z'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 0 center !important;
  padding-right: 24px !important;
}

.contact-page-form-card .wpforms-form textarea {
  min-height: 120px !important;
  resize: vertical !important;
  border: 2px solid var(--color-primary) !important;
  border-radius: 0 !important;
  padding: 12px 14px !important;
  background: #f9f9f9 !important;
  color: var(--color-primary) !important;
  font-family: var(--font-body) !important;
  font-size: 15px !important;
  box-shadow: none !important;
}

.contact-page-form-card .wpforms-form button[type="submit"],
.contact-page-form-card .wpforms-form .wpforms-submit {
  display: block !important;
  width: 100% !important;
  background: var(--color-primary) !important;
  color: #fff !important;
  font-family: var(--font-heading) !important;
  font-weight: 700 !important;
  font-size: 20px !important;
  border: none !important;
  border-radius: 50px !important;
  padding: 14px 24px !important;
  cursor: pointer !important;
  margin-top: 8px !important;
  transition: background-color 0.2s !important;
}

.contact-page-form-card .wpforms-form button[type="submit"]:hover {
  background: var(--color-primary-dark-2) !important;
}

.contact-page-form-card .wpforms-form .wpforms-submit-container {
  padding: 0 !important;
  margin-top: 4px !important;
}
