/* ===== FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

/* ===== CSS CUSTOM PROPERTIES ===== */
:root {
  --green-900: #0a1f10;
  --green-800: #0f2e18;
  --green-700: #143d20;
  --green-600: #1a5c2e;
  --green-500: #22753b;
  --green-400: #2e9e50;
  --green-300: #4fc96f;
  --green-200: #8ae0a0;
  --green-100: #c5f0d0;
  --green-50: #eafaef;

  --gold-500: #c9a84c;
  --gold-400: #d4b96a;
  --gold-300: #e0ca88;
  --gold-200: #eeddb3;
  --gold-100: #f7eeda;

  --earth-900: #1a1108;
  --earth-800: #2e1f0f;
  --earth-700: #4a3520;
  --earth-600: #6b5035;
  --earth-500: #8b6a4a;

  --bg-primary: #0a0f0d;
  --bg-secondary: #111816;
  --bg-card: rgba(20, 35, 28, 0.6);
  --bg-glass: rgba(20, 35, 28, 0.4);

  --text-primary: #f0f5f2;
  --text-secondary: #a8c4b0;
  --text-muted: #6a8a74;

  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.4);
  --shadow-glow: 0 0 30px rgba(46, 158, 80, 0.15);

  --transition-fast: 0.2s ease;
  --transition-base: 0.35s ease;
  --transition-slow: 0.6s cubic-bezier(0.22, 1, 0.36, 1);

  --container: 1200px;
  --container-wide: 1400px;
}

/* ===== LIGHT THEME ===== */
[data-theme="light"] {
  --bg-primary: #f5f7f4;
  --bg-secondary: #eaf0e8;
  --bg-card: rgba(255, 255, 255, 0.85);
  --bg-glass: rgba(255, 255, 255, 0.6);

  --text-primary: #1a2e1f;
  --text-secondary: #4a6b52;
  --text-muted: #7c9a84;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.1);
  --shadow-glow: 0 0 30px rgba(46, 158, 80, 0.08);
}

[data-theme="light"] .navbar.scrolled {
  background: rgba(245, 247, 244, 0.95);
  border-bottom: 1px solid rgba(46, 158, 80, 0.12);
}

[data-theme="light"] .navbar-menu a:hover,
[data-theme="light"] .navbar-menu a.active {
  background: rgba(46, 158, 80, 0.08);
}

[data-theme="light"] .hamburger span {
  background: var(--text-primary);
}

[data-theme="light"] .hero-overlay {
  background: linear-gradient(135deg,
      rgba(245, 247, 244, 0.88) 0%,
      rgba(234, 240, 232, 0.75) 40%,
      rgba(200, 230, 210, 0.65) 70%,
      rgba(245, 247, 244, 0.85) 100%);
}

[data-theme="light"] .btn-outline {
  border-color: rgba(26, 92, 46, 0.25);
  color: var(--text-primary);
}

[data-theme="light"] .btn-outline:hover {
  border-color: var(--green-500);
  color: var(--green-600);
  background: rgba(46, 158, 80, 0.06);
}

[data-theme="light"] .stat-item {
  background: none;
  border: none;
  box-shadow: none;
}

[data-theme="light"] .hero-stats {
  background: rgba(245, 247, 244, 0.85);
  border-top: 1px solid rgba(46, 158, 80, 0.1);
}

[data-theme="light"] .stat-number {
  color: var(--green-500);
}

[data-theme="light"] .stat-label {
  color: var(--text-secondary);
}

[data-theme="light"] .why-card,
[data-theme="light"] .category-card,
[data-theme="light"] .product-card,
[data-theme="light"] .advantage-card,
[data-theme="light"] .contact-card,
[data-theme="light"] .contact-form-wrap,
[data-theme="light"] .waste-card,
[data-theme="light"] .blog-card,
[data-theme="light"] .faq-item,
[data-theme="light"] .gallery-item,
[data-theme="light"] .process-step,
[data-theme="light"] .callback-form,
[data-theme="light"] .distributor-box {
  background: var(--bg-card);
  border-color: rgba(46, 158, 80, 0.1);
  box-shadow: var(--shadow-sm);
}

