/* ======================================
   GLOBAL BASE
====================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #222;
  background: #ffffff;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}


/* ======================================
   ABOUT SECTION
====================================== */

.about-section {
  padding: 100px 0;
  background: #f7f8f4;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  object-fit: cover;
}

.about-content h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: #0d2b1f;
}

.about-content p {
  color: #333;
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

/* ABOUT hover lift */
.about-image {
  overflow: hidden;
  border-radius: 20px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about-image img {
  transition: transform 0.4s ease;
}

.about-image:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.25);
}

.about-image:hover img {
  transform: scale(1.04);
}

/* Rounded button */
.btn-rounded {
  display: inline-block;
  padding: 14px 40px;
  background-color: #006837;
  color: #ffffff;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
}

.btn-rounded::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 12px;
  width: 0;
  height: 2px;
  background: #ffffff;
  transition: width 0.3s ease, left 0.3s ease;
}

.btn-rounded:hover::after {
  width: 70%;
  left: 15%;
}

.btn-rounded:hover {
  background-color: #01592f;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-image img {
    margin-bottom: 30px;
  }
}

/* ======================================
   PARALLAX BACKGROUND STATS
====================================== */

.parallax-stats {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}

.parallax-bg {
  position: absolute;
  inset: 0;
  background-image: url('/brainardsgreenscapes/assets/images/parallex1.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  filter: brightness(0.45);
  z-index: 10;
}

.stats-wrapper {
  position: relative;
  z-index: 100;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 40px 0;
}

.stat-card {
  background: #ffffff;
  padding: 35px 30px;
  width: 30%;
  min-width: 260px;
  border-radius: 30px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.25);
  border: 2px solid #e6e6e6;
  text-align: center;
  transform: translateY(30px);
  opacity: 0;
  transition: 0.8s ease;
}

.stat-card.active {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .stats-wrapper {
    flex-direction: column;
    padding: 20px;
  }

  .stat-card {
    width: 100%;
  }
}

/* ======================================
   PREMIUM SERVICES
====================================== */

.premium-services {
  padding: 120px 0;
  background: #f5f7f2;
}

.premium-title {
  text-align: center;
  font-size: 2.6rem;
  font-weight: 900;
  margin-bottom: 70px;
  color: #0b3d25;
  letter-spacing: 1px;
}

.premium-main {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 80px;
}

.premium-sub {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px;
  margin-bottom: 60px;
}

.premium-card {
  background: #ffffff;
  padding: 30px 25px 40px;
  border-radius: 25px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
  border: 1px solid #dfe6df;
  text-decoration: none;
  color: #333;
  transition: 0.4s ease;
  overflow: hidden;
  position: relative;
}

.premium-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 30px 50px rgba(0,0,0,0.18);
  border-color: #b6d8b6;
}

.card-img-wrap {
  width: 100%;
  height: 170px;
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 20px;
}

.card-img-wrap.small {
  height: 130px;
}

.card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.45s ease;
}

.premium-card:hover .card-img-wrap img {
  transform: scale(1.12);
}

.premium-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: #0d5c30;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.premium-card h3 i {
  color: #007a3d;
  margin-right: 6px;
}

.premium-card p {
  font-size: 0.97rem;
  line-height: 1.6;
  color: #444;
}

.btn-premium {
  display: inline-block;
  padding: 14px 40px;
  background: #0c6b36;
  color: #ffffff;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05rem;
  transition: 0.3s;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.btn-premium:hover {
  background: #095628;
  transform: translateY(-3px);
  box-shadow: 0 10px 26px rgba(0,0,0,0.2);
}

.premium-btn-wrap {
  text-align: center;
  margin-top: 30px;
  width: 100%;
}

@media (max-width: 1100px) {
  .premium-main {
    grid-template-columns: repeat(2, 1fr);
  }

  .premium-sub {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .premium-main,
  .premium-sub {
    grid-template-columns: 1fr;
  }
}

/* ======================================
   AWARDS
====================================== */

.awards-section {
  padding: 40px 0 60px;
  background: #f7f8f4;
  text-align: center;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #0d2b1f;
  margin-bottom: 30px;
}

.awards-wrapper {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.award-card {
  background: #ffffff;
  padding: 15px;
  border-radius: 14px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  max-width: 270px;
}

.award-card img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.award-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 14px 32px rgba(0,0,0,0.18);
}

@media (max-width: 768px) {
  .awards-wrapper {
    flex-direction: column;
    align-items: center;
  }
}

/* ======================================
   PROJECTS + BEFORE/AFTER SLIDER
====================================== */

.projects-section {
  padding: 60px 0 80px;
  background: #ffffff;
  text-align: center;
}

.projects-section .section-title {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 40px;
  color: #0d2b1f;
}

.projects-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
}

.project-card {
  text-align: center;
}

/* Before/After slider */
.ba-slider {
  width: 100%;
  height: 260px;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  cursor: ew-resize;
}

.ba-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ba-slider .resize {
  width: 50%;
  height: 100%;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
}

.ba-slider .handle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 45px;
  height: 45px;
  background: #0d8a45;
  border: 3px solid #ffffff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  cursor: ew-resize;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 12px rgba(0,0,0,0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ba-slider .handle::before,
.ba-slider .handle::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-top: 3px solid #ffffff;
  border-right: 3px solid #ffffff;
}

.ba-slider .handle::before {
  transform: rotate(-135deg);
  left: 9px;
}

.ba-slider .handle::after {
  transform: rotate(45deg);
  right: 9px;
}

.ba-slider .handle:hover {
  transform: translate(-50%, -50%) scale(1.08);
  box-shadow: 0 0 16px rgba(0, 150, 70, 0.7);
}

.project-card h3 {
  margin-top: 18px;
  font-size: 1.05rem;
  font-weight: 700;
  color: #0d2b1f;
}

.project-card p {
  margin-top: 10px;
  color: #555;
  font-size: 0.9rem;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .projects-grid {
    grid-template-columns: 1fr;
  }
}

/* ======================================
   CTA BAR
====================================== */

.cta-call-section {
  background: #d3dcc5;
  padding: 35px 0;
  text-align: center;
}

.cta-container h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #1c1c1c;
  letter-spacing: 1px;
  margin: 0;
}

