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

:root {
  /* === Nature Core Greens === */
  --green-deep: #0d2818;
  --green-dark: #1a4028;
  --green-primary: #2d6a4f;
  --green-medium: #40916c;
  --green-light: #52b788;
  --green-pale: #74c69d;
  --green-mist: #b7e4c7;
  --green-whisper: #d8f3dc;

  /* === Earth Tones === */
  --earth-bark: #5c4033;
  --earth-soil: #8b6914;
  --earth-amber: #d4a843;
  --earth-sand: #c9b99a;

  /* === Eco Backgrounds === */
  --bg-forest: #f0f7f4;
  --bg-meadow: #f5faf7;
  --bg-cream: #faf8f2;

  /* === Accent === */
  --accent-bloom: #e07a5f;
  --accent-berry: #c44569;
  --accent-sun: #f2cc8f;

  /* Legacy aliases for compatibility */
  --cream-bg: var(--bg-forest);
  --cream-light: var(--bg-meadow);
  --cream-card: var(--bg-cream);
  --green-btn: var(--green-primary);
  --green-hover: var(--green-dark);

  /* === Text === */
  --text-dark: #1a2e1a;
  --text-medium: #4a5c4a;
  --text-light: #6b7f6b;
  --text-muted: #8a9d8a;
  --white: #ffffff;

  /* === Borders & Shadows === */
  --border-light: #d4e5d4;
  --shadow-sm: 0 2px 12px rgba(13,40,24,0.06);
  --shadow-md: 0 6px 24px rgba(13,40,24,0.10);
  --shadow-lg: 0 12px 48px rgba(13,40,24,0.14);
  --shadow-glow: 0 0 30px rgba(45,106,79,0.15);

  /* === Radii === */
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 50%;

  /* === Transitions === */
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);

  /* === Badge Colors === */
  --gold-star: #d4a843;
  --red-badge: #c44569;
  --green-badge: #40916c;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text-dark);
  background: var(--bg-meadow);
  line-height: 1.6;
  overflow-x: hidden;
  text-rendering: optimizeSpeed;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

ul, ol {
  list-style: none;
}

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

button {
  cursor: pointer;
  border: none;
  font-family: inherit;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-dark);
}

/* Gradient text for key headings */
.gradient-text,
.section-header h2,
.page-header h1 {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-primary) 40%, var(--green-medium) 70%, var(--green-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== CONTAINER ===== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== FLOATING LEAF PARTICLES ===== */
.leaf-particle {
  position: fixed;
  pointer-events: none;
  z-index: 99;
  font-size: 1.2rem;
  opacity: 0;
  animation: leafFall linear infinite;
  will-change: transform, opacity;
  transform: translateZ(0);
  contain: strict;
}

@keyframes leafFall {
  0% {
    opacity: 0;
    transform: translateY(-20px) rotate(0deg) translateX(0);
  }
  10% {
    opacity: 0.7;
  }
  90% {
    opacity: 0.5;
  }
  100% {
    opacity: 0;
    transform: translateY(100vh) rotate(720deg) translateX(100px);
  }
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 2px solid rgba(45,106,79,0.12);
  padding: 12px 0;
  transition: background 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  will-change: background, box-shadow;
  transform: translateZ(0);
}

.navbar.scrolled {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  box-shadow: 0 4px 30px rgba(13,40,24,0.08);
  border-bottom-color: rgba(45,106,79,0.2);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-full);
  object-fit: cover;
  border: 2px solid var(--green-primary);
  box-shadow: 0 0 12px rgba(45,106,79,0.2);
  transition: var(--transition);
}

.nav-brand:hover .nav-logo {
  box-shadow: 0 0 20px rgba(45,106,79,0.35);
  transform: scale(1.05);
}

.nav-brand-text h2 {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
}

.nav-brand-text p {
  font-size: 0.8rem;
  color: var(--text-light);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-link {
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-dark);
  transition: var(--transition);
  cursor: pointer;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 20px;
  height: 2px;
  background: var(--green-light);
  border-radius: 2px;
  transition: transform 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: translateX(-50%) scaleX(1);
}

.nav-link:hover,
.nav-link.active {
  background: linear-gradient(135deg, var(--green-primary), var(--green-medium));
  color: var(--white);
  box-shadow: 0 4px 15px rgba(45,106,79,0.25);
}

.nav-link:hover::after,
.nav-link.active::after {
  display: none;
}

.mobile-menu-btn {
  display: none;
  background: none;
  font-size: 1.5rem;
  color: var(--text-dark);
  padding: 8px;
}

/* ===== HERO SECTION ===== */
.hero {
  min-height: 100vh;
  padding-top: 90px;
  display: flex;
  align-items: center;
  background: linear-gradient(160deg, var(--bg-meadow) 0%, var(--bg-forest) 30%, var(--green-whisper) 70%, var(--bg-cream) 100%);
  position: relative;
  overflow: hidden;
}

/* Organic background blob shapes */
.hero::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(82,183,136,0.12) 0%, transparent 70%);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  top: -100px;
  right: -100px;
  animation: blobFloat 20s ease-in-out infinite;
  pointer-events: none;
  will-change: transform;
  transform: translateZ(0);
}

.hero::after {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(116,198,157,0.10) 0%, transparent 70%);
  border-radius: 40% 60% 70% 30% / 40% 70% 30% 60%;
  bottom: -100px;
  left: -100px;
  animation: blobFloat 25s ease-in-out infinite reverse;
  pointer-events: none;
  will-change: transform;
  transform: translateZ(0);
}

