@charset "utf-8";
/* CSS Document */

/* --------------------------------------------------- Global --------------------------------------------------- */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #F9FAF8;
  color: #1C1C1C;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* ---------------------------------------------------
   SECTION SYSTEM
--------------------------------------------------- */

.section {
  padding: 110px 0!important;
  position: relative;
}

/* Background Variants */

.section-light {
  background: #ffffff;
}

.section-tint {
  background: #f3f7f1;
}

.section-soft {
  background: #f9faf9;
}

.section-dark {
  background: #1f1f1f;
  color: #ffffff;
}

/* Slightly tighter variant if needed */
.section-tight {
  padding: 80px 0;
}

/* Larger hero-style spacing */
.section-loose {
  padding: 140px 0;
}

/* --------------------------------------------------- Bootstrap Navigation Premium (Version C) --------------------------------------------------- */

.main-nav {
  position: absolute;
  width: 100%;
  z-index: 1000;
  padding: 18px 0;

  background: rgba(20, 20, 20, 0.38);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  border-bottom: 1px solid rgba(255,255,255,.12);
}

.navbar-brand {
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: .8px;
  color: #fff !important;
}

/* ---------------------------------------------------<Navbar Logo>--------------------------------------------------- */

.navbar {
  padding-top: 8px;
  padding-bottom: 8px;
}

.navbar-logo{
  height: 60px; /* was 50px */
  width: auto;
  object-fit: contain;
}

.navbar-logo{
  height:60px;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,.4));
}

/* Slightly smaller on mobile */
@media (max-width: 768px){
  .navbar-logo{
    height: 40px;
  }
}

.navbar-nav .nav-link,
.navbar-nav .dropdown-toggle {
  display: flex;
  align-items: center;
}

.navbar-nav .nav-link {
  font-weight: 500;
  font-size: .95rem;
  line-height: 1.2;
  padding: 8px 14px;
  color: rgba(255,255,255,.85);
  transition: all .3s ease;
}

.navbar-nav .nav-link:hover {
  color: #5fae48;
}

.navbar-nav .nav-link.active {
  color: #fff;
  position: relative;
}

/* ---------- Underline (Center Grow) ---------- */
.navbar-nav .nav-link {
  position: relative; /* required */
}

/* only apply underline to NON dropdown links */
.navbar-nav .nav-link:not(.dropdown-toggle)::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);     /* keeps it centered */
  height: 2px;
  width: 0;                        /* starts hidden */
  background: #5fae48;
  transition: width .3s ease;
  pointer-events: none;
}

.navbar-nav .nav-link:not(.dropdown-toggle):hover::after {
  width: calc(100% - 28px);        /* respects your 14px left/right padding */
}

.navbar-nav .nav-link.active:not(.dropdown-toggle)::after {
  width: calc(100% - 28px);
}

.nav-cta {
  padding: 9px 20px;
  font-weight: 600;
  border-radius: 6px;
  box-shadow: 0 6px 18px rgba(0,0,0,.25);
  transition: all .3s ease;
}

.nav-cta:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 10px 26px rgba(0,0,0,.35);
}

/* --------------------------------------------------- Dropdown Arrow Fix --------------------------------------------------- */

.navbar-nav .dropdown-toggle::after {
  margin-left: 6px;
  vertical-align: middle;
  position: relative;
  top: 1px; /* fine-tune alignment */
  border-top-color: #5fae48;
}

.navbar-nav .dropdown-toggle:hover::after {
  border-top-color: #ffffff;
}

/* --------------------------------------------------- Premium Dropdown --------------------------------------------------- */

.dropdown-menu {
  background: rgba(30,30,30,.95);
  border: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(10px);
  border-radius: 8px;
  padding: 8px 0;
}

.dropdown-item {
  color: rgba(255,255,255,.85);
  font-size: .95rem;
  padding: 8px 18px;
  transition: all .25s ease;
}

.dropdown-item:hover {
  background: rgba(95,174,72,.15);
  color: #fff;
}
@media (max-width: 768px) {
	
  .navbar > .container {
    flex-wrap: nowrap;
  }
	
  .main-nav {
    padding: 10px 0;
  }
	
  .navbar-brand {
    font-size: 1rem;
    letter-spacing: .4px;
    white-space: nowrap;
	margin-right: 0;
  }
	
  .navbar-toggler {
    padding: 4px 8px;
  }	
}
/* --------------------------------------------------- Mobile Nav Fix --------------------------------------------------- */

