@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&display=swap');

:root {
  /* Colors */
  --clr-primary: #5c9c5f;
  --clr-primary-light: #7cb57e;
  --clr-primary-dark: #3f7942;
  --clr-dark: #4c3e15;
  --clr-accent: #ff9800;
  --clr-accent-light: #ffb74d;
  --clr-white: #ffffff;
  --clr-bg-light: #f9fbf8;
  --clr-bg-accent: #fff8e1;
  --clr-gray-100: #f5f5f5;
  --clr-gray-200: #e5e5e5;
  --clr-gray-500: #737373;
  --clr-text-main: #333333;
  
  /* Typography */
  --font-main: 'Montserrat', sans-serif;
  
  /* Borders & Shadows */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 4px 6px rgba(0,0,0,0.05);
  --shadow-md: 0 10px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 20px 40px rgba(0,0,0,0.12);
  --shadow-hover: 0 15px 30px rgba(92, 156, 95, 0.15);
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  /* Spacing */
  --container-width: 1200px;
  --section-padding: 80px 0;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  color: var(--clr-text-main);
  background-color: var(--clr-white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  color: var(--clr-dark);
  font-weight: 700;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-base);
}

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

/* Layout Utilities */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: var(--section-padding);
}

.section-bg-light {
  background-color: var(--clr-bg-light);
}

.section-bg-accent {
  background-color: var(--clr-bg-accent);
}

/* Grid System */
.grid {
  display: grid;
  gap: 30px;
}
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 992px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .section { padding: 50px 0; }
}

/* Section Titles */
.section-header {
  text-align: center;
  margin-bottom: 50px;
}
.section-eyebrow {
  display: inline-block;
  color: var(--clr-primary);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}