@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
  25% { transform: translate(30px, -30px) rotate(5deg) scale(1.05); }
  50% { transform: translate(-20px, 20px) rotate(-3deg) scale(0.95); }
  75% { transform: translate(15px, 10px) rotate(3deg) scale(1.02); }
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  z-index: 2;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 24px;
  line-height: 1.15;
  background: linear-gradient(135deg, var(--green-deep) 0%, var(--green-primary) 50%, var(--green-medium) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-content h1 .highlight {
  background: linear-gradient(135deg, var(--green-light) 0%, var(--green-pale) 50%, var(--accent-sun) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== ANIMATED ROTATING WORDS ===== */
.hero-rotating-wrapper {
  display: inline-block;
  position: relative;
  height: 1.25em;
  vertical-align: bottom;
  min-width: 100%;
  overflow: visible;
  clip-path: inset(-5px -9999px -5px -9999px);
}

.hero-rotating-word {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  opacity: 0;
  transform: translateY(80px);
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease;
  background: linear-gradient(135deg, var(--green-light) 0%, var(--green-pale) 40%, var(--accent-sun) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  white-space: nowrap;
  will-change: transform, opacity;
}

.hero-rotating-word.active {
  opacity: 1;
  transform: translateY(0);
}

.hero-rotating-word.exit-up {
  opacity: 0;
  transform: translateY(-80px);
}

/* ===== TYPEWRITER EFFECT ===== */
.hero-typewriter {
  font-size: 1.1rem !important;
  color: var(--text-medium) !important;
  margin-bottom: 36px !important;
  line-height: 1.7 !important;
  max-width: 550px !important;
  min-height: 1.7em;
}

.typewriter-static {
  color: var(--text-medium);
}

.typewriter-text {
  color: var(--green-primary);
  font-weight: 600;
}

.typewriter-cursor {
  display: inline-block;
  color: var(--green-primary);
  font-weight: 300;
  margin-left: 2px;
  animation: cursorBlink 0.7s step-end infinite;
}

@keyframes cursorBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.hero-content p {
  font-size: 1.1rem;
  color: var(--text-medium);
  margin-bottom: 36px;
  line-height: 1.7;
  max-width: 500px;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  padding: 14px 32px;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 600;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--green-primary), var(--green-medium));
  color: var(--white);
  box-shadow: 0 4px 15px rgba(45,106,79,0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--green-dark), var(--green-primary));
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(45,106,79,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--text-dark);
  border: 2px solid var(--border-light);
}

.btn-outline:hover {
  border-color: var(--green-primary);
  color: var(--green-primary);
  transform: translateY(-3px);
  background: rgba(45,106,79,0.04);
  box-shadow: 0 4px 15px rgba(45,106,79,0.1);
}

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

.hero-image img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border: 3px solid rgba(45,106,79,0.08);
}

/* ===== SVG WAVE DIVIDER ===== */
.wave-divider {
  position: relative;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin-top: -2px;
  contain: layout style;
}

.wave-divider svg {
  display: block;
  width: 100%;
  height: auto;
  will-change: contents;
  transform: translateZ(0); /* GPU layer */
}

.wave-divider svg path {
  transition: d 0.15s ease-out; /* Smooth interpolation between path states */
}

.wave-divider.flip {
  transform: rotate(180deg) translateZ(0);
  margin-top: 0;
  margin-bottom: -2px;
}

/* ===== STATS BAR ===== */
.stats-bar {
  background: linear-gradient(135deg, #1a5235 0%, #22714a 50%, #2d8a5e 100%);
  padding: 50px 0;
  position: relative;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}

.stat-item {
  position: relative;
}

.stat-item h3 {
  font-family: 'Inter', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 4px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

.stat-item p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
}

/* ===== SECTION COMMON ===== */
.section {
  padding: 90px 0;
  position: relative;
  content-visibility: auto;
  contain-intrinsic-size: auto 500px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-medium);
  max-width: 650px;
  margin: 0 auto;
}

/* ===== ABOUT PREVIEW (Home) ===== */
.about-preview .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-preview-image img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border: 3px solid rgba(45,106,79,0.08);
}

.about-preview-content h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--green-dark), var(--green-primary), var(--green-medium));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-preview-content .green-line {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--green-primary), var(--green-light));
  margin-bottom: 24px;
  border-radius: 2px;
}

.about-preview-content p {
  font-size: 1rem;
  color: var(--text-medium);
  margin-bottom: 16px;
  line-height: 1.7;
}

.about-preview-content .btn {
  margin-top: 12px;
}

/* ===== GALLERY SECTION ===== */
.gallery-section {
  background: var(--bg-forest);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1;
  position: relative;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

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

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

.gallery-item:hover img {
  transform: scale(1.08);
}

/* ===== INSIGHTS SECTION ===== */
.insights-section {
  background: linear-gradient(180deg, var(--bg-cream) 0%, var(--bg-forest) 100%);
}

.insights-carousel {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 850px;
  margin: 0 auto;
}

.insights-viewport {
  flex: 1;
  overflow: hidden;
  border-radius: var(--radius-xl);
}

.insights-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.insight-slide {
  min-width: 100%;
  flex-shrink: 0;
}

.insight-video-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
  background: #0a1f14;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(20, 61, 40, 0.3);
  border: 2px solid rgba(45, 106, 79, 0.15);
}

.insight-video-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Instagram reels are vertical — make them fit nicely */
.insight-video-reel {
  padding-bottom: 80%;
  max-width: 420px;
  margin: 0 auto;
}

.insight-caption {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 4px 4px;
}

.insight-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
  background: rgba(220, 38, 38, 0.12);
  color: #dc2626;
  white-space: nowrap;
}

.insight-badge-fb {
  background: rgba(37, 99, 235, 0.12);
  color: #2563eb;
}

.insight-badge-ig {
  background: linear-gradient(135deg, rgba(131, 58, 180, 0.12), rgba(253, 29, 29, 0.12));
  color: #c026d3;
}

.insight-caption h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0;
}

/* Arrow buttons */
.insights-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid rgba(45, 106, 79, 0.2);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  color: var(--green-primary);
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.insights-arrow:hover {
  background: var(--green-primary);
  color: var(--white);
  border-color: var(--green-primary);
  box-shadow: 0 4px 20px rgba(45, 106, 79, 0.3);
  transform: scale(1.08);
}

/* Dot indicators */
.insights-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.insight-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid rgba(45, 106, 79, 0.25);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.insight-dot.active {
  background: var(--green-primary);
  border-color: var(--green-primary);
  transform: scale(1.2);
}

.insight-dot:hover {
  border-color: var(--green-medium);
  background: rgba(45, 106, 79, 0.15);
}

/* Mobile arrows — hidden on desktop */
.insights-mobile-arrows {
  display: none;
  justify-content: center;
  gap: 16px;
  margin-top: 16px;
}