@media (max-width: 992px) {

  .main-nav {
    padding: 10px 0;
  }

  .navbar-collapse {
    background: rgba(20,20,20,0.98);
    padding: 20px 20px 30px;
    border-radius: 0 0 12px 12px;
    margin-top: 10px;
  }

  .navbar-nav {
    gap: 8px;
  }

  .navbar-nav .nav-link {
    padding: 10px 0;
  }

  .nav-cta {
    margin-top: 12px;
    width: 100%;
    text-align: center;
  }

}

/* --------------------------------------------------- Mobile Navbar Full-Width Dropdown --------------------------------------------------- */

@media (max-width: 992px) {

  /* Make sure the navbar can position the dropdown */
  .main-nav .navbar {
    position: relative;
  }

  /* Force the collapse to be a full-width dropdown under the bar */
  .main-nav .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;

    width: 100%;
    margin: 0;
    z-index: 2000;

    background: rgba(20,20,20,0.98);
    border-top: 1px solid rgba(255,255,255,.10);
    box-shadow: 0 18px 40px rgba(0,0,0,.45);

    padding: 16px 18px 20px;
  }

  /* Make sure it’s not trying to stay “inline” */
  .main-nav .navbar-collapse.collapse:not(.show) {
    display: none !important;
  }
  .main-nav .navbar-collapse.collapse.show {
    display: block !important;
  }

  /* Stack nav items vertically and fill width */
  .main-nav .navbar-nav {
    width: 100%;
  }

  .main-nav .navbar-nav .nav-link {
    width: 100%;
    padding: 12px 6px;
  }

  /* CTA full width on mobile */
  .main-nav .nav-cta {
    width: 100%;
    text-align: center;
    margin-top: 12px;
  }
}

/* --------------------------------------------------- Buttons --------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  padding: 12px 24px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  border: 2px solid transparent;

  transition: transform .25s ease,
              box-shadow .25s ease,
              background-color .25s ease,
              color .25s ease,
              border-color .25s ease;
}

/* Consistent premium hover behavior */
.btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 28px rgba(0,0,0,.22);
}

.btn:focus {
  outline: none;
  box-shadow: none;
}

/* -------- Primary Brand Button -------- */

.btn-green {
  background: #2E7D32;
  color: #fff;
  border-color: #2E7D32;
}

.btn-green:hover {
  background: #256528;
  color: #fff;
  border-color: #256528;
}

/* -------- Outline Brand Button -------- */

.btn-outline-green {
  background: transparent;
  color: #2E7D32;
  border-color: #2E7D32;
}

.btn-outline-green:hover {
  background: #2E7D32;
  color: #fff;
  border-color: #2E7D32;
}

/* -------- Outline Light Button -------- */

.btn-outline-light {
  background: transparent;
  color: #fff;
  border-color: #fff;
}

.btn-outline-light:hover {
  background: #fff!important;
  color: #2E7D32;
}

/* -------- Light Button (for dark sections like promo) -------- */

.btn-light {
  background: #fff;
  color: #1C1C1C;
  border-color: #fff;
}

.btn-light:hover {
  background: #f2f2f2;
  border-color: #f2f2f2;
}





/* --------------------------------------------------- Hero --------------------------------------------------- */

.hero {
  position: relative;
  height: 95vh;
  background: url('https://dkialpha.com/alpha_img/landscaping/1920/land-015.webp') center/cover no-repeat;
  animation: heroZoom 12s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { background-size: 100%; }
  to   { background-size: 105%; }
}

.hero-overlay {
   position: absolute;
  inset: 0; /* shorthand for top:0; right:0; bottom:0; left:0 */
  background: linear-gradient(
    to right,
    rgba(0,0,0,.70) 0%,
    rgba(0,0,0,.50) 45%,
    rgba(0,0,0,.25) 100%
  );
  display: flex;
  align-items: center;
}

.hero-content {
  color: white;
  /*max-width: 680px;*/
  max-width: 1000px;
}

.hero-content {
  animation: heroFade 1.2s ease forwards;
  opacity: 0;
  transform: translateY(20px);
}

