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

/* ============================================================
   PREMIUM PRELOADER
   ============================================================ */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.preloader.fade-out {
  opacity: 0;
  visibility: hidden;
}

.preloader-plate {
  width: 70px;
  height: 70px;
  position: relative;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.preloader-leaf {
  width: 32px;
  height: 32px;
  animation: preloaderPulse 1s ease-in-out infinite;
}

.preloader-leaf svg {
  width: 100%;
  height: 100%;
}

@keyframes preloaderPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.1); opacity: 0.7; }
}

.preloader-spinner-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 3px solid #e8f5e9;
  border-top-color: #4CAF50;
  border-right-color: #2E7D32;
  animation: preloaderSpin 0.8s linear infinite;
}

@keyframes preloaderSpin {
  to { transform: rotate(360deg); }
}

.preloader-text {
  color: #2E7D32;
  font-family: 'Century Gothic', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
}

/* ============================================================
   TOP BAR - Marquee Running Text
   ============================================================ */
.top-bar {
  background: linear-gradient(90deg, #1B5E20, #2E7D32, #1B5E20);
  color: #fff;
  overflow: hidden;
  position: relative;
  z-index: 1001;
}

.top-bar-marquee {
  overflow: hidden;
  white-space: nowrap;
  padding: 8px 0;
}

.marquee-track {
  display: inline-flex;
  animation: topBarScroll 40s linear infinite;
}

.marquee-track span {
  display: inline-block;
  padding: 0 60px;
  font-size: 0.78rem;
  letter-spacing: 0.5px;
  font-weight: 500;
}

@keyframes topBarScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   ROOT VARIABLES - Ultra Premium Design System
   ============================================================ */
:root {
  --green: #2E7D32;
  --green-light: #4CAF50;
  --green-dark: #1B5E20;
  --green-glow: rgba(76, 175, 80, 0.15);
  --green-subtle: #e8f5e9;
  --accent: #00897B;
  --accent-light: #4DB6AC;
  --black: #0f1923;
  --white: #FFFFFF;
  --gray-50: #fafbfc;
  --gray-100: #f4f6f8;
  --gray-200: #e9ecef;
  --gray-300: #dee2e6;
  --gray-400: #adb5bd;
  --gray-500: #555;
  --gray-600: #333;
  --gray-700: #343a40;
  --gray-800: #212529;
  --font-main: 'Century Gothic', 'CenturyGothic', AppleGothic, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
  --shadow-xs: 0 1px 3px rgba(0,0,0,0.04);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06), 0 1px 3px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.04);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.1), 0 4px 12px rgba(0,0,0,0.06);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.12), 0 8px 20px rgba(0,0,0,0.06);
  --shadow-green: 0 8px 30px rgba(46, 125, 50, 0.25);
  --shadow-glow: 0 0 40px rgba(76, 175, 80, 0.3), 0 0 80px rgba(76, 175, 80, 0.1);
  --shadow-3d: 0 25px 50px -12px rgba(0, 0, 0, 0.15), 0 12px 24px -8px rgba(0, 0, 0, 0.1);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-2xl: 32px;
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-spring: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition-premium: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --gradient-primary: linear-gradient(135deg, #4CAF50 0%, #2E7D32 50%, #1B5E20 100%);
  --gradient-accent: linear-gradient(135deg, #00897B 0%, #4DB6AC 100%);
  --gradient-hero: linear-gradient(135deg, #1a6b1e 0%, #2E7D32 30%, #388E3C 60%, #1B5E20 100%);
  --gradient-dark: linear-gradient(160deg, #0f1923 0%, #1a2a3a 50%, #0d2818 100%);
  --gradient-glass: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
  --gradient-rainbow: linear-gradient(90deg, #4CAF50, #00897B, #26A69A, #66BB6A, #4CAF50);
  --parallax-offset: 0;
  --card-perspective: 1200px;
}

/* ============================================================
   GLOBAL RESET & BASE
   ============================================================ */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-main);
  color: #111111;
  background-color: var(--white);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  font-weight: 500;
}

body.loading {
  overflow: hidden;
}

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

a:hover {
  color: var(--green);
}

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

h1, h2, h3, h4 {
  color: var(--black);
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.container {
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* ============================================================
   PAGE ENTER / LOADING ANIMATIONS
   ============================================================ */
@keyframes pageEnterFadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pageFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

body {
  animation: pageFadeIn 0.6s ease-out;
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* ============================================================
   BUTTONS - Premium Ultra Design with Shimmer & Glow
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 36px;
  background: linear-gradient(135deg, var(--green-light) 0%, var(--green) 50%, var(--green-dark) 100%);
  background-size: 200% 200%;
  color: var(--white);
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition-premium);
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  box-shadow: 0 4px 15px rgba(46, 125, 50, 0.2);
}

.btn::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;
  z-index: -1;
}

.btn::after {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, var(--green-light), var(--accent), var(--green));
  border-radius: 52px;
  z-index: -2;
  opacity: 0;
  transition: opacity 0.4s ease;
  filter: blur(8px);
}

.btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: var(--shadow-green), 0 0 30px rgba(76, 175, 80, 0.2);
  color: var(--white);
  background-position: right center;
}

.btn:hover::before {
  left: 100%;
}

.btn:hover::after {
  opacity: 1;
}

.btn:active {
  transform: translateY(-1px) scale(0.98);
}

@keyframes btnShimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--green);
  color: var(--green);
  background-size: auto;
  box-shadow: none;
}

.btn-outline::before {
  background: var(--green);
  left: 0;
  width: 0;
  transition: width 0.35s ease;
}

.btn-outline::after {
  display: none;
}

.btn-outline:hover {
  color: var(--white);
  background: var(--green);
  box-shadow: var(--shadow-green);
}

.btn-outline:hover::before {
  width: 100%;
  left: 0;
}

.btn-white {
  background: var(--white);
  color: var(--green);
  background-size: auto;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.btn-white::after {
  display: none;
}

.btn-white:hover {
  background: var(--gray-100);
  color: var(--green-dark);
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

/* ============================================================
   HIGHLIGHTED KEYWORDS - SEO/AEO Links
   ============================================================ */
.keyword-link {
  color: var(--green);
  text-decoration: none;
  font-weight: 600;
  position: relative;
  transition: color 0.2s ease;
}

.keyword-link:hover {
  color: var(--green-dark);
}

/* ============================================================
   HEADER - Premium Glassmorphism + Animated Nav
   ============================================================ */
header {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(24px) saturate(200%);
  -webkit-backdrop-filter: blur(24px) saturate(200%);
  border-bottom: 1px solid rgba(255,255,255,0.2);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all var(--transition-premium);
  box-shadow: 0 1px 0 rgba(0,0,0,0.03);
}

header.scrolled {
  box-shadow: 0 4px 30px rgba(0,0,0,0.08);
  background: rgba(255, 255, 255, 0.95);
  border-bottom-color: rgba(0,0,0,0.04);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 80px;
  transition: var(--transition);
}

.logo:hover img {
  transform: scale(1.03);
  filter: drop-shadow(0 2px 12px rgba(46, 125, 50, 0.25));
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 4px;
  align-items: center;
}

.nav-links li {
  position: relative;
}

.nav-links > li > a {
  padding: 10px 18px;
  font-weight: 500;
  color: var(--gray-700);
  border-radius: var(--radius-sm);
  display: block;
  font-size: 0.93rem;
  letter-spacing: 0.3px;
  transition: all var(--transition-fast);
  position: relative;
}

.nav-links > li > a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  width: 0;
  height: 2.5px;
  background: linear-gradient(90deg, var(--green-light), var(--accent));
  transition: var(--transition);
  transform: translateX(-50%);
  border-radius: 2px;
}

.nav-links > li > a:hover {
  color: var(--green);
}

.nav-links > li > a:hover::after {
  width: 70%;
}

.nav-links > li > a.btn::after {
  display: none;
}

.btn-download-brochure {
  display: inline-flex !important;
  align-items: center;
  gap: 6px;
  color: var(--green) !important;
  font-weight: 600 !important;
  font-size: 0.88rem !important;
}

.btn-download-brochure svg {
  width: 15px;
  height: 15px;
}

.btn-download-brochure:hover {
  color: var(--green-dark) !important;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  min-width: 260px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12), 0 0 0 1px rgba(0,0,0,0.04);
  z-index: 100;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.5);
  animation: dropdownIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes dropdownIn {
  from { opacity: 0; transform: translateX(-50%) translateY(-12px) scale(0.96); }
  to { opacity: 1; transform: translateX(-50%) translateY(0) scale(1); }
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown-content a {
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.93rem;
  color: var(--gray-600);
  transition: all var(--transition-fast);
  border-bottom: 1px solid rgba(0,0,0,0.03);
  position: relative;
}

.dropdown-content a:last-child {
  border-bottom: none;
}

.dropdown-group {
  padding: 8px 0;
  border-bottom: 1px solid var(--gray-100);
}

.dropdown-group:last-child {
  border-bottom: none;
}

.dropdown-label {
  display: block;
  padding: 6px 24px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray-400);
}