/* ===== OFFERS SECTION (Home) ===== */
.offers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.offer-card {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-bounce);
  border: 1px solid rgba(45,106,79,0.08);
  position: relative;
  overflow: hidden;
}

.offer-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-primary), var(--green-light), var(--green-pale));
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.offer-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  background: rgba(255,255,255,0.9);
}

.offer-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--green-whisper), var(--green-mist));
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  color: var(--green-primary);
  transition: var(--transition);
}

.offer-card:hover .offer-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 0 20px rgba(45,106,79,0.2);
}

.offer-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.offer-card p {
  font-size: 0.95rem;
  color: var(--text-medium);
  line-height: 1.6;
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, var(--green-deep) 0%, var(--green-dark) 30%, var(--green-primary) 70%, var(--green-medium) 100%);
  padding: 90px 0;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

/* Firefly particles */
.cta-section::before {
  content: '';
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(210,232,190,0.6);
  border-radius: 50%;
  top: 30%;
  left: 20%;
  box-shadow:
    60px 80px 0 rgba(210,232,190,0.4),
    120px -40px 0 rgba(210,232,190,0.3),
    200px 60px 0 rgba(210,232,190,0.5),
    -80px 120px 0 rgba(210,232,190,0.3),
    300px -20px 0 rgba(242,204,143,0.4),
    -150px 40px 0 rgba(242,204,143,0.3),
    400px 90px 0 rgba(210,232,190,0.4),
    500px -60px 0 rgba(242,204,143,0.3);
  animation: fireflyFloat 8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes fireflyFloat {
  0%, 100% { transform: translate(0,0); opacity: 0.5; }
  25% { transform: translate(10px,-15px); opacity: 0.8; }
  50% { transform: translate(-5px,10px); opacity: 0.3; }
  75% { transform: translate(15px,5px); opacity: 0.7; }
}

.cta-section h2 {
  color: var(--white);
  font-size: 2.5rem;
  margin-bottom: 20px;
  -webkit-text-fill-color: var(--white);
  background: none;
}

.cta-section p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 36px;
}

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

.cta-btns .btn-outline {
  border-color: rgba(255,255,255,0.35);
  color: var(--white);
}

.cta-btns .btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.12);
  color: var(--white);
}

.cta-btns .btn-primary {
  background: linear-gradient(135deg, var(--white) 0%, var(--green-whisper) 100%);
  color: var(--green-dark);
  box-shadow: 0 4px 20px rgba(255,255,255,0.25);
}

.cta-btns .btn-primary:hover {
  background: var(--white);
  box-shadow: 0 8px 30px rgba(255,255,255,0.35);
}

/* ===== FOOTER ===== */
.footer {
  background: linear-gradient(180deg, var(--green-deep) 0%, #091a10 100%);
  color: var(--white);
  padding: 70px 0 30px;
  position: relative;
  overflow: hidden;
}

/* Leaf pattern overlay */
.footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 80%, rgba(45,106,79,0.15) 0%, transparent 50%),
              radial-gradient(ellipse at 80% 20%, rgba(82,183,136,0.08) 0%, transparent 50%);
  pointer-events: none;
}

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

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-brand img {
  width: 45px;
  height: 45px;
  border-radius: var(--radius-full);
  border: 2px solid rgba(82,183,136,0.3);
}

.footer-brand-text h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  color: var(--white);
}

.footer-brand-text p {
  font-size: 0.8rem;
  opacity: 0.6;
}

.footer-col p {
  font-size: 0.9rem;
  opacity: 0.75;
  line-height: 1.6;
}

.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  color: var(--green-pale);
  margin-bottom: 20px;
}

.footer-links a {
  display: block;
  font-size: 0.9rem;
  opacity: 0.65;
  padding: 6px 0;
  transition: var(--transition);
}

.footer-links a:hover {
  opacity: 1;
  padding-left: 10px;
  color: var(--green-mist);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.9rem;
  opacity: 0.75;
}

.footer-contact-item i {
  margin-top: 3px;
  color: var(--green-light);
}

.footer-gstin {
  font-weight: 600;
  margin-top: 8px;
  opacity: 0.85;
  font-size: 0.85rem;
}

.footer-social {
  display: flex;
  gap: 14px;
  margin-bottom: 16px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(82,183,136,0.25);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  font-size: 1rem;
}

.footer-social a:hover {
  background: linear-gradient(135deg, var(--green-primary), var(--green-medium));
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(45,106,79,0.4);
}

.footer-bottom {
  border-top: 1px solid rgba(82,183,136,0.12);
  padding-top: 24px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.footer-bottom p {
  font-size: 0.85rem;
  opacity: 0.5;
}

.footer-bottom .green-text {
  color: var(--green-pale);
  opacity: 0.7;
}

/* ===== PAGE HEADER ===== */
.page-header {
  padding: 130px 0 70px;
  background: linear-gradient(160deg, var(--bg-meadow) 0%, var(--bg-forest) 50%, var(--green-whisper) 100%);
  text-align: center;
  border-bottom: none;
  position: relative;
  overflow: hidden;
}

.page-header::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(82,183,136,0.08) 0%, transparent 70%);
  border-radius: 50%;
  top: -100px;
  right: -100px;
  pointer-events: none;
}

.page-header h1 {
  font-size: 2.8rem;
  margin-bottom: 16px;
}

.page-header p {
  font-size: 1.1rem;
  color: var(--text-medium);
  max-width: 650px;
  margin: 0 auto;
  -webkit-text-fill-color: var(--text-medium);
  background: none;
}

/* ===== ABOUT PAGE ===== */
.about-story {
  padding: 80px 0;
}

.about-story .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.about-story-content h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}

.about-story-content .green-line {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--green-primary), var(--green-light));
  margin-bottom: 24px;
  border-radius: 2px;
}

.about-story-content p {
  font-size: 1rem;
  color: var(--text-medium);
  margin-bottom: 16px;
  line-height: 1.7;
}

.about-image-card {
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-xl);
  padding: 16px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(45,106,79,0.06);
  transition: var(--transition);
}

