/* =========================================================
   ECO BREEZE EXPORTS — Main Stylesheet
   Aesthetic: Organic Luxury — Deep greens, cream, earth tones
   Fonts: Playfair Display + DM Sans
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400;1,600&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300&family=Noto+Sans+Sinhala:wght@300;400;600;700&display=swap');

/* ─── CSS Variables ─────────────────────────────────────── */
:root {
  --green-1: #699A48;
  --green-2: #4A7A2E;
  --green-3: #2D5016;
  --green-dark: #1A3009;
  --cream: #F3FFF4;
  --cream-2: #EBF5D8;
  --cream-3: #D6E5BE;
  --sage: #8CA57B;
  --sage-light: #C8DDAE;
  --earth: #8B6914;
  --earth-light: #C9A84C;
  --white: #FFFFFF;
  --text-dark: #1A2E0A;
  --text-mid: #3A5220;
  --text-light: #6B8F73;
  --border: #C8DDAE;
  --shadow-sm: 0 2px 12px rgba(105, 154, 72, 0.12);
  --shadow-md: 0 8px 32px rgba(45, 80, 22, 0.15);
  --shadow-lg: 0 20px 60px rgba(26, 48, 9, 0.2);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --font-display: 'Playfair Display', 'Noto Sans Sinhala', Georgia, serif;
  --font-body: 'DM Sans', 'Noto Sans Sinhala', sans-serif;
}

/* ─── Reset & Base ──────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

/* Loading Screen */
/* Premium Page Loader */
#page-loader {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at center, var(--green-2), var(--green-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  transition: transform 0.8s cubic-bezier(0.8, 0, 0.2, 1), opacity 0.8s ease;
}

#page-loader.loaded {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

.loader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.loader-visual {
  position: relative;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}

.loader-ring {
  position: absolute;
  inset: 0;
  border: 2px solid rgba(255, 255, 255, 0.05);
  border-top-color: var(--earth-light);
  border-radius: 50%;
  animation: loaderSpin 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
}

.loader-logo {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
  animation: loaderLogoPulse 2s ease-in-out infinite;
}

.loader-brand {
  display: flex;
  gap: 4px;
  margin-bottom: 12px;
}

.l-char {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 900;
  color: #fff;
  opacity: 0;
  transform: translateY(10px);
  animation: charReveal 0.5s ease forwards;
}

.loader-brand .spacer {
  width: 12px;
}

.l-char:nth-child(1) {
  animation-delay: 0.1s;
}

.l-char:nth-child(2) {
  animation-delay: 0.2s;
}

.l-char:nth-child(3) {
  animation-delay: 0.3s;
}

.l-char:nth-child(5) {
  animation-delay: 0.4s;
}

.l-char:nth-child(6) {
  animation-delay: 0.5s;
}

.l-char:nth-child(7) {
  animation-delay: 0.6s;
}

.l-char:nth-child(8) {
  animation-delay: 0.7s;
}

.l-char:nth-child(9) {
  animation-delay: 0.8s;
}

.l-char:nth-child(10) {
  animation-delay: 0.9s;
}

.loader-status {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: loaderFade 1.5s ease-in-out infinite;
}

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

@keyframes loaderLogoPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.9;
  }

  50% {
    transform: scale(1.05);
    opacity: 1;
  }
}

@keyframes charReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes loaderFade {

  0%,
  100% {
    opacity: 0.4;
  }

  50% {
    opacity: 0.8;
  }
}

/* Leaf Particles */
.leaf-particle {
  position: fixed;
  pointer-events: none;
  z-index: 0;
  opacity: 0.06;
  font-size: 2rem;
  animation: float linear infinite;
}

@keyframes float {
  0% {
    transform: translateY(100vh) rotate(0deg);
    opacity: 0;
  }

  10% {
    opacity: 0.06;
  }

  90% {
    opacity: 0.06;
  }

  100% {
    transform: translateY(-10vh) rotate(360deg);
    opacity: 0;
  }
}

.mobile-bottom-nav {
  display: none;
}

/* ─── Navigation ────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
}

#navbar.scrolled,
#navbar.scrolled-dark {
  background: rgba(26, 48, 9, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 10px 0;
  box-shadow: var(--shadow-md);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo img {
  height: 48px;
  width: 48px;
  object-fit: contain;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
}

.nav-logo-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  letter-spacing: 0.02em;
}

.nav-logo-sub {
  font-size: 0.65rem;
  color: var(--sage-light);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 100px;
  transition: var(--transition);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

/* Language Dropdown */
.lang-dropdown-container {
  position: relative;
  margin-left: 8px;
}