@keyframes heroFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero h1 {
  font-size: 4.0rem; /* was 3.1rem */
  font-weight: 800;  /* stronger presence */
  line-height: 1.1;
  margin-bottom: 22px;
}

.hero h2 {
  font-size: 2.0rem; /* was 1.2rem */
  font-weight: 600;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.25rem; /* was 1.05rem */
  line-height: 1.75;
  margin-bottom: 38px;
}

.hero h1,
.hero h2,
.hero p {
  text-shadow: 0 2px 8px rgba(0,0,0,.35);
}

.hero .btn {
  padding: 14px 28px;
  font-size: 1.05rem;
}

.hero-buttons {
  display: flex;
  gap: 15px;
}
/* --------------------------------------------------- Hero Mobile --------------------------------------------------- */

@media (max-width: 768px) {

  .hero {
    height: auto;
    min-height: 85vh;
    padding: 100px 0 60px;
    animation: none; /* turn off zoom on mobile */
  }

  .hero-overlay {
    background: linear-gradient(
      to bottom,
      rgba(0,0,0,.85) 0%,
      rgba(0,0,0,.75) 30%,
      rgba(0,0,0,.55) 60%,
      rgba(0,0,0,.45) 100%
    );
    align-items: flex-start;
    padding-top: 60px;
  }

  .hero-overlay::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
      circle at center,
      rgba(0,0,0,0) 40%,
      rgba(0,0,0,.25) 100%
    );
  }

  .hero-content {
    max-width: 100%;
  }

  .hero h1 {
    font-size: 2.3rem;
    line-height: 1.15;
    margin-bottom: 16px;
  }

  .hero h2 {
    font-size: 1.05rem;
    margin-bottom: 16px;
  }

  .hero p {
    font-size: 0.98rem;
    line-height: 1.6;
    margin-bottom: 28px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .hero .btn {
    width: 100%;
    text-align: center;
  }

}
/* --------------------------------------------------- INTERNAL HERO --------------------------------------------------- */

.internal-hero {
  position: relative;
  min-height: 550px;
  padding: 140px 0 120px 0;
  height: auto;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.internal-hero-overlay {
  position: absolute;
  inset: 0; /* shorthand for top:0; right:0; bottom:0; left:0; */

	background: linear-gradient(
	  to right,
	  rgba(0,0,0,.75) 0%,
	  rgba(0,0,0,.55) 40%,
	  rgba(0,0,0,.25) 75%,
	  rgba(0,0,0,0) 100%
	);

  display: flex;
  align-items: center;
}

.internal-hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 140px;

  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0) 0%,
    rgba(255,255,255,.6) 60%,
    rgba(255,255,255,1) 100%
  );

  pointer-events: none;
}

.internal-hero-content {
  color: #ffffff;
  max-width: 700px;
  padding-top: 25px; 
  padding-bottom: 10px;
}

.internal-hero h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.internal-hero h2 {
  font-size: 20px;
  font-weight: 500;
  color: #66BB6A;
  margin-bottom: 15px;
}

.internal-hero p {
  font-size: 18px;
  color: rgba(255,255,255,.85);
  margin: 0;
}

.breadcrumb {
  font-size: 14px;
  color: rgba(255,255,255,.6);
  margin-bottom: 15px;
}

.internal-hero-actions {
  margin-top: 25px;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.internal-hero-actions .btn:hover {
  transform: translateY(-2px);
}

/* --------------------------------------------------- ABOUT INTRO --------------------------------------------------- */

.about-intro {
  padding: 120px 0 0;
}

.section-sub {
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 2px;
  font-weight: 600;
  color: #5fae48;
  margin-bottom: 15px;
}

.about-intro p {
  color: #555;
  line-height: 1.7;
}

.about-actions {
  margin-top: 25px;
}

.about-image img {
  box-shadow: 0 30px 80px rgba(0,0,0,.12);
}
/* --------------------------------------------------- ONE LINER --------------------------------------------------- */

.one-liner {
    padding: 110px 0 0;
    background: #ffffff;
    position: relative;
}

.section-sub {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #5fae48;
    margin-bottom: 15px;
}

.section-heading {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #222;
    line-height: 1.2;
}

.section-heading span {
    color: #5fae48;
}

.one-liner p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 18px;
}

.wave-divider {
    margin-top: 90px;
    line-height: 0;
}

.wave-divider svg {
    width: 100%;
    height: 110px;
    display: block;
}