.section-title {
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 15px;
  color: #1B5E20;
}
.section-subtitle {
  color: var(--clr-gray-500);
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all var(--transition-base);
  border: none;
}
.btn-primary {
  background-color: var(--clr-primary);
  color: var(--clr-white);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover {
  background-color: var(--clr-primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
  color: var(--clr-white);
}
.btn-accent {
  background-color: var(--clr-accent);
  color: var(--clr-white);
  box-shadow: var(--shadow-sm);
}
.btn-accent:hover {
  background-color: #e68900;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-outline {
  background-color: transparent;
  color: var(--clr-primary);
  border: 2px solid var(--clr-primary);
}
.btn-outline:hover {
  background-color: var(--clr-primary);
  color: var(--clr-white);
}

/* Header & Nav System */
.site-main-content {
  padding-top: 118px;
}

/* ============================================================
   EXACT MATCH FOR SCREENSHOT 1 & SCREENSHOT 2 HEADER SYSTEM
   ============================================================ */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  box-shadow: none;
  border-bottom: none;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.main-header {
  height: 76px;
  display: flex;
  align-items: center;
  background: transparent !important;
}

/* Full Width Fluid Container for Header */
.site-header .container {
  max-width: 100% !important;
  padding-left: 32px;
  padding-right: 32px;
}

/* Top Bar (Solid Branding Green) */
.top-bar {
  background-color: var(--clr-primary-dark, #2b612e);
  color: #ffffff;
  font-size: 13px;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  max-height: 60px;
  opacity: 1;
  overflow: hidden;
  transition: max-height 0.4s ease-in-out, opacity 0.3s ease-in-out, padding 0.4s ease-in-out;
}

/* Brand Logo Container */
.brand-logo-wrap {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
  margin-right: auto;
  padding: 0;
  background: transparent !important;
}

.brand-title {
  font-family: 'Permanent Marker', cursive, sans-serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.brand-tagline {
  font-family: 'DM Sans', 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 2px;
  transition: color 0.3s ease;
}

.site-logo-img {
  max-height: 48px;
  width: auto;
  object-fit: contain;
  padding: 0;
  background: transparent !important;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.nav-item {
  display: inline-block;
  padding: 8px 12px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14.5px;
  font-weight: 700 !important;
  color: #FFFFFF !important;
  -webkit-text-fill-color: #FFFFFF !important;
  position: relative;
  transition: color 0.2s ease, opacity 0.2s ease;
  text-decoration: none !important;
  white-space: nowrap !important;
  background: transparent !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  text-shadow: none !important;
}

.nav-item::after {
  display: none !important;
}

.nav-more-btn {
  font-family: 'Montserrat', sans-serif;
  font-size: 14.5px;
  font-weight: 600;
  transition: color 0.25s ease;
}

.mobile-menu-btn {
  background: transparent !important;
  border: none !important;
  font-size: 26px;
  transition: color 0.25s ease;
}

/* ------------------------------------------------------------
   SCREENSHOT 1: TOP TRANSPARENT STATE (Over Hero Image)
   ------------------------------------------------------------ */
.site-header:not(.top-bar-hidden):not(.scrolled) {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.10) 70%, transparent 100%);
  box-shadow: none;
}

.site-header:not(.top-bar-hidden):not(.scrolled) .brand-title {
  color: #FFFFFF !important;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.site-header:not(.top-bar-hidden):not(.scrolled) .brand-tagline {
  color: rgba(255, 255, 255, 0.92) !important;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}

.site-header:not(.top-bar-hidden):not(.scrolled) .site-logo-img {
  filter: brightness(0) invert(1) drop-shadow(0 2px 6px rgba(0, 0, 0, 0.5)) !important;
}

.site-header:not(.top-bar-hidden):not(.scrolled) .nav-item,
.site-header:not(.top-bar-hidden):not(.scrolled) .nav-more-btn {
  color: #FFFFFF !important;
  -webkit-text-fill-color: #FFFFFF !important;
  background: transparent !important;
  text-shadow: none !important;
  box-shadow: none !important;
}

.site-header:not(.top-bar-hidden):not(.scrolled) .nav-item:hover,
.site-header:not(.top-bar-hidden):not(.scrolled) .nav-item.active,
.site-header:not(.top-bar-hidden):not(.scrolled) .nav-more-btn:hover {
  color: #FF9800 !important;
  -webkit-text-fill-color: #FF9800 !important;
  background: transparent !important;
  font-weight: 700 !important;
  text-shadow: none !important;
  box-shadow: none !important;
}

.site-header:not(.top-bar-hidden):not(.scrolled) .btn-donate {
  background: linear-gradient(135deg, #5c9c5f 0%, #2E7D32 100%) !important;
  box-shadow: 0 4px 15px rgba(46, 125, 50, 0.4) !important;
  color: #FFFFFF !important;
}

.site-header:not(.top-bar-hidden):not(.scrolled) .btn-donate:hover {
  background: linear-gradient(135deg, #1B5E20 0%, #0e3711 100%) !important;
  box-shadow: 0 8px 25px rgba(14, 55, 17, 0.65) !important;
  transform: translateY(-2px) scale(1.03);
  color: #FFFFFF !important;
}

.site-header:not(.top-bar-hidden):not(.scrolled) .mobile-menu-btn {
  color: #FFFFFF !important;
}

/* ------------------------------------------------------------
   SCROLLED STATE (Solid White Main Header Bar on Scroll)
   ------------------------------------------------------------ */
.site-header.top-bar-hidden,
.site-header.scrolled {
  background: #FFFFFF !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
}

.site-header.top-bar-hidden .top-bar,
.site-header.scrolled .top-bar {
  max-height: 0;
  opacity: 0;
  padding: 0;
  border-bottom-color: transparent;
  pointer-events: none;
}

.site-header.top-bar-hidden .brand-title,
.site-header.scrolled .brand-title {
  color: #2E7D32 !important;
  text-shadow: none !important;
}

.site-header.top-bar-hidden .brand-tagline,
.site-header.scrolled .brand-tagline {
  color: #388E3C !important;
  text-shadow: none !important;
}

.site-header.top-bar-hidden .site-logo-img,
.site-header.scrolled .site-logo-img {
  filter: none !important;
}

.site-header.top-bar-hidden .nav-item,
.site-header.scrolled .nav-item,
.site-header.top-bar-hidden .nav-more-btn,
.site-header.scrolled .nav-more-btn {
  color: #2E7D32 !important;
  -webkit-text-fill-color: #2E7D32 !important;
  background: transparent !important;
  text-shadow: none !important;
  box-shadow: none !important;
}

.site-header.top-bar-hidden .nav-item:hover,
.site-header.top-bar-hidden .nav-item.active,
.site-header.scrolled .nav-item:hover,
.site-header.scrolled .nav-item.active,
.site-header.top-bar-hidden .nav-more-btn:hover,
.site-header.scrolled .nav-more-btn:hover {
  color: #FF9800 !important;
  -webkit-text-fill-color: #FF9800 !important;
  background: transparent !important;
  font-weight: 700 !important;
  text-shadow: none !important;
  box-shadow: none !important;
}

.site-header.top-bar-hidden .mobile-menu-btn,
.site-header.scrolled .mobile-menu-btn {
  color: #2E7D32 !important;
  filter: none !important;
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.top-info-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 20px;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  text-decoration: none !important;
}

.top-info-item i {
  font-size: 15px;
  color: #FFD54F;
  transition: transform 0.3s ease;
}

.top-info-item:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.18);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  transform: translateY(-1px);
  text-decoration: none !important;
}

.top-info-item:hover i {
  transform: scale(1.22);
}

.top-bar-right {
  display: flex;
  align-items: center;
}

.top-socials {
  display: flex;
  align-items: center;
  gap: 10px;
}

.top-socials a {
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  text-decoration: none !important;
}

.top-socials a:hover {
  color: #ffffff;
  background: var(--clr-accent, #ff9800);
  transform: translateY(-2px) scale(1.1);
  box-shadow: 0 4px 10px rgba(255, 152, 0, 0.4);
}

/* Main Header */
.main-header {
  height: 76px;
  display: flex;
  align-items: center;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
}

/* Brand & Logo Text (Far Left Aligned) */
.brand-logo-wrap {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
  margin-right: auto; /* Locks logo & brand name to far left */
}

.site-logo-img {
  max-height: 48px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.brand-logo-wrap:hover .site-logo-img {
  transform: scale(1.04);
}

.brand-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.brand-title {
  font-family: 'Permanent Marker', cursive, sans-serif;
  font-size: 22px;
  font-weight: 400;
  color: #2E7D32;
  line-height: 1;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.brand-tagline {
  font-family: 'DM Sans', 'Montserrat', sans-serif;
  font-size: 10.5px;
  font-weight: 600;
  color: #388E3C;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 2px;
}

/* Navigation Links - Single Line without Box Background, Underline Matching Text Width */
.nav-container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-right: 12px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: nowrap;
}

.nav-links li {
  position: relative;
}

.nav-item {
  display: inline-block;
  padding: 8px 12px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14.5px;
  font-weight: 700 !important;
  color: #FFFFFF !important;
  -webkit-text-fill-color: #FFFFFF !important;
  position: relative;
  transition: opacity 0.2s ease;
  text-decoration: none !important;
  white-space: nowrap !important; /* Single line guarantee */
  background: transparent !important; /* NO BOX BACKGROUND */
  border-radius: 0 !important;
  box-shadow: none !important;
  text-shadow: none !important;
}

.nav-item::after {
  display: none !important;
}

.nav-item:hover,
.nav-item.active {
  color: #FF9800 !important;
  -webkit-text-fill-color: #FF9800 !important;
  background: transparent !important;
  font-weight: 700 !important;
}

/* More Dropdown Menu */
.nav-dropdown-wrapper {
  position: relative;
}

.nav-dropdown-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.nav-dropdown-btn i {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.nav-dropdown-btn[aria-expanded="true"] i {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 160px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  padding: 8px 0;
  margin-top: 8px;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 100;
}

.nav-dropdown-menu.show,
.nav-dropdown-wrapper:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: block;
  padding: 10px 18px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #333333;
  text-decoration: none;
  transition: all 0.2s ease;
}

.dropdown-item:hover {
  background: #E8F5E9;
  color: #2E7D32;
  padding-left: 22px;
}

/* Visibility toggles for More dropdown on responsive desktop */
@media (min-width: 1300px) {
  .nav-item-desktop-hide {
    display: inline-block;
  }
  .nav-dropdown-wrapper {
    display: none;
  }
}

@media (min-width: 993px) and (max-width: 1299px) {
  .nav-item-desktop-hide {
    display: none;
  }
  .nav-dropdown-wrapper {
    display: inline-block;
  }
}

/* Enhanced Donate Button */
.header-cta {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.btn-donate {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: linear-gradient(135deg, #FF9800 0%, #FF6D00 100%);
  color: #ffffff !important;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 15px;
  border-radius: 50px;
  border: none;
  box-shadow: 0 4px 15px rgba(255, 152, 0, 0.35);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.btn-donate::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 60%);
  transform: scale(0);
  transition: transform 0.5s ease-out;
}

.btn-donate:hover::before {
  transform: scale(1);
}

.btn-donate:hover {
  background: linear-gradient(135deg, #ff9e06 0%, #e65100 100%);
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 25px rgba(255, 109, 0, 0.48);
  color: #ffffff !important;
}

.btn-donate i {
  font-size: 18px;
  animation: pulse-heart 2s infinite ease-in-out;
}

@keyframes pulse-heart {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.22); }
}

/* Mobile Menu Toggle Button (No Border, Clean Icon) */
.mobile-menu-btn {
  display: none;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #2E7D32;
  cursor: pointer;
  flex-shrink: 0;
  margin-left: auto;
  transition: transform 0.2s ease, color 0.2s ease;
}

.mobile-menu-btn:hover {
  color: #1B5E20;
  transform: scale(1.12);
}

/* Mobile Navigation Drawer / Overlay */
.mobile-menu-overlay {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 2500;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-menu-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mobile-menu-overlay.active .mobile-menu-container {
  transform: translateY(0);
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid #f0f0f0;
  background: #ffffff;
  position: sticky;
  top: 0;
  z-index: 10;
}

/* Mobile Close (X) Button (No Border, Clean Icon) */
.mobile-close-btn {
  width: 40px;
  height: 40px;
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
  color: #2E7D32;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease, color 0.2s ease;
}

.mobile-close-btn:hover {
  color: #1B5E20;
  transform: scale(1.15);
}

.mobile-menu-content {
  padding: 24px 20px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  flex: 1;
}

.mobile-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.mobile-nav-list a {
  font-family: 'Montserrat', sans-serif;
  font-size: 19px;
  font-weight: 600;
  color: #2b2b2b;
  text-decoration: none;
  transition: color 0.2s ease;
  display: block;
  text-align: center;
}

.mobile-nav-list a:hover,
.mobile-nav-list a.active {
  color: #2E7D32;
  font-weight: 700;
}

.mobile-donate-wrap {
  margin-top: 10px;
  width: 100%;
  max-width: 280px;
  display: flex;
  justify-content: center;
}

.btn-donate-mobile {
  width: 100%;
  justify-content: center;
  padding: 14px 28px;
  font-size: 17px;
}

/* Clean Minimalist Mobile Contact & Social Info (No Heavy Cards/Boxes) */
.mobile-contact-info {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px dashed rgba(46, 125, 50, 0.25);
  width: 100%;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  background: transparent !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}

.mobile-info-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #2E7D32;
  text-decoration: none !important;
  font-weight: 600;
  font-size: 14.5px;
  width: 100%;
  padding: 6px 0;
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
  transition: color 0.2s ease, transform 0.2s ease;
}

.mobile-info-link i {
  font-size: 17px;
  color: #2E7D32;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #F1F8E9;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mobile-info-link:hover {
  color: #1B5E20;
  transform: translateY(-1px);
}

.mobile-socials {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.mobile-socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #F1F8E9;
  color: #2E7D32;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  text-decoration: none !important;
  box-shadow: none !important;
  border: 1px solid rgba(46, 125, 50, 0.15);
  transition: all 0.2s ease;
}

.mobile-socials a:hover {
  background: #2E7D32;
  color: #ffffff;
  border-color: #2E7D32;
  transform: translateY(-2px);
}

/* Responsive Media Queries */
@media (max-width: 992px) {
  /* Mobile Container Padding & Strict Left/Right Alignment */
  .site-header .container {
    padding-left: 14px !important;
    padding-right: 14px !important;
  }
  
  /* HIDE TOP BAR ON MOBILE - ALL CONTENT MOVED TO HAMBURGER MENU */
  .top-bar {
    display: none !important;
  }
  .nav-container {
    display: none !important;
  }
  .header-cta {
    display: none !important;
  }
  .mobile-menu-btn {
    display: flex !important;
    margin-left: auto !important;
    margin-right: 0 !important;
  }
  .main-header {
    height: 68px;
  }
  .header-inner {
    padding: 0 !important;
    margin: 0 !important;
    width: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 8px;
  }
  .brand-logo-wrap {
    flex: 1;
    min-width: 0;
    margin-left: 0 !important;
    margin-right: auto !important;
    gap: 7px;
  }
  .site-logo-img {
    max-height: 32px;
    flex-shrink: 0;
  }
  .brand-text {
    min-width: 0;
    flex: 1;
  }
  .brand-title {
    font-family: 'Permanent Marker', cursive, sans-serif !important;
    font-size: 13.5px;
    font-weight: 400;
    letter-spacing: 0.4px;
    line-height: 1.05;
    white-space: nowrap;
  }
  .brand-tagline {
    font-family: 'DM Sans', 'Montserrat', sans-serif;
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 1.2px;
    line-height: 1.2;
    white-space: nowrap;
    margin-top: 2px;
  }
  .site-main-content {
    padding-top: 68px !important;
  }
}

@media (max-width: 480px) {
  .header-inner {
    padding: 0 !important;
    gap: 5px;
  }
  .site-header .container {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
  .brand-logo-wrap {
    gap: 5px;
  }
  .brand-title {
    font-size: 12px;
    letter-spacing: 0.3px;
  }
  .brand-tagline {
    font-size: 7.5px;
    letter-spacing: 0.9px;
  }
  .site-logo-img {
    max-height: 28px;
  }
  .mobile-menu-btn {
    width: 34px;
    height: 34px;
    font-size: 20px;
  }
  .header-cart-btn {
    width: 32px !important;
    height: 32px !important;
  }
}

/* Animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }

/* Home Hero Section (Behind Main Header Below Top Bar) */
.hero-home {
  position: relative;
  min-height: 90vh;
  margin-top: -76px; /* Starts hero background image directly below top-bar */
  padding: 170px 0 65px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background-image: url('/assets/images/hero-bg.webp');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  overflow: hidden;
}
@media (max-width: 768px) {
  .hero-home,
  #home-hero {
    background-image: url('/uploads/banners/home_hero_mobile.webp?v=20260814') !important;
    background-position: center center;
    background-size: cover;
    padding: 95px 0 40px;
    min-height: 55vh;
    align-items: center;
  }
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.45) 100%);
  z-index: 1;
}
.hero-container {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}
.hero-content {
  max-width: 840px;
  margin: 0 auto;
  color: #FFFFFF;
}
.hero-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(40px, 5.8vw, 66px);
  font-weight: 800;
  line-height: 1.15;
  color: #FFFFFF;
  margin-bottom: 22px;
  text-shadow: none !important;
}
.hero-title-highlight {
  background: linear-gradient(0deg, var(--clr-primary) 0%, #FFFFFF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: none !important;
  display: inline-block;
}
.hero-subtitle {
  font-size: clamp(16px, 2.1vw, 20px);
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto 38px;
  text-shadow: none;
  font-weight: 400;
}
.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.btn-hero-primary {
  background: linear-gradient(135deg, var(--clr-primary) 0%, var(--clr-primary-dark) 100%);
  color: #FFFFFF !important;
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.3px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap !important;
  box-shadow: 0 8px 25px rgba(92, 156, 95, 0.45);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none !important;
  position: relative;
  overflow: hidden;
}
.btn-hero-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}
.btn-hero-primary:hover::before {
  left: 100%;
}
.btn-hero-primary:hover {
  background: linear-gradient(135deg, var(--clr-primary-light) 0%, var(--clr-primary) 100%);
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 14px 35px rgba(92, 156, 95, 0.6);
  color: #FFFFFF !important;
}
.btn-hero-secondary {
  background: rgba(255, 255, 255, 0.10) !important;
  backdrop-filter: blur(3px) !important;
  -webkit-backdrop-filter: blur(3px) !important;
  color: #FFFFFF !important;
  border: 1.5px solid rgba(255, 255, 255, 0.6) !important;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.3px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap !important;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none !important;
}
.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.25) !important;
  border-color: #FFFFFF !important;
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  color: #FFFFFF !important;
}

