/* ====================================
   1) Theme Tokens & Base
==================================== */
:root {
  --primary-green: #0b6b33;
  --dark-green: #064420;
  --light-green: #2e8b57;
  --gold: #e9b949;
  --bg: #f8faf8;
  --white: #ffffff;
  --dark-text: #1b1b1b;
  --grey-text: #666666;

  --radius-btn: 14px;
  --radius-card: 20px;
  --radius-soft: 16px;
  --transition: 300ms ease;

  --shadow-soft: 0 20px 45px rgba(6, 68, 32, 0.1);
  --shadow-card: 0 14px 30px rgba(11, 107, 51, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  line-height: 1.7;
  color: var(--dark-text);
  background: var(--bg);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.section-space {
  padding: 120px 0;
}

.section-kicker {
  display: inline-block;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  letter-spacing: 1.8px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-kicker.green {
  color: var(--primary-green);
}

.section-title {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 48px;
  line-height: 1.1;
  margin-bottom: 22px;
}

.section-text {
  color: var(--grey-text);
  margin-bottom: 24px;
}

.btn-primary-cta,
.btn-outline-cta,
.btn-hero,
.btn-topbar {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  border-radius: var(--radius-btn);
  transition: var(--transition);
}

.btn-primary-cta {
  background: var(--primary-green);
  color: var(--white);
  border: 2px solid var(--primary-green);
  padding: 14px 26px;
  font-size: 15px;
}

.btn-primary-cta:hover {
  color: var(--primary-green);
  background: transparent;
  transform: translateY(-3px);
}

.btn-outline-cta {
  background: transparent;
  color: var(--primary-green);
  border: 2px solid var(--primary-green);
  padding: 14px 24px;
  font-size: 15px;
}

.btn-outline-cta:hover {
  background: var(--primary-green);
  color: var(--white);
  transform: translateY(-3px);
}

.card-premium {
  border-radius: var(--radius-card);
  background: var(--white);
  border: 1px solid #e3eee7;
  box-shadow: var(--shadow-card);
}

/* ====================================
   2) Shared Header
==================================== */
.topbar {
  background: var(--dark-green);
  min-height: 45px;
  display: flex;
  align-items: center;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 45px;
}

.topbar-left,
.topbar-right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.topbar-left span {
  color: #deefe5;
  font-size: 13px;
  font-weight: 500;
}

.topbar i {
  color: var(--gold);
  margin-right: 6px;
}

.topbar-right a {
  color: #deefe5;
  font-size: 14px;
  transition: var(--transition);
}

.topbar-right a:hover {
  color: var(--gold);
}

.btn-topbar {
  background: var(--gold);
  color: #14380f;
  font-size: 13px;
  padding: 7px 16px;
}

.btn-topbar:hover {
  background: #f3cd69;
  color: #14380f;
}

.custom-navbar {
  position: sticky;
  top: 0;
  z-index: 1050;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(6, 68, 32, 0.08);
  padding: 14px 0;
  transition: var(--transition);
}

.custom-navbar.scrolled {
  padding: 8px 0;
  box-shadow: 0 14px 24px rgba(4, 44, 21, 0.12);
}

.logo-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--primary-green), var(--dark-green));
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 9px;
  font-size: 18px;
}

.logo-text {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--dark-green);
}

.brand-wordmark {
  width: 250px;
  max-width: 100%;
  height: auto;
  display: block;
}

.brand-wordmark-footer {
  width: 220px;
}

.nav-pill-group {
  background: #f4f8f5;
  border-radius: 999px;
  padding: 7px;
  gap: 4px;
}

.navbar-nav .nav-link {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #174f31;
  border-radius: 999px;
  padding: 8px 14px;
  transition: var(--transition);
  position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--white);
  background: var(--primary-green);
}

.navbar-nav .nav-link.active::after {
  content: "";
  position: absolute;
  bottom: 3px;
  left: 22%;
  width: 56%;
  height: 2px;
  border-radius: 2px;
  background: var(--gold);
}

.navbar-toggler {
  border: 0;
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* ====================================
   3) Shared Page Hero + Breadcrumb
==================================== */
.page-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.page-hero .hero-media,
.hero .hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
}

.hero-home {
  background-image: url("https://images.unsplash.com/photo-1500595046743-cd271d694d30?auto=format&fit=crop&w=2200&q=80");
}

.hero-about {
  background-image: url("https://images.unsplash.com/photo-1586771107445-d3ca888129ce?auto=format&fit=crop&w=2200&q=80");
}