[data-theme="light"] .section-title {
  background: linear-gradient(135deg, var(--text-primary) 0%, var(--green-600) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

[data-theme="light"] .page-hero {
  background: linear-gradient(135deg, #dbeadf 0%, #c5dcc8 50%, #dbeadf 100%);
}

[data-theme="light"] .page-hero-title {
  color: var(--text-primary);
}

[data-theme="light"] .footer {
  background: #1a2e1f;
  color: #f0f5f2;
}

[data-theme="light"] .footer h4 {
  color: #f0f5f2;
}

[data-theme="light"] .footer p,
[data-theme="light"] .footer a,
[data-theme="light"] .footer li {
  color: #a8c4b0;
}

[data-theme="light"] .footer-bottom {
  border-color: rgba(255, 255, 255, 0.1);
  color: #6a8a74;
}

[data-theme="light"] .video-card {
  box-shadow: var(--shadow-md);
}

[data-theme="light"] .lightbox {
  background: rgba(255, 255, 255, 0.95);
}

[data-theme="light"] input,
[data-theme="light"] textarea,
[data-theme="light"] select {
  background: rgba(255, 255, 255, 0.9) !important;
  border-color: rgba(46, 158, 80, 0.15) !important;
  color: var(--text-primary) !important;
}

[data-theme="light"] .navbar-menu.active {
  background: rgba(245, 247, 244, 0.98);
}

/* ===== THEME TOGGLE BUTTON ===== */
.theme-toggle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(46, 158, 80, 0.1);
  border: 1px solid rgba(46, 158, 80, 0.15);
  cursor: pointer;
  transition: all var(--transition-base);
  color: var(--green-400);
  font-size: 1.15rem;
  flex-shrink: 0;
}

.theme-toggle:hover {
  background: rgba(46, 158, 80, 0.2);
  border-color: var(--green-400);
  transform: rotate(30deg);
}

.theme-toggle .icon-sun,
.theme-toggle .icon-moon {
  display: none;
  line-height: 1;
}

/* Dark mode = show sun icon (to switch to light) */
.theme-toggle .icon-sun {
  display: block;
}

.theme-toggle .icon-moon {
  display: none;
}

[data-theme="light"] .theme-toggle .icon-sun {
  display: none;
}

[data-theme="light"] .theme-toggle .icon-moon {
  display: block;
}

/* ===== RESET ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

img {
  max-width: 100%;
  display: block;
}

ul,
ol {
  list-style: none;
}

button {
  border: none;
  outline: none;
  cursor: pointer;
  font-family: var(--font-body);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
  font-weight: 700;
}

/* ===== UTILITIES ===== */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.container-wide {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
  position: relative;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green-400);
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  width: 32px;
  height: 2px;
  background: var(--green-400);
  border-radius: 2px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--text-primary) 0%, var(--green-200) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 640px;
  line-height: 1.8;
}

.text-center {
  text-align: center;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, var(--green-600), var(--green-500));
  color: white;
  border: none;
  box-shadow: 0 4px 15px rgba(34, 117, 59, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--green-500), var(--green-400));
  box-shadow: 0 6px 25px rgba(34, 117, 59, 0.5);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
  border-color: var(--green-400);
  color: var(--green-300);
  background: rgba(46, 158, 80, 0.1);
  transform: translateY(-2px);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  color: var(--green-900);
  font-weight: 700;
}

.btn-gold:hover {
  box-shadow: 0 6px 25px rgba(201, 168, 76, 0.4);
  transform: translateY(-2px);
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all var(--transition-base);
}

.navbar.scrolled {
  background: rgba(10, 15, 13, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(46, 158, 80, 0.1);
  padding: 10px 0;
}

.navbar .container-wide {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-logo img {
  height: 56px;
  width: auto;
  transition: height var(--transition-base);
}

.navbar.scrolled .navbar-logo img {
  height: 44px;
}

.navbar-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.navbar-menu a {
  padding: 10px 18px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  position: relative;
  white-space: nowrap;
}

.navbar-menu a:hover,
.navbar-menu a.active {
  color: var(--green-300);
  background: rgba(46, 158, 80, 0.08);
}

.navbar-menu a.active::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background: var(--green-400);
  border-radius: 2px;
}

.navbar-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.navbar-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
}