.dropdown-group a {
  border-bottom: none;
}

.dropdown-content a:hover {
  background: linear-gradient(135deg, var(--green-subtle), rgba(0, 137, 123, 0.05));
  color: var(--green);
  padding-left: 30px;
}

.hamburger {
  display: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--gray-700);
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.hamburger:hover {
  background: var(--green-subtle);
  color: var(--green);
}

/* ============================================================
   MOBILE NAVIGATION
   ============================================================ */
@media (max-width: 900px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    gap: 4px;
    border-top: 1px solid var(--gray-200);
    animation: mobileNavSlide 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  }

  @keyframes mobileNavSlide {
    from { opacity: 0; transform: translateY(-15px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links > li > a {
    padding: 14px 16px;
    border-radius: var(--radius-sm);
  }

  .nav-links > li > a::after {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .dropdown-content {
    position: static;
    box-shadow: none;
    border: none;
    padding-left: 12px;
    background: var(--gray-50);
    border-radius: var(--radius-sm);
    margin-top: 4px;
    transform: none;
    animation: none;
    backdrop-filter: none;
  }
}

/* ============================================================
   FOOTER - Premium Design
   ============================================================ */
.footer-premium {
  background: #ffffff;
  color: #111;
  position: relative;
  overflow: hidden;
}

.footer-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--accent), var(--green));
  background-size: 200% 100%;
  animation: gradientSlide 3s linear infinite;
}

@keyframes gradientSlide {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

.footer-top {
  padding: 40px 0 30px;
}

.footer-premium .footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.footer-logo {
  height: 80px;
  margin-bottom: 16px;
}

.footer-tagline {
  color: var(--green);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.footer-desc {
  color: #666;
  font-size: 0.88rem;
  line-height: 1.7;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.footer-subhead {
  margin-top: 20px !important;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 0.9rem;
  color: #555;
}

.footer-contact-item svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--green);
  stroke: var(--green);
}

.footer-contact-item a {
  color: var(--green);
  font-weight: 500;
}

.footer-contact-item a:hover {
  color: var(--green-dark);
}

.footer-bottom {
  background: #f8f9fa;
  padding: 18px 0;
  border-top: 1px solid #eee;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  color: #888;
  font-size: 0.82rem;
}

.footer-bottom-links {
  display: flex;
  gap: 16px;
}

.footer-bottom-links a {
  color: #888;
  font-size: 0.82rem;
  transition: color 0.2s;
}

.footer-bottom-links a:hover {
  color: var(--green);
}

.footer-col h3 {
  margin-bottom: 20px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 10px;
  color: #111;
}

.footer-col h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2.5px;
  background: linear-gradient(90deg, var(--green-light), var(--accent));
  border-radius: 2px;
  transition: width 0.3s ease;
}

.footer-col:hover h3::after {
  width: 50px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #555;
  font-size: 0.88rem;
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  position: relative;
  padding-left: 0;
}

.footer-col ul li a::before {
  content: '';
  width: 0;
  height: 1px;
  background: var(--green-light);
  position: absolute;
  bottom: -2px;
  left: 0;
  transition: width 0.3s ease;
}

.footer-col ul li a:hover {
  color: var(--green);
  transform: translateX(4px);
}

.footer-col ul li a:hover::before {
  width: 100%;
}

.social-icon {
  width: 38px;
  height: 38px;
  background: #f5f5f5;
  border: 1px solid #e0e0e0;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.social-icon::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--green);
  transform: translateY(100%);
  transition: transform 0.3s ease;
  border-radius: inherit;
}

.social-icon:hover {
  border-color: var(--green);
  transform: translateY(-3px);
  color: white;
  box-shadow: 0 6px 20px rgba(46, 125, 50, 0.3);
}

.social-icon:hover::before {
  transform: translateY(0);
}

.social-icon > * {
  position: relative;
  z-index: 1;
}

footer {
  background: #ffffff;
  color: #111;
  padding: 60px 0 30px;
  position: relative;
  overflow: hidden;
}

footer.footer-white {
  background: #ffffff;
  color: #111;
}

.copyright {
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #eee;
  color: #888;
  font-size: 0.82rem;
  position: relative;
  z-index: 1;
}

.copyright a {
  color: #666;
  transition: color 0.3s ease;
}

.copyright a:hover {
  color: var(--green);
}

@media (max-width: 900px) {
  .footer-premium .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  .footer-bottom .container {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .footer-premium .footer-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}

/* ============================================================
   SECTIONS - Premium Layout with Floating Decorations
   ============================================================ */
section {
  padding: 40px 0;
  position: relative;
  overflow: hidden;
}

.section-title {
  text-align: center;
  margin-bottom: 28px;
  position: relative;
}

.section-title .section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--green);
  margin-bottom: 14px;
}

.section-title .section-label::before,
.section-title .section-label::after {
  content: '';
  width: 30px;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--green-light));
}

.section-title .section-label::after {
  background: linear-gradient(90deg, var(--green-light), transparent);
}

.section-title h2 {
  font-family: var(--font-display);
  font-size: 2.8rem;
  margin-bottom: 16px;
  color: var(--black);
  font-weight: 700;
  letter-spacing: -0.5px;
  position: relative;
  display: inline-block;
}

.section-title h2::before {
  content: '';
  position: absolute;
  top: -8px;
  left: -18px;
  width: 45px;
  height: 45px;
  background: radial-gradient(circle, var(--green-glow), transparent);
  border-radius: 50%;
  opacity: 0.5;
  pointer-events: none;
}

.section-title .accent-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 20px auto 0;
  width: fit-content;
}

.section-title .accent-line::before {
  content: '';
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--green-light));
  border-radius: 2px;
}

.section-title .accent-line::after {
  content: '';
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), transparent);
  border-radius: 2px;
}

.section-title .accent-line .accent-diamond {
  width: 8px;
  height: 8px;
  background: var(--green);
  transform: rotate(45deg);
  flex-shrink: 0;
  box-shadow: 0 0 8px var(--green-glow);
}

.section-title p {
  color: var(--gray-500);
  max-width: 600px;
  margin: 12px auto 0;
  font-size: 1.1rem;
  line-height: 1.75;
  letter-spacing: 0.2px;
}

/* Section Dividers - Wavy */
.section-divider {
  position: relative;
  height: 80px;
  overflow: hidden;
  margin-top: -1px;
}

.section-divider::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: -5%;
  width: 110%;
  height: 100%;
  background: var(--white);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}

.section-divider.inverted::before {
  top: 0;
  bottom: auto;
  border-radius: 0 0 50% 50% / 0 0 100% 100%;
}

.section-divider.green::before {
  background: var(--green-subtle);
}

/* Decorative Floating Orbs */
@keyframes floatOrb {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(30px, -25px) scale(1.05); }
  50% { transform: translate(-15px, -40px) scale(0.95); }
  75% { transform: translate(-30px, 15px) scale(1.03); }
}