.hero-services {
  background-image: url("https://images.unsplash.com/photo-1464226184884-fa280b87c399?auto=format&fit=crop&w=2200&q=80");
}

.hero-farm {
  background-image: url("https://images.unsplash.com/photo-1500382017468-9049fed747ef?auto=format&fit=crop&w=2200&q=80");
}

.hero-programs {
  background-image: url("https://images.unsplash.com/photo-1593113630400-ea4288922497?auto=format&fit=crop&w=2200&q=80");
}

.hero-gallery {
  background-image: url("https://images.unsplash.com/photo-1516467508483-a7212febe31a?auto=format&fit=crop&w=2200&q=80");
}

.hero-blog {
  background-image: url("https://images.unsplash.com/photo-1615811361523-6bd03d7748e7?auto=format&fit=crop&w=2200&q=80");
}

.hero-contact {
  background-image: url("https://images.unsplash.com/photo-1495107334309-fcf20504a5ab?auto=format&fit=crop&w=2200&q=80");
}

.page-hero .hero-overlay,
.hero .hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(95deg, rgba(5, 38, 22, 0.92) 0%, rgba(5, 38, 22, 0.72) 45%, rgba(8, 48, 28, 0.45) 100%),
    radial-gradient(circle at 85% 10%, rgba(233, 185, 73, 0.2), transparent 45%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  padding: 95px 0 70px;
}

.page-hero h1 {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 62px;
  margin-bottom: 12px;
}

.breadcrumb-custom {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.breadcrumb-custom li {
  color: #ddece2;
  font-size: 14px;
  font-weight: 500;
}

.breadcrumb-custom li a {
  color: var(--gold);
}

/* ====================================
   4) Homepage Sections
==================================== */
.hero {
  position: relative;
  min-height: 850px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-content-wrap {
  position: relative;
  z-index: 2;
  padding-top: 80px;
  padding-bottom: 190px;
}

.hero-title {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  color: var(--white);
  font-size: 72px;
  line-height: 1.03;
  margin-bottom: 22px;
}

.hero-title span {
  color: #8fd171;
}

.hero-description {
  color: #d7e6dc;
  max-width: 700px;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-hero {
  font-size: 15px;
  padding: 14px 24px;
}

.btn-hero-primary {
  background: var(--light-green);
  color: var(--white);
  border: 2px solid var(--light-green);
}

.btn-hero-primary:hover {
  transform: translateY(-3px);
  background: transparent;
  color: var(--white);
}

.btn-hero-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.6);
}

.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-3px);
}

.hero-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.hero-card {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  transition: var(--transition);
}

.hero-card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
}

.hero-card span {
  display: block;
  color: var(--white);
  padding: 10px 12px;
  font-weight: 600;
  font-size: 15px;
}

.hero-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.25);
}

.stats-strip {
  position: absolute;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%);
  width: calc(100% - 24px);
  background: linear-gradient(120deg, #073f23, #0b6b33);
  border-radius: var(--radius-card);
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.stat-item {
  padding: 24px 16px 20px;
  text-align: center;
  color: #deefe5;
  background: rgba(255, 255, 255, 0.02);
  transition: var(--transition);
}

.stat-item i {
  color: var(--gold);
  font-size: 26px;
  margin-bottom: 8px;
}

.stat-item h4 {
  font-family: "Poppins", sans-serif;
  font-size: 34px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 7px;
}

.stat-item p {
  margin: 0;
  font-size: 13px;
  line-height: 1.35;
}

.stat-item:hover {
  background: rgba(233, 185, 73, 0.15);
}

.about {
  background: var(--white);
}

.about-collage {
  position: relative;
  min-height: 590px;
}

.about-img {
  border-radius: var(--radius-card);
  object-fit: cover;
  box-shadow: var(--shadow-card);
  position: absolute;
}

.img-main {
  width: 70%;
  height: 100%;
  left: 0;
  top: 0;
}

.img-top {
  width: 43%;
  height: 48%;
  right: 0;
  top: 0;
}

.img-bottom {
  width: 43%;
  height: 46%;
  right: 0;
  bottom: 0;
}

.growth-badge {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: var(--white);
  border: 8px solid #dcefe2;
  box-shadow: var(--shadow-soft);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 12px;
}

.growth-badge i {
  font-size: 30px;
  color: var(--primary-green);
  margin-bottom: 10px;
}

.growth-badge span {
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  line-height: 1.4;
  font-weight: 700;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 30px 0;
}

.feature-card {
  background: #f6fbf8;
  border: 1px solid #d6eadf;
  border-radius: 16px;
  padding: 18px;
  transition: var(--transition);
}

.feature-card i {
  font-size: 20px;
  color: var(--primary-green);
  margin-bottom: 10px;
}

.feature-card h5 {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 14px;
  color: var(--grey-text);
  line-height: 1.5;
  margin: 0;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: #a7d5bb;
}

.about-signature {
  border-left: 4px solid var(--gold);
  padding-left: 16px;
  margin-bottom: 28px;
}

.signature-mark {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--dark-green);
  margin-bottom: 5px;
}