.lang-dropdown-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.lang-dropdown-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
}

.lang-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  background: rgba(26, 48, 9, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  min-width: 180px;
  padding: 8px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 1100;
  backdrop-filter: blur(20px);
}

.lang-dropdown-menu.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.lang-dropdown-item:hover,
.lang-dropdown-item.active {
  background: var(--green-1);
  color: #fff;
}

.lang-code {
  font-size: 0.7rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.1);
  padding: 2px 6px;
  border-radius: 4px;
  min-width: 28px;
  text-align: center;
}

.lang-label {
  font-size: 0.9rem;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

.nav-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-1);
  color: #fff;
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: var(--transition);
}

.nav-whatsapp-btn:hover {
  background: var(--green-2);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

@media (max-width: 1024px) {
  .nav-container {
    gap: 16px;
    padding: 0 20px;
  }

  .nav-link {
    padding: 8px 12px;
    font-size: 0.8rem;
  }

  .nav-whatsapp-btn {
    width: 42px;
    height: 42px;
    padding: 0;
    justify-content: center;
    flex-shrink: 0;
  }

  .nav-whatsapp-btn span {
    display: none;
  }

  .lang-dropdown-btn span,
  .lang-dropdown-btn i:last-child {
    display: none;
  }

  .lang-dropdown-btn {
    padding: 0;
    width: 42px;
    height: 42px;
    justify-content: center;
  }

  .lang-dropdown-menu {
    right: 0;
    left: auto;
    transform: translateY(10px);
  }

  .lang-dropdown-menu.show {
    transform: translateY(0);
  }
}

/* ─── Hero Section ──────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-3) 40%, var(--green-2) 70%, var(--green-1) 100%);
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  display: none !important;
  /* Managed by new background logic */
  background-image:
    radial-gradient(ellipse at 20% 50%, rgba(105, 154, 72, 0.3) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(201, 168, 76, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 60% 80%, rgba(45, 80, 22, 0.4) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  background: url('../images/hero_bg.png') right center / cover no-repeat !important;
  opacity: 1 !important;
  pointer-events: none;
  z-index: 0;
}

.hero-bg-image::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to right,
      rgba(26, 48, 9, 1) 0%,
      rgba(26, 48, 9, 0.85) 30%,
      rgba(26, 48, 9, 0.5) 55%,
      transparent 75%) !important;
}

/* Tablet refinements for bg */
@media (max-width: 1024px) {
  .hero-bg-image {
    background-position: 65% center !important;
  }

  .hero-bg-image::before {
    background: linear-gradient(to bottom,
        rgba(26, 48, 9, 0.92) 0%,
        rgba(26, 48, 9, 0.80) 50%,
        rgba(26, 48, 9, 0.70) 100%) !important;
  }
}

/* Mobile refinements for bg */
@media (max-width: 640px) {
  .hero-bg-image {
    background-position: center center !important;
  }

  .hero-bg-image::before {
    background: rgba(26, 48, 9, 0.88) !important;
  }
}

.hero-bg-image::after {
  display: none !important;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 1280px;
  margin: 0 auto;
  padding: 120px 32px 80px;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 8px 18px;
  border-radius: 100px;
  color: var(--sage-light);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 30px;
  backdrop-filter: blur(5px);
  max-width: 100%;
  white-space: normal !important;
  word-break: break-word;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.2rem);
  font-weight: 950;
  color: #fff;
  line-height: 1.0;
  max-width: 800px;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--earth-light);
  font-family: var(--font-display);
}

.hero-subtitle {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.85);
  max-width: 580px;
  margin-bottom: 48px;
  line-height: 1.8;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 52px;
  padding-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat {
  flex: 1 1 80px;
  min-width: 68px;
}

.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--earth-light);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 4px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}


/* ─── Buttons ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.btn-primary {
  background: var(--earth-light);
  color: var(--green-dark);
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.4);
}

.btn-primary:hover {
  background: #e0b84a;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.5);
}

.btn-primary.btn-lg {
  padding: 18px 40px;
  font-size: 1.05rem;
  box-shadow: 0 15px 35px rgba(201, 168, 76, 0.3);
}


.btn-glass {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  padding: 14px 28px;
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

.btn-outline {
  padding: 14px 28px;
  background: transparent;

  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.7);
  transform: translateY(-2px);
}

.btn-green {
  background: var(--green-1);
  color: #fff;
  box-shadow: var(--shadow-sm);
}

.btn-green:hover {
  background: var(--green-2);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ─── Section Common ────────────────────────────────────── */