@keyframes floatOrbSlow {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(40px, -30px) rotate(120deg); }
  66% { transform: translate(-25px, 25px) rotate(240deg); }
}

@keyframes pulseGlow {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.1); }
}

/* ============================================================
   ANIMATED GRADIENT BACKGROUNDS
   ============================================================ */
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes gradientDiagonal {
  0% { background-position: 0% 0%; }
  50% { background-position: 100% 100%; }
  100% { background-position: 0% 0%; }
}

/* ============================================================
   HERO SLIDER - Cinematic Ultra Premium
   ============================================================ */
.hero-slider {
  position: relative;
  height: 80vh;
  min-height: 500px;
  max-height: 750px;
  overflow: hidden;
}

.hero-slider::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--white), transparent);
  z-index: 3;
  pointer-events: none;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(0,0,0,0.7) 0%,
    rgba(0,0,0,0.35) 40%,
    rgba(15,25,35,0.55) 100%
  );
  z-index: 1;
}

.slide::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(46, 125, 50, 0.15), transparent 70%);
  z-index: 1;
  pointer-events: none;
}

.slide.active {
  opacity: 1;
}

.slide.active .slide-content {
  animation: heroContentIn 0.9s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes heroContentIn {
  from {
    opacity: 0;
    transform: translateY(50px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.slide-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 50px;
  max-width: 900px;
}

.slide-content h1 {
  font-family: var(--font-display);
  font-size: 4rem;
  margin-bottom: 20px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -1px;
  line-height: 1.15;
  text-shadow: 0 4px 40px rgba(0,0,0,0.4), 0 1px 3px rgba(0,0,0,0.3);
}

.slide-content p {
  font-size: 1.25rem;
  margin-bottom: 35px;
  opacity: 0.92;
  font-weight: 300;
  letter-spacing: 0.5px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
  text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.slide-label {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 8px 24px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: var(--white);
}

.slide-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-nav {
  padding: 10px 28px;
  font-size: 0.88rem;
  border-radius: 50px;
}

.slider-nav {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.dot {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.25);
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  cursor: pointer;
  transition: all var(--transition);
}

.dot:hover {
  background: rgba(255, 255, 255, 0.5);
  transform: scale(1.15);
}

.dot.active {
  background: var(--white);
  border-color: var(--white);
  transform: scale(1.4);
  box-shadow: 0 0 20px rgba(255,255,255,0.5), 0 0 40px rgba(255,255,255,0.2);
}

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--white);
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  font-size: 20px;
  transition: all var(--transition);
  border-radius: 50%;
}

.arrow.prev { left: 30px; }
.arrow.next { right: 30px; }

.arrow:hover {
  background: var(--green);
  border-color: var(--green);
  transform: translateY(-50%) scale(1.12);
  box-shadow: 0 4px 25px rgba(46, 125, 50, 0.5), 0 0 40px rgba(46, 125, 50, 0.2);
}

/* ============================================================
   PAGE HERO - Inner Pages with Animated Gradient
   ============================================================ */
.page-hero {
  background: linear-gradient(160deg, #0d3b10 0%, #1B5E20 25%, #2E7D32 50%, #1a6b1e 75%, #0d3b10 100%);
  background-size: cover;
  background-position: center;
  padding: 90px 0 60px;
  position: relative;
  overflow: hidden;
  min-height: 220px;
}

.page-hero .hero-geometric {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.page-hero .hero-geometric .geo-line {
  position: absolute;
  background: rgba(255,255,255,0.04);
}

.page-hero .hero-geometric .geo-line:nth-child(1) {
  width: 1px;
  height: 100%;
  left: 20%;
  top: 0;
}

.page-hero .hero-geometric .geo-line:nth-child(2) {
  width: 1px;
  height: 100%;
  left: 50%;
  top: 0;
}

.page-hero .hero-geometric .geo-line:nth-child(3) {
  width: 1px;
  height: 100%;
  left: 80%;
  top: 0;
}

.page-hero .hero-geometric .geo-line:nth-child(4) {
  width: 100%;
  height: 1px;
  left: 0;
  top: 40%;
}

.page-hero .hero-geometric .geo-line:nth-child(5) {
  width: 100%;
  height: 1px;
  left: 0;
  top: 70%;
}

.page-hero .hero-geometric .geo-circle {
  position: absolute;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 50%;
}

.page-hero .hero-geometric .geo-circle:nth-child(6) {
  width: 300px;
  height: 300px;
  top: -80px;
  right: -60px;
  animation: heroGeoRotate 30s linear infinite;
}

.page-hero .hero-geometric .geo-circle:nth-child(7) {
  width: 200px;
  height: 200px;
  bottom: -40px;
  left: 10%;
  animation: heroGeoRotate 25s linear infinite reverse;
}

.page-hero .hero-geometric .geo-circle:nth-child(8) {
  width: 120px;
  height: 120px;
  top: 30%;
  left: 40%;
  border-color: rgba(255,255,255,0.04);
  animation: heroGeoPulse 8s ease-in-out infinite;
}

@keyframes heroGeoRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes heroGeoPulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.15); opacity: 1; }
}

.page-hero .hero-gradient-mesh {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.page-hero .hero-gradient-mesh::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -15%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(76,175,80,0.18) 0%, transparent 65%);
  border-radius: 50%;
  animation: floatOrb 18s ease-in-out infinite;
}

.page-hero .hero-gradient-mesh::after {
  content: '';
  position: absolute;
  bottom: -25%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0,137,123,0.12) 0%, transparent 65%);
  border-radius: 50%;
  animation: floatOrb 22s ease-in-out infinite reverse;
}

.page-hero .hero-light-sweep {
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.03) 50%, transparent 100%);
  transform: skewX(-20deg);
  animation: heroLightSweep 8s ease-in-out infinite;
  z-index: 0;
  pointer-events: none;
}

@keyframes heroLightSweep {
  0%, 100% { left: -100%; }
  50% { left: 120%; }
}

.page-hero.has-bg-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.page-hero.has-bg-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(13,59,16,0.72) 0%, rgba(27,94,32,0.65) 30%, rgba(46,125,50,0.6) 60%, rgba(13,59,16,0.7) 100%);
  z-index: 0;
}

.page-hero:not(.has-bg-image)::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(ellipse at 20% 50%, rgba(76,175,80,0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(0,137,123,0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 60% 80%, rgba(76,175,80,0.05) 0%, transparent 50%);
  z-index: 0;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to top, rgba(255,255,255,0.06) 0%, transparent 100%);
  z-index: 0;
  pointer-events: none;
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--white);
  text-shadow: 0 2px 30px rgba(0,0,0,0.35);
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin-bottom: 16px;
}

.page-hero p {
  position: relative;
  z-index: 1;
  color: rgba(255,255,255,0.88);
  font-size: 1.15rem;
  line-height: 1.7;
  max-width: 620px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.15);
}

.page-hero .breadcrumb {
  position: relative;
  z-index: 1;
}


/* ============================================================
   CARDS - Premium 3D Glassmorphism with Perspective
   ============================================================ */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 1px solid rgba(0,0,0,0.04);
  position: relative;
  transform-style: preserve-3d;
  perspective: var(--card-perspective);
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green-light), var(--accent), var(--green));
  background-size: 200% 100%;
  opacity: 0;
  transition: opacity 0.4s ease;
  animation: gradientSlide 3s linear infinite;
  z-index: 2;
}

.card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.05), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.card:hover {
  box-shadow: var(--shadow-3d);
  transform: translateY(-10px);
  border-color: rgba(46, 125, 50, 0.12);
}

.card:hover::before {
  opacity: 1;
}

.card:hover::after {
  opacity: 1;
}

.card img {
  transition: var(--transition-slow);
}

.card:hover img {
  transform: scale(1.05);
}

/* Glow Card - New Premium Class */
.glow-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.04);
  transition: all 0.5s ease;
}