.wave-divider path {
    fill: #f3f7f1;
}

/* Fade Animation */
.fade-in {
    opacity: 0;
    transform: translateY(25px);
    animation: fadeUp 0.9s ease forwards;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --------------------------------------------------- SERVICES --------------------------------------------------- */

.services {
    background: #f3f7f1;
    padding: 120px 0;
}

.services .container {
    max-width: 1150px;
}

.section-description {
    max-width: 700px;
    margin: 0 auto;
}

/* Card */

.service-card {
    background: #ffffff;
    padding: 55px 32px;
    border-radius: 18px;
    text-align: center;
    height: 100%;
    position: relative;

    /* animation state */
    opacity: 0;
    transform: translateY(30px);

    transition: transform .35s ease,
                box-shadow .35s ease,
                opacity .35s ease;

    box-shadow:
        0 10px 30px rgba(0,0,0,.06),
        inset 0 0 0 1px rgba(255,255,255,.6);

	animation: serviceReveal .8s ease forwards;
	animation-fill-mode: both;
}

/* Stagger animation */
.services .col-lg-3:nth-child(1) .service-card { animation-delay: .05s; }
.services .col-lg-3:nth-child(2) .service-card { animation-delay: .15s; }
.services .col-lg-3:nth-child(3) .service-card { animation-delay: .25s; }
.services .col-lg-3:nth-child(4) .service-card { animation-delay: .35s; }
.services .col-lg-3:nth-child(5) .service-card { animation-delay: .45s; }
.services .col-lg-3:nth-child(6) .service-card { animation-delay: .55s; }
.services .col-lg-3:nth-child(7) .service-card { animation-delay: .65s; }
.services .col-lg-3:nth-child(8) .service-card { animation-delay: .75s; }

@keyframes serviceReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hover */

.service-card:hover {
    transform: translateY(-6px) scale(1.015);
    box-shadow:
        0 35px 80px rgba(0,0,0,.15),
        0 0 50px rgba(95,174,72,.08),
        inset 0 0 0 1px rgba(255,255,255,.7);
}

/* Subtle ambient glow */

.service-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 18px;
    background: radial-gradient(
        circle at 50% 0%,
        rgba(95,174,72,.08),
        transparent 70%
    );
    opacity: 0;
    transition: opacity .4s ease;
    pointer-events: none;
}

.service-card:hover::after {
    opacity: 1;
}

/* Title */

.service-card h5 {
    font-weight: 600;
    margin: 0;
    font-size: 18px;
    letter-spacing: .4px;
}

/* Icon */

.service-icon {
    width: 78px;
    height: 78px;
    margin: 0 auto 24px;
    border-radius: 50%;
    background: rgba(95,174,72,.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    color: #5fae48;
    transition: transform .35s ease;

    box-shadow:
        inset 0 0 0 1px rgba(95,174,72,.15);
}

.service-card:hover .service-icon {
    transform: translateY(-3px) scale(1.08);
}

.service-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.service-card-link:hover .service-card {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,.12);
}


.services-all .service-card {
  background: #fff;
  padding: 32px 28px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
  transition: all .3s ease;
}

.services-all .service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(0,0,0,.12);
}

.services-all .service-icon i {
  font-size: 2rem;
  color: #5fae48;
}

.services-all h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.services-all .service-desc {
  font-size: .95rem;
  margin-bottom: 15px;
  color: #555;
}

.services-all .service-list {
  margin-top: 12px;
}

.services-all .service-item {
  font-size: .92rem;
  color: #444;
  padding: 6px 0;
  border-bottom: 1px solid rgba(0,0,0,.06);
}

.services-all .service-item:last-child {
  border-bottom: none;
}

/* --------------------------------------------------- Trust Section --------------------------------------------------- */

.trust-section {
  background: #f3f7f1;
}

.trust-section .section-title {
  font-size: 2rem;
  font-weight: 700;
}

.trust-section .section-title span {
  color: #5fae48;
}

.trust-card {
  padding: 30px 20px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
  transition: all .3s ease;
}

.trust-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(0,0,0,.12);
}

.trust-icon i {
  font-size: 2rem;
  color: #5fae48;
}

.trust-card h5 {
  font-weight: 600;
  margin-bottom: 10px;
}

.trust-card p {
  font-size: .92rem;
  color: #555;
  margin-bottom: 0;
}