/* Mobile Responsive Hero Buttons */
@media (max-width: 640px) {
  .hero-actions {
    flex-direction: column !important;
    gap: 12px !important;
    width: 100% !important;
  }
  
  .btn-hero-primary,
  .btn-hero-secondary {
    width: 100% !important;
    max-width: 310px !important;
    padding: 11px 18px !important;
    font-size: 13.5px !important;
    justify-content: center !important;
    white-space: normal !important;
    text-align: center !important;
    box-sizing: border-box !important;
    margin: 0 auto !important;
  }
}

/* Page Hero (Behind Main Header Below Top Bar) */
.page-hero {
  margin-top: -76px;
  padding: 160px 0 75px;
  background: linear-gradient(135deg, var(--clr-bg-light) 0%, #e8f5e9 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%235c9c5f' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}
.page-hero-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--clr-dark);
}
.page-hero-subtitle {
  font-size: 18px;
  color: var(--clr-gray-500);
}

/* ============================================================
   SWACHH KISSAN FARMS — Compact & Refined Footer
   ============================================================ */



/* Main Footer Container (Compact Height) */
.footer {
  background-color: var(--clr-dark);
  color: var(--clr-white);
  padding: 40px 0 130px;
  position: relative;
  overflow: hidden;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 30px;
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 25px;
  }
}
@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* Brand Column & Brush Title in 1 Line */
.footer-brand-wrap {
  margin-bottom: 14px;
}
.footer-logo-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none !important;
  white-space: nowrap;
}
.footer-logo {
  max-height: 48px;
  width: auto;
  filter: brightness(0) invert(1);
  display: inline-block;
  margin-bottom: 0;
  vertical-align: middle;
}
.footer-brand-brush-title {
  font-family: 'Permanent Marker', cursive, sans-serif;
  font-size: 22px;
  color: #FFFFFF;
  letter-spacing: 1px;
  line-height: 1;
  white-space: nowrap;
  display: inline-block;
  vertical-align: middle;
}
@media (max-width: 576px) {
  .footer-brand-brush-title {
    font-size: 16px;
  }
}
.footer-desc {
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 18px;
}