.about-image-card:hover {
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.about-image-card img {
  width: 100%;
  border-radius: var(--radius-lg);
}

.about-image-card .caption {
  text-align: center;
  padding: 16px 0 8px;
}

.about-image-card .caption h4 {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.about-image-card .caption p {
  font-size: 0.9rem;
  color: var(--green-primary);
  margin-bottom: 0;
}

/* Quote section */
.about-quote {
  background: rgba(255,255,255,0.5);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-xl);
  padding: 50px 60px;
  margin: 20px auto 0;
  max-width: 800px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(45,106,79,0.06);
  position: relative;
}

.about-quote::before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 30px;
  font-size: 5rem;
  font-family: 'Playfair Display', serif;
  color: var(--green-mist);
  line-height: 1;
  opacity: 0.6;
}

.about-quote blockquote {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem;
  font-style: italic;
  color: var(--text-medium);
  line-height: 1.7;
  margin-bottom: 20px;
}

.about-quote cite {
  font-style: normal;
  font-weight: 600;
  color: var(--green-primary);
  font-size: 1rem;
}

/* Achievements */
.achievements-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.achievement-card {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-lg);
  padding: 30px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(45,106,79,0.06);
  transition: var(--transition-bounce);
}

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

.achievement-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--green-whisper), var(--green-mist));
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.5rem;
  color: var(--green-primary);
  transition: var(--transition);
}

.achievement-card:hover .achievement-icon {
  transform: scale(1.1);
  box-shadow: 0 0 15px rgba(45,106,79,0.2);
}

.achievement-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 2rem;
  color: var(--green-primary);
  margin-bottom: 8px;
}

.achievement-card p {
  font-size: 0.9rem;
  color: var(--text-medium);
}

/* ===== PRODUCTS PAGE ===== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.product-card {
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(45,106,79,0.06);
  transition: var(--transition-bounce);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}

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

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

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

.product-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--white);
  backdrop-filter: blur(8px);
}

.product-badge.in-stock {
  background: linear-gradient(135deg, var(--green-medium), var(--green-light));
}

.product-badge.coming-soon {
  background: linear-gradient(135deg, var(--accent-berry), var(--accent-bloom));
}

.product-info {
  padding: 24px;
}

.product-title-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.product-title-row h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.15rem;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.9rem;
  color: var(--text-medium);
}

.product-rating .star {
  color: var(--gold-star);
}

.product-info > p {
  font-size: 0.9rem;
  color: var(--text-medium);
  line-height: 1.6;
  margin-bottom: 16px;
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.product-tag {
  padding: 4px 12px;
  border: 1px solid var(--green-mist);
  border-radius: 20px;
  font-size: 0.78rem;
  color: var(--green-primary);
  background: var(--green-whisper);
  transition: var(--transition);
}

.product-tag:hover {
  background: var(--green-mist);
}

.product-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--green-primary);
}

.product-price span {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-light);
}

/* ===== TRAINING PAGE ===== */
.training-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  padding: 60px 0;
}

.training-poster {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-xl);
  padding: 16px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(45,106,79,0.06);
}

.training-poster img {
  width: 100%;
  border-radius: var(--radius-lg);
}

.training-actions {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.training-action-card {
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-lg);
  padding: 24px 30px;
  border: 1px solid rgba(45,106,79,0.06);
  transition: var(--transition);
}

.training-action-card:hover {
  box-shadow: var(--shadow-sm);
  background: rgba(255,255,255,0.85);
}

.training-action-card p {
  font-size: 0.95rem;
  color: var(--text-medium);
  margin-bottom: 16px;
}

.training-action-card .btn {
  width: 100%;
  justify-content: center;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
}

/* Training Info Cards */
.training-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 60px 0;
}

.training-info-card {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-lg);
  padding: 30px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(45,106,79,0.06);
  transition: var(--transition);
}

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

.training-info-icon {
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, var(--green-whisper), var(--green-mist));
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.4rem;
  color: var(--green-primary);
}

.training-info-card h4 {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  margin-bottom: 8px;
}

.training-info-card p {
  font-size: 0.85rem;
  color: var(--text-medium);
  line-height: 1.5;
}

/* Training Curriculum */
.training-curriculum {
  background: var(--bg-forest);
  padding: 80px 0;
}

.curriculum-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.curriculum-day {
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(45,106,79,0.06);
}

.curriculum-day h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.3rem;
  color: var(--green-primary);
  margin-bottom: 8px;
}

.curriculum-day .subtitle {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 20px;
}

.curriculum-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(45,106,79,0.06);
}

.curriculum-item:last-child {
  border-bottom: none;
}

.curriculum-item i {
  color: var(--green-light);
  margin-top: 3px;
}

.curriculum-item span {
  font-size: 0.9rem;
  color: var(--text-medium);
}

/* Why Choose Us */
.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.why-choose-card {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-lg);
  padding: 30px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(45,106,79,0.06);
  transition: var(--transition-bounce);
}

.why-choose-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md), var(--shadow-glow);
}

.why-choose-icon {
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, var(--green-whisper), var(--green-mist));
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.4rem;
  color: var(--green-primary);
}

.why-choose-card h4 {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  margin-bottom: 8px;
}

.why-choose-card p {
  font-size: 0.85rem;
  color: var(--text-medium);
}

/* Organized By */
.organized-by {
  background: linear-gradient(135deg, var(--bg-forest), var(--green-whisper));
  border-radius: var(--radius-xl);
  padding: 50px;
  text-align: center;
  margin: 60px 0;
  border: 1px solid rgba(45,106,79,0.08);
}

.organized-by h3 {
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.organized-by .brand-name {
  font-size: 1.3rem;
  color: var(--green-primary);
  font-weight: 600;
  margin-bottom: 4px;
}

.organized-by .sub {
  font-size: 0.95rem;
  color: var(--text-medium);
  margin-bottom: 24px;
}

.organized-phone {
  display: flex;
  gap: 30px;
  justify-content: center;
  margin-bottom: 24px;
}

.organized-phone a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  color: var(--text-dark);
  transition: var(--transition);
}

.organized-phone a:hover {
  color: var(--green-primary);
}

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

/* ===== CONTAINER SCROLL ANIMATION (21st.dev style) ===== */
.container-scroll {
  min-height: 40rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 1rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .container-scroll { min-height: 70rem; padding: 5rem; margin-bottom: 3rem; }
}