/* --------------------------------------------------- PROMO BAR --------------------------------------------------- */

.promo {
    position: relative;
    background: linear-gradient(135deg, #2e7d32, #1b5e20);
    padding: 140px 0 120px;
    color: #fff;
    text-align: center;
    overflow: hidden;

    /* Curve at TOP instead of bottom */
    clip-path: ellipse(120% 100% at 50% 100%);
}

.promo::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to bottom, rgba(0,0,0,0.15), transparent);
    pointer-events: none;
}

/* Texture overlay */
.promo::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('https://dkialpha.com/alpha_img/outdoor/1920/lawn-003.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.06;
    mix-blend-mode: overlay;
}


.promo .container {
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateY(25px);
    animation: fadeUpPromo 0.9s ease forwards;
    animation-delay: 0.2s;
}

@keyframes fadeUpPromo {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.promo-heading {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
}

.promo-text {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.95;
}

.promo-wave-top svg {
    display: block;
    width: 100%;
    height: 50px;
    margin-bottom: -1px;
}

/* --------------------------------------------------- Why Choose --------------------------------------------------- */

.why-choose {
    padding: 100px 0!important;
    background: #f7f7f7; /* very light gray to separate from promo */
}
.why-choose h2 {
    font-weight: 700;
}

.why-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.why-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 14px;
    font-weight: 500;
}

.why-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #2e7d32;
    font-weight: 700;
}

.why-choose img {
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* ---------------- WHY CHOOSE STATS ---------------- */

.why-stats {
    border-top: 1px solid rgba(0,0,0,0.08);
    padding-top: 30px;
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    color: #2e7d32;
}

.stat-label {
    font-size: 14px;
    color: #666;
    margin-top: 5px;
}


.why-choose2 {
  padding: 120px 0;
  background: linear-gradient(to bottom, #ffffff, #f3f7f1);
}

.why-card i {
  font-size: 42px;
  color: #5fae48;
  margin-bottom: 20px;
}

.why-card h5 {
  font-weight: 600;
  margin-bottom: 10px;
}

.why-card p {
  color: #555;
  font-size: 15px;
  line-height: 1.6;
}

/* ---------------- PRODUCTS SECTION ---------------- */

.products {
    background: #f4f3ef;
    padding: 100px 0;
}

.products h2 {
    font-weight: 700;
}

.product-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
}

.product-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    color: #fff;
    font-weight: 600;
    font-size: 18px;
    text-align: left;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.18);
}

.product-card:hover img {
    transform: scale(1.05);
}

.all-product-card{
  background:#fff;
  border-radius:12px;
  overflow:hidden;
  box-shadow:0 5px 20px rgba(0,0,0,.05);
  transition:all .3s ease;
  height:100%;
}

.all-product-card:hover{
  transform:translateY(-5px);
  box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.all-product-image img{
  width:100%;
  height:200px;
  object-fit:cover;
}

.all-product-content{
  padding:20px;
}

.all-product-price{
  font-weight:600;
  color:var(--green);
  margin-bottom:5px;
}

/* ---------------- PORTFOLIO SECTION ---------------- */

.portfolio {
    padding: 100px 0;
    background: #ffffff;
}

.portfolio h2 {
    font-weight: 700;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
}

.portfolio-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 600;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.portfolio-item:hover img {
    transform: scale(1.08);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

@media (max-width: 992px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
}

/* ---------------- BEFORE AFTER CLEAN ---------------- */

.before-after {
    max-width: 900px;
    margin: 0 auto 60px;
}

.ba-wrapper {
    position: relative;
    width: 100%;
    height: 500px; /* fixed height = predictable */
    overflow: hidden;
    border-radius: 12px;
}
.ba-wrapper {
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.ba-wrapper img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}
.ba-wrapper img {
    transition: transform .4s ease;
}

.ba-wrapper:hover img {
    transform: scale(1.02);
}

.ba-wrapper img:first-child {
    z-index: 1;
}

.ba-after {
    position: absolute;
    inset: 0;
    clip-path: inset(0 50% 0 0);
    z-index: 2;
}

.ba-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background: #fff;
    z-index: 10;
    cursor: ew-resize;
}

.ba-handle::after {
    content: "↔";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #198754;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    box-shadow: 0 4px 12px rgba(0,0,0,.25);
}

.ba-wrapper,
.ba-wrapper * {
    user-select: none;
    -webkit-user-select: none;
}

.ba-wrapper img {
    -webkit-user-drag: none;
}


/* ---------------- REVIEWS ---------------- */
.reviews h2 {
    font-weight: 700;
}
.review-card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    transition: transform .3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
}