/* Social Icons */
.social-links {
  display: flex;
  gap: 10px;
}
.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--clr-white) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all var(--transition-base);
  text-decoration: none !important;
}
.social-icon:hover {
  background: var(--clr-primary);
  transform: translateY(-3px);
  color: var(--clr-white) !important;
}
.social-icon.youtube:hover { background: #FF0000; }
.social-icon.facebook:hover { background: #1877F2; }
.social-icon.instagram:hover { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.social-icon.whatsapp:hover { background: #25D366; }

/* Headings & Compact Links */
.footer-col h4 {
  color: var(--clr-white);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  position: relative;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 8px;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  text-decoration: none;
  transition: all var(--transition-base);
  display: inline-block;
}
.footer-links a:hover {
  color: var(--clr-primary-light);
  transform: translateX(4px);
}

/* Contact List (Compact) */
.footer-contact li {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  line-height: 1.4;
}
.footer-contact i {
  color: var(--clr-primary-light);
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 2px;
  transition: transform var(--transition-fast), color var(--transition-fast);
}
.footer-contact li:hover i {
  color: var(--clr-accent);
  transform: scale(1.1);
}
.footer-contact a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: color var(--transition-fast);
}
.footer-contact a:hover {
  color: var(--clr-primary-light);
}

/* Footer Bottom Bar & Shifted Policies */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 18px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  position: relative;
  z-index: 2;
}
.footer-bottom-copy {
  flex: 1 1 auto;
}
.footer-bottom-policies {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1 1 auto;
  justify-content: center;
}
.footer-bottom-policies a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 13px;
  transition: color var(--transition-fast);
}
.footer-bottom-policies a:hover {
  color: var(--clr-primary-light);
  text-decoration: none;
}
.policy-sep {
  color: rgba(255, 255, 255, 0.3);
  font-size: 12px;
}
.footer-bottom-credit {
  text-align: right;
  margin-left: auto;
  flex: 1 1 auto;
}
.footer-bottom-credit a {
  color: var(--clr-primary-light);
  font-weight: 600;
  text-decoration: none;
}
.footer-bottom-credit a:hover {
  color: var(--clr-white);
  text-decoration: none;
}

@media (max-width: 768px) {
  .footer {
    padding-bottom: 140px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  .footer-bottom-policies {
    justify-content: center;
    flex-wrap: wrap;
  }
  .footer-bottom-credit {
    margin-left: 0;
    text-align: center;
  }
}

/* Full Width Live Grass Bottom Bar (2x Indian Tractor & Photorealistic Grass) */
.footer-grass-fullwidth {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 130px;
  background-image: url('/assets/images/grass-footer.png');
  background-repeat: repeat-x;
  background-position: bottom center;
  background-size: auto 100px;
  pointer-events: none;
  z-index: 2;
  overflow: hidden;
}
.footer-grass-fullwidth canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: auto;
}
@media (max-width: 576px) {
  .footer-grass-fullwidth {
    height: 130px;
    background-size: auto 100px;
  }
}

/* Floating WhatsApp Widget (Compact & Attractive) */
.floating-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none !important;
  animation: whatsappGlow 2.5s infinite;
}
.floating-whatsapp:hover {
  transform: scale(1.1) translateY(-2px);
  background-color: #1ebe5d;
  color: white;
  box-shadow: 0 8px 22px rgba(37, 211, 102, 0.6);
}
@keyframes whatsappGlow {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
  70% { box-shadow: 0 0 0 12px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Cards */
.card {
  background: var(--clr-white);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  border: 1px solid var(--clr-gray-200);
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--clr-primary-light);
}
.icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--clr-bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--clr-primary);
  margin-bottom: 20px;
  transition: all var(--transition-base);
}
.card:hover .icon-wrapper {
  background: var(--clr-primary);
  color: var(--clr-white);
}
.card h3 {
  font-size: 20px;
  margin-bottom: 15px;
}
.card p {
  color: var(--clr-gray-500);
  font-size: 15px;
}
.card.highlight {
  background: linear-gradient(135deg, var(--clr-primary), var(--clr-primary-dark));
  color: var(--clr-white);
  border: none;
}
.card.highlight h3, .card.highlight p {
  color: var(--clr-white);
}
.card.highlight .icon-wrapper {
  background: rgba(255,255,255,0.2);
  color: var(--clr-white);
}
.card.highlight:hover .icon-wrapper {
  background: var(--clr-white);
  color: var(--clr-primary);
}