.cta-container .divider {
  margin: 0 12px;
  color: #006837;
}

.cta-phone {
  color: #006837;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 1px;
  transition: 0.3s ease;
}

.cta-phone:hover {
  color: #004f29;
  text-decoration: underline;
}

@media (max-width: 700px) {
  .cta-container h2 {
    font-size: 1.4rem;
    line-height: 1.5;
    padding: 0 15px;
  }
}

/* ======================================
   TESTIMONIALS
====================================== */

.testimonial-section {
  background: #006837;
  padding: 80px 0 120px;
  text-align: center;
}

.testimonial-heading {
  font-size: 2.8rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 40px;
}

.testimonial-wrapper {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.testimonial-box {
  background: #ffffff;
  padding: 50px 70px;
  border-radius: 20px;
  width: 100%;
  max-width: 900px;
  height: 340px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 35px rgba(0,0,0,0.15);
}

.testimonial-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(15px);
  transition: all 0.5s ease;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.testimonial-slide.active {
  opacity: 1;
  transform: translateY(0);
}

.t-text {
  font-size: 1.15rem;
  line-height: 1.65;
  color: #333;
  max-width: 700px;
  text-align: center;
  margin-bottom: 15px;
}

.t-stars {
  margin-top: 15px;
  font-size: 1.6rem;
  color: gold;
}

.t-author {
  margin-top: 10px;
  font-size: 1rem;
  font-style: italic;
  color: #444;
}

.t-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #f2f2f2;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.25s ease;
  z-index: 10;
}

.t-prev { left: -25px; }
.t-next { right: -25px; }

.t-btn:hover {
  background: #ddd;
}

.testimonial-dots {
  margin-top: 25px;
  display: flex;
  gap: 8px;
  justify-content: center;
}

.testimonial-dots span {
  width: 12px;
  height: 12px;
  background: #bbb;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.25s ease;
}

.testimonial-dots .active {
  background: #333;
  transform: scale(1.2);
}

@media (max-width: 768px) {
  .testimonial-box {
    padding: 30px 20px;
    height: auto;
  }

  .t-prev { left: -10px; }
  .t-next { right: -10px; }
}

/* ======================================
   BADGES (1)
====================================== */

.badges-section {
  padding: 60px 0;
  background: #ffffff;
  text-align: center;
}

.badges-heading {
  font-size: 2.2rem;
  font-weight: 800;
  color: #0d2b1f;
  margin-bottom: 40px;
}

.badges-wrapper {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.badge-item img {
  width: 160px;
  height: auto;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.badge-item img:hover {
  transform: scale(1.08);
  filter: drop-shadow(0px 6px 12px rgba(0,0,0,0.15));
}

@media (max-width: 768px) {
  .badges-wrapper {
    gap: 30px;
  }

  .badge-item img {
    width: 130px;
  }
}

/* ======================================
   WHY CHOOSE US
====================================== */

.why-choose-us {
  background: #d9e1cc;
  text-align: center;
  padding: 70px 20px;
  color: #0b3a23;
}

.why-choose-us h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  font-weight: 800;
}

.wcu-text {
  max-width: 700px;
  margin: 10px auto;
  font-size: 1rem;
  line-height: 1.6;
}

.wcu-text strong {
  color: #0a5c2e;
  font-weight: 700;
}

.wcu-offer img {
  width: 320px;
  margin-top: 30px;
  cursor: pointer;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wcu-offer {
    display: flex;
    justify-content: center;
    width: 100%;
}

.wcu-offer img:hover {
  transform: scale(1.05);
  box-shadow: 0px 8px 20px rgba(0,0,0,0.15);
}

@media (max-width: 768px) {
  .wcu-offer img {
    width: 260px;
  }
}

/* ======================================
   OUR STORY
====================================== */

.our-story-section {
  position: relative;
  padding: 120px 0;
  background: #e4ebdd;
  overflow: hidden;
}

.story-container {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 0 40px;
}

.story-text h2 {
  font-size: 2.7rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: #0a2e1f;
}

.story-text p {
  line-height: 1.7;
  margin-bottom: 15px;
  font-size: 1.1rem;
  color: #243c30;
}

.story-btn {
  display: inline-block;
  padding: 14px 38px;
  background: #00733a;
  color: #ffffff;
  border-radius: 40px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s;
}

.story-btn:hover {
  background: #005827;
  transform: translateY(-3px);
}

.story-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 10px 35px rgba(0,0,0,0.18);
}

.story-leaf-bg {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 380px;
  opacity: 0.35;
  z-index: 0;
}

@media (max-width: 900px) {
  .story-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .story-image {
    order: -1;
  }

  .story-leaf-bg {
    width: 260px;
    opacity: 0.25;
  }
}

/* ======================================
   OUR MISSION
====================================== */

.our-mission-section {
  padding: 120px 0;
  background: #ffffff;
}

.mission-container {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 0 40px;
}

.mission-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.18);
}

.mission-text h2 {
  font-size: 2.7rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: #0a2e1f;
}

.mission-text p {
  line-height: 1.7;
  font-size: 1.1rem;
  margin-bottom: 18px;
  color: #333;
}

@media (max-width: 900px) {
  .mission-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .mission-image {
    order: -1;
  }
}

/* ======================================
   BADGES (2)
====================================== */

.badge-section-2 {
  padding: 80px 0;
  background: #ffffff;
  text-align: center;
}

.badge-container {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
}

.badge-container .badge-item img {
  width: 170px;
}

.badge-item img:hover {
  transform: scale(1.08);
}

@media (max-width: 900px) {
  .badge-container {
    gap: 40px;
  }

  .badge-container .badge-item img {
    width: 140px;
  }
}

@media (max-width: 600px) {
  .badge-container .badge-item img {
    width: 120px;
  }
}

/* ======================================
   WHAT SETS US APART
====================================== */

.what-sets-us {
  background: url('/brainardsgreenscapes/assets/images/apart.jpg') no-repeat bottom right / cover;
  padding: 100px 0;
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
}

.wsu-content {
  max-width: 600px;
  margin-left: 80px;
  background: rgba(255,255,255,0.92);
  padding: 30px;
  border-radius: 16px;
}

.wsu-content h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 25px;
  color: #1b2d15;
}