.stars {
    color: #f5c518;
    font-size: 18px;
    letter-spacing: 2px;
}

.review-text {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
}

.review-author strong {
    color: #198754;
}
/* ---------------- REVIEWS PREMIUM ---------------- */

.review-featured {
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.review-text-lg {
    font-size: 18px;
    line-height: 1.7;
    color: #333;
}

.review-mini {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 18px rgba(0,0,0,0.06);
    margin-bottom: 15px;
}

.review-mini p {
    font-size: 14px;
    margin-bottom: 8px;
}

.stars {
    color: #f5c518;
    letter-spacing: 2px;
}

/* ---------------- REVIEW PREMIUM UPGRADES ---------------- */

.rating-summary {
    margin-bottom: 40px;
}

.rating-number {
    font-size: 42px;
    font-weight: 700;
    color: #198754;
}

.stars-large {
    font-size: 22px;
    color: #f5c518;
    letter-spacing: 3px;
}

.rating-text {
    font-size: 14px;
    color: #666;
}

.review-featured,
.review-mini {
    transition: transform .3s ease, box-shadow .3s ease;
}

.review-featured:hover,
.review-mini:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 18px 40px rgba(0,0,0,0.15);
}

.review-mini:last-child {
    margin-bottom: 0;
}

.google-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
}


/* --------------------------------------------------- LOCATIONS --------------------------------------------------- */

.locations {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  background: #fff;
}

/* Topo pattern (only lives on right side) */
.locations::before {
  content: "";
  position: absolute;
  right: -150px;
  top: 0;
  width: 900px;
  height: 100%;

  background: url('/assets/img/topo.svg') 110% center / cover no-repeat;
  opacity: 0.07;
  pointer-events: none;
  z-index: 0;
}

/* Fade from content into pattern */
.locations::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;

background: linear-gradient(
  to right,
  #ffffff 0%,
  #ffffff 30%,
  rgba(255,255,255,.85) 55%,
  rgba(255,255,255,.3) 75%,
  rgba(255,255,255,0) 100%
);

  pointer-events: none;
  z-index: 1;
}

.locations .container {
  position: relative;
  z-index: 2;
}

.service-area-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.service-area-item {
    padding: 12px 22px;
    background: #f4f7f2;
    border-radius: 40px;
    font-weight: 500;
    transition: all .3s ease;
    text-align: center;

    box-shadow:
        inset 0 0 0 1px rgba(95,174,72,.15);
}

.service-area-item:hover {
    background: rgba(95,174,72,.12);
    transform: translateY(-2px);
}

.service-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(95,174,72,.1);
    border-radius: 40px;
    font-size: 14px;
    font-weight: 600;
    color: #5fae48;
    margin-bottom: 25px;
}

.location-card {
    background: #f6f8f5;
    padding: 18px 22px;
    border-radius: 14px;
    margin-bottom: 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,.05);
}

/* --------------------------------------------------- PROMO BAND --------------------------------------------------- */

.promo-band {
  background: #1f1f1f;
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}

.promo-band::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  opacity: .7;
  background: linear-gradient(to right, transparent, rgba(95,174,72,.6), transparent);
}

.promo-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.promo-band .container {
  position: relative;
  z-index: 2;
}

.promo-content h2 {
  color: #ffffff;
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 10px;
}

.promo-content p {
  color: rgba(255,255,255,.7);
  margin: 0;
  font-size: 16px;
}

.promo-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Light outline button */
.btn-outline-light {
  border: 1px solid rgba(255,255,255,.4);
  color: #ffffff;
  padding: 10px 22px;
  border-radius: 6px;
  transition: all .3s ease;
}

.btn-outline-light:hover {
  background: rgba(255,255,255,.08);
  border-color: #ffffff;
}

/* Slight lift on hover */
.promo-band .btn {
  transition: all .3s ease;
}

.promo-band .btn:hover {
  transform: translateY(-2px);
}

/* --------------------------------------------------- PROMO AMBIENT GLOW --------------------------------------------------- */