.glow-card::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: var(--gradient-rainbow);
  background-size: 400% 400%;
  border-radius: calc(var(--radius-lg) + 2px);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.5s ease;
  animation: gradientShift 4s linear infinite;
}

.glow-card::after {
  content: '';
  position: absolute;
  inset: 1px;
  background: var(--white);
  border-radius: calc(var(--radius-lg) - 1px);
  z-index: -1;
}

.glow-card:hover::before {
  opacity: 1;
}

.glow-card:hover {
  box-shadow: 0 0 30px rgba(76, 175, 80, 0.15);
  transform: translateY(-6px);
}

/* Gradient Border - New Premium Class */
.gradient-border {
  position: relative;
  border: none !important;
}

.gradient-border::before {
  content: '';
  position: absolute;
  inset: 0;
  padding: 2px;
  background: var(--gradient-rainbow);
  background-size: 300% 300%;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.4s ease;
  animation: gradientShift 3s linear infinite;
}

.gradient-border:hover::before {
  opacity: 1;
}

/* ============================================================
   FAQ/DETAILS - Modern Accordion
   ============================================================ */
details {
  background: var(--white);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
  overflow: hidden;
}

details:hover {
  border-color: rgba(46, 125, 50, 0.2);
  box-shadow: var(--shadow-sm);
}

details[open] {
  border-color: var(--green-light);
  box-shadow: 0 4px 20px rgba(46, 125, 50, 0.12);
}

details summary {
  padding: 22px 24px;
  cursor: pointer;
  font-weight: 600;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all var(--transition-fast);
  color: var(--gray-700);
  font-size: 1.02rem;
}

details summary:hover {
  color: var(--green);
}

details summary::-webkit-details-marker {
  display: none;
}

details summary::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--green);
  font-weight: 400;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--green-subtle);
  flex-shrink: 0;
  transition: all var(--transition);
}

details[open] summary::after {
  content: '\2212';
  background: var(--green);
  color: var(--white);
  transform: rotate(180deg);
  box-shadow: 0 4px 12px rgba(46, 125, 50, 0.3);
}

details[open] summary {
  border-bottom: 1px solid var(--gray-100);
  color: var(--green);
}

details p, details div {
  padding: 24px;
  color: var(--gray-600);
  line-height: 1.85;
  animation: accordionOpen 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes accordionOpen {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Scroll reveal animations defined in Enhanced Animations section below */

/* ============================================================
   COUNTER ANIMATION
   ============================================================ */
.counter-value {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--green);
  display: block;
  line-height: 1;
  margin-bottom: 12px;
  background: linear-gradient(135deg, var(--green-light), var(--green), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================================
   PREMIUM SECTIONS
   ============================================================ */
.section-alt {
  background: linear-gradient(180deg, var(--gray-50) 0%, #fafcfa 50%, var(--gray-50) 100%);
  position: relative;
}

.section-alt::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(76, 175, 80, 0.04), transparent 70%);
  border-radius: 50%;
  animation: pulseGlow 6s ease-in-out infinite;
  pointer-events: none;
}

.section-green {
  background: linear-gradient(135deg, #1a6b1e 0%, #2E7D32 50%, #1B5E20 100%);
  background-size: 200% 200%;
  animation: gradientShift 10s ease infinite;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.section-green::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
  border-radius: 50%;
  animation: floatOrb 15s ease-in-out infinite;
}

.section-green::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(0, 137, 123, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: floatOrbSlow 18s ease-in-out infinite;
  pointer-events: none;
}

.section-gradient {
  background: linear-gradient(135deg, #f8fff8 0%, #e8f5e9 30%, #f0f9f0 100%);
}

/* ============================================================
   STAT CARDS - 3D Premium with Glow
   ============================================================ */
.stat-card {
  padding: 30px 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.04);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-light), var(--accent), var(--green-light));
  background-size: 200% 100%;
  transform: scaleX(0);
  transition: transform 0.5s ease;
  transform-origin: left;
  animation: gradientSlide 3s linear infinite paused;
}

.stat-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 60%;
  background: radial-gradient(ellipse, rgba(76, 175, 80, 0.06), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.stat-card:hover {
  box-shadow: var(--shadow-3d), 0 0 30px rgba(76, 175, 80, 0.08);
  transform: translateY(-8px);
}

.stat-card:hover::before {
  transform: scaleX(1);
  animation-play-state: running;
}

.stat-card:hover::after {
  opacity: 1;
}

.stat-card h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.stat-card p {
  color: var(--gray-500);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ============================================================
   FEATURE CARDS - 3D Premium with Hover Effects
   ============================================================ */
.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 1px solid rgba(0,0,0,0.04);
  position: relative;
}

.feature-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  padding: 2px;
  background: var(--gradient-rainbow);
  background-size: 300% 300%;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
  animation: gradientShift 3s linear infinite;
  pointer-events: none;
}

.feature-card:hover {
  box-shadow: var(--shadow-3d), 0 0 40px rgba(76, 175, 80, 0.1);
  transform: translateY(-12px);
  border-color: transparent;
}

.feature-card:hover::after {
  opacity: 1;
}

.feature-card .card-img {
  overflow: hidden;
  position: relative;
}

.feature-card .card-img img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: all var(--transition-slow);
}

.feature-card:hover .card-img img {
  transform: scale(1.08);
  filter: brightness(1.05);
}

.feature-card .card-img::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to top, rgba(0,0,0,0.08), transparent);
  pointer-events: none;
}

.feature-card .card-body {
  padding: 24px;
}

.feature-card .card-body h3 {
  color: var(--green);
  margin-bottom: 12px;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.feature-card .card-body p {
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 16px;
}

.feature-card .card-body ul {
  list-style: none;
  margin: 16px 0;
}

.feature-card .card-body ul li {
  padding: 6px 0;
  color: var(--gray-600);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  transition: transform 0.2s ease;
}

.feature-card:hover .card-body ul li {
  transform: translateX(3px);
}

.feature-card .card-body ul li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: linear-gradient(135deg, var(--green-light), var(--accent));
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 6px rgba(76, 175, 80, 0.3);
}

/* ============================================================
   PROBLEM/SOLUTION BLOCKS
   ============================================================ */
.info-block {
  padding: 28px;
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  border-left: 4px solid;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.info-block::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  opacity: 0.3;
  pointer-events: none;
}

.info-block:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-md);
}

.info-block.problem {
  background: linear-gradient(135deg, #fff5f5 0%, #ffe8e8 100%);
  border-color: #ef5350;
}

.info-block.problem::after {
  background: radial-gradient(circle, rgba(239, 83, 80, 0.08), transparent);
}

.info-block.solution {
  background: linear-gradient(135deg, #f0fff0 0%, #e8f5e9 100%);
  border-color: var(--green);
}

.info-block.solution::after {
  background: radial-gradient(circle, rgba(46, 125, 50, 0.08), transparent);
}

.info-block h4 {
  margin-bottom: 10px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.info-block.problem h4 {
  color: #ef5350;
}

.info-block.solution h4 {
  color: var(--green);
}

.info-block p {
  line-height: 1.8;
  color: var(--gray-600);
  font-size: 0.98rem;
}

/* ============================================================
   CTA SECTION - Animated Gradient with Floating Elements
   ============================================================ */
.cta-section {
  background: linear-gradient(135deg, #1a6b1e 0%, #2E7D32 35%, #1B5E20 70%, #0d3b10 100%);
  background-size: 300% 300%;
  animation: gradientShift 8s ease infinite;
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -150px;
  left: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.08), transparent 70%);
  border-radius: 50%;
  animation: floatOrb 12s ease-in-out infinite;
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -200px;
  right: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(76,175,80,0.12), transparent 70%);
  border-radius: 50%;
  animation: floatOrbSlow 16s ease-in-out infinite;
}

.cta-section h2 {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 2.5rem;
  position: relative;
  z-index: 1;
  text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.cta-section p {
  color: rgba(255,255,255,0.85);
  position: relative;
  z-index: 1;
  letter-spacing: 0.3px;
}

.cta-section .btn {
  position: relative;
  z-index: 1;
}

/* ============================================================
   FORMS - Premium Inputs with Focus Glow
   ============================================================ */
input, textarea, select {
  font-family: inherit;
  transition: all var(--transition);
}

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--green) !important;
  box-shadow: 0 0 0 4px rgba(76, 175, 80, 0.12), 0 0 20px rgba(76, 175, 80, 0.05);
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--gray-700);
  letter-spacing: 0.3px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  color: var(--gray-700);
  background: var(--white);
  transition: all var(--transition);
}