.wsu-content h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-top: 20px;
  color: #0a4a23;
}

.wsu-content p {
  margin-top: 5px;
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  max-width: 550px;
}

@media (max-width: 900px) {
  .what-sets-us {
    background-position: bottom center;
    padding: 60px 20px;
    text-align: center;
  }

  .wsu-content {
    margin-left: 0;
  }

  .wsu-content p {
    max-width: 100%;
  }
}

/* ======================================
   CTA PRO
====================================== */

.cta-pro {
  background: #d7e0c8;
  padding: 80px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.cta-left {
  flex: 1;
}

.cta-left h2 {
  font-size: 2.8rem;
  font-weight: 800;
  color: #1b2d15;
  margin-bottom: 20px;
  line-height: 1.2;
}

.cta-left p {
  font-size: 1.15rem;
  color: #333;
  margin-bottom: 35px;
  max-width: 550px;
}

.cta-buttons {
  display: flex;
  gap: 20px;
}

.cta-btn {
  display: inline-block;
  padding: 15px 35px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 40px;
  border: 2px solid #0b4e29;
  transition: 0.3s;
}

.call-btn {
  background: #0b4e29;
  color: #ffffff;
}

.call-btn:hover {
  background: #083a20;
}

.quote-btn {
  background: transparent;
  color: #0b4e29;
}

.quote-btn:hover {
  background: #0b4e29;
  color: #ffffff;
}

.cta-right {
  flex: 1;
  display: flex;
  justify-content: center;
}

.cta-img-wrap {
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  max-width: 450px;
}

.cta-img-wrap img {
  width: 100%;
  transition: transform 0.5s ease;
}

.cta-img-wrap:hover img {
  transform: scale(1.08);
}

@media (max-width: 900px) {
  .cta-pro {
    flex-direction: column;
    text-align: center;
    padding: 60px 20px;
  }

  .cta-left p {
    margin-left: auto;
    margin-right: auto;
  }

  .cta-buttons {
    justify-content: center;
  }
}

/* Quote bar */
.quote-bar {
  background: #035f37;
  padding: 25px 0;
  text-align: center;
}

.quote-bar h2 {
  color: #ffffff;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin: 0;
}

.quote-bar .divider {
  margin: 0 15px;
  font-weight: 400;
}

.quote-bar a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  transition: 0.3s ease;
}

.quote-bar a:hover {
  color: #d4e8d0;
}

/* ======================================
   CONTACT SLIDE PANEL
====================================== */

.contact-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: 420px;
  max-width: 100%;
  height: 100vh;
  background: #ffffff;
  box-shadow: -4px 0 20px rgba(0,0,0,0.15);
  padding: 30px;
  padding-top: 50px;
  overflow-y: auto;
  z-index: 99999;
  transform: translateX(100%);
  transition: transform 0.4s ease;
}

.contact-panel.active {
  transform: translateX(0);
}

.close-btn {
  font-size: 28px;
  background: none;
  border: none;
  cursor: pointer;
  position: absolute;
  right: 20px;
  top: 15px;
  font-weight: 800;
  color: #333;
  transition: 0.2s ease;
}

.close-btn:hover {
  color: #0a7a3b;
}

.floating-contact-btn {
  position: fixed;
  bottom: 35px;
  right: 35px;
  background: #006837;
  color: #ffffff;
  padding: 15px 25px;
  border-radius: 40px;
  font-size: 18px;
  border: none;
  cursor: pointer;
  z-index: 99999;
}

/* Contact form styling */
.contact-panel h2 {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 25px;
  margin-top: 20px;
  color: #0a3d25;
  text-align: center;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 10px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 8px;
  border: 1px solid #c9c9c9;
  background: #f9f9f9;
  font-size: 15px;
  outline: none;
  transition: 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #0a7a3b;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(9, 121, 52, 0.15);
}

.contact-form textarea {
  min-height: 130px;
  resize: none;
}

.send-btn {
  background: #0a7a3b;
  color: #ffffff;
  padding: 14px 0;
  font-size: 16px;
  border: none;
  border-radius: 40px;
  cursor: pointer;
  font-weight: 700;
  transition: 0.3s ease;
}

.send-btn:hover {
  background: #08622f;
  transform: translateY(-2px);
}

@media (max-width: 480px) {
  .contact-panel h2 {
    font-size: 1.4rem;
  }

  .send-btn {
    font-size: 15px;
  }
}





/* ============================
   GLOBAL BASICS (safe)
============================ */
* { box-sizing: border-box; }
img { max-width: 100%; height: auto; display: block; }

.container{
  width: min(1200px, 92%);
  margin: 0 auto;
}