.promo-band::after {
  content: "";
  position: absolute;
  left: 35%;
  top: 50%;
  transform: translate(-50%, -50%);

  width: 600px;
  height: 600px;

  background: radial-gradient(
    circle,
    rgba(95,174,72,.18) 0%,
    rgba(95,174,72,.12) 25%,
    rgba(95,174,72,.05) 50%,
    rgba(95,174,72,0) 70%
  );

  filter: blur(40px);
  opacity: .35;
  pointer-events: none;
  z-index: 0;

  animation: glowDrift 18s ease-in-out infinite alternate;
}

@keyframes glowDrift {
  0% {
    transform: translate(-50%, -50%) scale(1);
  }
  100% {
    transform: translate(-45%, -48%) scale(1.08);
  }
}


/* --------------------------------------------------- FAQ NEXT LEVEL --------------------------------------------------- */

.faq {
  padding: 120px 0;
  background: #f9faf8;
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: #ffffff;
  border-radius: 16px;
  margin-bottom: 24px;
  box-shadow: 0 12px 35px rgba(0,0,0,.05);
  overflow: hidden;
  transition: all .35s ease;
  position: relative;
}

/* subtle left accent when active */
.faq-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background: #5fae48;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .35s ease;
}
.faq-item {
  opacity: 0;
  transform: translateY(20px);
}

.faq-item.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: all .6s ease;
}

.faq-item.active::before {
  transform: scaleY(1);
}

.faq-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 50px rgba(0,0,0,.08);
}

/* Question */

.faq-question {
  width: 100%;
  padding: 26px 32px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
}

.faq-title {
  font-weight: 600;
  font-size: 18px;
}

/* Icon animation */

.faq-icon {
  width: 18px;
  height: 18px;
  position: relative;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background: #5fae48;
  transition: transform .3s ease;
}

.faq-icon::before {
  width: 18px;
  height: 2px;
  top: 8px;
  left: 0;
}

.faq-icon::after {
  width: 2px;
  height: 18px;
  left: 8px;
  top: 0;
}

.faq-item.active .faq-icon::after {
  transform: scaleY(0);
}

/* Answer */

.faq-answer {
  height: 0;
  overflow: hidden;
  transition: height .4s ease;
}

.faq-answer-inner {
  padding: 0 32px 26px 32px;
}

.faq-answer p {
  margin: 0;
  color: #555;
  line-height: 1.6;
}

/* --------------------------------------------------- CONTACT --------------------------------------------------- */

.contact {
  padding: 120px 0;
  background: #ffffff;
}

.contact-info {
  margin-top: 30px;
}

.contact-item {
  margin-bottom: 20px;
  font-size: 16px;
}

.contact-item a {
  color: #5fae48;
  text-decoration: none;
  font-weight: 600;
}

.contact-item a:hover {
  text-decoration: underline;
}

/* Contact Card */

.contact-card {
  background: #ffffff;
  padding: 40px;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0,0,0,.08);
  transition: all .3s ease;
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 70px rgba(0,0,0,.12);
}

/* Form Controls */

.form-control {
  border-radius: 10px;
  padding: 14px 16px;
  border: 1px solid #e0e0e0;
  transition: all .3s ease;
}

.form-control:focus {
  border-color: #5fae48;
  box-shadow: 0 0 0 3px rgba(95,174,72,.15);
}

.hours-highlight span {
  display: inline-block;
  background: rgba(95,174,72,.12);
  color: #2e7d32;
  padding: 6px 14px;
  border-radius: 50px;
  font-weight: 600;
  margin-top: 6px;
}
.visit-location {
  border-top: 1px solid #e5e5e5;
}

/* ---------------------------------------------------<Footer>--------------------------------------------------- */

.footer{
  background:#111;
  color:#ddd;
}

.footer h4,
.footer h5{
  color:#fff;
}

.footer a{
  color:#6ac36a;
  text-decoration:none;
}

.footer a:hover{
  text-decoration:underline;
}

.footer-links{
  list-style:none;
  padding:0;
  margin:0;
}

.footer-links li{
  margin-bottom:8px;
}

.footer hr{
  border-color:rgba(255,255,255,.1);
}
/* ---------------------------------------------------<Footer Logo>--------------------------------------------------- */

.footer-logo{
  height: 100px;
  width: auto;
  object-fit: contain;
}