.form-group input:hover,
.form-group textarea:hover,
.form-group select:hover {
  border-color: var(--gray-300);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

/* ============================================================
   PRODUCT GALLERY GRID
   ============================================================ */
.product-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.product-gallery img {
  border-radius: var(--radius-md);
  transition: all var(--transition);
  cursor: pointer;
  box-shadow: var(--shadow-xs);
}

.product-gallery img:hover {
  transform: scale(1.04) translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* ============================================================
   IMAGE HOVER EFFECTS
   ============================================================ */
.img-hover-zoom {
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: all var(--transition);
  position: relative;
}

.img-hover-zoom::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(46, 125, 50, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.img-hover-zoom img {
  transition: var(--transition-slow);
}

.img-hover-zoom:hover img {
  transform: scale(1.06);
}

.img-hover-zoom:hover {
  box-shadow: var(--shadow-xl);
}

.img-hover-zoom:hover::after {
  opacity: 1;
}

/* ============================================================
   BREADCRUMB - Premium Glassmorphism Pill Design
   ============================================================ */
.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50px;
  padding: 10px 24px;
  font-size: 0.88rem;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
  letter-spacing: 0.4px;
  color: rgba(255,255,255,0.85);
  box-shadow: 0 4px 20px rgba(0,0,0,0.1), inset 0 1px 0 rgba(255,255,255,0.1);
  transition: all 0.3s ease;
}

.breadcrumb:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.22);
  box-shadow: 0 6px 25px rgba(0,0,0,0.12), inset 0 1px 0 rgba(255,255,255,0.12);
}

.breadcrumb .breadcrumb-home {
  display: inline-flex;
  align-items: center;
  width: 16px;
  height: 16px;
  margin-right: 4px;
  opacity: 0.8;
}

.breadcrumb .breadcrumb-sep {
  display: inline-flex;
  align-items: center;
  margin: 0 10px;
  opacity: 0.5;
  font-size: 0.7rem;
}

.breadcrumb .breadcrumb-sep svg {
  width: 12px;
  height: 12px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
}

.breadcrumb a {
  color: rgba(255,255,255,0.8);
  transition: all 0.2s ease;
  font-weight: 400;
  position: relative;
}

.breadcrumb a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: rgba(255,255,255,0.6);
  transition: width 0.2s ease;
}

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

.breadcrumb a:hover::after {
  width: 100%;
}

.breadcrumb span {
  color: var(--white);
  font-weight: 600;
}

/* ============================================================
   CONTENT PAGES - Premium Typography
   ============================================================ */
.content-body {
  font-size: 1.08rem;
  line-height: 1.9;
  color: var(--gray-600);
}

.content-body h2 {
  font-family: var(--font-display);
  color: var(--green);
  margin: 40px 0 20px;
  font-size: 1.8rem;
  letter-spacing: -0.02em;
}

.content-body h3 {
  color: var(--gray-700);
  margin: 30px 0 15px;
  font-size: 1.3rem;
}

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

.content-body ul, .content-body ol {
  margin: 16px 0;
  padding-left: 0;
  list-style: none;
}

.content-body ul li, .content-body ol li {
  padding: 8px 0 8px 24px;
  position: relative;
}

.content-body ul li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: linear-gradient(135deg, var(--green-light), var(--accent));
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 17px;
  box-shadow: 0 0 6px rgba(76, 175, 80, 0.3);
}

/* ============================================================
   BENEFITS BOX
   ============================================================ */
.benefits-box {
  background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
  padding: 32px;
  border-radius: var(--radius-lg);
  margin: 32px 0;
  border: 1px solid rgba(46, 125, 50, 0.1);
  position: relative;
  overflow: hidden;
}

.benefits-box::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(46, 125, 50, 0.08), transparent);
  border-radius: 50%;
  pointer-events: none;
}

.benefits-box h3 {
  color: var(--green-dark);
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--gray-700);
  transition: transform 0.2s ease;
}

.benefit-item:hover {
  transform: translateX(3px);
}

.benefit-check {
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, var(--green-light), var(--green));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(46, 125, 50, 0.3);
}

/* ============================================================
   LOADING / SHIMMER EFFECT - Enhanced
   ============================================================ */
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.shimmer {
  background: linear-gradient(90deg, var(--gray-100) 25%, var(--gray-200) 50%, var(--gray-100) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

/* ============================================================
   FLOATING PARTICLES
   ============================================================ */
.particle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: rgba(76, 175, 80, 0.3);
  border-radius: 50%;
  animation: floatParticle 6s ease-in-out infinite;
  pointer-events: none;
}

@keyframes floatParticle {
  0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.3; }
  50% { transform: translateY(-80px) rotate(180deg); opacity: 0.7; }
}

/* ============================================================
   CUSTOM SCROLLBAR - Premium
   ============================================================ */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--gray-300), var(--gray-400));
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--green-light), var(--green));
}

/* ============================================================
   BACK TO TOP BUTTON - Enhanced Glow
   ============================================================ */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--green-light), var(--green));
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: var(--shadow-green);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 35px rgba(46, 125, 50, 0.45), 0 0 40px rgba(46, 125, 50, 0.15);
  background: linear-gradient(135deg, var(--green), var(--green-dark));
}

/* ============================================================
   TEXT GRADIENT - Premium
   ============================================================ */
.text-gradient {
  background: linear-gradient(135deg, var(--green-light) 0%, var(--green) 40%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================================
   GLASS CARD - Premium Glassmorphism
   ============================================================ */
.glass-card {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.8), transparent);
}

.glass-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.8);
  transform: translateY(-4px);
}

/* ============================================================
   CERTIFICATIONS & ASSOCIATIONS - Enhanced Trust Section
   ============================================================ */
.trust-section {
  padding: 80px 0;
  background: var(--gray-50);
  position: relative;
  overflow: hidden;
}

.trust-section::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(76, 175, 80, 0.04), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.trust-section .section-title {
  margin-bottom: 50px;
}

.trust-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

.trust-item {
  background: var(--white);
  padding: 24px 34px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80px;
  border: 1px solid rgba(0,0,0,0.03);
  position: relative;
  overflow: hidden;
}

.trust-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.03), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.trust-item:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: var(--shadow-lg), 0 0 20px rgba(76, 175, 80, 0.08);
}

.trust-item:hover::after {
  opacity: 1;
}

.trust-item img {
  max-height: 55px;
  width: auto;
  object-fit: contain;
  filter: grayscale(30%);
  transition: all var(--transition);
  position: relative;
  z-index: 1;
}

.trust-item:hover img {
  filter: grayscale(0%);
  transform: scale(1.05);
}

/* Marquee Infinite Scroll for Trust Items */
.trust-marquee {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.trust-marquee::before,
.trust-marquee::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}

.trust-marquee::before {
  left: 0;
  background: linear-gradient(to right, var(--gray-50), transparent);
}

.trust-marquee::after {
  right: 0;
  background: linear-gradient(to left, var(--gray-50), transparent);
}

.trust-marquee-track {
  display: flex;
  gap: 40px;
  animation: marqueeScroll 30s linear infinite;
  width: max-content;
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.trust-marquee-track:hover {
  animation-play-state: paused;
}

/* ============================================================
   COUNTRIES EXPORTED - Enhanced with Animated Background
   ============================================================ */
.countries-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 50%, var(--accent) 100%);
  background-size: 300% 300%;
  animation: gradientShift 10s ease infinite;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.countries-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.05) 0%, transparent 50%);
  animation: float 20s ease-in-out infinite;
}