.navbar-phone:hover {
  color: var(--green-300);
}

.navbar-phone svg {
  width: 18px;
  height: 18px;
  color: var(--green-400);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  padding: 8px;
  cursor: pointer;
}

.hamburger span {
  width: 26px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition-base);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(10, 15, 13, 0.92) 0%,
      rgba(10, 31, 16, 0.85) 40%,
      rgba(20, 61, 32, 0.75) 70%,
      rgba(10, 15, 13, 0.88) 100%);
  z-index: 1;
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
}

.hero-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--green-400);
  border-radius: 50%;
  opacity: 0;
  animation: floatParticle 8s infinite;
}

@keyframes floatParticle {
  0% {
    opacity: 0;
    transform: translateY(100vh) scale(0);
  }

  10% {
    opacity: 0.6;
  }

  90% {
    opacity: 0.6;
  }

  100% {
    opacity: 0;
    transform: translateY(-10vh) scale(1);
  }
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 720px;
  padding: 120px 0 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(46, 158, 80, 0.12);
  border: 1px solid rgba(46, 158, 80, 0.2);
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green-300);
  margin-bottom: 28px;
  backdrop-filter: blur(10px);
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--green-400);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(1.5);
  }
}

.hero-title {
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.hero-title .highlight {
  background: linear-gradient(135deg, var(--green-300), var(--green-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-title .gold {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-300));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 560px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  background: rgba(10, 15, 13, 0.7);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(46, 158, 80, 0.1);
}

.hero-stats .container-wide {
  display: flex;
  justify-content: center;
  gap: 80px;
  padding: 30px 24px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--green-300);
  line-height: 1;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 6px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ===== PAGE HERO (INNER PAGES) ===== */
.page-hero {
  position: relative;
  padding: 180px 0 100px;
  background: linear-gradient(135deg, var(--bg-primary) 0%, var(--green-900) 50%, var(--bg-primary) 100%);
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(46, 158, 80, 0.08) 0%, transparent 70%);
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.06) 0%, transparent 70%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
}

.page-hero .breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.page-hero .breadcrumb a {
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}

.page-hero .breadcrumb a:hover {
  color: var(--green-300);
}

.page-hero .breadcrumb .separator {
  color: var(--text-muted);
}

.page-hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--text-primary), var(--green-200));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-hero-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.7;
}

/* ===== ABOUT SECTION (HOMEPAGE) ===== */
.about-section {
  background: var(--bg-secondary);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image-wrap {
  position: relative;
}

.about-image-wrap img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.about-image-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: linear-gradient(135deg, var(--green-600), var(--green-500));
  padding: 20px 28px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  text-align: center;
}

.about-image-badge .number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: white;
}

.about-image-badge .label {
  font-size: 0.75rem;
  color: var(--green-100);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-text p {
  color: var(--text-secondary);
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
  margin-bottom: 36px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--bg-glass);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(46, 158, 80, 0.1);
}

.about-feature-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--green-600), var(--green-500));
  border-radius: var(--radius-sm);
  color: white;
  font-size: 1rem;
  flex-shrink: 0;
}

.about-feature span {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-primary);
}

/* ===== PRODUCTS SECTION ===== */
.products-section {
  background: var(--bg-primary);
  position: relative;
}

.products-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(46, 158, 80, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.category-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid rgba(46, 158, 80, 0.08);
  transition: all var(--transition-slow);
  cursor: pointer;
}

.category-card:hover {
  transform: translateY(-8px);
  border-color: rgba(46, 158, 80, 0.2);
  box-shadow: var(--shadow-glow);
}

.category-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.category-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.category-card:hover .category-card-img img {
  transform: scale(1.08);
}

.category-card-body {
  padding: 24px;
}

.category-card-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.category-card-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.category-card-arrow {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 15, 13, 0.6);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  color: var(--green-300);
  opacity: 0;
  transform: translate(-8px, 8px);
  transition: all var(--transition-base);
}