/* Trust Banner */
.trust-item {
  padding: 20px;
}

/* Stats */
.stat-item {
  padding: 30px;
  border-radius: var(--radius-md);
  background: var(--clr-white);
  box-shadow: var(--shadow-sm);
}
.stat-number {
  font-size: 48px;
  font-weight: 800;
  color: var(--clr-primary);
  margin-bottom: 10px;
}
.stat-label {
  font-size: 16px;
  font-weight: 600;
  color: var(--clr-dark);
}

/* Badges */
.badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: rgba(92, 156, 95, 0.1);
  color: var(--clr-primary-dark);
  margin-bottom: 20px;
  border: 1px solid rgba(92, 156, 95, 0.2);
}

/* ============================================================
   OUR IMPACT ACROSS INDIA - LIGHT THEME COUNTER SECTION
   ============================================================ */

.impact-stats-section.light-theme {
  position: relative;
  padding: 85px 0 90px;
  background: linear-gradient(135deg, #F4F9F4 0%, #E8F5E9 50%, #F0F7F1 100%);
  color: #1A301D;
  overflow: hidden;
  opacity: 1 !important;
  visibility: visible !important;
}

.impact-stats-section .section-eyebrow.light-badge {
  background: rgba(46, 125, 50, 0.10);
  color: #2E7D32;
  border: 1px solid rgba(46, 125, 50, 0.20);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.impact-stats-section .section-title.dark-title {
  color: #1B5E20 !important;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  margin-bottom: 12px;
}

.impact-stats-section .section-subtitle.dark-subtitle {
  color: #4A6B4C;
  max-width: 620px;
  margin: 0 auto 50px;
  font-size: 16px;
  line-height: 1.6;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  opacity: 1 !important;
  visibility: visible !important;
}

@media (max-width: 1200px) {
  .impact-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
  }
}

@media (max-width: 768px) {
  .impact-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .impact-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

.impact-card {
  position: relative;
  background: #FFFFFF;
  border: 1px solid rgba(46, 125, 50, 0.15);
  border-radius: 20px;
  padding: 32px 18px 28px;
  text-align: center;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 10px 30px rgba(46, 125, 50, 0.07);
  opacity: 1 !important;
  visibility: visible !important;
  transform: none;
}

.impact-card:hover {
  transform: translateY(-8px) scale(1.02);
  background: #FFFFFF;
  border-color: #2E7D32;
  box-shadow: 0 20px 40px rgba(46, 125, 50, 0.16);
}

.impact-icon-box {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: #E8F5E9;
  border: 1px solid rgba(46, 125, 50, 0.2);
  color: #2E7D32;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 28px;
  transition: transform 0.35s ease, background 0.35s ease, color 0.35s ease;
}

.impact-card:hover .impact-icon-box {
  transform: rotate(6deg) scale(1.1);
  background: #2E7D32;
  color: #FFFFFF;
  border-color: #2E7D32;
}

.impact-counter-wrap {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(32px, 2.5vw, 38px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 10px;
}

.impact-number {
  background: linear-gradient(180deg, #1B5E20 0%, #2E7D32 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #2E7D32;
  opacity: 1 !important;
  display: inline-block;
}

.impact-label {
  font-family: 'DM Sans', 'Montserrat', sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  color: #2D3748;
  line-height: 1.45;
  margin: 0;
}

/* Compact Impact Banner under Hero — Seamless Non-Boxed Stat Strip */
.compact-impact-banner {
  padding: 44px 0 48px !important;
  background: linear-gradient(180deg, #F4F9F4 0%, #E8F5E9 50%, #F0F7F1 100%) !important;
  border-bottom: 1px solid rgba(46, 125, 50, 0.12) !important;
  position: relative !important;
}

.compact-header {
  margin-bottom: 28px !important;
}

.compact-header .section-eyebrow.light-badge {
  background: linear-gradient(135deg, rgba(46, 125, 50, 0.12) 0%, rgba(255, 143, 0, 0.12) 100%) !important;
  color: #1B5E20 !important;
  border: 1px solid rgba(46, 125, 50, 0.25) !important;
  padding: 6px 20px !important;
  border-radius: 30px !important;
  font-size: 12.5px !important;
  font-weight: 700 !important;
  letter-spacing: 1.2px !important;
  text-transform: uppercase !important;
  margin-bottom: 8px !important;
  box-shadow: 0 2px 10px rgba(46, 125, 50, 0.06) !important;
}

.compact-header .section-title.dark-title {
  font-size: clamp(26px, 3.5vw, 36px) !important;
  font-weight: 800 !important;
  background: linear-gradient(180deg, #1B5E20 0%, #2E7D32 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  margin-bottom: 0 !important;
}

/* Compact Impact Banner under Hero — Completely Cardless Minimal Layout */
.compact-impact-banner {
  padding: 44px 0 48px !important;
  background: linear-gradient(180deg, #F6FAF7 0%, #EBF5ED 100%) !important;
  border-bottom: 1px solid rgba(46, 125, 50, 0.12) !important;
  position: relative !important;
}

.compact-header {
  margin-bottom: 30px !important;
}

.compact-header .section-eyebrow.light-badge {
  font-family: 'Montserrat', sans-serif !important;
  color: #5c9c5f !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: 1.5px !important;
  text-transform: uppercase !important;
}

.compact-header .section-title.dark-title {
  font-family: 'Montserrat', sans-serif !important;
  font-size: clamp(28px, 3.5vw, 38px) !important;
  font-weight: 800 !important;
  color: #1B5E20 !important;
  -webkit-text-fill-color: #1B5E20 !important;
  background: none !important;
  margin-bottom: 0 !important;
}

/* Cardless Minimal Grid */
.impact-minimal-grid {
  display: grid !important;
  grid-template-columns: repeat(6, 1fr) !important;
  gap: 16px !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
}

.impact-stat-item {
  text-align: center !important;
  padding: 14px 8px !important;
  position: relative !important;
  transition: all 0.35s ease !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

.impact-icon-circle {
  width: 58px !important;
  height: 58px !important;
  border-radius: 50% !important;
  background: rgba(92, 156, 95, 0.1) !important;
  border: 1.5px solid rgba(92, 156, 95, 0.3) !important;
  color: #5c9c5f !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 auto 16px !important;
  font-size: 26px !important;
  box-shadow: 0 4px 12px rgba(92, 156, 95, 0.08) !important;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
}

.impact-stat-item:hover .impact-icon-circle {
  transform: translateY(-6px) scale(1.12) !important;
  background: #5c9c5f !important;
  color: #FFFFFF !important;
  border-color: transparent !important;
  box-shadow: 0 8px 20px rgba(92, 156, 95, 0.35) !important;
}

.impact-stat-item .impact-counter-wrap {
  font-family: 'Montserrat', sans-serif !important;
  font-size: clamp(26px, 2.2vw, 34px) !important;
  font-weight: 800 !important;
  line-height: 1.1 !important;
  margin-bottom: 8px !important;
  transition: transform 0.3s ease !important;
}

.impact-stat-item:hover .impact-counter-wrap {
  transform: scale(1.06) !important;
}

.impact-stat-item .impact-number {
  color: #5c9c5f !important;
  -webkit-text-fill-color: #5c9c5f !important;
  background: none !important;
  display: inline-block !important;
  transition: all 0.3s ease !important;
}

.impact-stat-item:hover .impact-number {
  color: #5c9c5f !important;
  -webkit-text-fill-color: #5c9c5f !important;
}

.impact-stat-item .impact-label {
  font-family: 'Montserrat', sans-serif !important;
  font-size: 13.5px !important;
  font-weight: 600 !important;
  color: #1A1A1A !important;
  line-height: 1.4 !important;
  margin: 0 !important;
  transition: color 0.3s ease !important;
}

.impact-stat-item:hover .impact-label {
  color: #5c9c5f !important;
}

@media (max-width: 1024px) {
  .impact-minimal-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 20px !important;
  }
}

@media (max-width: 640px) {
  .impact-minimal-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px !important;
  }
}

/* ============================================================
   NATIONAL RECOGNITION SHOWCASE SECTION (3D MULTI-CARD CAROUSEL)
   ============================================================ */

/* ============================================================
   NATIONAL RECOGNITION SHOWCASE SECTION (COMPACT 3D CAROUSEL)
   ============================================================ */

.recognition-showcase-section.modern-rec-3d {
  padding: 60px 0 70px !important;
  background: linear-gradient(180deg, #FFFFFF 0%, #F5FAF6 50%, #FFFFFF 100%) !important;
  position: relative !important;
  border-bottom: 1px solid rgba(92, 156, 95, 0.12) !important;
  overflow: hidden !important;
}

.recognition-showcase-section .section-eyebrow.light-badge {
  color: #5c9c5f !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: 1.5px !important;
  text-transform: uppercase !important;
}

.recognition-showcase-section .section-title.dark-title {
  color: #1B5E20 !important;
  -webkit-text-fill-color: #1B5E20 !important;
  background: none !important;
  font-weight: 800 !important;
  font-size: clamp(28px, 3.5vw, 38px) !important;
}

.recognition-showcase-section .section-subtitle.dark-subtitle {
  color: #1A1A1A !important;
  font-weight: 500 !important;
}

.recognition-3d-wrapper {
  max-width: 1000px !important;
  margin: 0 auto !important;
  position: relative !important;
}

/* 3D Stage Container (Compact) */
.rec-3d-stage-container {
  position: relative !important;
  width: 100% !important;
  height: 320px !important;
  perspective: 1200px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin-bottom: 20px !important;
}

.rec-3d-stage {
  position: relative !important;
  width: 100% !important;
  height: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transform-style: preserve-3d !important;
}

/* Compact Card Items */
.rec-3d-card {
  position: absolute !important;
  width: 520px !important;
  height: 290px !important;
  border-radius: 18px !important;
  overflow: hidden !important;
  background: #111111 !important;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22) !important;
  border: 1px solid rgba(92, 156, 95, 0.22) !important;
  cursor: pointer !important;
  transition: all 0.65s cubic-bezier(0.25, 1, 0.5, 1) !important;
  user-select: none !important;
}

.rec-3d-card img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
  transition: filter 0.5s ease, transform 0.5s ease !important;
}

/* 3D Card Positions */
.rec-3d-card.pos-center {
  transform: translateX(0) scale(1) translateZ(0) rotateY(0deg) !important;
  opacity: 1 !important;
  z-index: 10 !important;
  box-shadow: 0 16px 40px rgba(92, 156, 95, 0.3), 0 4px 12px rgba(0, 0, 0, 0.12) !important;
  border: 2px solid #5c9c5f !important;
}

.rec-3d-card.pos-left {
  transform: translateX(-50%) scale(0.82) rotateY(16deg) !important;
  opacity: 0.6 !important;
  z-index: 5 !important;
  filter: brightness(0.8) !important;
}

.rec-3d-card.pos-right {
  transform: translateX(50%) scale(0.82) rotateY(-16deg) !important;
  opacity: 0.6 !important;
  z-index: 5 !important;
  filter: brightness(0.8) !important;
}

.rec-3d-card.pos-far-left {
  transform: translateX(-82%) scale(0.68) rotateY(28deg) !important;
  opacity: 0.22 !important;
  z-index: 2 !important;
  filter: brightness(0.6) !important;
}

.rec-3d-card.pos-far-right {
  transform: translateX(82%) scale(0.68) rotateY(-28deg) !important;
  opacity: 0.22 !important;
  z-index: 2 !important;
  filter: brightness(0.6) !important;
}

.rec-3d-card.pos-hidden {
  transform: translateX(0) scale(0.5) !important;
  opacity: 0 !important;
  z-index: 0 !important;
  pointer-events: none !important;
}

/* Nav Arrow Buttons for 3D Carousel (Compact) */
.rec-3d-nav-btn {
  position: absolute !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  width: 44px !important;
  height: 44px !important;
  border-radius: 50% !important;
  background: #FFFFFF !important;
  border: 1px solid rgba(92, 156, 95, 0.3) !important;
  color: #5c9c5f !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 20px !important;
  cursor: pointer !important;
  z-index: 20 !important;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1) !important;
  transition: all 0.3s ease !important;
}

.rec-3d-prev {
  left: 15px !important;
}

.rec-3d-next {
  right: 15px !important;
}

.rec-3d-nav-btn:hover {
  background: #5c9c5f !important;
  color: #FFFFFF !important;
  transform: translateY(-50%) scale(1.1) !important;
  box-shadow: 0 8px 20px rgba(92, 156, 95, 0.35) !important;
}

/* Content Panel Below Stage (Compact) */
.recognition-content-panel {
  max-width: 800px !important;
  margin: 0 auto !important;
  text-align: center !important;
  padding: 0 16px !important;
  transition: opacity 0.25s ease, transform 0.25s ease !important;
}

.recognition-content-panel.text-changing {
  opacity: 0 !important;
  transform: translateY(8px) !important;
}

.rec-badge-pill {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  font-family: 'Montserrat', sans-serif !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  color: #5c9c5f !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin-bottom: 8px !important;
  letter-spacing: 1.5px !important;
  text-transform: uppercase !important;
}

.rec-title {
  font-family: 'Montserrat', sans-serif !important;
  font-size: clamp(20px, 2.5vw, 25px) !important;
  font-weight: 800 !important;
  color: #5c9c5f !important;
  margin: 0 0 8px 0 !important;
  line-height: 1.3 !important;
}

.rec-desc {
  font-family: 'Montserrat', sans-serif !important;
  font-size: 14.5px !important;
  font-weight: 500 !important;
  color: #1A1A1A !important;
  line-height: 1.6 !important;
  max-width: 740px !important;
  margin: 0 auto 18px !important;
}

/* Pagination Dots */
.rec-dots-wrapper {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
}

.rec-dot {
  width: 10px !important;
  height: 10px !important;
  border-radius: 50% !important;
  background: rgba(92, 156, 95, 0.25) !important;
  border: none !important;
  cursor: pointer !important;
  transition: all 0.35s ease !important;
  padding: 0 !important;
}

.rec-dot.active {
  width: 28px !important;
  border-radius: 10px !important;
  background: #5c9c5f !important;
  box-shadow: 0 3px 8px rgba(92, 156, 95, 0.3) !important;
}

@media (max-width: 992px) {
  .rec-3d-stage-container {
    height: 280px !important;
  }
  .rec-3d-card {
    width: 440px !important;
    max-width: 82% !important;
    height: 250px !important;
    transition: transform 0.45s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.45s ease, filter 0.45s ease !important;
  }
  .rec-3d-card.pos-left {
    transform: translateX(-45%) scale(0.82) rotateY(12deg) !important;
    opacity: 0.5 !important;
  }
  .rec-3d-card.pos-right {
    transform: translateX(45%) scale(0.82) rotateY(-12deg) !important;
    opacity: 0.5 !important;
  }
  .rec-3d-card.pos-far-left,
  .rec-3d-card.pos-far-right {
    opacity: 0 !important;
    pointer-events: none !important;
  }
}

@media (max-width: 640px) {
  .recognition-showcase-section.modern-rec-3d {
    padding: 40px 0 45px !important;
  }
  .rec-3d-stage-container {
    height: 220px !important;
    perspective: none !important;
  }
  .rec-3d-card {
    width: 84% !important;
    max-width: 320px !important;
    height: 200px !important;
    border-radius: 16px !important;
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.4s ease, filter 0.4s ease !important;
    will-change: transform, opacity !important;
  }
  .rec-3d-card.pos-center {
    transform: translateX(0) scale(1) !important;
    opacity: 1 !important;
    z-index: 10 !important;
  }
  .rec-3d-card.pos-left {
    transform: translateX(-70%) scale(0.84) !important;
    opacity: 0.35 !important;
    filter: brightness(0.7) !important;
    z-index: 4 !important;
  }
  .rec-3d-card.pos-right {
    transform: translateX(70%) scale(0.84) !important;
    opacity: 0.35 !important;
    filter: brightness(0.7) !important;
    z-index: 4 !important;
  }
  .rec-3d-card.pos-far-left,
  .rec-3d-card.pos-far-right,
  .rec-3d-card.pos-hidden {
    transform: translateX(0) scale(0.5) !important;
    opacity: 0 !important;
    z-index: 0 !important;
    pointer-events: none !important;
  }
  .rec-3d-nav-btn {
    width: 38px !important;
    height: 38px !important;
    font-size: 18px !important;
    background: rgba(255, 255, 255, 0.95) !important;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18) !important;
  }
  .rec-3d-prev { left: 8px !important; }
  .rec-3d-next { right: 8px !important; }
}

/* ============================================================
   WHAT MAKES US DIFFERENT (LIGHT BORDER BOX CARDS LAYOUT)
   ============================================================ */

.modern-usp-borderless {
  padding: 85px 0 95px !important;
  background: linear-gradient(180deg, #F8FBF8 0%, #EFF6F0 50%, #F8FBF8 100%) !important;
  position: relative !important;
}

.modern-usp-borderless .section-eyebrow.light-badge {
  color: #5c9c5f !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: 1.5px !important;
  text-transform: uppercase !important;
}

.modern-usp-borderless .section-title.dark-title {
  color: #1B5E20 !important;
  -webkit-text-fill-color: #1B5E20 !important;
  background: none !important;
  font-weight: 800 !important;
  font-size: clamp(28px, 3.5vw, 38px) !important;
}

.modern-usp-borderless .section-subtitle.dark-subtitle {
  color: #1A1A1A !important;
  font-weight: 500 !important;
}

.usp-borderless-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 24px !important;
}

.usp-borderless-item {
  background: #FFFFFF !important;
  border-radius: 18px !important;
  padding: 32px 26px 28px !important;
  border: 1px solid rgba(92, 156, 95, 0.22) !important;
  box-shadow: 0 4px 18px rgba(92, 156, 95, 0.05) !important;
  position: relative !important;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
}

.usp-borderless-item:hover {
  transform: translateY(-6px) !important;
  border-color: #5c9c5f !important;
  box-shadow: 0 14px 32px rgba(92, 156, 95, 0.16) !important;
}

.usp-borderless-icon {
  width: 58px !important;
  height: 58px !important;
  border-radius: 50% !important;
  background: rgba(92, 156, 95, 0.1) !important;
  border: 1.5px solid rgba(92, 156, 95, 0.3) !important;
  color: #5c9c5f !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 26px !important;
  margin-bottom: 20px !important;
  box-shadow: 0 4px 12px rgba(92, 156, 95, 0.08) !important;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
}

.usp-borderless-item:hover .usp-borderless-icon {
  transform: scale(1.12) rotate(6deg) !important;
  background: #5c9c5f !important;
  color: #FFFFFF !important;
  border-color: transparent !important;
  box-shadow: 0 8px 20px rgba(92, 156, 95, 0.35) !important;
}

.usp-borderless-item h3 {
  font-family: 'Montserrat', sans-serif !important;
  font-size: 19px !important;
  font-weight: 700 !important;
  color: #5c9c5f !important;
  margin: 0 0 10px 0 !important;
  line-height: 1.3 !important;
}

.usp-borderless-item p {
  font-family: 'Montserrat', sans-serif !important;
  font-size: 14.5px !important;
  font-weight: 500 !important;
  color: #1A1A1A !important;
  line-height: 1.6 !important;
  margin: 0 !important;
}

.usp-borderless-line {
  width: 40px !important;
  height: 3px !important;
  background: rgba(92, 156, 95, 0.3) !important;
  border-radius: 2px !important;
  margin-top: 18px !important;
  transition: width 0.35s ease, background 0.35s ease !important;
}

.usp-borderless-item:hover .usp-borderless-line {
  width: 75px !important;
  background: #5c9c5f !important;
}

@media (max-width: 1024px) {
  .usp-borderless-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px !important;
  }
}

@media (max-width: 640px) {
  .usp-borderless-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
}