.countries-section::after {
  content: '';
  position: absolute;
  bottom: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 137, 123, 0.15), transparent 70%);
  border-radius: 50%;
  animation: floatOrbSlow 18s ease-in-out infinite;
  pointer-events: none;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(30px, -30px) rotate(3deg); }
  66% { transform: translate(-20px, 20px) rotate(-2deg); }
}

.countries-section .section-title h2 {
  color: var(--white);
  text-shadow: 0 2px 15px rgba(0,0,0,0.2);
}

.countries-section .section-title p {
  color: rgba(255,255,255,0.8);
}

.countries-section .accent-line {
  background: rgba(255,255,255,0.5);
}

.countries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 12px;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.country-tag {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  text-align: center;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all var(--transition);
  border: 1px solid rgba(255,255,255,0.15);
}

.country-tag:hover {
  background: rgba(255,255,255,0.25);
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  border-color: rgba(255,255,255,0.3);
}

/* ============================================================
   NEWSLETTER - Premium with Gradient
   ============================================================ */
.newsletter-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--gray-50) 0%, #e8f5e9 50%, var(--gray-50) 100%);
  position: relative;
  overflow: hidden;
}

.newsletter-section::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(76, 175, 80, 0.06), transparent 70%);
  border-radius: 50%;
  animation: pulseGlow 5s ease-in-out infinite;
  pointer-events: none;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 500px;
  margin: 30px auto 0;
}

.newsletter-form input {
  flex: 1;
  padding: 14px 20px;
  border: 2px solid var(--gray-200);
  border-radius: 50px;
  font-size: 1rem;
  font-family: var(--font-main);
  transition: all var(--transition);
  outline: none;
  background: var(--white);
}

.newsletter-form input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px var(--green-glow), 0 4px 15px rgba(76, 175, 80, 0.1);
}

.newsletter-form .btn {
  white-space: nowrap;
  padding: 14px 28px;
}

/* ============================================================
   BLINKING SHOP NOW BUTTON
   ============================================================ */
.btn-shop-blink {
  animation: shopBlink 1.5s ease-in-out infinite;
  background: green;
  border-color: #ff6b35 !important;
  color: #fff !important;
  font-weight: 700 !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}

.btn-shop-blink::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.3) 50%, transparent 70%);
  transform: rotate(45deg) translateX(-100%);
  animation: shopShine 2s ease-in-out infinite;
}

@keyframes shopBlink {
  0%, 100% { box-shadow: 0 0 5px rgba(255, 107, 53, 0.5); transform: scale(1); }
  50% { box-shadow: 0 0 20px rgba(255, 107, 53, 0.8), 0 0 40px rgba(255, 107, 53, 0.3); transform: scale(1.05); }
}

@keyframes shopShine {
  0% { transform: rotate(45deg) translateX(-100%); }
  60%, 100% { transform: rotate(45deg) translateX(100%); }
}

/* ============================================================
   WHATSAPP CHATBOT - Professional Clean Design
   ============================================================ */
.whatsapp-chatbot {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  font-family: var(--font-main);
}

.wa-fab {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
  transition: all 0.25s ease;
  position: relative;
}

.wa-fab:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
}

.wa-fab svg {
  width: 28px;
  height: 28px;
  fill: white;
  transition: transform 0.3s ease;
}

.wa-fab-pulse {
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 2px solid #25D366;
  animation: waPulse 2.5s ease-out infinite;
}

@keyframes waPulse {
  0% { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(1.4); opacity: 0; }
}

.wa-fab-label {
  position: absolute;
  right: 68px;
  white-space: nowrap;
  background: #fff;
  color: #128C7E;
  font-size: 0.85rem;
  font-weight: 600;
  font-family: var(--font-body);
  padding: 6px 14px;
  border-radius: 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.12);
  animation: waLabelBounce 3s ease-in-out infinite;
  pointer-events: none;
}

@keyframes waLabelBounce {
  0%, 100% { transform: translateX(0); opacity: 1; }
  50% { transform: translateX(-4px); opacity: 0.85; }
}

.wa-fab.wa-active .wa-fab-label {
  display: none;
}

.wa-fab.wa-active svg {
  transform: rotate(90deg);
}

.wa-chat-window {
  position: absolute;
  bottom: 10px;
  right: 0;
  width: 340px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(37, 211, 102, 0.15);
  box-shadow: 0 8px 40px rgba(0,0,0,0.12), 0 0 0 1px rgba(0,0,0,0.04);
  overflow: hidden;
  opacity: 0;
  transform: translateY(16px) scale(0.96);
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.wa-chat-window.wa-open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
}

.wa-chat-header {
  background: linear-gradient(135deg, #075E54 0%, #128C7E 100%);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wa-chat-header-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.wa-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  overflow: hidden;
  background: #fff;
  flex-shrink: 0;
  border: 2px solid rgba(255,255,255,0.2);
}

.wa-avatar img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.wa-chat-name {
  color: #fff;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.2px;
}

.wa-chat-status {
  color: rgba(255,255,255,0.6);
  font-size: 0.75rem;
  margin-top: 2px;
}

.wa-chat-close {
  background: rgba(255,255,255,0.1);
  border: none;
  color: #fff;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  line-height: 1;
}

.wa-chat-close:hover {
  background: rgba(255,255,255,0.2);
}

.wa-chat-body {
  background: #f0f2f5;
  padding: 16px 16px 12px;
  min-height: 50px;
}

.wa-message {
  max-width: 88%;
  padding: 10px 14px;
  border-radius: 12px;
  margin-bottom: 8px;
  font-size: 0.88rem;
  line-height: 1.55;
  position: relative;
}

.wa-message-received {
  background: #fff;
  border-radius: 4px 12px 12px 12px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
  color: #1a1a1a;
}

.wa-message-time {
  display: block;
  font-size: 0.68rem;
  color: #aaa;
  text-align: right;
  margin-top: 4px;
}

.wa-chat-form {
  padding: 12px 16px 16px;
  background: #fff;
  border-top: 1px solid #f0f0f0;
}

.wa-form-group {
  margin-bottom: 8px;
}

.wa-input {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid #e8e8e8;
  border-radius: 10px;
  font-size: 0.86rem;
  font-family: var(--font-main);
  background: #fafafa;
  color: #111;
  transition: all 0.2s ease;
  box-sizing: border-box;
}

.wa-input:focus {
  outline: none;
  border-color: #25D366;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.08);
}

.wa-textarea {
  resize: none;
  min-height: 38px;
}

.wa-send-btn {
  width: 100%;
  padding: 11px 16px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.25s ease;
  font-family: var(--font-main);
  letter-spacing: 0.3px;
}

.wa-send-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.wa-send-btn:active {
  transform: translateY(0);
}

@media (max-width: 480px) {
  .wa-chat-window {
    width: calc(100vw - 24px);
    right: -12px;
    bottom: 66px;
  }

  .whatsapp-chatbot {
    bottom: 20px;
    right: 16px;
  }
}

/* ============================================================
   ONLINE PLATFORMS - Enhanced
   ============================================================ */
.platforms-section {
  padding: 80px 0;
  position: relative;
}

.platforms-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

.platform-item {
  background: var(--white);
  padding: 24px 34px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70px;
  border: 1px solid var(--gray-200);
  position: relative;
  overflow: hidden;
}

.platform-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.03), rgba(0, 137, 123, 0.03));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.platform-item:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: var(--shadow-lg);
  border-color: var(--green-light);
}

.platform-item:hover::before {
  opacity: 1;
}