.container-scroll__perspective {
  padding: 2.5rem 0;
  width: 100%;
  position: relative;
  perspective: 1000px;
}

@media (min-width: 768px) {
  .container-scroll__perspective { padding: 6rem 0; }
}

/* Header — translates up on scroll */
.container-scroll__header {
  max-width: 64rem;
  margin: 0 auto;
  text-align: center;
  transition: transform 0.1s linear;
  will-change: transform;
}

.container-scroll__title {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.container-scroll__subtitle {
  font-size: 1.1rem;
  color: var(--text-medium);
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .container-scroll__title { font-size: 3.5rem; }
  .container-scroll__subtitle { font-size: 1.3rem; }
}

/* Card — rotates, scales, and lifts on scroll */
.container-scroll__card {
  max-width: 64rem;
  margin: -1rem auto 0;
  width: 100%;
  border: 3px solid #6C6C6C;
  padding: 0.35rem;
  background: #222222;
  border-radius: 16px;
  box-shadow:
    0 0 #0000004d,
    0 9px 20px #0000004a,
    0 37px 37px #00000042,
    0 84px 50px #00000026,
    0 149px 60px #0000000a,
    0 233px 65px #00000003;
  transition: transform 0.1s linear;
  will-change: transform;
  transform-style: preserve-3d;
}

@media (min-width: 768px) {
  .container-scroll__card { padding: 1.5rem; border-radius: 30px; border-width: 4px; margin-top: -3rem; }
}

.container-scroll__card-inner {
  height: 100%;
  width: 100%;
  overflow: hidden;
  border-radius: 0.75rem;
  background: var(--white);
}

@media (min-width: 768px) {
  .container-scroll__card-inner { border-radius: 1rem; }
}

/* Override blog-featured inside the scroll card */
.container-scroll__card-inner .blog-featured {
  margin-bottom: 0;
  border-radius: 0;
  box-shadow: none;
  border: none;
}

.container-scroll__card-inner .blog-featured-image {
  background: var(--green-dark);
}

.container-scroll__card-inner .blog-featured-image img {
  object-fit: contain;
  object-position: center;
}

/* ===== BLOG PAGE ===== */
.blog-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 60px;
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(45,106,79,0.06);
}

.blog-featured-image {
  height: 100%;
}

.blog-featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  min-height: 350px;
}

.blog-featured-content {
  padding: 40px;
}

.blog-category {
  display: inline-block;
  padding: 4px 14px;
  background: linear-gradient(135deg, var(--green-primary), var(--green-medium));
  color: var(--white);
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.blog-featured-content h2 {
  font-size: 1.6rem;
  margin-bottom: 16px;
  line-height: 1.3;
  -webkit-text-fill-color: var(--text-dark);
  background: none;
}

.blog-featured-content p {
  font-size: 0.95rem;
  color: var(--text-medium);
  margin-bottom: 24px;
  line-height: 1.6;
}

.blog-meta {
  display: flex;
  gap: 20px;
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 20px;
}

.blog-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Blog Grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.blog-card {
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(45,106,79,0.06);
  transition: var(--transition-bounce);
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.blog-card-image {
  height: 200px;
  overflow: hidden;
  position: relative;
}

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

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

.blog-card-image .blog-category {
  position: absolute;
  top: 12px;
  left: 12px;
}

.blog-card-content {
  padding: 24px;
}

.blog-card-content h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  margin-bottom: 12px;
  line-height: 1.4;
}

.blog-card-content > p {
  font-size: 0.85rem;
  color: var(--text-medium);
  margin-bottom: 16px;
  line-height: 1.6;
}

.blog-card-footer {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 16px;
}

.blog-card-footer span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.blog-read-more {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px;
  border: 1px solid var(--green-mist);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--green-primary);
  font-weight: 500;
  transition: var(--transition);
  width: 100%;
  background: var(--green-whisper);
}

.blog-read-more:hover {
  background: linear-gradient(135deg, var(--green-primary), var(--green-medium));
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(45,106,79,0.3);
}

/* Newsletter */
.newsletter {
  background: linear-gradient(135deg, var(--bg-forest), var(--green-whisper));
  border-radius: var(--radius-xl);
  padding: 50px;
  text-align: center;
  border: 1px solid rgba(45,106,79,0.08);
}

.newsletter h3 {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.newsletter p {
  font-size: 0.95rem;
  color: var(--text-medium);
  max-width: 550px;
  margin: 0 auto 24px;
}

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

.newsletter-form input {
  flex: 1;
  padding: 14px 22px;
  border: 1px solid var(--green-mist);
  border-radius: 30px;
  background: var(--white);
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition);
}

.newsletter-form input:focus {
  border-color: var(--green-primary);
  box-shadow: 0 0 0 3px rgba(45,106,79,0.1);
}

.newsletter-form button {
  padding: 14px 28px;
  background: linear-gradient(135deg, var(--green-primary), var(--green-medium));
  color: var(--white);
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(45,106,79,0.25);
}

.newsletter-form button:hover {
  background: linear-gradient(135deg, var(--green-dark), var(--green-primary));
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(45,106,79,0.35);
}

/* ===== CONTACT PAGE ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 60px 0;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info-card {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(45,106,79,0.06);
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: var(--transition);
}

.contact-info-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.contact-info-card .icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--green-whisper), var(--green-mist));
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--green-primary);
  flex-shrink: 0;
}

.contact-info-card h4 {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  margin-bottom: 6px;
}

.contact-info-card p {
  font-size: 0.9rem;
  color: var(--text-medium);
  line-height: 1.5;
}

.contact-form-container {
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(45,106,79,0.06);
}

.contact-form-container h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.contact-form-container > p {
  font-size: 0.9rem;
  color: var(--text-medium);
  margin-bottom: 24px;
}

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

.contact-form label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text-dark);
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--green-mist);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--green-primary);
  box-shadow: 0 0 0 3px rgba(45,106,79,0.1);
}

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

.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-form .submit-btn {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, var(--green-primary), var(--green-medium));
  color: var(--white);
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(45,106,79,0.25);
}

.contact-form .submit-btn:hover {
  background: linear-gradient(135deg, var(--green-dark), var(--green-primary));
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(45,106,79,0.35);
}

/* Business Hours */
.business-hours {
  background: var(--bg-forest);
  padding: 60px 0;
}

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