.category-card:hover .category-card-arrow {
  opacity: 1;
  transform: translate(0, 0);
}

/* ===== PRODUCT CARDS (Products Page Grid) ===== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 60px;
}

.product-card {
  background: var(--bg-card);
  border: 1px solid rgba(46, 158, 80, 0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-slow);
  position: relative;
}

.product-card:hover {
  transform: translateY(-8px);
  border-color: rgba(46, 158, 80, 0.2);
  box-shadow: 0 12px 40px rgba(46, 158, 80, 0.12);
}

.product-card-img {
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: linear-gradient(135deg, #f5f5f0 0%, #e8e8e0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.product-card-img img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  transition: transform var(--transition-slow);
}

.product-card:hover .product-card-img img {
  transform: scale(1.06);
}

.product-card-body {
  padding: 24px;
  text-align: center;
}

.product-card-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.product-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green-400);
  transition: all var(--transition-fast);
}

.product-card-link:hover {
  color: var(--green-300);
  gap: 10px;
}

/* ===== VIDEO SECTION ===== */
.video-section {
  background: var(--bg-secondary);
  overflow: hidden;
}

.video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 60px;
}

.video-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/9;
  border: 1px solid rgba(46, 158, 80, 0.1);
}

.video-card iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.video-thumb-link {
  display: block;
  text-decoration: none;
  cursor: pointer;
}

.video-thumb-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.video-thumb-link:hover img {
  transform: scale(1.05);
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: rgba(0, 0, 0, 0.55);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 2;
}

.video-play-btn svg {
  margin-left: 4px;
}

.video-thumb-link:hover .video-play-btn {
  background: var(--green-600);
  transform: translate(-50%, -50%) scale(1.1);
}

.video-card-label {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-top: 16px;
  text-align: center;
}

/* ===== WHY CHOOSE US ===== */
.why-section {
  background: var(--bg-primary);
  position: relative;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 60px;
}

.why-card {
  background: var(--bg-card);
  border: 1px solid rgba(46, 158, 80, 0.08);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  transition: all var(--transition-slow);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-600), var(--green-400));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-slow);
}

.why-card:hover::before {
  transform: scaleX(1);
}

.why-card:hover {
  transform: translateY(-4px);
  border-color: rgba(46, 158, 80, 0.15);
  box-shadow: var(--shadow-glow);
}

.why-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(46, 158, 80, 0.15), rgba(46, 158, 80, 0.05));
  border-radius: var(--radius-md);
  margin-bottom: 24px;
  font-size: 1.5rem;
  color: var(--green-400);
}

.why-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.why-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ===== ABOUT PAGE ===== */
.about-story {
  background: var(--bg-secondary);
}

.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-story-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.founder-section {
  background: var(--bg-primary);
}

.founder-grid {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 60px;
  align-items: start;
}

.founder-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

.founder-image img {
  width: 100%;
  border-radius: var(--radius-lg);
}

.founder-info h3 {
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.founder-info .role {
  color: var(--green-400);
  font-weight: 600;
  margin-bottom: 24px;
  display: block;
}

.founder-info p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-bottom: 16px;
}

.advantages-section {
  background: var(--bg-secondary);
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.advantage-card {
  background: var(--bg-card);
  border: 1px solid rgba(46, 158, 80, 0.08);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all var(--transition-slow);
}

.advantage-card:hover {
  transform: translateY(-4px);
  border-color: rgba(46, 158, 80, 0.18);
  box-shadow: var(--shadow-glow);
}

.advantage-card .icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(46, 158, 80, 0.15), rgba(46, 158, 80, 0.05));
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  font-size: 1.3rem;
}

.advantage-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.advantage-card p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ===== CONTACT PAGE ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  margin-top: 60px;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-card {
  background: var(--bg-card);
  border: 1px solid rgba(46, 158, 80, 0.08);
  border-radius: var(--radius-md);
  padding: 28px;
  display: flex;
  gap: 20px;
  transition: all var(--transition-base);
}