.platform-item img {
  max-height: 45px;
  width: auto;
  object-fit: contain;
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

.platform-item:hover img {
  transform: scale(1.05);
}

/* ============================================================
   SUSTAINABILITY PAGE - Enhanced with Animations
   ============================================================ */
.sustain-hero {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 60%, var(--accent) 100%);
  background-size: cover;
  background-position: center;
  padding: 120px 0 100px;
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.sustain-hero.has-bg-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.sustain-hero.has-bg-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,107,30,0.82) 0%, rgba(46,125,50,0.78) 40%, rgba(27,94,32,0.85) 100%);
  z-index: 0;
}

.sustain-hero:not(.has-bg-image)::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 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='%23ffffff' fill-opacity='0.04'%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");
}

.sustain-hero .container {
  position: relative;
  z-index: 2;
}


.sustain-hero::after {
  content: '';
  position: absolute;
  bottom: -150px;
  right: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.08), transparent 70%);
  border-radius: 50%;
  animation: floatOrb 15s ease-in-out infinite;
}

.sustain-hero h1 {
  font-family: var(--font-display);
  font-size: 3.2rem;
  color: var(--white);
  margin-bottom: 20px;
  position: relative;
  text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.sustain-hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.9;
  position: relative;
  letter-spacing: 0.3px;
}

.sustain-section {
  padding: 80px 0;
}

.sustain-section:nth-child(even) {
  background: var(--gray-50);
}

.sustain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.sustain-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 1px solid var(--gray-200);
  position: relative;
  overflow: hidden;
}

.sustain-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  padding: 2px;
  background: var(--gradient-rainbow);
  background-size: 300% 300%;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
  animation: gradientShift 3s linear infinite;
  pointer-events: none;
}

.sustain-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-3d), 0 0 30px rgba(76, 175, 80, 0.1);
  border-color: transparent;
}

.sustain-card:hover::before {
  opacity: 1;
}

.sustain-icon {
  width: 74px;
  height: 74px;
  background: linear-gradient(135deg, var(--green-glow), rgba(0, 137, 123, 0.1));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  transition: all var(--transition);
  position: relative;
}

.sustain-icon::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px dashed rgba(76, 175, 80, 0.2);
  animation: spin 20s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.sustain-card:hover .sustain-icon {
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.2), rgba(0, 137, 123, 0.15));
  transform: scale(1.08);
}

.sustain-card h3 {
  margin-bottom: 12px;
  color: var(--green);
}

.sustain-card p {
  color: var(--gray-500);
  line-height: 1.7;
}

.process-timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 24px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--green-light), var(--accent));
  opacity: 0.3;
}

.process-step {
  display: flex;
  gap: 30px;
  margin-bottom: 40px;
  align-items: flex-start;
  position: relative;
}

.step-number {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: linear-gradient(135deg, var(--green-light), var(--green));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  box-shadow: var(--shadow-green);
  position: relative;
  z-index: 1;
  transition: all var(--transition);
}

.process-step:hover .step-number {
  transform: scale(1.1);
  box-shadow: var(--shadow-green), 0 0 20px rgba(76, 175, 80, 0.3);
}

.step-content h3 {
  color: var(--green);
  margin-bottom: 8px;
}

.step-content p {
  color: var(--gray-500);
  line-height: 1.7;
}

/* ============================================================
   BAGASSE PRODUCTS - Enhanced with 3D Cards
   ============================================================ */
.product-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 12px 28px;
  border: 2px solid var(--gray-200);
  background: var(--white);
  border-radius: 50px;
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all var(--transition);
  color: var(--gray-600);
  position: relative;
  overflow: hidden;
}

.tab-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--green-light), var(--green));
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 50px;
}

.tab-btn:hover {
  border-color: var(--green-light);
  color: var(--green);
  box-shadow: 0 4px 15px rgba(76, 175, 80, 0.1);
}

.tab-btn.active {
  background: linear-gradient(135deg, var(--green-light), var(--green));
  color: var(--white);
  border-color: var(--green);
  box-shadow: var(--shadow-green);
  transform: scale(1.02);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.product-item {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 1px solid var(--gray-200);
  position: relative;
  display: flex;
  flex-direction: column;
}

.product-item::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  padding: 2px;
  background: var(--gradient-rainbow);
  background-size: 300% 300%;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
  animation: gradientShift 3s linear infinite;
  pointer-events: none;
}

.product-item:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-3d), 0 0 30px rgba(76, 175, 80, 0.08);
  border-color: transparent;
}

.product-item:hover::after {
  opacity: 1;
}

.product-item .product-img {
  height: 220px;
  background: linear-gradient(135deg, var(--gray-100), var(--gray-50));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.product-item .product-img::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(to top, rgba(0,0,0,0.04), transparent);
  pointer-events: none;
}

.product-item .product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all var(--transition-slow);
}

.product-item:hover .product-img img {
  transform: scale(1.1);
  filter: brightness(1.03);
}

.product-item .product-info {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-item .product-info .spec-tags {
  margin-top: auto;
}

.product-item .product-info h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--green);
  transition: color 0.2s ease;
}

.product-item:hover .product-info h3 {
  color: var(--green-dark);
}

.product-item .product-info p {
  color: var(--gray-500);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 12px;
  flex: 1;
}

.product-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.spec-tag {
  background: linear-gradient(135deg, var(--green-subtle), rgba(0, 137, 123, 0.08));
  color: var(--green);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  transition: all 0.2s ease;
}

.spec-tag:hover {
  background: var(--green);
  color: var(--white);
  transform: scale(1.05);
}

/* ============================================================
   FEATURE BENEFITS STRIP - EcoGreenz Style
   ============================================================ */
.feature-strip {
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  padding: 18px 0;
  position: relative;
  overflow: hidden;
}

.feature-strip::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M20 20h20v20H20zM0 0h20v20H0z'/%3E%3C/g%3E%3C/svg%3E");
}

.feature-strip .container {
  position: relative;
  z-index: 1;
}

.feature-strip-inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.feature-strip-item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  padding: 8px 0;
  transition: transform 0.3s ease;
}

.feature-strip-item:hover {
  transform: translateY(-2px);
}

.feature-strip-item i,
.feature-strip-item .strip-icon,
.feature-strip-item .feature-strip-icon {
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  border: 1px solid rgba(255,255,255,0.15);
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.feature-strip-item:hover i,
.feature-strip-item:hover .strip-icon,
.feature-strip-item:hover .feature-strip-icon {
  background: rgba(255,255,255,0.22);
  transform: scale(1.1);
}

.feature-strip-item h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin: 0;
  letter-spacing: 0.2px;
}

.feature-strip-item p {
  font-size: 0.8rem;
  opacity: 0.75;
  margin: 2px 0 0;
  font-weight: 400;
}

/* ============================================================
   TESTIMONIALS - Glassmorphism Carousel Cards
   ============================================================ */
.testimonial-slider {
  position: relative;
  overflow: hidden;
  padding: 20px 0;
}

.testimonial-track {
  display: flex;
  gap: 30px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-xl);
  padding: 36px;
  min-width: 350px;
  position: relative;
  transition: all 0.4s ease;
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 16px;
  left: 24px;
  font-size: 4rem;
  font-family: var(--font-display);
  color: var(--green-glow);
  line-height: 1;
  opacity: 0.5;
}

.testimonial-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  padding: 2px;
  background: var(--gradient-rainbow);
  background-size: 300% 300%;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
  animation: gradientShift 4s linear infinite;
  pointer-events: none;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.1);
}

.testimonial-card:hover::after {
  opacity: 1;
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.testimonial-card p,
.testimonial-text {
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
  position: relative;
  z-index: 1;
  font-size: 0.95rem;
}

.testimonial-card .author,
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
  z-index: 1;
}

.testimonial-card .author img,
.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--green-subtle);
  background: var(--green);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.testimonial-card .author-info h4,
.testimonial-author strong {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--green);
  display: block;
}

.testimonial-card .author-info span,
.testimonial-author span {
  font-size: 0.82rem;
  color: var(--gray-500);
  display: block;
  margin-top: 2px;
}

/* ============================================================
   PARALLAX-READY LAYERS
   ============================================================ */
.parallax-layer {
  position: absolute;
  will-change: transform;
  pointer-events: none;
}