.about-signature span {
  color: var(--grey-text);
  font-size: 14px;
  font-weight: 600;
}

.services {
  background: linear-gradient(180deg, #f7faf7, #ffffff);
}

.service-card {
  border-radius: var(--radius-card);
  border: 1px solid #e6f1ea;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(10, 64, 35, 0.08);
  padding: 20px;
  height: 100%;
  transition: var(--transition);
}

.service-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #edf7f1;
  color: var(--primary-green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
  border: 1px solid #d4eadc;
}

.service-card img {
  width: 100%;
  border-radius: var(--radius-soft);
  height: 210px;
  object-fit: contain;
  background: #f3f8f4;
  margin-bottom: 16px;
}

.service-card h4 {
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}

.service-card p {
  color: var(--grey-text);
  font-size: 15px;
  margin-bottom: 16px;
}

.service-card a {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-green);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 22px 38px rgba(7, 73, 38, 0.16);
}

.promo-wrap,
.programs-wrap,
.split-card {
  background: var(--white);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.promo-content {
  height: 100%;
  background: linear-gradient(140deg, #0a5d2e, #064420);
  color: var(--white);
  padding: 70px 60px;
}

.promo-content h2 {
  font-family: "Poppins", sans-serif;
  font-size: 52px;
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 20px;
}

.promo-content ul,
.clean-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.promo-content ul {
  margin-bottom: 28px;
}

.promo-content li {
  margin-bottom: 11px;
  font-size: 17px;
  color: #def0e6;
}

.promo-content li i {
  color: var(--gold);
  margin-right: 8px;
}

.promo-media img,
.fill-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 520px;
}

.gallery {
  background: var(--white);
}

.gallery-swiper,
.testimonial-swiper {
  margin-top: 28px;
  padding-bottom: 44px;
}

.gallery .swiper-slide,
.testimonial-slide {
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.gallery .swiper-slide img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: var(--radius-card);
  transition: transform 450ms ease;
}

.gallery .swiper-slide:hover img {
  transform: scale(1.08);
}

.gallery .swiper-pagination-bullet,
.testimonial-swiper .swiper-pagination-bullet {
  width: 11px;
  height: 11px;
  background: #b8cfbf;
  opacity: 1;
}

.gallery .swiper-pagination-bullet-active,
.testimonial-swiper .swiper-pagination-bullet-active {
  background: var(--primary-green);
}

.programs {
  background: #f4f9f5;
}

.programs-content {
  padding: 56px;
  height: 100%;
}

.programs-content p {
  color: var(--grey-text);
  margin-bottom: 22px;
}

.program-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
}

.program-tags span {
  background: #f1f8f3;
  border: 1px solid #d8ebde;
  color: #255a3d;
  padding: 9px 12px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
}

.program-tags i {
  color: var(--primary-green);
  margin-right: 6px;
}

.programs-media {
  height: 100%;
  min-height: 510px;
  position: relative;
}

.programs-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 84px;
  height: 84px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.88);
  color: var(--primary-green);
  font-size: 28px;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}

.video-play:hover {
  transform: translate(-50%, -50%) scale(1.08);
  background: var(--gold);
  color: var(--dark-green);
}

.blog {
  background: var(--white);
}

.blog-card {
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid #e2eee7;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(11, 88, 46, 0.08);
  height: 100%;
  transition: var(--transition);
}

.blog-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.blog-content {
  padding: 20px;
}

.blog-content span {
  display: inline-block;
  color: #6b866f;
  font-size: 13px;
  margin-bottom: 10px;
  font-weight: 600;
}

.blog-content h4 {
  font-family: "Poppins", sans-serif;
  font-size: 23px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 12px;
}