.hours-card {
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(45,106,79,0.06);
}

.hours-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.hours-item {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(45,106,79,0.06);
  font-size: 0.9rem;
}

.hours-item:last-child {
  border-bottom: none;
}

.hours-item .day {
  font-weight: 600;
}

.hours-item .time {
  color: var(--text-medium);
}

.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 300px;
  border: 2px solid rgba(45,106,79,0.08);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.map-open-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
  font-size: 0.85rem;
  color: var(--green-primary);
  font-weight: 500;
}

/* ===== POPUP MODAL ===== */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(13,40,24,0.5);
  backdrop-filter: blur(5px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

.popup-modal {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-xl);
  padding: 40px;
  max-width: 500px;
  width: 90%;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(20px) scale(0.95);
  transition: var(--transition);
  border: 1px solid rgba(45,106,79,0.1);
  box-shadow: 0 24px 80px rgba(13,40,24,0.25);
}

.popup-overlay.active .popup-modal {
  transform: translateY(0) scale(1);
}

.popup-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  border: 1px solid var(--green-mist);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: var(--transition);
  color: var(--text-dark);
}

.popup-close:hover {
  background: var(--green-whisper);
  border-color: var(--green-primary);
  color: var(--green-primary);
}

.popup-modal h2 {
  font-size: 1.6rem;
  text-align: center;
  margin-bottom: 8px;
}

.popup-modal .emoji {
  -webkit-text-fill-color: initial;
}

.popup-modal > p {
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-medium);
  margin-bottom: 24px;
  -webkit-text-fill-color: var(--text-medium);
  background: none;
}

.popup-form .form-group {
  margin-bottom: 16px;
}

.popup-form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.popup-form input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--green-mist);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition);
}

.popup-form input:focus {
  border-color: var(--green-primary);
  box-shadow: 0 0 0 3px rgba(45,106,79,0.1);
}

.popup-form .submit-btn {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, var(--green-primary), var(--green-medium));
  color: var(--white);
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 1rem;
  margin-top: 8px;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(45,106,79,0.25);
}

.popup-form .submit-btn:hover {
  background: linear-gradient(135deg, var(--green-dark), var(--green-primary));
  transform: translateY(-2px);
}

.popup-form .disclaimer {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 12px;
}

/* ===== PAGE VISIBILITY ===== */
.page {
  display: none;
}

.page.active {
  display: block;
}

/* ===== SCROLL ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== ECO BADGE ===== */
.eco-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: var(--green-whisper);
  color: var(--green-primary);
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 600;
  border: 1px solid var(--green-mist);
}