.section {
  padding: clamp(60px, 10vw, 70px) 0;
}

.section-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

@media (max-width: 768px) {
  .section-container {
    padding: 0 20px;
  }
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green-1);
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--green-1);
  border-radius: 1px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.15;
  margin-bottom: 20px;
}

.section-title em {
  font-style: italic;
  color: var(--green-1);
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-light);
  max-width: 560px;
  line-height: 1.7;
}

/* ─── About Section ─────────────────────────────────────── */
.about-section {
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--green-3), var(--green-1), var(--earth-light));
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-images {
  position: relative;
}

.about-img-main {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  position: relative;
  z-index: 1;
}

.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about-img-main:hover img {
  transform: scale(1.04);
}

.about-img-secondary {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 45%;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 4px solid var(--white);
  box-shadow: var(--shadow-md);
  aspect-ratio: 1;
  z-index: 2;
}

.about-img-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-badge-float {
  position: absolute;
  top: -16px;
  left: -16px;
  width: 110px;
  height: 110px;
  background: linear-gradient(135deg, var(--green-1), var(--green-2));
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 8px 28px rgba(45, 80, 22, 0.35);
  border: 4px solid var(--white);
  z-index: 10;
  animation: badgePop 0.6s 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@media (max-width: 768px) {
  .about-badge-float {
    width: 80px;
    height: 80px;
    top: -10px;
    left: -10px;
  }

  .about-badge-float .num {
    font-size: 1.2rem;
  }
}

@keyframes badgePop {
  from {
    transform: scale(0) rotate(-15deg);
    opacity: 0;
  }

  to {
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }
}

.about-badge-float .num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 900;
  line-height: 1;
}

.about-badge-float .label {
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.2;
}

.about-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.pillar-card {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 20px 16px;
  text-align: center;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.pillar-card:hover {
  background: var(--green-1);
  border-color: var(--green-1);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.pillar-card:hover .pillar-icon,
.pillar-card:hover .pillar-title,
.pillar-card:hover .pillar-text {
  color: #fff;
}

.pillar-icon {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.pillar-title {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
  transition: var(--transition);
}

.pillar-text {
  font-size: 0.75rem;
  color: var(--text-light);
  transition: var(--transition);
}

/* ─── Products Section ──────────────────────────────────── */
.products-section {
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.products-section::before {
  content: '🌿🌿🌿';
  position: absolute;
  top: 60px;
  right: 40px;
  font-size: 4rem;
  opacity: 0.04;
  pointer-events: none;
  letter-spacing: 20px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 60px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  border: 1px solid var(--border);
  text-decoration: none;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.product-card-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.product-card:hover .product-card-image img {
  transform: scale(1.08);
}

.product-card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--white);
  border-radius: 100px;
  padding: 5px 12px;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--green-2);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: var(--shadow-sm);
}

.product-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card-scientific {
  font-size: 0.7rem;
  font-style: italic;
  color: var(--text-light);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.product-card-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
  line-height: 1.3;
}

.product-card-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}

.benefit-tag {
  font-size: 0.68rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
  background: var(--cream);
  color: var(--green-2);
  border: 1px solid var(--border);
  letter-spacing: 0.04em;
}

.product-card-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-card-cta {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green-1);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.product-card:hover .product-card-cta {
  color: var(--green-2);
  gap: 10px;
}

.natural-badge {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--green-1);
  border: 1px solid var(--green-1);
  border-radius: 100px;
  padding: 3px 8px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ─── Benefits Section ──────────────────────────────────── */
.benefits-section {
  background: var(--green-3);
  position: relative;
  overflow: hidden;
}

.benefits-section::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(ellipse at 80% 50%, rgba(105, 154, 72, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.benefits-section .section-label {
  color: var(--sage-light);
}

.benefits-section .section-label::before {
  background: var(--sage-light);
}

.benefits-section .section-title {
  color: #fff;
}

.benefits-section .section-subtitle {
  color: rgba(255, 255, 255, 0.65);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.benefit-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  /* Animation initial state */
  opacity: 0;
  transform: translateY(50px) scale(0.92);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--earth-light);
  transition: var(--transition);
}

.benefit-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.benefit-card.benefit-in:hover {
  transform: translateY(-8px) scale(1.02);
}

.benefit-card:hover::before {
  height: 100%;
}

.benefit-icon {
  font-size: 2.8rem;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.2));
  transition: var(--transition);
}