/* ============================
   HEADER – FINAL FIX
============================ */
.site-header{
  background:#fff;
  position: sticky;
  top:0;
  z-index:9999;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.header-flex{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 14px 0;
}

/* ============================
   HEADER LOGO – FINAL POLISH
============================ */

.header-logo{
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.header-logo img{
  height: 120px;              /* badge size */
  width: 120px;
  border-radius: 60%;        /* perfect circle */
  object-fit: contain;       /* keeps logo intact */
  background: #ffffff;       /* clean badge background */
  padding: 6px;              /* breathing space inside circle */
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}


/* NAV */
.main-nav{
  flex: 1;
}

.nav-list{
  display:flex;
  justify-content:center;
  align-items:center;
  gap: 30px;
  list-style:none;
  margin:0;
  padding:0;
}

.nav-list > li{
  position:relative;
}

/* MENU LINKS */
.nav-list > li > a{
  display:flex;
  align-items:center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  text-decoration:none;
  color:#2f2f2f;
  padding: 10px 6px;
  line-height: normal; /* FIX */
}

/* LEAF FIX */
.leaf{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size: 12px;
  margin-top: -1px; /* subtle nudge */
}

/* DROPDOWN */
.dropdown{
  position:absolute;
  top: 100%; /* FIXED hover gap */
  left: 0;
  min-width: 220px;
  background:#fff;
  border-radius: 10px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.14);
  padding: 8px 0;
  display:none;
  z-index: 2000;
}

.dropdown a{
  display:block;
  padding: 10px 14px;
  font-size: 14px;
  text-decoration:none;
  color:#333;
}

.dropdown a:hover{
  background:#eef5ee;
  color:#1b5e20;
}

.has-dropdown:hover .dropdown{
  display:block;
}

/* CTA */
.header-cta{
  display:flex;
  align-items:center;
  gap: 16px;
}

.phone-btn{
  padding: 10px 18px;
  border: 2px solid #0b5a2b;
  border-radius: 999px;
  font-weight: 800;
  color:#0b5a2b;
  text-decoration:none;
  white-space: nowrap;
}

.phone-btn:hover{
  background:#0b5a2b;
  color:#fff;
}

.divider{
  width:2px;
  height:26px;
  background: rgba(11,90,43,0.25);
}

.finance-btn{
  padding: 12px 22px;
  background:#0b5a2b;
  color:#fff;
  border-radius:999px;
  font-weight:800;
  text-decoration:none;
}

.finance-btn:hover{
  background:#083f1f;
}

/* MOBILE */
.mobile-menu-btn{
  display:none;
}

@media (max-width: 980px){
  .mobile-menu-btn{
    display:block;
    font-size:28px;
    background:none;
    border:none;
  }

  .main-nav{
    position:absolute;
    top:100%;
    left:0;
    right:0;
    background:#fff;
    display:none;
  }

  .main-nav.open{
    display:block;
  }

  .nav-list{
    flex-direction:column;
    gap:0;
  }

  .nav-list > li > a{
    justify-content:center;
    padding:14px;
  }

  .dropdown{
    position:static;
    box-shadow:none;
  }
}

/* ============================
   HERO (single source of truth)
============================ */
.hero-slider{
  position: relative;
  width: 100%;
  height: calc(100vh - 96px);
  min-height: 520px;
  max-height: 720px;
  overflow: hidden;
}

.hero-slider .slide{
  position:absolute;
  inset:0;
  background-size: cover;
  background-position: center;
  opacity:0;
  transition: opacity 1s ease-in-out;
  display:flex;
  align-items:center;
  justify-content:center;
}

.hero-slider .slide.active{ opacity:1; }

.hero-slider .slide-overlay{
  position:absolute;
  inset:0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.62),
    rgba(0,0,0,0.30),
    rgba(0,0,0,0.70)
  );
}

.hero-slider .slide-content{
  position: relative;
  z-index: 2;
  text-align:center;
  color:#fff;
  max-width: 820px;
  padding: 0 18px;
}

.hero-slider .slide-content h1{
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 900;
  line-height: 1.12;
  margin: 0 0 14px;
}

.hero-slider .slide-content p{
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: rgba(255,255,255,0.9);
  margin: 0 0 26px;
}

.hero-slider .slide-content .btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 14px 36px;
  border-radius: 999px;
  background:#0a6d3c;
  color:#fff;
  font-weight: 800;
  text-decoration:none;
  box-shadow: 0 10px 24px rgba(0,0,0,0.25);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.hero-slider .slide-content .btn:hover{
  background:#07542d;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.33);
}

/* dots + arrows */
.slider-dots{
  position:absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display:flex;
  gap:10px;
  z-index: 3;
}
.slider-dots .dot{
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  cursor:pointer;
}
.slider-dots .dot.active{
  background: #fff;
  transform: scale(1.15);
}

.slider-arrow{
  position:absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  background: rgba(255,255,255,0.20);
  border:none;
  color:#fff;
  font-size: 40px;
  padding: 10px 16px;
  cursor:pointer;
  border-radius: 10px;
}
.slider-arrow:hover{ background: rgba(255,255,255,0.34); }
.left-arrow{ left: 18px; }
.right-arrow{ right: 18px; }

/* ============================
   FOOTER (centered + icons visible)
============================ */
.footer-area{
  background: #0f1f0f;
  color: #e8e8e8;
  padding: 60px 0 25px;
}

.footer-grid{
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 60px;
  align-items: start;
}

.footer-col h4{
  margin:0 0 14px;
  font-size: 1.05rem;
  font-weight: 800;
  color:#fff;
}

.footer-col p,
.footer-col a{
  color: rgba(255,255,255,0.86);
  font-size: 0.95rem;
  text-decoration:none;
  line-height: 1.65;
}

.footer-col a:hover{ color:#7ccf84; }

.footer-links{
  list-style:none;
  padding:0;
  margin:0;
}
.footer-links li{ margin: 0 0 10px; }

.mt-18{ margin-top: 18px; }

.payment-icons{
  display:flex;
  align-items:center;
  gap: 14px;
  margin-top: 10px;
}
.payment-icons img{
  width: 42px;
  height: 42px;
  object-fit: contain;
  display:block;
  filter: invert(1) brightness(1.8);
  opacity: 0.95;
}

.footer-brand img{
  width: 165px;
  margin-top: 18px;
  filter: invert(1) brightness(1.3);
  opacity: 0.9;
}

.social-icons{
  display:flex;
  gap: 16px;
  margin-top: 10px;
  font-size: 22px;
}
.social-icons a{
  width: 40px;
  height: 40px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color:#fff;
}
.social-icons a:hover{
  background: rgba(124,207,132,0.18);
  color:#7ccf84;
}

.footer-bottom{
  margin-top: 42px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.14);
  text-align:center;
  font-size: 0.88rem;
}

.footer-legal{
  margin-top: 10px;
  display:flex;
  justify-content:center;
  align-items:center;
  gap: 10px;
  flex-wrap: wrap;
}
.footer-legal a{
  text-decoration: underline;
  color: rgba(255,255,255,0.86);
}

/* Footer responsive */
@media (max-width: 980px){
  .footer-grid{ grid-template-columns: repeat(2, minmax(0,1fr)); gap: 36px; }
}
@media (max-width: 620px){
  .footer-grid{ grid-template-columns: 1fr; }
  .payment-icons, .social-icons{ justify-content: center; }
  .footer-col{ text-align:center; }
}

/* ============================
   Center the offer image
============================ */
.wcu-offer{
  display:flex;
  justify-content:center;
  align-items:center;
}
.wcu-offer img{
  width: 320px;
  margin-top: 30px;
  cursor: pointer;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}