.eco-badge i {
  color: var(--green-light);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-content p {
    margin: 0 auto 36px;
  }
  
  .hero-btns {
    justify-content: center;
  }
  
  .hero-image {
    max-width: 500px;
    margin: 0 auto;
  }
  
  .about-story .container,
  .about-preview .container {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .products-grid,
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .training-hero {
    grid-template-columns: 1fr;
  }
  
  .training-info-grid,
  .why-choose-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .achievements-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .blog-featured {
    grid-template-columns: 1fr;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .hours-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 16px;
    border-bottom: 2px solid var(--green-primary);
    box-shadow: var(--shadow-lg);
  }
  
  .nav-links.open {
    display: flex;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .hero-content h1 {
    font-size: 2.2rem;
  }
  
  .section-header h2,
  .cta-section h2 {
    font-size: 1.8rem;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .offers-grid {
    grid-template-columns: 1fr;
  }
  
  .products-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }
  
  .training-info-grid,
  .why-choose-grid {
    grid-template-columns: 1fr;
  }
  
  .curriculum-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .page-header h1 {
    font-size: 2rem;
  }
  
  .contact-form .form-row {
    grid-template-columns: 1fr;
  }
  
  .organized-phone {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  
  .organized-btns {
    flex-direction: column;
    align-items: center;
  }

  /* ===== MOBILE: Section spacing ===== */
  .section {
    padding: 50px 0;
  }

  .section-header {
    margin-bottom: 36px;
  }

  .section-header p {
    font-size: 1rem;
  }

  /* ===== MOBILE: Hero adjustments ===== */
  .hero {
    padding-top: 80px;
    min-height: auto;
    padding-bottom: 40px;
  }

  .hero-content p {
    font-size: 1rem;
    margin-bottom: 24px;
  }

  /* ===== MOBILE: Container scroll animation ===== */
  .container-scroll {
    min-height: auto;
    padding: 0.5rem;
    margin-bottom: 1.5rem;
  }

  .container-scroll__perspective {
    padding: 1.5rem 0;
  }

  .container-scroll__card {
    border-radius: 14px;
    border-width: 2px;
    padding: 0.25rem;
    margin-top: -0.5rem;
  }

  .container-scroll__card-inner {
    border-radius: 10px;
  }

  /* Stack the featured blog to single column on mobile inside scroll card */
  .container-scroll__card-inner .blog-featured {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .container-scroll__card-inner .blog-featured-image {
    overflow: hidden;
    background: var(--green-dark);
  }

  .container-scroll__card-inner .blog-featured-image img {
    object-fit: contain;
    object-position: center;
    width: 100%;
    height: auto;
  }

  .container-scroll__card-inner .blog-featured-content {
    padding: 20px 16px;
  }

  .container-scroll__card-inner .blog-featured-content h2 {
    font-size: 1.2rem;
  }

  .container-scroll__card-inner .blog-featured-content p {
    font-size: 0.9rem;
  }

  .container-scroll__card-inner .blog-meta {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 0.8rem;
  }

  /* ===== MOBILE: Blog featured (outside scroll card) ===== */
  .blog-featured {
    gap: 20px;
  }

  .blog-featured-content {
    padding: 20px;
  }

  .blog-featured-content h2 {
    font-size: 1.3rem;
  }

  /* ===== MOBILE: Blog cards ===== */
  .blog-card-content {
    padding: 16px;
  }

  .blog-card-content h3 {
    font-size: 1.05rem;
  }

  /* ===== MOBILE: Offer cards ===== */
  .offer-card {
    padding: 28px 20px;
  }

  /* ===== MOBILE: CTA ===== */
  .cta-section {
    padding: 50px 0;
  }

  .cta-section p {
    font-size: 1rem;
    margin-bottom: 24px;
  }

  .cta-btns {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .cta-btns .btn {
    width: 80%;
    justify-content: center;
  }

  /* ===== MOBILE: About preview ===== */
  .about-preview .container {
    gap: 30px;
  }

  .about-preview-content h2 {
    font-size: 1.8rem;
  }

  /* ===== MOBILE: Gallery ===== */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  /* ===== MOBILE: Footer ===== */
  .footer {
    padding: 40px 0 20px;
  }

  .footer-grid {
    gap: 24px;
  }

  /* ===== MOBILE: Contact ===== */
  .contact-info-cards {
    gap: 12px;
  }

  .contact-form-container {
    padding: 24px 16px;
  }

  /* ===== MOBILE: Hours & Map ===== */
  .hours-grid {
    gap: 20px;
  }

  .map-container iframe {
    min-height: 250px;
  }

  /* ===== MOBILE: Page header ===== */
  .page-header {
    padding: 100px 16px 40px;
  }

  .page-header p {
    font-size: 0.95rem;
  }

  /* ===== MOBILE: Achievements carousel ===== */
  .carousel-btn {
    width: 36px;
    height: 36px;
    font-size: 0.85rem;
  }

  /* ===== MOBILE: Training page ===== */
  .training-hero {
    gap: 24px;
  }

  .training-poster {
    max-width: 100%;
  }

  /* ===== MOBILE: Products */
  .products-grid {
    gap: 20px;
  }

  /* ===== MOBILE: Newsletter form ===== */
  .newsletter-form {
    flex-direction: column;
    max-width: 100%;
  }

  .newsletter-form input {
    width: 100%;
  }

  .newsletter-form button {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.8rem;
  }
  
  .hero-btns {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
    justify-content: center;
  }
  
  .achievements-grid {
    grid-template-columns: 1fr;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  /* ===== 480px: Container scroll */
  .container-scroll__title {
    font-size: 1.6rem;
  }

  .container-scroll__subtitle {
    font-size: 0.9rem;
  }

  .container-scroll__card {
    border-radius: 12px;
    padding: 0.2rem;
  }

  .container-scroll__card-inner .blog-featured-image img {
    object-fit: contain;
  }

  .container-scroll__card-inner .blog-featured-content {
    padding: 16px 12px;
  }

  .container-scroll__card-inner .blog-featured-content h2 {
    font-size: 1.05rem;
  }

  .container-scroll__card-inner .btn {
    padding: 10px 20px;
    font-size: 0.85rem;
  }

  /* ===== 480px: Section headers ===== */
  .section-header h2 {
    font-size: 1.5rem;
  }

  .section-header p {
    font-size: 0.9rem;
  }

  /* ===== 480px: Stats ===== */
  .stat-item h3 {
    font-size: 2rem;
  }

  /* ===== 480px: CTA ===== */
  .cta-section h2 {
    font-size: 1.5rem;
  }

  .cta-btns .btn {
    width: 100%;
  }

  /* ===== 480px: Blog cards ===== */
  .blog-card-content p {
    font-size: 0.9rem;
  }

  /* ===== 480px: Contact ===== */
  .contact-form-container h3 {
    font-size: 1.3rem;
  }

  /* ===== 480px: Footer ===== */
  .footer-col h4 {
    font-size: 1rem;
  }
}

/* ===== 3D MUSHROOM NAVIGATOR ===== */
.mushroom-3d-section {
  padding: 80px 0 100px;
  background: linear-gradient(180deg, var(--bg-forest) 0%, var(--bg-meadow) 100%);
  overflow: hidden;
}

.mushroom-navigator {
  position: relative;
  width: 700px;
  height: 700px;
  margin: 0 auto;
}

/* Center 3D Core — 300px */
.mushroom-core {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: var(--white);
  box-shadow:
    0 0 0 5px var(--bg-forest),
    0 0 0 8px var(--green-primary),
    0 0 50px rgba(45,106,79,0.15),
    0 12px 40px rgba(0,0,0,0.10);
  z-index: 10;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mushroom-core canvas {
  width: 100% !important;
  height: 100% !important;
  border-radius: 50%;
}

#mushroom3dLoading {
  position: absolute;
  font-size: 0.85rem;
  color: var(--text-light);
  text-align: center;
}

/* ===== WEDGE FAN SHAPES ===== */
.wedge {
  position: absolute;
  width: 320px;
  height: 200px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 5;
  filter: drop-shadow(0 4px 12px rgba(13,40,24,0.12));
  left: calc(50% - 160px);
  top: calc(50% - 200px - 130px);
  transform-origin: 160px calc(200px + 130px);
}

.wedge-inner {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
  clip-path: path('M 5,195 Q 160,120 315,195 L 320,22 Q 160,-25 0,22 Z');
}

/* Wedge 1 — Products — 120° with nature gradient */
.wedge-1 {
  transform: rotate(120deg);
}
.wedge-1 .wedge-inner {
  background: linear-gradient(180deg, var(--green-whisper) 0%, var(--green-mist) 60%, var(--green-pale) 100%);
}
.wedge-1 .wedge-content {
  transform: rotate(-120deg);
}

/* Wedge 2 — Training — 0° */
.wedge-2 {
  transform: rotate(0deg);
}
.wedge-2 .wedge-inner {
  background: linear-gradient(180deg, var(--green-whisper) 0%, var(--green-mist) 60%, var(--green-pale) 100%);
}
.wedge-2 .wedge-content {
  transform: rotate(0deg);
}
.wedge-2 .wedge-content h3,
.wedge-2 .wedge-content p {
  color: var(--text-dark);
}
.wedge-2 .wedge-icon {
  color: var(--green-primary);
}

/* Wedge 3 — Blog — -120° */
.wedge-3 {
  transform: rotate(-120deg);
}
.wedge-3 .wedge-inner {
  background: linear-gradient(180deg, var(--green-whisper) 0%, var(--green-mist) 60%, var(--green-pale) 100%);
}
.wedge-3 .wedge-content {
  transform: rotate(120deg);
}

/* Wedge Content */
.wedge-content {
  text-align: center;
  z-index: 2;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-top: -30px;
}

.wedge-icon {
  font-size: 1.6rem;
  color: var(--green-primary);
  margin-bottom: 6px;
  transition: transform 0.3s ease;
}

.wedge-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  margin-bottom: 2px;
  color: var(--text-dark);
  line-height: 1.2;
}

.wedge-content p {
  font-size: 0.75rem;
  color: var(--text-medium);
  line-height: 1.3;
}

/* Wedge Preview Image */
.wedge-preview {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.wedge-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Hover Effects */
.wedge:hover {
  z-index: 8;
  filter: drop-shadow(0 8px 24px rgba(13,40,24,0.2));
}
.wedge-1:hover { transform: rotate(120deg) scale(1.1); }
.wedge-2:hover { transform: rotate(0deg) scale(1.1); }
.wedge-3:hover { transform: rotate(-120deg) scale(1.1); }

.wedge:hover .wedge-preview { opacity: 0.15; }
.wedge:hover .wedge-icon { transform: scale(1.3); }

/* Active press */
.wedge-1:active { transform: rotate(120deg) scale(1.02); transition-duration: 0.1s; }
.wedge-2:active { transform: rotate(0deg) scale(1.02); transition-duration: 0.1s; }
.wedge-3:active { transform: rotate(-120deg) scale(1.02); transition-duration: 0.1s; }

/* Decorative rings */
.mushroom-navigator::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 380px;
  height: 380px;
  border-radius: 50%;
  border: 1px dashed rgba(45,106,79,0.12);
  pointer-events: none;
}

.mushroom-navigator::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 550px;
  height: 550px;
  border-radius: 50%;
  border: 1px dashed rgba(45,106,79,0.06);
  pointer-events: none;
}

/* 3D Navigator Responsive */
@media (max-width: 768px) {
  .mushroom-navigator { width: 440px; height: 440px; }
  .mushroom-core { width: 200px; height: 200px; }
  .wedge {
    width: 165px; height: 140px;
    left: calc(50% - 82px);
    top: calc(50% - 140px - 85px);
    transform-origin: 82px calc(140px + 85px);
  }
  .wedge-inner {
    clip-path: path('M 16,130 Q 82,100 148,130 L 162,18 Q 82,-12 3,18 Z');
  }
  .wedge-content h3 { font-size: 0.85rem; }
  .wedge-content p { font-size: 0.6rem; }
  .mushroom-navigator::before { width: 280px; height: 280px; }
  .mushroom-navigator::after { width: 400px; height: 400px; }
}

@media (max-width: 480px) {
  .mushroom-3d-section { padding: 40px 0 50px; }
  .mushroom-3d-section .section-header h2 { font-size: 1.5rem; }
  .mushroom-3d-section .section-header p { font-size: 0.9rem; }
  .mushroom-navigator { width: 320px; height: 320px; }
  .mushroom-core { width: 140px; height: 140px; }
  .wedge {
    width: 115px; height: 100px;
    left: calc(50% - 57px);
    top: calc(50% - 100px - 55px);
    transform-origin: 57px calc(100px + 55px);
  }
  .wedge-inner {
    clip-path: path('M 12,92 Q 57,72 103,92 L 113,12 Q 57,-8 2,12 Z');
  }
  .wedge-content h3 { font-size: 0.7rem; }
  .wedge-content p { display: none; }
  .wedge-icon { font-size: 1rem; margin-bottom: 2px; }
  .wedge-content { margin-top: -20px; gap: 2px; }
  .mushroom-navigator::before { width: 200px; height: 200px; }
  .mushroom-navigator::after { width: 290px; height: 290px; }
}

/* ===== GALLERY OVERLAY ===== */
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,40,24,0.6) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: flex-end;
  padding: 12px;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay span {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 500;
}

/* ===== ACHIEVEMENTS CAROUSEL ===== */
.achievements-carousel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
}

.carousel-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 8px 0;
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

.carousel-slide {
  flex: 0 0 calc(25% - 12px);
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: var(--transition);
}

.carousel-slide:hover {
  box-shadow: var(--shadow-lg);
}

.carousel-slide img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.carousel-slide:hover img {
  transform: scale(1.1);
}

.carousel-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px;
  background: linear-gradient(to top, rgba(13,40,24,0.8), transparent);
  color: white;
  font-size: 0.85rem;
  font-weight: 600;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.carousel-slide:hover .carousel-caption {
  opacity: 1;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(45,106,79,0.15);
  color: var(--green-primary);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.carousel-btn:hover {
  background: linear-gradient(135deg, var(--green-primary), var(--green-medium));
  color: white;
  box-shadow: 0 4px 15px rgba(45,106,79,0.3);
}

.carousel-btn.prev { left: 8px; }
.carousel-btn.next { right: 8px; }

.carousel-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  padding: 8px 20px;
}

.carousel-indicator .indicator-dot {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--green-primary), var(--green-light));
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.carousel-indicator span {
  font-size: 0.85rem;
  color: var(--green-primary);
  font-weight: 500;
}

@media (max-width: 1024px) {
  .carousel-slide {
    flex: 0 0 calc(33.33% - 12px);
  }
}

@media (max-width: 768px) {
  .carousel-slide {
    flex: 0 0 calc(50% - 8px);
  }
}

@media (max-width: 480px) {
  .carousel-slide {
    flex: 0 0 calc(100%);
  }
}

/* ===== INSIGHTS SECTION RESPONSIVE ===== */
@media (max-width: 768px) {
  .insights-carousel {
    flex-direction: column;
    gap: 16px;
  }
  
  .insights-arrow {
    display: none;
  }
  
  .insights-mobile-arrows {
    display: flex;
  }
  
  .insights-viewport {
    width: 100%;
    border-radius: var(--radius-lg);
  }
  
  .insight-video-wrap {
    border-radius: var(--radius-lg);
  }
  
  .insight-video-reel {
    max-width: 100%;
    padding-bottom: 100%;
  }
  
  .insight-caption {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 12px 4px 4px;
  }
  
  .insight-caption h4 {
    font-size: 0.85rem;
  }
}