.benefit-card:hover .benefit-icon {
  transform: scale(1.15) rotate(5deg);
}

.benefit-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}

.benefit-desc {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin-bottom: 0;
}

/* Benefits section animation — CSS-driven, no GSAP needed */
.benefits-header {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.benefits-header.benefits-in {
  opacity: 1;
  transform: translateY(0);
}

.benefit-card.benefit-in {
  opacity: 1;
  transform: translateY(0) scale(1);
}


/* ─── Exports Section ───────────────────────────────────── */
.exports-section {
  background: var(--white);
}

.exports-map-container {
  margin-top: 60px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--cream);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  position: relative;
  height: 460px;
}

#world-map-canvas {
  width: 100%;
  height: 100%;
}

.country-flags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
  justify-content: center;
}

.country-flag-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 8px 16px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-mid);
  transition: var(--transition);
  animation: fadeInScale 0.5s ease both;
}

.country-flag-chip:hover {
  background: var(--green-1);
  color: #fff;
  border-color: var(--green-1);
  transform: translateY(-2px);
}

/* ─── Testimonials Section ──────────────────────────────── */
.testimonials-section {
  background: var(--cream);
  overflow: hidden;
}

.testimonials-track-wrapper {
  margin-top: 60px;
  position: relative;
  overflow: hidden;
}

.testimonials-track-wrapper::before,
.testimonials-track-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  width: 80px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.testimonials-track-wrapper::before {
  left: 0;
  background: linear-gradient(90deg, var(--cream), transparent);
}

.testimonials-track-wrapper::after {
  right: 0;
  background: linear-gradient(-90deg, var(--cream), transparent);
}

.testimonials-track {
  display: flex;
  gap: 24px;
  animation: scrollTestimonials 30s linear infinite;
  width: max-content;
}

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

@keyframes scrollTestimonials {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  width: 360px;
  flex-shrink: 0;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
  color: var(--earth-light);
  font-size: 1rem;
}

.testimonial-text {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green-1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #fff;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 0.9rem;
}

.testimonial-country {
  font-size: 0.78rem;
  color: var(--text-light);
}

/* ─── Contact Section ───────────────────────────────────── */
.contact-section {
  background: var(--green-dark);
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  inset: 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='%23699a48' fill-opacity='0.07'%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");
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.contact-info .section-label {
  color: var(--sage-light);
}

.contact-info .section-label::before {
  background: var(--sage-light);
}

.contact-info .section-title {
  color: #fff;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 36px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-item-icon {
  width: 48px;
  height: 48px;
  background: rgba(105, 154, 72, 0.2);
  border: 1px solid rgba(105, 154, 72, 0.3);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-item-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 4px;
}

.contact-item-value {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
}

.contact-item-value a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: var(--transition);
}

.contact-item-value a:hover {
  color: var(--earth-light);
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 32px;
}

.social-link {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  text-decoration: none;
  transition: var(--transition);
}

.social-link:hover {
  background: var(--green-1);
  border-color: var(--green-1);
  color: #fff;
  transform: translateY(-3px);
}

/* Contact Form */
.contact-form-wrapper {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  padding: 40px;
  backdrop-filter: blur(10px);
}

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

.form-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.form-input,
.form-textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-size: 0.9rem;
  color: #fff;
  font-family: var(--font-body);
  transition: var(--transition);
  outline: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--green-1);
  background: rgba(105, 154, 72, 0.1);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

/* ─── Footer ────────────────────────────────────────────── */
footer {
  background: var(--green-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 40px 0;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo img {
  height: 40px;
  width: 40px;
  object-fit: contain;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.15);
}

.footer-logo-text {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
}

.footer-copy {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
}

.footer-reg {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.35);
}

/* ─── Product View Page ─────────────────────────────────── */
.product-hero {
  padding: 140px 0 80px;
  background: var(--cream);
  position: relative;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.product-detail-image {
  position: sticky;
  top: 100px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 1;
}

.product-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-detail-meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.product-detail-name {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 8px;
  line-height: 1.1;
}

.product-detail-scientific {
  font-size: 0.9rem;
  font-style: italic;
  color: var(--text-light);
  margin-bottom: 24px;
}

.product-detail-description {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 32px;
}

.detail-section-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--border);
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}

.benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.5;
}

.benefits-list li::before {
  content: '✓';
  color: var(--green-1);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.usage-steps {
  counter-reset: steps;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.usage-step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.6;
}

.usage-step-num {
  counter-increment: steps;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--green-1);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.75rem;
  flex-shrink: 0;
}