.parallax-layer--slow {
  transform: translateY(calc(var(--parallax-offset) * 0.3));
}

.parallax-layer--medium {
  transform: translateY(calc(var(--parallax-offset) * 0.5));
}

.parallax-layer--fast {
  transform: translateY(calc(var(--parallax-offset) * 0.8));
}

/* ============================================================
   RESPONSIVE - 768px
   ============================================================ */
@media (max-width: 768px) {
  .hero-slider {
    height: 75vh;
    min-height: 450px;
  }

  .slide-content h1 {
    font-size: 2.4rem;
  }

  .slide-content p {
    font-size: 1rem;
  }

  .slide-content {
    padding: 30px 20px;
  }

  .arrow {
    width: 44px;
    height: 44px;
    font-size: 16px;
  }

  .arrow.prev { left: 12px; }
  .arrow.next { right: 12px; }

  section {
    padding: 60px 0;
  }

  .section-title h2 {
    font-size: 2rem;
  }

  .page-hero {
    padding: 90px 0 60px;
    min-height: 220px;
  }

  .page-hero h1 {
    font-size: 2rem !important;
  }

  .page-hero .hero-geometric .geo-circle {
    display: none;
  }

  .page-hero .hero-light-sweep {
    display: none;
  }

  .breadcrumb {
    padding: 8px 18px;
    font-size: 0.82rem;
    margin-bottom: 20px;
  }

  .breadcrumb .breadcrumb-sep {
    margin: 0 7px;
  }


  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .counter-value {
    font-size: 2.5rem;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .countries-grid {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  }

  .sustain-hero h1 {
    font-size: 2.2rem;
  }

  .whatsapp-chatbot {
    bottom: 20px;
    right: 20px;
  }

  .wa-fab {
    width: 52px;
    height: 52px;
  }

  .wa-fab-label {
    font-size: 0.75rem;
    padding: 5px 10px;
    right: 60px;
  }

  .feature-strip .container {
    flex-direction: column;
    gap: 16px;
  }

  .feature-strip-item {
    width: 100%;
    justify-content: center;
  }

  .testimonial-card {
    min-width: 280px;
    padding: 28px;
  }

  .product-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }
}

/* ============================================================
   RESPONSIVE - 480px
   ============================================================ */
@media (max-width: 480px) {
  .hero-slider {
    height: 65vh;
    min-height: 380px;
  }

  .slide-content h1 {
    font-size: 1.8rem;
  }

  .slide-content p {
    font-size: 0.9rem;
    margin-bottom: 25px;
  }

  .btn {
    padding: 12px 28px;
    font-size: 0.88rem;
  }

  .section-title h2 {
    font-size: 1.7rem;
  }


  .testimonial-card {
    min-width: 100%;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .stat-card {
    padding: 30px 20px;
  }

  .sustain-card {
    padding: 30px 20px;
  }
}

/* ============================================================
   FORM STYLES - Enhanced
   ============================================================ */
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  transition: all var(--transition);
  background: var(--white);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(76, 175, 80, 0.1), 0 4px 15px rgba(76, 175, 80, 0.05);
}

.contact-form input:hover,
.contact-form textarea:hover,
.contact-form select:hover {
  border-color: var(--gray-300);
}

/* ============================================================
   PRINT STYLES
   ============================================================ */
@media print {
  header, footer, .arrow, .slider-nav, .back-to-top, .whatsapp-chatbot, .feature-strip {
    display: none !important;
  }
  body {
    font-size: 12pt;
    animation: none;
  }
  .reveal, .reveal-left, .reveal-right, .reveal-scale {
    opacity: 1 !important;
    transform: none !important;
  }
  .stagger-children > * {
    opacity: 1 !important;
    transform: none !important;
  }
  section {
    overflow: visible;
  }
}

/* ============================================================
   SELECTION
   ============================================================ */
::selection {
  background: var(--green-light);
  color: var(--white);
}

::-moz-selection {
  background: var(--green-light);
  color: var(--white);
}

/* ============================================================
   ADDITIONAL PREMIUM UTILITIES
   ============================================================ */
.text-shadow-sm {
  text-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.text-shadow-lg {
  text-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.hover-lift {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.gradient-text-green {
  background: linear-gradient(135deg, var(--green-light), var(--green-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-accent {
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes borderGlow {
  0%, 100% {
    box-shadow: 0 0 5px rgba(76, 175, 80, 0.2);
  }
  50% {
    box-shadow: 0 0 20px rgba(76, 175, 80, 0.4), 0 0 40px rgba(76, 175, 80, 0.1);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.6s ease-out forwards;
}

.animate-fade-in-down {
  animation: fadeInDown 0.6s ease-out forwards;
}

.animate-scale-in {
  animation: scaleIn 0.5s ease-out forwards;
}

.animate-border-glow {
  animation: borderGlow 2s ease-in-out infinite;
}

.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }
.delay-500 { animation-delay: 0.5s; }
.delay-600 { animation-delay: 0.6s; }
.delay-700 { animation-delay: 0.7s; }
.delay-800 { animation-delay: 0.8s; }

/* ============================================================
   KEYWORD LINKS - Professional SEO/AEO Internal Links
   ============================================================ */
.keyword-link {
  color: var(--green);
  text-decoration: none;
  font-weight: 600;
  position: relative;
  transition: color 0.2s ease;
}

.keyword-link::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--green);
  transition: width 0.3s ease;
}

.keyword-link:hover {
  color: var(--green-dark);
}

.keyword-link:hover::after {
  width: 100%;
}

/* ============================================================
   ENHANCED PAGE TRANSITIONS
   ============================================================ */
body {
  opacity: 0;
  transition: opacity 0.4s ease;
}

body.page-loaded {
  opacity: 1;
}

/* ============================================================
   ENHANCED REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.revealed,
.reveal-left.revealed,
.reveal-right.revealed,
.reveal-scale.revealed {
  opacity: 1;
  transform: none;
}

.stagger-children > * {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.stagger-children.revealed > *:nth-child(1) { transition-delay: 0.05s; opacity: 1; transform: none; }
.stagger-children.revealed > *:nth-child(2) { transition-delay: 0.12s; opacity: 1; transform: none; }
.stagger-children.revealed > *:nth-child(3) { transition-delay: 0.19s; opacity: 1; transform: none; }
.stagger-children.revealed > *:nth-child(4) { transition-delay: 0.26s; opacity: 1; transform: none; }
.stagger-children.revealed > *:nth-child(5) { transition-delay: 0.33s; opacity: 1; transform: none; }
.stagger-children.revealed > *:nth-child(6) { transition-delay: 0.40s; opacity: 1; transform: none; }
.stagger-children.revealed > *:nth-child(7) { transition-delay: 0.47s; opacity: 1; transform: none; }
.stagger-children.revealed > *:nth-child(8) { transition-delay: 0.54s; opacity: 1; transform: none; }
.stagger-children.revealed > *:nth-child(9) { transition-delay: 0.61s; opacity: 1; transform: none; }
.stagger-children.revealed > *:nth-child(10) { transition-delay: 0.68s; opacity: 1; transform: none; }
.stagger-children.revealed > *:nth-child(11) { transition-delay: 0.75s; opacity: 1; transform: none; }
.stagger-children.revealed > *:nth-child(12) { transition-delay: 0.82s; opacity: 1; transform: none; }

/* ============================================================
   IMAGE HOVER ZOOM - Smooth Scale
   ============================================================ */
.img-hover-zoom {
  overflow: hidden;
  border-radius: var(--radius-md);
}

.img-hover-zoom img {
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.img-hover-zoom:hover img {
  transform: scale(1.06);
}

/* ============================================================
   SECTION DIVIDER LINE
   ============================================================ */
.section-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--green-light), var(--green));
  border-radius: 2px;
  margin: 0 auto 30px;
}

/* ============================================================
   LOADING BODY STATE
   ============================================================ */
body.loading {
  overflow: hidden;
}