/* ============================
   FAQ SECTION
============================ 
.faq-section {
  background: #f5f7f2;
  padding: 90px 0;
}

.faq-title {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 50px;
  color: #0b3d25;
}

.faq-item {
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 10px;
  font-size: 1.1rem;
  font-weight: 700;
  color: #1b2d15;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: #0a6d3c;
}

.faq-icon {
  font-size: 26px;
  font-weight: 400;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease, padding 0.3s ease;
  padding: 0 10px;
}

.faq-answer p {
  margin: 0;
  padding: 0 0 22px;
  font-size: 1rem;
  line-height: 1.7;
  color: #444;
}

.faq-item.active .faq-answer {
  max-height: 250px;
}

/* Mobile 
@media (max-width: 768px) {
  .faq-title {
    font-size: 2rem;
  }
}

*/

/* ==============================
   ABOUT HERO (FIXED LAYOUT)
============================== */
.about-hero {
  padding: 120px 0 100px;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.about-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 60px;
}

/* LEFT CONTENT */
.about-hero-content h1 {
  font-size: 3rem;
  font-weight: 900;
  color: #0d2b1f;
  margin-bottom: 18px;
}

.about-hero-contact {
  font-size: 0.95rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: #333;
}

.about-hero-contact a {
  font-weight: 800;
  color: #006837;
  text-decoration: none;
}

.about-hero-desc {
  font-size: 1.15rem;
  line-height: 1.6;
  color: #444;
  margin-bottom: 30px;
  max-width: 520px;
}

/* RIGHT VISUAL */
.about-hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-awards-img {
  max-width: 200px;
  width: 100%;
  z-index: 2;
  border-radius: 6px;
  box-shadow: 0 12px 35px rgba(0,0,0,0.18);
}

/* ==============================
   ANIMATED LEAVES (ABOUT ONLY)
============================== */
.about-leaf {
  position: absolute;
  width: 240px;
  height: 240px;
  background: url('/brainardsgreenscapes/assets/images/leaf.jpg') no-repeat center / contain;
  opacity: 0.3;
  z-index: 1;
  animation: floatLeaf 9s ease-in-out infinite;
}

.leaf-1 {
  top: -40px;
  right: 20%;
  animation-duration: 7s;
}

.leaf-2 {
  bottom: 10%;
  right: 5%;
  animation-duration: 9s;
}

.leaf-3 {
  top: 35%;
  left: -40px;
  animation-duration: 11s;
}

@keyframes floatLeaf {
  0% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(4deg); }
  100% { transform: translateY(0) rotate(0deg); }
}

/* ==============================
   RESPONSIVE
============================== */
@media (max-width: 900px) {
  .about-hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-hero-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .about-hero-visual {
    margin-top: 50px;
  }

  .about-leaf {
    display: none;
  }
}


/* ==========================
   ABOUT STORY SECTION
========================== */

.about-story {
  background: #f1f1f1;
  padding: 100px 0;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.story-block h2 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: #1b2d15;
}

.story-block p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #333;
}

/* Responsive */
@media (max-width: 900px) {
  .story-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}


.why-about {
  background: #f7f8f4;
  padding: 100px 0;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.why-card {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 22px;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
  transition: 0.4s ease;
}

.why-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.18);
}

.why-card i {
  font-size: 38px;
  color: #006837;
  margin-bottom: 18px;
}

.why-card h4 {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: #0b3a23;
}

.why-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #444;
}

@media (max-width: 1000px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}


/* ======================================
   ABOUT – WHAT SETS US APART
====================================== */

.about-apart {
  width: 100%;
  background: #ffffff;
  overflow: hidden;
}

.about-apart-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  min-height: 600px;
}

/* LEFT SIDE */
.about-apart-content {
  background: #b9c9b0;
  padding: 80px 70px;
  color: #1b2d15;
}

.about-apart-content h2 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 30px;
}

.about-apart-content h4 {
  margin-top: 22px;
  font-size: 1.05rem;
  font-weight: 700;
  color: #0a4a23;
}

.about-apart-content p {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-top: 6px;
  color: #243c30;
}

.apart-footer-title {
  margin-top: 35px;
  font-size: 1.3rem;
  font-weight: 800;
}

.apart-footer-text {
  font-size: 0.95rem;
  max-width: 520px;
}

/* RIGHT SIDE */
.about-apart-visual {
  position: relative;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-apart-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .about-apart-inner {
    grid-template-columns: 1fr;
  }

  .about-apart-content {
    padding: 60px 30px;
  }

  .about-apart-visual {
    height: 280px;
  }
}


/* ============================
   ABOUT – OWNER
============================ */
.about-owner{
  background:#fff;
  padding: 100px 0;
}

.owner-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items:center;
}

.owner-image img{
  width:100%;
  border-radius: 18px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.18);
}

.owner-content h2{
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.owner-content h4{
  color:#0a5c2e;
  margin-bottom: 18px;
}

.owner-content p{
  line-height:1.7;
  margin-bottom: 14px;
  color:#333;
}

@media(max-width:900px){
  .owner-grid{
    grid-template-columns: 1fr;
    text-align:center;
  }
}


/* ============================
   ABOUT – TEAM
============================ */
.about-team{
  background:#f7f8f4;
  padding: 90px 0;
}

.team-grid{
  display:grid;
  grid-template-columns: repeat(3,1fr);
  gap: 40px;
}

.team-card{
  background:#fff;
  padding: 25px;
  border-radius: 18px;
  text-align:center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
  transition: transform .3s ease;
}

.team-card:hover{
  transform: translateY(-8px);
}

.team-card img{
  width:20%;
  border-radius: 14px;
  margin-bottom: 15px;
}

.team-card h4{
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.team-card p{
  font-size: 0.9rem;
  color:#555;
}

@media(max-width:900px){
  .team-grid{
    grid-template-columns: 1fr;
  }
}



/* ==========================
   AWARDS AUTO SLIDER
========================== */

.awards-slider-section {
  background: #f7f8f4;
  padding: 80px 0;
  overflow: hidden;
  text-align: center;
}

.awards-slider-section .section-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #0d2b1f;
  margin-bottom: 50px;
}

.awards-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.awards-track {
  display: flex;
  width: max-content;
  animation: scrollAwards 35s linear infinite;
}

.award-item {
  flex: 0 0 auto;
  width: 150px;
  margin: 0 30px;
}

.award-item img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,0.15));
  transition: transform 0.3s ease;
}