.related-products {
  margin-top: 80px;
  padding-top: 60px;
  border-top: 2px solid var(--border);
}

/* ─── Page Breadcrumb ───────────────────────────────────── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 32px;
}

.breadcrumb a {
  color: var(--green-1);
  text-decoration: none;
  transition: var(--transition);
}

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

.breadcrumb span {
  color: var(--text-light);
}

/* ─── Animations ────────────────────────────────────────── */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.9);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

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

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

.reveal-delay-5 {
  transition-delay: 0.5s;
}

/* ─── Responsive ────────────────────────────────────────── */
/* Hero Scroll Indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 700;
  z-index: 3;
}

.mouse {
  width: 26px;
  height: 42px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  position: relative;
}

.wheel {
  width: 4px;
  height: 8px;
  background: var(--earth-light);
  border-radius: 2px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollWheel 1.6s ease-in-out infinite;
}

@keyframes scrollWheel {
  0% {
    transform: translateX(-50%) translateY(0);
    opacity: 0;
  }

  30% {
    opacity: 1;
  }

  100% {
    transform: translateX(-50%) translateY(15px);
    opacity: 0;
  }
}

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

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.delay-150 {
  animation-delay: 150ms;
}

.delay-300 {
  animation-delay: 300ms;
}

.delay-500 {
  animation-delay: 500ms;
}

.delay-700 {
  animation-delay: 700ms;
}

.animate-fadeInUp {
  animation: fadeInUp 0.8s ease both;
}

/* ─── Hero Background Animations ───────────────────────── */
.export-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  overflow: hidden;
}

.export-line {
  position: absolute;
  background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.2), transparent);
  height: 1px;
  width: 100%;
  transform: rotate(-15deg);
}

.line-1 {
  top: 30%;
  animation: exportLineMove 6s linear infinite;
}

.line-2 {
  top: 50%;
  opacity: 0.5;
  animation: exportLineMove 8s linear infinite reverse;
}

.line-3 {
  top: 70%;
  animation: exportLineMove 10s linear infinite;
}

@keyframes exportLineMove {
  0% {
    transform: translateX(-100%) rotate(-15deg);
  }

  100% {
    transform: translateX(100%) rotate(-15deg);
  }
}

.hero-leaf-1 {
  z-index: 3;
  top: 15%;
  left: 5%;
  font-size: 2.5rem;
  opacity: 0.15;
  animation: heroLeafFloat 8s ease-in-out infinite;
}

.hero-leaf-2 {
  z-index: 3;
  bottom: 20%;
  left: 40%;
  font-size: 2.5rem;
  opacity: 0.15;
  animation: heroLeafFloat 10s ease-in-out infinite-reverse;
}

.hero-leaf-3 {
  z-index: 3;
  top: 20%;
  right: 10%;
  font-size: 3.5rem;
  opacity: 0.15;
  animation: heroLeafFloat 12s ease-in-out infinite;
}

@keyframes heroLeafFloat {

  0%,
  100% {
    transform: translateY(0) rotate(0);
  }

  50% {
    transform: translateY(-20px) rotate(10deg);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.revealed {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

.reveal-delay-5 {
  transition-delay: 0.5s;
}

@media (max-width: 1024px) {

  .hero-leaf-1,
  .hero-leaf-2 {
    opacity: 0.1;
  }

  /* About Grid Responsive */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }

  .about-content {
    order: 2;
  }

  .about-images {
    order: 1;
    max-width: 500px;
    margin: 0 auto;
  }

  .about-section .section-label {
    justify-content: center;
  }

  .about-section .section-label::before {
    display: none;
  }

  .about-section .section-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .about-pillars {
    grid-template-columns: repeat(3, 1fr);
  }

  .contact-grid {
    gap: 40px;
  }
}

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

  .about-img-secondary {
    bottom: -15px;
    right: -15px;
  }

  .contact-info {
    text-align: left;
  }

  .contact-info .section-label {
    justify-content: flex-start;
  }

  .contact-item {
    justify-content: flex-start;
  }

  .social-links {
    justify-content: flex-start;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }
}

@media (max-width: 480px) {
  .about-pillars {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }



  /* Bottom Nav Overrides */
  .mobile-bottom-nav {
    display: flex;
    position: fixed;
    bottom: 24px;
    left: 20px;
    right: 20px;
    background: rgba(26, 48, 9, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 100px;
    height: 72px;
    z-index: 1000;
    justify-content: space-around;
    align-items: center;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    padding: 0 10px;
  }

  .mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.5);
    transition: var(--transition);
    gap: 4px;
    flex: 1;
  }

  .mobile-nav-item i {
    font-size: 1.25rem;
    transition: var(--transition);
  }

  .mobile-nav-item span {
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }

  .mobile-nav-item.active {
    color: var(--earth-light);
  }

  .mobile-nav-item.active i {
    transform: translateY(-4px);
    filter: drop-shadow(0 0 8px rgba(201, 168, 76, 0.5));
  }

  /* Adjust body padding so content isn't hidden by bottom nav */
  body {
    padding-bottom: 0;
  }
}

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

}