.contact-card:hover {
  border-color: rgba(46, 158, 80, 0.18);
  transform: translateX(4px);
  box-shadow: var(--shadow-glow);
}

.contact-card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--green-600), var(--green-500));
  border-radius: var(--radius-md);
  color: white;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-card h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text-primary);
}

.contact-card p,
.contact-card a {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.contact-card a:hover {
  color: var(--green-300);
}

.contact-form-wrap {
  background: var(--bg-card);
  border: 1px solid rgba(46, 158, 80, 0.08);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.contact-form-wrap h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.contact-form-wrap .form-desc {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 32px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  background: rgba(10, 15, 13, 0.5);
  border: 1px solid rgba(46, 158, 80, 0.12);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: all var(--transition-fast);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--green-400);
  box-shadow: 0 0 0 3px rgba(46, 158, 80, 0.15), var(--shadow-glow);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit-btn {
  width: 100%;
  padding: 16px;
  font-size: 1rem;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.social-link {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-glass);
  border: 1px solid rgba(46, 158, 80, 0.1);
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  font-size: 1.1rem;
  transition: all var(--transition-fast);
}

.social-link:hover {
  background: var(--green-600);
  color: white;
  border-color: var(--green-500);
  transform: translateY(-2px);
}

[data-theme="light"] .footer .social-link {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.15);
  color: var(--text-secondary);
}

[data-theme="light"] .footer .social-link:hover {
  background: var(--green-500);
  color: white;
  border-color: var(--green-400);
}

.map-section {
  margin-top: 60px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(46, 158, 80, 0.1);
}

.map-section iframe {
  width: 100%;
  height: 400px;
  border: none;
  filter: grayscale(0.3) brightness(0.8);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid rgba(46, 158, 80, 0.08);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
}

.footer-brand p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  margin-top: 16px;
  margin-bottom: 24px;
  line-height: 1.7;
}

.footer-brand img {
  height: 44px;
}

.footer h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.85rem;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--text-secondary);
  font-size: 0.92rem;
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-links a:hover {
  color: var(--green-300);
  padding-left: 4px;
}

.footer-contact li {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  color: var(--text-secondary);
  font-size: 0.92rem;
  align-items: flex-start;
}

.footer-contact-icon {
  width: 20px;
  height: 20px;
  color: var(--green-400);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-newsletter p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  margin-bottom: 16px;
}

.newsletter-form {
  display: flex;
  gap: 8px;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 16px;
  background: rgba(10, 15, 13, 0.5);
  border: 1px solid rgba(46, 158, 80, 0.12);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-size: 0.9rem;
  outline: none;
}

.newsletter-form input:focus {
  border-color: var(--green-400);
}

.newsletter-form button {
  padding: 12px 24px;
  background: linear-gradient(135deg, var(--green-600), var(--green-500));
  color: white;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all var(--transition-fast);
}

.newsletter-form button:hover {
  background: linear-gradient(135deg, var(--green-500), var(--green-400));
}