.award-item img:hover {
  transform: scale(1.06);
}

/* Infinite scroll animation */
@keyframes scrollAwards {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .award-item {
    width: 160px;
    margin: 0 18px;
  }
}
.about-internal {
  padding: 90px 0;
  background: #f7f8f4;
}

.about-internal.alt {
  background: #ffffff;
}

.internal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.internal-grid img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

@media (max-width: 900px) {
  .internal-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

/*
.about-faq {
  padding: 100px 0;
  background: #ffffff;
}

.faq-item {
  border-bottom: 1px solid #ddd;
  margin-bottom: 15px;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 0;
  font-size: 1.1rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  position: relative;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 0;
  font-size: 1.4rem;
}

.faq-item.active .faq-question::after {
  content: "−";
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  font-size: 1rem;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

/* =========================
   ABOUT PAGE – FINAL CTA
========================= */

.about-cta {
  background: #cfdcc4;
  padding: 100px 0;
}

.about-cta-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: center;
}

.about-cta-content h2 {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: #0b3a23;
}

.about-cta-content p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #243c30;
  margin-bottom: 16px;
}

.cta-list {
  margin: 20px 0;
  padding-left: 20px;
}

.cta-list li {
  margin-bottom: 10px;
  font-size: 1rem;
  color: #1f3b2c;
}

.cta-note {
  margin-top: 20px;
  font-weight: 600;
}

.cta-buttons {
  display: flex;
  gap: 18px;
  margin-top: 35px;
}

.cta-btn {
  padding: 14px 32px;
  border-radius: 40px;
  font-weight: 800;
  font-size: 0.95rem;
  text-decoration: none;
  transition: 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cta-btn.primary {
  background: #0b5a2b;
  color: #ffffff;
}

.cta-btn.primary:hover {
  background: #084120;
  transform: translateY(-2px);
}

.cta-btn.outline {
  border: 2px solid #0b5a2b;
  color: #0b5a2b;
  background: transparent;
}

.cta-btn.outline:hover {
  background: #0b5a2b;
  color: #ffffff;
}

.about-cta-image img {
  width: 100%;
  max-width: 180px;
  border-radius: 14px;
  box-shadow: 0 14px 40px rgba(0,0,0,0.25);
  margin-left: auto;
}

/* Responsive */
@media (max-width: 900px) {
  .about-cta-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cta-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }

  .about-cta-image img {
    margin: 40px auto 0;
  }
}


/* BLOG */
.blog-hero {
  padding: 120px 20px;
  background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
              url('/brainardsgreenscapes/assets/images/bg2.jpg') center/cover;
  color: #fff;
  text-align: center;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.blog-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
  transition: 0.4s ease;
}

.blog-card:hover {
  transform: translateY(-10px);
}

.blog-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.blog-card-content {
  padding: 25px;
}

.blog-card h3 {
  color: #0b5a2b;
  font-weight: 800;
}

.blog-card p {
  color: #444;
}

/* faq page */