/* ─── Scroll Progress Bar ───────────────────────────────── */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-1), var(--earth-light));
  z-index: 9998;
  transition: width 0.1s linear;
}

/* ─── Back to Top ───────────────────────────────────────── */
#back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: var(--green-1);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
}

#back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

#back-to-top:hover {
  background: var(--green-2);
  transform: translateY(-4px);
}

/* ─── WhatsApp Float ────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 90px;
  right: 32px;
  width: 52px;
  height: 52px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  z-index: 998;
  animation: pulse 2s ease infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.2);
  }

  50% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 12px rgba(37, 211, 102, 0);
  }
}

/* ─── Exports Page ──────────────────────────────────────── */
.export-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin: 60px 0;
}

.export-stat-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  transition: var(--transition);
}

.export-stat-card:hover {
  background: var(--green-1);
  border-color: var(--green-1);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.export-stat-card:hover .export-stat-num,
.export-stat-card:hover .export-stat-label {
  color: #fff;
}

.export-stat-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.export-stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--green-1);
  transition: var(--transition);
}

.export-stat-label {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 4px;
  transition: var(--transition);
}

/* ─── Feedback Page ─────────────────────────────────────── */
.feedback-hero {
  background: var(--green-3);
  padding: 140px 0 80px;
  text-align: center;
}

.feedback-hero .section-title {
  color: #fff;
}

.feedback-hero .section-subtitle {
  color: rgba(255, 255, 255, 0.7);
  margin: 0 auto;
}

.feedback-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 60px;
}

.feedback-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.feedback-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}

@media (max-width: 900px) {
  .feedback-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .export-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}

@media (max-width: 600px) {
  .feedback-grid {
    grid-template-columns: 1fr;
  }

  .export-stats-grid {
    grid-template-columns: 1fr;
  }

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

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

  .about-pillars {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 1.8rem;
  }


  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .contact-form-wrapper {
    padding: 24px;
    border-radius: var(--radius-lg);
  }
}

/* Utilities for Responsive Handling */
.stack-on-mobile {
  display: flex;
  flex-direction: column;
}

@media (min-width: 769px) {
  .stack-on-mobile {
    flex-direction: row;
  }
}

.responsive-grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 769px) {
  .responsive-grid-2 {
    grid-template-columns: 1fr 1fr;
  }
}

/* ─── Gallery & Leadership Section ──────────────────────── */
.gallery-section {
  background: var(--cream-2);
  position: relative;
  overflow: hidden;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.gallery-slider-col {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 16/10;
}

.company-swiper {
  width: 100%;
  height: 100%;
}

.gallery-slide-item {
  position: relative;
  width: 100%;
  height: 100%;
}

.gallery-slide-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.swiper-slide-active .gallery-slide-item img {
  transform: scale(1.05);
}

.slide-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px;
  background: linear-gradient(transparent, rgba(26, 48, 9, 0.9));
  color: #fff;
  z-index: 2;
}

.slide-overlay h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.slide-overlay p {
  font-size: 0.95rem;
  opacity: 0.85;
}

.swiper-button-next,
.swiper-button-prev {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  width: 50px !important;
  height: 50px !important;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 18px !important;
}

.swiper-pagination-bullet {
  background: #fff !important;
  opacity: 0.5 !important;
}

.swiper-pagination-bullet-active {
  background: var(--earth-light) !important;
  opacity: 1 !important;
  width: 24px !important;
  border-radius: 4px !important;
}

.gallery-description p {
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 20px;
}

.leadership-stats {
  display: flex;
  gap: 32px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.l-stat {
  display: flex;
  flex-direction: column;
}

.l-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--green-1);
  line-height: 1;
}

.l-text {
  font-size: 0.8rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 8px;
}

@media (max-width: 480px) {
  .leadership-stats {
    flex-direction: column;
    gap: 20px;
  }
}