.blog-content a {
  color: var(--primary-green);
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 600;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 36px rgba(6, 61, 31, 0.14);
}

.visit-strip {
  background: linear-gradient(130deg, #0a5d2e, #064420);
  padding: 30px 0;
}

.visit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  border-radius: var(--radius-card);
  overflow: hidden;
}

.visit-item {
  background: rgba(255, 255, 255, 0.04);
  padding: 22px 20px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  transition: var(--transition);
}

.visit-item i {
  font-size: 24px;
  color: var(--gold);
  margin-top: 2px;
}

.visit-item h5 {
  margin: 0 0 5px;
  color: var(--white);
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 18px;
}

.visit-item p {
  margin: 0;
  color: #dcefe4;
  font-size: 14px;
  line-height: 1.45;
}

.visit-item:hover {
  background: rgba(233, 185, 73, 0.12);
}

/* ====================================
   5) Generic Inner Page Components
==================================== */
.alt-block {
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--white);
  border: 1px solid #e3eee7;
  box-shadow: var(--shadow-card);
}

.alt-block .content {
  padding: 46px;
}

.alt-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 350px;
}

.icon-point {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}

.icon-point i {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #ebf7ef;
  color: var(--primary-green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 5px;
}

.icon-point p {
  margin: 0;
  color: var(--grey-text);
  font-size: 16px;
}

.timeline {
  border-left: 2px solid #cfe4d5;
  padding-left: 24px;
}

.timeline-item {
  position: relative;
  margin-bottom: 24px;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -31px;
  top: 8px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--primary-green);
  border: 3px solid #d9ecdf;
}

.timeline-item h5 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  margin-bottom: 5px;
}

.timeline-item p {
  color: var(--grey-text);
  margin: 0;
  font-size: 15px;
}

.mini-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.mini-stats .stat-card {
  background: var(--white);
  border: 1px solid #dceee3;
  border-radius: var(--radius-soft);
  padding: 22px 16px;
  text-align: center;
}

.mini-stats h4 {
  font-family: "Poppins", sans-serif;
  font-size: 40px;
  color: var(--primary-green);
  margin-bottom: 4px;
}

.mini-stats p {
  margin: 0;
  font-size: 14px;
  color: var(--grey-text);
}

.team-card {
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--white);
  border: 1px solid #dfede4;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

.team-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.team-content {
  padding: 18px;
}

.team-content h5 {
  font-family: "Poppins", sans-serif;
  margin: 0 0 4px;
}

.team-content p {
  margin: 0;
  color: var(--grey-text);
  font-size: 14px;
}

.team-card:hover {
  transform: translateY(-8px);
}

.package-card {
  border-radius: var(--radius-card);
  background: var(--white);
  border: 1px solid #deece4;
  box-shadow: var(--shadow-card);
  padding: 28px;
  height: 100%;
}

.package-card h4 {
  font-family: "Poppins", sans-serif;
  font-size: 28px;
  margin-bottom: 6px;
}

.package-card .price {
  font-family: "Poppins", sans-serif;
  font-size: 42px;
  color: var(--primary-green);
  font-weight: 800;
  margin-bottom: 14px;
}

.package-card ul {
  margin-bottom: 20px;
}

.package-card li {
  margin-bottom: 8px;
  font-size: 15px;
  color: var(--grey-text);
}

.package-card li i {
  color: var(--primary-green);
  margin-right: 8px;
}

.testimonial-slide {
  padding: 32px;
  background: var(--white);
  border: 1px solid #deece5;
}

.testimonial-slide p {
  font-size: 17px;
  color: #456452;
}

.testimonial-slide h6 {
  font-family: "Poppins", sans-serif;
  margin-bottom: 2px;
}

.testimonial-slide span {
  color: #739181;
  font-size: 14px;
}

.faq-wrap .accordion-item {
  border: 1px solid #dceee3;
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-wrap .accordion-button {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: #214e34;
}

.faq-wrap .accordion-button:not(.collapsed) {
  color: var(--primary-green);
  background: #eef8f2;
  box-shadow: none;
}

.faq-wrap .accordion-button:focus {
  box-shadow: none;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.filter-btn {
  border: 1px solid #d7ebde;
  background: var(--white);
  color: #24553a;
  padding: 9px 14px;
  border-radius: 999px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition);
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--primary-green);
  border-color: var(--primary-green);
  color: var(--white);
}

.masonry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-soft);
  box-shadow: var(--shadow-card);
}