/* =========================
   FAQ PAGE (scoped)
========================= */
.faq-page .faq-hero{
  background: linear-gradient(135deg, #eaf3ea, #f6faf6);
  padding: 80px 0 55px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.faq-page .faq-hero-inner{
  text-align:center;
  max-width: 900px;
  margin: 0 auto;
}

.faq-page .faq-hero h1{
  font-size: clamp(2rem, 4vw, 3.1rem);
  font-weight: 900;
  margin: 0 0 12px;
  color: #0b3d25;
  letter-spacing: 0.5px;
}

.faq-page .faq-hero p{
  margin: 0 auto;
  max-width: 760px;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #2f2f2f;
}

.faq-page .faq-hero a{
  color: #0b5a2b;
  font-weight: 800;
  text-decoration: none;
}
.faq-page .faq-hero a:hover{ text-decoration: underline; }

.faq-page .faq-hero-actions{
  margin-top: 22px;
  display:flex;
  gap: 12px;
  justify-content:center;
  flex-wrap: wrap;
}

.faq-page .btn-outline{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 14px 28px;
  border-radius: 999px;
  border: 2px solid #0b5a2b;
  color:#0d0f0e;
  font-weight: 900;
  text-decoration:none;
  background: transparent;
  transition: 0.25s ease;
}
.faq-page .btn-outline:hover{
  background:#0b5a2b;
  color:#fff;
  transform: translateY(-2px);
}

 wrapper 
.faq-page .faq-wrap{
  padding: 55px 0 90px;
  background: #fff;
}

.faq-page .faq-toolbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 16px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}

.faq-page .faq-search{
  flex: 1;
  min-width: 260px;
  display:flex;
  align-items:center;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid rgba(0,0,0,0.10);
  border-radius: 14px;
  background: #fbfdfb;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

.faq-page .faq-search i{
  color: #0b5a2b;
  font-size: 16px;
}

.faq-page .faq-search input{
  border:none;
  outline:none;
  width:100%;
  font-size: 15px;
  background: transparent;
}

.faq-page .faq-tools{
  display:flex;
  gap: 10px;
}

.faq-page .faq-tool-btn{
  border: 1px solid rgba(0,0,0,0.10);
  background: #fff;
  padding: 10px 14px;
  border-radius: 999px;
  cursor:pointer;
  font-weight: 800;
  transition: 0.25s ease;
}
.faq-page .faq-tool-btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

/* accordion 
.faq-page .faq-accordion{
  display:flex;
  flex-direction: column;
  gap: 14px;
}

.faq-page .faq-item{
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 18px;
  overflow: hidden;
  background:#fff;
  box-shadow: 0 14px 30px rgba(0,0,0,0.06);
  transform: translateY(8px);
  opacity: 0;
  animation: faqFadeUp 0.6s ease forwards;
}

.faq-page .faq-item:nth-child(2){ animation-delay: .04s; }
.faq-page .faq-item:nth-child(3){ animation-delay: .08s; }
.faq-page .faq-item:nth-child(4){ animation-delay: .12s; }
.faq-page .faq-item:nth-child(5){ animation-delay: .16s; }

@keyframes faqFadeUp{
  to { transform: translateY(0); opacity: 1; }
}

.faq-page .faq-q{
  width:100%;
  display:flex;
  align-items:center;
  gap: 12px;
  padding: 18px 18px;
  border:none;
  background: linear-gradient(180deg, #ffffff, #fbfdfb);
  cursor:pointer;
  text-align:left;
}

.faq-page .faq-q-text{
  font-weight: 900;
  color: #123a24;
  font-size: 1.05rem;
  line-height: 1.35;
}

.faq-page .faq-icon{
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: rgba(11,90,43,0.10);
  position: relative;
}

.faq-page .faq-icon::before,
.faq-page .faq-icon::after{
  content:"";
  position:absolute;
  left:50%;
  top:50%;
  width: 16px;
  height: 3px;
  background:#0b5a2b;
  border-radius: 3px;
  transform: translate(-50%, -50%);
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.faq-page .faq-icon::after{
  transform: translate(-50%, -50%) rotate(90deg);
}

/* answer (animated height) 
.faq-page .faq-a{
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
  background:#fff;
}

.faq-page .faq-a-inner{
  padding: 0 18px 18px 68px;
  color:#333;
  line-height: 1.75;
  font-size: 0.98rem;
}

/* open state 
.faq-page .faq-item.is-open{
  border-color: rgba(11,90,43,0.25);
  box-shadow: 0 18px 45px rgba(0,0,0,0.10);
}

.faq-page .faq-item.is-open .faq-q{
  background: linear-gradient(180deg, #f2fbf2, #ffffff);
}

.faq-page .faq-item.is-open .faq-icon{
  background: rgba(11,90,43,0.16);
}

.faq-page .faq-item.is-open .faq-icon::after{
  opacity: 0; /* turns + into - */


/* filtered hidden 
.faq-page .faq-item.is-hidden{ display:none; }

@media (max-width: 640px){
  .faq-page .faq-a-inner{
    padding-left: 18px;
  }
} */

.faq-accordion {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #ddd;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px;
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-icon {
  font-size: 26px;
  transition: transform 0.3s ease;
}

.faq-answer {
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
}

.faq-answer p {
  padding: 0 20px 20px;
  line-height: 1.6;
  color: #444;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg); /* + becomes × */
}




/* =========================
   REVIEWS PAGE
========================= */

.page-reviews {
  background: #f7f8f4;
}

/* HERO */
.reviews-hero {
  background: linear-gradient(
    rgba(0, 0, 0, 0.55),
    rgba(0, 0, 0, 0.55)
  ),
  url('/brainardsgreenscapes/assets/images/bg1.jpg') center / cover no-repeat;
  padding: 120px 20px;
  text-align: center;
  color: #fff;
}

.reviews-hero h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900;
  margin-bottom: 15px;
}

.reviews-hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.95;
}

/* WIDGET SECTION */
.reviews-widget {
  padding: 90px 0;
  background: #ffffff;
}

.reviews-widget .section-title {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.section-sub {
  text-align: center;
  color: #555;
  margin-bottom: 40px;
  font-size: 1.05rem;
}

/* Trustindex wrapper */
.trustindex-widget {
  max-width: 1100px;
  margin: 0 auto;
}

/* CTA */
.reviews-cta {
  background: #0b5a2b;
  color: #fff;
  text-align: center;
  padding: 80px 20px;
}

.reviews-cta h2 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 15px;
}

.reviews-cta p {
  font-size: 1.1rem;
  max-width: 650px;
  margin: 0 auto 30px;
  opacity: 0.95;
}


/* ===============================
   SERVICE AREAS PAGE
================================ */

.service-areas-page {
  padding-bottom: 80px;
}

.service-areas-list {
  padding: 70px 0;
}

.service-area-block {
  max-width: 900px;
  margin: 0 auto 70px;
  text-align: center;
}

.service-area-block h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 12px;
  color: #0D490B;
}

.service-area-block p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 22px;
  color: #444;
}

.area-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