.footer-bottom {
  border-top: 1px solid rgba(46, 158, 80, 0.08);
  padding: 24px 0;
  margin-top: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-bottom a {
  color: var(--green-400);
}

.footer-bottom a:hover {
  color: var(--green-300);
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .about-grid,
  .about-story-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .founder-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .why-grid,
  .advantages-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-stats .container-wide {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 70px 0;
  }

  .navbar-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    height: -webkit-fill-available;
    background: rgba(10, 15, 13, 0.97);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    z-index: 999;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: env(safe-area-inset-top, 20px) 20px env(safe-area-inset-bottom, 20px);
    box-sizing: border-box;
  }

  .navbar-menu.active {
    display: flex;
  }

  .navbar-menu a {
    font-size: 1.2rem;
    padding: 14px 24px;
    width: 100%;
    text-align: center;
  }

  .hamburger {
    display: flex;
    z-index: 1001;
  }

  .navbar-phone {
    display: none;
  }

  .hero-content {
    padding: 140px 0 120px;
  }

  .hero-stats .container-wide {
    flex-wrap: wrap;
    gap: 24px;
    justify-content: space-around;
  }

  .stat-item {
    min-width: 100px;
  }

  .categories-grid {
    grid-template-columns: 1fr;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .video-grid {
    grid-template-columns: 1fr;
  }

  .why-grid,
  .advantages-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .page-hero {
    padding: 140px 0 70px;
  }

  .about-features {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.2rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats .container-wide {
    gap: 16px;
  }

  .stat-number {
    font-size: 1.8rem;
  }
}

/* ===== GALLERY PAGE ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 60px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
  border: 1px solid rgba(46, 158, 80, 0.08);
  transition: all var(--transition-slow);
}

.gallery-item:hover {
  transform: scale(1.03);
  border-color: rgba(46, 158, 80, 0.2);
  box-shadow: var(--shadow-glow);
  z-index: 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 15, 13, 0.7) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition-base);
  display: flex;
  align-items: flex-end;
  padding: 16px;
}

.gallery-item:hover .overlay {
  opacity: 1;
}

.gallery-item .overlay svg {
  color: white;
  margin-left: auto;
  margin-bottom: auto;
  margin-top: 0;
  position: absolute;
  top: 16px;
  right: 16px;
}

/* Gallery Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(20px);
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* ===== FAQ PAGE ===== */
.faq-list {
  max-width: 860px;
  margin: 60px auto 0;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid rgba(46, 158, 80, 0.08);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: all var(--transition-base);
}

.faq-item:hover {
  border-color: rgba(46, 158, 80, 0.18);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 28px;
  background: none;
  border: none;
  color: var(--text-primary);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  transition: all var(--transition-fast);
}

.faq-question:hover {
  color: var(--green-300);
}

.faq-question .icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(46, 158, 80, 0.1);
  border-radius: 50%;
  flex-shrink: 0;
  color: var(--green-400);
  font-size: 1.1rem;
  transition: transform var(--transition-base);
}

.faq-item.active .faq-question .icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer-inner {
  padding: 0 28px 24px;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
}

/* ===== SUSTAINABILITY PAGE ===== */
.sustainability-intro {
  max-width: 800px;
  margin: 0 auto 60px;
  text-align: center;
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.8;
}

.waste-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.waste-card {
  background: var(--bg-card);
  border: 1px solid rgba(46, 158, 80, 0.08);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: all var(--transition-slow);
}

.waste-card:hover {
  transform: translateY(-4px);
  border-color: rgba(46, 158, 80, 0.18);
  box-shadow: var(--shadow-glow);
}

.waste-card .icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(46, 158, 80, 0.15), rgba(46, 158, 80, 0.05));
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
  font-size: 1.3rem;
}

.waste-card h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.waste-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ===== EXPORT PAGE ===== */
.export-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.export-intro-text p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

.distributor-box {
  background: var(--bg-card);
  border: 1px solid rgba(46, 158, 80, 0.15);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.distributor-box h3 {
  color: var(--green-300);
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.distributor-box p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

.export-process {
  position: relative;
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 60px;
}

.process-step {
  background: var(--bg-card);
  border: 1px solid rgba(46, 158, 80, 0.08);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  transition: all var(--transition-slow);
}

.process-step:hover {
  transform: translateY(-4px);
  border-color: rgba(46, 158, 80, 0.2);
  box-shadow: var(--shadow-glow);
}

.process-step .step-number {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--green-600), var(--green-500));
  border-radius: 50%;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  color: white;
  margin-bottom: 20px;
}

.process-step h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.process-step p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Callback form export page */
.callback-form {
  max-width: 700px;
  margin: 60px auto 0;
  background: var(--bg-card);
  border: 1px solid rgba(46, 158, 80, 0.1);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
}

.callback-form h3 {
  font-size: 1.4rem;
  margin-bottom: 24px;
}