.gallery-item img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 450ms ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item::after {
  content: "\f00e";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  color: transparent;
  background: rgba(6, 68, 32, 0);
  transition: var(--transition);
}

.gallery-item:hover::after {
  color: var(--white);
  background: rgba(6, 68, 32, 0.45);
}

.gallery-item.hidden {
  display: none;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(4, 24, 14, 0.92);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-height: 90vh;
  border-radius: var(--radius-card);
}

.lightbox-close {
  position: absolute;
  right: 28px;
  top: 20px;
  color: var(--white);
  font-size: 34px;
  background: transparent;
  border: 0;
}

.sidebar-card {
  border-radius: var(--radius-card);
  border: 1px solid #dfede4;
  background: var(--white);
  box-shadow: var(--shadow-card);
  padding: 22px;
  margin-bottom: 22px;
}

.sidebar-card h5 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  margin-bottom: 14px;
}

.search-box {
  display: flex;
  border: 1px solid #dbece2;
  border-radius: 999px;
  overflow: hidden;
}

.search-box input {
  border: 0;
  outline: 0;
  flex: 1;
  padding: 10px 14px;
}

.search-box button {
  border: 0;
  background: var(--primary-green);
  color: var(--white);
  padding: 0 14px;
}

.blog-feature {
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid #deece4;
}

.blog-feature img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.blog-feature-content {
  padding: 28px;
  background: var(--white);
}

.post-list-item {
  display: flex;
  gap: 14px;
  margin-bottom: 14px;
}

.post-list-item img {
  width: 88px;
  height: 72px;
  border-radius: 10px;
  object-fit: cover;
}

.post-list-item h6 {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  margin: 0;
}

.pagination-wrap .page-link {
  color: #26583d;
  border-color: #d8eadf;
}

.pagination-wrap .page-item.active .page-link {
  background: var(--primary-green);
  border-color: var(--primary-green);
}

.contact-card {
  border-radius: var(--radius-card);
  padding: 24px;
  background: var(--white);
  border: 1px solid #deece4;
  box-shadow: var(--shadow-card);
}

.contact-card h5 {
  font-family: "Poppins", sans-serif;
  margin-bottom: 14px;
}

.contact-info li {
  margin-bottom: 10px;
  color: var(--grey-text);
}

.contact-info i {
  width: 22px;
  color: var(--primary-green);
}

.form-control,
.form-select {
  border-radius: 12px;
  border: 1px solid #dbece2;
  padding: 12px 14px;
}

.form-control:focus,
.form-select:focus {
  border-color: #89c4a0;
  box-shadow: 0 0 0 0.15rem rgba(11, 107, 51, 0.12);
}

.whatsapp-fab {
  position: fixed;
  right: 20px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #1fbf5b;
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 29px;
  box-shadow: 0 18px 30px rgba(6, 68, 32, 0.3);
  z-index: 1600;
  transition: var(--transition);
}

.whatsapp-fab:hover {
  color: var(--white);
  transform: translateY(-4px);
}

/* ====================================
   6) Logo Preview
==================================== */
.logo-preview-page {
  min-height: 100vh;
  background: linear-gradient(165deg, #eff8f1 0%, #f8faf8 45%, #eef6f0 100%);
  padding: 70px 0;
}

.logo-preview-head {
  margin-bottom: 32px;
}

.logo-preview-head h1 {
  font-family: "Poppins", sans-serif;
  font-size: 48px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 12px;
}

.logo-preview-head p {
  max-width: 720px;
  color: #4f6a5a;
}

.logo-preview-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.logo-panel {
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow-soft);
  border: 1px solid #dcece2;
}

.logo-panel h3 {
  font-family: "Poppins", sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
}

.logo-stage {
  border-radius: 18px;
  padding: 30px;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(6, 68, 32, 0.08);
}

.logo-stage-light {
  background: #ffffff;
}