.area-links a {
  background: #0D490B;
  color: #fff;
  padding: 10px 18px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.area-links a:hover {
  background: #5FBF4A;
  color: #052e16;
  transform: translateY(-2px);
}

/* Light mode */
body.light .service-area-block h2 {
  color: #052e16;
}

body.light .service-area-block p {
  color: #333;
}

/* Mobile */
@media (max-width: 768px) {
  .service-area-block h2 {
    font-size: 26px;
  }

  .service-area-block p {
    font-size: 15px;
  }

  .area-links {
    flex-direction: column;
    align-items: center;
  }

  .area-links a {
    width: 100%;
    max-width: 320px;
    text-align: center;
  }
}


/* =========================
   SERVICE AREAS HERO
========================= */
.service-areas-hero {
  position: relative;
  padding: 180px 0 140px;
  background: url('../images/after4.webp') center/cover no-repeat;
  text-align: center;
  color: #fff;
}

.service-areas-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.service-areas-hero .container {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.service-areas-hero h1 {
  font-size: 52px;
  font-weight: 800;
  margin-bottom: 18px;
}

.service-areas-hero p {
  font-size: 20px;
  line-height: 1.6;
  color: #e5e7eb;
}

/* Mobile */
@media (max-width: 768px) {
  .service-areas-hero {
    padding: 140px 20px 110px;
  }

  .service-areas-hero h1 {
    font-size: 34px;
  }

  .service-areas-hero p {
    font-size: 16px;
  }
}

/* =========================
   SERVICE AREAS CTA
========================= */
.service-areas-cta {
  padding: 90px 0;
  background: linear-gradient(
    135deg,
    #0D490B 0%,
    #1f7a1f 100%
  );
  color: #fff;
  text-align: center;
}

.service-areas-cta .container {
  max-width: 900px;
}

.service-areas-cta h2 {
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 15px;
}

.service-areas-cta p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 35px;
  color: #e5e7eb;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

/* Primary CTA Button */
.btn-primary {
  background: #fff;
  color: #0D490B;
  padding: 14px 34px;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  transition: 0.3s;
}

.btn-primary:hover {
  background: #e5e7eb;
  transform: translateY(-2px);
}

/* Secondary CTA Button */
.btn-outline {
  border: 2px solid #fff;
  color: #fff;
  padding: 14px 34px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s;
}

.btn-outline:hover {
  background: #fff;
  color: #0D490B;
}

/* Mobile */
@media (max-width: 768px) {
  .service-areas-cta h2 {
    font-size: 28px;
  }

  .service-areas-cta p {
    font-size: 16px;
  }
}

/* =========================
   SERVICE AREA HERO
========================= */
.service-hero {
  padding: 60px 0 20px;
  background: #ffffff;
  text-align: center;
}

.service-hero h1 {
  font-size: 46px;
  font-weight: 800;
  margin-bottom: 20px;
  color: #111;
}

.service-hero p {
  max-width: 850px;
  margin: 0 auto 16px;
  font-size: 17px;
  line-height: 1.7;
  color: #444;
}

.hero-actions {
  margin-top: 25px;
  display: flex;
  justify-content: center;
  gap: 15px;
}

/* =========================
   SERVICE CONTENT
========================= */
.service-content {
  padding: 20px 0;
}

.service-content h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
}

.service-content h3 {
  margin-top: 25px;
  font-size: 22px;
}

.service-content p {
  max-width: 900px;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 16px;
  color: #444;
}

.service-list {
  margin: 15px 0 30px;
  padding-left: 18px;
}

.service-list li {
  margin-bottom: 6px;
  font-size: 15px;
}

/* =========================
   CTA SECTION
========================= */
.service-cta {
  padding: 90px 0;
  background: #0D490B;
  text-align: center;
  color: #fff;
}

.service-cta h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.service-cta p {
  font-size: 18px;
  margin-bottom: 25px;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 15px;
}

/* =========================
   BUTTONS
========================= */
.btn {
  background: #0D490B;
  color: #fff;
  padding: 12px 26px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  border: none;
  transition: 0.3s;
}

.btn:hover {
  background: #5FBF4A;
  color: #052e16;
}

.btn-outline {
  background: transparent;
  border: 2px solid #0D490B;
  color: #0D490B;
}

.btn-outline:hover {
  background: #0D490B;
  color: #fff;
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {
  .service-hero {
    padding: 170px 0 100px;
  }

  .service-hero h1 {
    font-size: 34px;
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
  }
}


/* ===============================
   SERVICES PAGE
================================ */

.services-hero {
  padding: 140px 0 80px;
  text-align: center;
  background: #f7f9f7;
}

.services-hero h1 {
  font-size: 48px;
  margin-bottom: 10px;
}

.services-hero p {
  max-width: 700px;
  margin: auto;
  font-size: 18px;
  color: #444;
}

/* SERVICES LIST */
.services-list {
  padding: 80px 0;
}

.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 80px;
}

.service-row.reverse {
  grid-template-columns: 1fr 1fr;
  direction: rtl;
}

.service-row.reverse > * {
  direction: ltr;
}

.service-text h2 {
  font-size: 34px;
  margin-bottom: 12px;
}

.service-text p {
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #555;
}

.service-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

/* CTA */
.services-cta {
  padding: 90px 0;
  text-align: center;
  background: #0d490b;
  color: #fff;
}

.services-cta h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.services-cta p {
  font-size: 18px;
  margin-bottom: 25px;
}

/* MOBILE */
@media (max-width: 900px) {
  .service-row,
  .service-row.reverse {
    grid-template-columns: 1fr;
  }

  .services-hero h1 {
    font-size: 36px;
  }
}
/* =========================
   SERVICE PAGE
========================= */

.service-hero {
  padding: 140px 0 90px;
  background: #f6f8f5;
}

.service-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.service-hero-content h1 {
  font-size: 44px;
  margin-bottom: 15px;
}

.service-hero-sub {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 25px;
  color: #374151;
}

.service-hero-cta {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.service-hero-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

/* DETAILS */
.service-details {
  padding: 90px 0;
}

.service-details-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
}

.service-details-content h2 {
  font-size: 32px;
  margin-bottom: 15px;
}

.service-details-content p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 18px;
}

.service-details-content h3 {
  margin-top: 25px;
  margin-bottom: 10px;
  font-size: 22px;
}

.service-list {
  padding-left: 18px;
  margin-bottom: 20px;
}

.service-list li {
  margin-bottom: 8px;
}

/* SIDEBAR */
.service-box {
  background: #0d490b;
  color: #fff;
  padding: 30px;
  border-radius: 16px;
}

.service-box h4 {
  margin-bottom: 15px;
  font-size: 20px;
}

.service-box ul {
  list-style: none;
  padding: 0;
}

.service-box li {
  margin-bottom: 10px;
}

/* CTA */
.service-cta {
  background: #0d490b;
  color: #fff;
  padding: 90px 0;
  text-align: center;
}

.service-cta h2 {
  font-size: 34px;
  margin-bottom: 12px;
}

.service-cta p {
  max-width: 650px;
  margin: 0 auto 25px;
  font-size: 17px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .service-hero-grid,
  .service-details-grid {
    grid-template-columns: 1fr;
  }

  .service-hero {
    padding-top: 110px;
  }

  .service-hero-content h1 {
    font-size: 34px;
  }
}


/* =========================
   GALLERY HERO
========================= */
.gallery-hero {
  padding: 220px 0 160px;
  background: url('/assets/images/gallery/gallery-hero.jpg') center/cover no-repeat;
  position: relative;
  text-align: center;
  color: #fff;
}

.gallery-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}

.gallery-hero .container {
  position: relative;
  z-index: 2;
}

.gallery-hero h1 {
  font-size: 56px;
  font-weight: 800;
  margin-bottom: 15px;
}

.gallery-hero p {
  font-size: 20px;
  max-width: 720px;
  margin: auto;
  color: #e5e7eb;
}
/* =========================
   GALLERY GRID
========================= */
.gallery-section {
  padding: 90px 0;
  background: #0b0f13;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 28px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: #000;
  box-shadow: 0 18px 40px rgba(0,0,0,0.45);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 420px;
  object-fit: cover; /* MAGIC LINE */
  transition: transform 0.6s ease;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.45), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item:hover::after {
  opacity: 1;
}

@media (max-width: 768px) {

  .gallery-hero {
    padding: 170px 0 120px;
  }

  .gallery-hero h1 {
    font-size: 38px;
  }

  .gallery-hero p {
    font-size: 16px;
  }

  .gallery-item img {
    height: 300px;
  }
}