/* ===== BLOG PAGE ===== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 60px;
}

.blog-card {
  background: var(--bg-card);
  border: 1px solid rgba(46, 158, 80, 0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-slow);
}

.blog-card:hover {
  transform: translateY(-6px);
  border-color: rgba(46, 158, 80, 0.2);
  box-shadow: var(--shadow-glow);
}

.blog-card-body {
  padding: 24px;
}

.blog-card-category {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--green-400);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.blog-card-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
  line-height: 1.4;
}

.blog-card-title a {
  color: inherit;
  transition: color var(--transition-fast);
}

.blog-card-title a:hover {
  color: var(--green-300);
}

.blog-card-excerpt {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.blog-card-readmore {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green-400);
  transition: all var(--transition-fast);
}

.blog-card-readmore:hover {
  color: var(--green-300);
  gap: 10px;
}

/* ===== RESPONSIVE FOR NEW PAGES ===== */
@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .process-timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .export-intro {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-timeline {
    grid-template-columns: 1fr;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .waste-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== PRODUCT DETAIL PAGE ===== */
.product-detail {
  padding: 60px 0 80px;
  background: var(--bg-secondary);
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.product-detail-img {
  position: sticky;
  top: 120px;
  background: var(--bg-card);
  border: 1px solid rgba(46, 158, 80, 0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: 30px;
  text-align: center;
}

.product-detail-img img {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: var(--radius-md);
}

.product-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.product-info .product-category {
  display: inline-block;
  background: rgba(46, 158, 80, 0.1);
  color: var(--green-400);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  width: fit-content;
}

.product-info h1 {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.2;
}

.product-info .product-meta {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.product-info .product-meta-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.product-info .product-meta-item span:first-child {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.product-info .product-meta-item span:last-child {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
}

.product-description {
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 1rem;
}

.product-description p {
  margin-bottom: 16px;
}

.product-section-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--green-400);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid rgba(46, 158, 80, 0.2);
}

.product-composition,
.product-directions {
  background: var(--bg-card);
  border: 1px solid rgba(46, 158, 80, 0.1);
  border-radius: var(--radius-md);
  padding: 24px;
}

.product-composition p,
.product-directions p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 8px;
}

.product-directions ul {
  list-style: none;
  padding: 0;
}

.product-directions ul li {
  color: var(--text-secondary);
  line-height: 1.7;
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
}

.product-directions ul li::before {
  content: "›";
  position: absolute;
  left: 0;
  color: var(--green-400);
  font-weight: 700;
  font-size: 1.2rem;
}

.product-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 8px;
}

.product-cta .btn {
  padding: 14px 32px;
}

.product-note {
  background: rgba(46, 158, 80, 0.05);
  border-left: 3px solid var(--green-500);
  padding: 16px 20px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .product-detail-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .product-detail-img {
    position: static;
  }

  .product-info h1 {
    font-size: 1.8rem;
  }
}

/* ===== HERO SLIDESHOW ===== */
.hero-slideshow {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.5s ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-trust {
  font-size: 0.9rem;
  color: var(--gold-400);
  font-weight: 500;
  letter-spacing: 0.5px;
  margin-top: -8px;
}

/* ===== SCROLL INDICATOR ===== */
.scroll-indicator {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.5);
  animation: scroll-bounce 2s ease infinite;
  z-index: 5;
}

@keyframes scroll-bounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
    opacity: 0.5;
  }

  50% {
    transform: translateX(-50%) translateY(10px);
    opacity: 1;
  }
}

/* ===== SCROLL PROGRESS BAR ===== */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-500), var(--green-300), var(--gold-400));
  z-index: 10000;
  transition: width 0.1s linear;
}

/* ===== TRUST MARQUEE ===== */
.trust-marquee {
  overflow: hidden;
  background: linear-gradient(135deg, rgba(46, 158, 80, 0.08) 0%, rgba(46, 158, 80, 0.03) 100%);
  border-top: 1px solid rgba(46, 158, 80, 0.1);
  border-bottom: 1px solid rgba(46, 158, 80, 0.1);
  padding: 18px 0;
}

.trust-marquee-track {
  display: flex;
  gap: 48px;
  animation: marquee-scroll 30s linear infinite;
  width: max-content;
}