.logo-stage-dark {
  background: linear-gradient(140deg, #064420, #05351b);
  border-color: rgba(255, 255, 255, 0.15);
}

.logo-stage img {
  width: min(760px, 100%);
  height: auto;
}

.logo-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.logo-chip {
  border-radius: 999px;
  padding: 8px 12px;
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 600;
  border: 1px solid #d3e7da;
  background: #f4fbf7;
  color: #205539;
}

/* ====================================
   6) Shared Footer
==================================== */
.newsletter-strip {
  background: linear-gradient(125deg, #0b6b33, #064420);
  padding: 36px 0;
}

.newsletter-wrap {
  border-radius: var(--radius-card);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 30px;
  color: var(--white);
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 18px;
  align-items: center;
}

.newsletter-wrap h3 {
  font-family: "Poppins", sans-serif;
  font-size: 34px;
  margin: 0;
}

.newsletter-form {
  display: flex;
  gap: 8px;
}

.newsletter-form input {
  flex: 1;
  border-radius: 12px;
  border: 0;
  padding: 12px;
}

.newsletter-form button {
  border-radius: 12px;
  border: 0;
  background: var(--gold);
  color: #214220;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  padding: 0 16px;
}

.site-footer {
  background: linear-gradient(140deg, #063821, #042c19);
  color: #d7e7dc;
  padding: 80px 0 30px;
}

.site-footer h5 {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 18px;
}

.footer-brand p {
  color: #bbd2c3;
  max-width: 330px;
  font-size: 15px;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(233, 185, 73, 0.4);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--gold);
  color: #243814;
  transform: translateY(-3px);
}

.footer-links,
.footer-contact {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 10px;
  font-size: 15px;
}

.footer-links a {
  color: #c8ddce;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-contact i {
  width: 20px;
  color: var(--gold);
  margin-right: 8px;
}

.footer-map iframe {
  width: 100%;
  height: 180px;
  border: 0;
  border-radius: 14px;
}

.map-embed {
  border: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  margin-top: 34px;
  padding-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.footer-bottom p {
  margin: 0;
  font-size: 14px;
  color: #9ec0aa;
}

.footer-bottom a {
  color: var(--gold);
  font-size: 14px;
  font-weight: 600;
}

/* ====================================
   7) Responsive
==================================== */
@media (max-width: 1399.98px) {
  .hero-title {
    font-size: 64px;
  }

  .stat-item h4 {
    font-size: 30px;
  }

  .masonry-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1199.98px) {
  .topbar {
    display: none;
  }

  .nav-pill-group {
    border-radius: 16px;
    margin: 14px 0;
  }

  .hero {
    min-height: 820px;
  }

  .hero-title {
    font-size: 56px;
  }

  .stats-strip {
    grid-template-columns: repeat(3, 1fr);
    position: relative;
    left: auto;
    bottom: auto;
    transform: none;
    margin-top: 36px;
  }

  .hero-content-wrap {
    padding-bottom: 70px;
  }

  .promo-content {
    padding: 56px 40px;
  }

  .promo-content h2 {
    font-size: 42px;
  }

  .newsletter-wrap {
    grid-template-columns: 1fr;
  }

  .brand-wordmark {
    width: 210px;
  }

  .masonry-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991.98px) {
  .section-space {
    padding: 90px 0;
  }

  .section-title {
    font-size: 40px;
  }

  .page-hero h1 {
    font-size: 52px;
  }

  .hero {
    min-height: 760px;
  }

  .hero-title {
    font-size: 48px;
  }

  .feature-grid,
  .mini-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .visit-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .alt-block .content {
    padding: 34px;
  }

  .programs-content {
    padding: 40px;
  }

  .programs-media {
    min-height: 420px;
  }
}

@media (max-width: 767.98px) {
  body {
    font-size: 16px;
  }

  .section-space {
    padding: 74px 0;
  }

  .section-title {
    font-size: 34px;
  }

  .page-hero h1,
  .hero-title {
    font-size: 42px;
  }

  .btn-hero,
  .btn-primary-cta,
  .btn-outline-cta {
    width: 100%;
    text-align: center;
  }

  .stats-strip,
  .feature-grid,
  .visit-grid,
  .mini-stats,
  .masonry-grid {
    grid-template-columns: 1fr;
  }

  .promo-content {
    padding: 44px 24px;
  }

  .promo-content h2 {
    font-size: 34px;
  }

  .programs-content {
    padding: 34px 22px;
  }

  .programs-media {
    min-height: 340px;
  }

  .video-play {
    width: 70px;
    height: 70px;
    font-size: 22px;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .brand-wordmark {
    width: 180px;
  }

  .logo-preview-head h1 {
    font-size: 36px;
  }

  .logo-stage {
    padding: 18px;
    min-height: 260px;
  }
}

@media (max-width: 575.98px) {
  .hero-title,
  .page-hero h1 {
    font-size: 36px;
  }

  .section-title {
    font-size: 30px;
  }
}