.trust-item {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-secondary);
  white-space: nowrap;
  letter-spacing: 0.5px;
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 60px;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid rgba(46, 158, 80, 0.08);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: all var(--transition-slow);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  right: 24px;
  font-size: 4rem;
  font-family: Georgia, serif;
  color: rgba(46, 158, 80, 0.1);
  line-height: 1;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: rgba(46, 158, 80, 0.2);
  box-shadow: var(--shadow-glow);
}

.testimonial-stars {
  color: var(--gold-400);
  font-size: 1.1rem;
  letter-spacing: 3px;
}

.testimonial-quote {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
  font-style: italic;
  flex-grow: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 16px;
  border-top: 1px solid rgba(46, 158, 80, 0.1);
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-600), var(--green-400));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  color: white;
  flex-shrink: 0;
}

.testimonial-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-primary);
}

.testimonial-role {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ===== CERTIFICATIONS ===== */
.certifications-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.cert-badge {
  background: var(--bg-card);
  border: 1px solid rgba(46, 158, 80, 0.08);
  border-radius: var(--radius-lg);
  padding: 32px 20px;
  text-align: center;
  transition: all var(--transition-slow);
}

.cert-badge:hover {
  transform: translateY(-4px);
  border-color: rgba(46, 158, 80, 0.2);
  box-shadow: var(--shadow-glow);
}

.cert-icon {
  font-size: 2.4rem;
  margin-bottom: 14px;
}

.cert-name {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.cert-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ===== DEALER CTA ===== */
.dealer-cta-section {
  padding: 80px 0;
}

.dealer-cta-content {
  background: linear-gradient(135deg, rgba(34, 117, 59, 0.15) 0%, rgba(46, 158, 80, 0.08) 100%);
  border: 1px solid rgba(46, 158, 80, 0.2);
  border-radius: var(--radius-xl);
  padding: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.dealer-cta-text h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 12px;
  background: linear-gradient(135deg, var(--text-primary) 0%, var(--green-300) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.dealer-cta-text p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 520px;
}

.dealer-cta-actions {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
}

/* ===== PRODUCT CARD IMAGE ZOOM ===== */
.product-card-img img,
.category-card-img img {
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.product-card:hover .product-card-img img,
.category-card:hover .category-card-img img {
  transform: scale(1.08);
}

.product-card-img,
.category-card-img {
  overflow: hidden;
}

/* ===== SECTION DIVIDERS ===== */
.section+.section::before {
  content: '';
  display: block;
  width: 120px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(46, 158, 80, 0.25), transparent);
  margin: 0 auto;
  position: relative;
  top: -35px;
}

/* ===== ENHANCED BUTTON HOVER ===== */
.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 30px rgba(46, 158, 80, 0.35);
}

.btn-outline:hover {
  transform: translateY(-2px);
}

/* ===== RESPONSIVE FOR NEW SECTIONS ===== */
@media (max-width: 1024px) {
  .certifications-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .dealer-cta-content {
    flex-direction: column;
    text-align: center;
    padding: 40px;
  }

  .dealer-cta-text p {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .certifications-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .dealer-cta-content {
    padding: 32px 24px;
  }

  .dealer-cta-text h2 {
    font-size: 1.5rem;
  }

  .scroll-indicator {
    bottom: 70px;
  }
}

@media (max-width: 480px) {
  .certifications-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .cert-badge {
    padding: 20px 12px;
  }

  .dealer-cta-actions {
    flex-direction: column;
    width: 100%;
  }

  .dealer-cta-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ===== FLOATING WHATSAPP BUTTON ===== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 9990;
  transition: all 0.3s ease;
  animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float:hover {
  background: #20bd5a;
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
  animation: none;
}

.whatsapp-float svg {
  flex-shrink: 0;
}

.whatsapp-tooltip {
  position: absolute;
  right: 72px;
  background: var(--bg-card, #1a2a1f);
  color: var(--text-primary, #fff);
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
}

@keyframes whatsapp-pulse {
  0% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }

  50% {
    box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6), 0 0 0 12px rgba(37, 211, 102, 0.08);
  }

  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }
}

@media (max-width: 480px) {
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 54px;
    height: 54px;
  }

  .whatsapp-tooltip {
    display: none;
  }
}