/* ============================================
   DRINKOSIP — Premium Beverage Brand Stylesheet
   Light, Warm, Sophisticated Design System
   ============================================ */

@property --gradient-angle {
  syntax: '<angle>';
  initial-value: 180deg;
  inherits: false;
}

:root {
  /* Primary Greens */
  --green-50: #f0fdf4;
  --green-100: #dcfce7;
  --green-200: #bbf7d0;
  --green-300: #86efac;
  --green-400: #4ade80;
  --green-500: #22c55e;
  --green-600: #16a34a;
  --green-700: #15803d;
  --green-800: #166534;
  --green-900: #14532d;

  /* Warm Accents */
  --orange-400: #fb923c;
  --orange-500: #f97316;
  --orange-600: #ea580c;
  --yellow-300: #fde047;
  --yellow-400: #facc15;
  --yellow-500: #eab308;
  --red-500: #ef4444;
  --red-600: #dc2626;
  --blue-300: #93c5fd;
  --blue-400: #60a5fa;

  /* Neutrals (Warm) */
  --cream: #FFFDF7;
  --warm-50: #FEFCF3;
  --warm-100: #FDF8EC;
  --warm-200: #F5EFE0;
  --warm-300: #E8E0D0;
  --warm-400: #C4B9A5;
  --warm-500: #8C8272;
  --warm-600: #6B6356;
  --warm-700: #4A443A;
  --warm-800: #2D2A26;
  --warm-900: #1C1917;

  /* Surfaces */
  --surface-primary: #FFFDF7;
  --surface-card: #FFFFFF;
  --surface-elevated: #FFFFFF;
  --surface-dark: #0F2B1A;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(45,42,38,0.04), 0 1px 2px rgba(45,42,38,0.06);
  --shadow-md: 0 4px 16px rgba(45,42,38,0.06), 0 2px 4px rgba(45,42,38,0.04);
  --shadow-lg: 0 12px 40px rgba(45,42,38,0.08), 0 4px 12px rgba(45,42,38,0.04);
  --shadow-xl: 0 20px 60px rgba(45,42,38,0.1), 0 8px 20px rgba(45,42,38,0.06);
  --shadow-2xl: 0 32px 80px rgba(45,42,38,0.12), 0 12px 32px rgba(45,42,38,0.08);
  --shadow-glow-green: 0 8px 32px rgba(22,163,74,0.15);
  --shadow-glow-orange: 0 8px 32px rgba(249,115,22,0.15);

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-hindi: 'Noto Sans Devanagari', sans-serif;

  /* Spacing */
  --section-padding: clamp(4rem, 8vw, 7rem);
  --container-max: 1280px;
  --nav-height: 80px;

  /* Radii */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  /* Transitions */
  --ease-out-expo: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out-back: cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition-fast: 0.2s var(--ease-out-expo);
  --transition-base: 0.4s var(--ease-out-expo);
  --transition-slow: 0.6s var(--ease-out-expo);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-height) + 1rem);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--warm-800);
  background-color: var(--surface-primary);
  overflow-x: hidden;
  position: relative;
}

/* Subtle noise texture */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 99999;
  pointer-events: none;
  opacity: 0.022;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition-fast); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--warm-900);
}

h1 { font-size: clamp(2.5rem, 6vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.15rem, 2vw, 1.35rem); }

p {
  color: var(--warm-600);
  max-width: 65ch;
}

.hindi-text { font-family: var(--font-hindi); }

/* --- Container --- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}

/* --- Section --- */
.section {
  padding-block: var(--section-padding);
  position: relative;
}

/* --- Overline --- */
.overline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-600);
  margin-bottom: 1rem;
}

.overline::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--green-500);
  border-radius: 2px;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--green-500), var(--green-600));
  color: #fff;
  box-shadow: var(--shadow-md), var(--shadow-glow-green);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg), 0 12px 40px rgba(22,163,74,0.25);
}

.btn-outline {
  border: 2px solid var(--green-500);
  color: var(--green-700);
  background: transparent;
}
.btn-outline:hover {
  background: var(--green-50);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-orange {
  background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
  color: #fff;
  box-shadow: var(--shadow-md), var(--shadow-glow-orange);
}
.btn-orange:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg), 0 12px 40px rgba(249,115,22,0.25);
}

.btn-white-ghost {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.25);
}
.btn-white-ghost:hover {
  background: rgba(255,255,255,0.22);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.05rem;
}

/* --- Gradient Text --- */
.gradient-text {
  background: linear-gradient(135deg, var(--green-500) 0%, var(--green-400) 40%, var(--orange-500) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --- Veg symbol --- */
.veg-symbol {
  width: 16px; height: 16px;
  border: 2px solid var(--green-600);
  border-radius: 2px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.veg-symbol::after {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green-600);
}


/* ============================================
   PAGE LOADER
   ============================================ */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 100000;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  transition: opacity 0.6s var(--ease-out-expo), visibility 0.6s;
}
.page-loader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.page-loader .loader-logo {
  width: 120px;
  animation: loaderPulse 1.2s ease-in-out infinite alternate;
}
.page-loader .loader-logo img {
  width: 100%;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.1));
}
.loader-bar {
  width: 160px; height: 3px;
  background: var(--warm-200);
  border-radius: 3px;
  overflow: hidden;
}
.loader-bar-fill {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--green-400), var(--green-600));
  border-radius: 3px;
  animation: loaderProgress 0.8s var(--ease-out-expo) forwards;
}
@keyframes loaderPulse {
  from { opacity: 0.6; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes loaderProgress { to { width: 100%; } }


/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: all var(--transition-base);
  background: transparent;
}
.navbar.scrolled {
  background: rgba(255,253,247,0.88);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 1px 0 rgba(0,0,0,0.05), var(--shadow-sm);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav-logo-img {
  width: 180px; height: auto;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.1));
  transition: transform var(--transition-fast);
}
.nav-logo:hover .nav-logo-img { transform: scale(1.03); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.nav-links a {
  font-size: 0.925rem;
  font-weight: 500;
  color: var(--warm-700);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
}
.nav-links a:hover {
  color: var(--green-700);
  background: rgba(22,163,74,0.06);
}
.nav-links a.active {
  color: #fff;
  background: linear-gradient(135deg, var(--green-500), var(--green-600));
  box-shadow: var(--shadow-sm), var(--shadow-glow-green);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  cursor: pointer;
  z-index: 1001;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--warm-800);
  border-radius: 2px;
  transition: all var(--transition-fast);
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile overlay */
.mobile-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 998; opacity: 0; visibility: hidden;
  transition: all var(--transition-base);
}
.mobile-overlay.show { opacity: 1; visibility: visible; }

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed; top: 0; right: -100%;
    width: 300px; height: 100vh;
    flex-direction: column;
    justify-content: center;
    gap: 0.5rem;
    background: rgba(255,253,247,0.98);
    backdrop-filter: blur(20px);
    box-shadow: -8px 0 32px rgba(0,0,0,0.1);
    transition: right var(--transition-base);
    padding: 2rem;
    z-index: 999;
  }
  .nav-links.open { right: 0; }
  .nav-links a { font-size: 1.1rem; width: 100%; padding: 0.75rem 1.25rem; }
}


/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    180deg,
    var(--cream) 0%,
    #f7fdf9 20%,
    #f0fdf4 40%,
    #e8faf0 55%,
    #f0fdf4 70%,
    var(--cream) 100%
  );
}
.hero::before {
  content: '';
  position: absolute;
  top: -10%; right: -5%;
  width: 60%; height: 70%;
  background: radial-gradient(ellipse at center, rgba(34,197,94,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -10%; left: -5%;
  width: 50%; height: 60%;
  background: radial-gradient(ellipse at center, rgba(249,115,22,0.04) 0%, transparent 55%);
  pointer-events: none;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  padding-top: var(--nav-height);
  position: relative;
  z-index: 2;
}

.hero-content { padding-block: 2rem; }

.hero-overline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-600);
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 1.05;
  margin-bottom: 1rem;
}
.hero-title .line { display: block; }

.hero-hindi {
  font-family: var(--font-hindi);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--yellow-500);
  font-style: italic;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.hero-desc {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--warm-500);
  max-width: 480px;
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Hero image */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-image-wrapper {
  position: relative;
  z-index: 2;
}
.hero-image-wrapper img {
  width: 100%;
  max-width: 560px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 2px solid rgba(255,255,255,0.6);
  transition: transform var(--transition-slow);
}
.hero-image-wrapper:hover img { transform: scale(1.02); }

.hero-blob {
  position: absolute;
  inset: -30px;
  background: radial-gradient(ellipse at center, rgba(34,197,94,0.08) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
  filter: blur(20px);
}

.hero-badge {
  position: absolute;
  top: 2rem; right: -1rem;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.5);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green-700);
  box-shadow: var(--shadow-md);
  z-index: 3;
  animation: floatGentle 3s ease-in-out infinite;
}

@keyframes floatGentle {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* Hero wave */
.hero-wave {
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  z-index: 3;
}
.hero-wave svg { display: block; width: 100%; height: auto; }


/* ============================================
   SOCIAL PROOF / INTRO
   ============================================ */
.social-proof {
  background: linear-gradient(180deg, var(--warm-50) 0%, #f5fbf7 50%, var(--warm-50) 100%);
  position: relative;
  overflow: hidden;
}
.social-proof .section-header {
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
  margin-bottom: 3rem;
}
.section-title-decorated {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.section-title-decorated .line-ornament {
  width: 60px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--green-400), transparent);
}
.social-proof .section-desc {
  text-align: center;
  font-size: 1.1rem;
  color: var(--warm-500);
  margin-inline: auto;
}

/* Marquee */
.marquee-wrapper {
  overflow: hidden;
  padding-block: 2rem;
  position: relative;
}
.marquee-wrapper::before,
.marquee-wrapper::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px; z-index: 2;
  pointer-events: none;
}
.marquee-wrapper::before {
  left: 0;
  background: linear-gradient(90deg, var(--warm-50), transparent);
}
.marquee-wrapper::after {
  right: 0;
  background: linear-gradient(270deg, var(--warm-50), transparent);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 30s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }

.marquee-item {
  flex-shrink: 0;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--warm-900);
  opacity: 0.07;
  white-space: nowrap;
  padding-inline: 2rem;
  letter-spacing: -0.02em;
}

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


/* ============================================
   PRODUCTS SHOWCASE
   ============================================ */
.products-showcase {
  background: linear-gradient(
    180deg, var(--cream) 0%, #fafef5 25%, #f4fdf0 50%, #fafef5 75%, var(--cream) 100%
  );
  position: relative;
}
.products-showcase::before {
  content: '';
  position: absolute;
  top: 10%; left: -10%;
  width: 40%; height: 50%;
  background: radial-gradient(ellipse at center, rgba(34,197,94,0.04) 0%, transparent 60%);
  pointer-events: none;
}

.section-header {
  margin-bottom: 3.5rem;
}
.section-header.centered {
  text-align: center;
}
.section-header.centered .overline { justify-content: center; }
.section-header.centered p { margin-inline: auto; text-align: center; }
.section-header h2 { margin-bottom: 0.75rem; }
.section-header p { font-size: 1.05rem; }

/* Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.product-card {
  background: var(--surface-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  position: relative;
  border: 1px solid rgba(0,0,0,0.04);
}
.product-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.product-card[data-color="gold"]::before { background: linear-gradient(90deg, var(--yellow-400), var(--orange-400)); }
.product-card[data-color="red"]::before { background: linear-gradient(90deg, var(--red-500), var(--red-600)); }
.product-card[data-color="green"]::before { background: linear-gradient(90deg, var(--green-400), var(--green-600)); }
.product-card[data-color="blue"]::before { background: linear-gradient(90deg, var(--blue-300), var(--blue-400)); }

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.product-card-image {
  width: 100%;
  height: 280px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--warm-50);
}
.product-card-image img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 1rem;
  transition: transform var(--transition-base);
}
.product-card:hover .product-card-image img { transform: scale(1.05); }

.product-card-body { padding: 1.5rem; }

.product-card-tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}
.product-card[data-color="gold"] .product-card-tag { background: #fef3c7; color: #92400e; }
.product-card[data-color="red"] .product-card-tag { background: #fee2e2; color: #991b1b; }
.product-card[data-color="green"] .product-card-tag { background: var(--green-100); color: var(--green-800); }
.product-card[data-color="blue"] .product-card-tag { background: #dbeafe; color: #1e40af; }

.product-card-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--warm-900);
  margin-bottom: 0.25rem;
}
.product-card-tagline {
  font-size: 0.9rem;
  color: var(--warm-500);
}

.section-cta { text-align: center; }


/* ============================================
   FEATURED PRODUCT
   ============================================ */
.featured-product {
  background: linear-gradient(
    180deg, var(--cream) 0%, #fffbf0 20%, #fef8e8 40%, #fffbf0 70%, var(--cream) 100%
  );
  position: relative;
  overflow: hidden;
}
.featured-product::before {
  content: '';
  position: absolute;
  top: 20%; right: -10%;
  width: 50%; height: 60%;
  background: radial-gradient(ellipse at center, rgba(250,204,21,0.06) 0%, transparent 55%);
  pointer-events: none;
}

.featured-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.featured-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 2px solid rgba(255,255,255,0.5);
}
.featured-content { padding-block: 2rem; }
.featured-content h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 0.5rem;
}
.featured-hindi {
  font-family: var(--font-hindi);
  font-size: 1.15rem;
  color: var(--yellow-500);
  font-weight: 500;
  margin-bottom: 1.5rem;
}
.featured-content .desc {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--warm-500);
  margin-bottom: 2rem;
}

/* Ingredients */
.ingredients-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.ingredient-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.ingredient-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: var(--shadow-sm);
}
.ingredient-item span {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--warm-600);
  text-align: center;
}
.ingredient-item .hindi-label {
  font-family: var(--font-hindi);
  font-size: 0.7rem;
  color: var(--warm-400);
}


/* ============================================
   WHY DRINKOSIP
   ============================================ */
.why-section {
  background: linear-gradient(
    180deg, var(--cream) 0%, #f0fdf4 30%, #e8faf0 50%, #f0fdf4 70%, var(--cream) 100%
  );
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}
.feature-card {
  background: var(--surface-card);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.04);
  transition: all var(--transition-base);
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.feature-icon {
  width: 64px; height: 64px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 1.25rem;
  background: linear-gradient(135deg, var(--green-50), var(--green-100));
}
.feature-card h4 { margin-bottom: 0.5rem; font-size: 1.05rem; }
.feature-card p { font-size: 0.9rem; color: var(--warm-500); margin-inline: auto; }

/* Stats */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.stat-item {
  text-align: center;
  padding: 1.5rem;
  background: var(--surface-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.04);
}
.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3vw, 2.75rem);
  font-weight: 700;
  color: var(--green-600);
  line-height: 1.2;
}
.stat-label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--warm-500);
  margin-top: 0.25rem;
}


/* ============================================
   CTA SECTION (Dark)
   ============================================ */
.cta-section {
  background: var(--surface-dark);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -30%; right: -10%;
  width: 50%; height: 80%;
  background: radial-gradient(ellipse at center, rgba(34,197,94,0.1) 0%, transparent 60%);
  pointer-events: none;
}
.cta-section::after {
  content: '';
  position: absolute;
  bottom: -20%; left: -10%;
  width: 40%; height: 60%;
  background: radial-gradient(ellipse at center, rgba(249,115,22,0.06) 0%, transparent 55%);
  pointer-events: none;
}
.cta-content {
  position: relative; z-index: 2;
  text-align: center;
  max-width: 700px;
  margin-inline: auto;
}
.cta-content h2 { color: #fff; margin-bottom: 1rem; }
.cta-content p {
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  margin-inline: auto;
  margin-bottom: 2rem;
  text-align: center;
}


/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--surface-dark);
  padding-top: 5rem;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
}
.footer-brand .footer-logo {
  width: 200px;
  margin-bottom: 1rem;
}
.footer-brand .footer-logo img {
  width: 100%;
  mix-blend-mode: screen;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
}
.footer-brand .footer-tagline {
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  max-width: 280px;
}
.footer-brand .footer-hindi {
  font-family: var(--font-hindi);
  color: var(--yellow-400);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}
.footer-social {
  display: flex;
  gap: 0.75rem;
}
.footer-social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: all var(--transition-fast);
  font-size: 1rem;
}
.footer-social a:hover {
  background: var(--green-600);
  color: #fff;
  transform: translateY(-2px);
}
.footer-col h4 {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  font-family: var(--font-body);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.footer-col ul li { margin-bottom: 0.75rem; }
.footer-col ul li a {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  transition: all var(--transition-fast);
}
.footer-col ul li a:hover {
  color: var(--green-400);
  padding-left: 4px;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p {
  color: rgba(255,255,255,0.4);
  font-size: 0.8rem;
}
.state-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.state-pill {
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  transition: all var(--transition-fast);
}
.state-pill:hover {
  background: rgba(250,204,21,0.1);
  border-color: var(--yellow-400);
  color: var(--yellow-400);
}


/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero {
  padding-top: calc(var(--nav-height) + 4rem);
  padding-bottom: 4rem;
  background: linear-gradient(
    180deg, var(--cream) 0%, #f5fbf7 30%, #ecfaef 50%, #f5fbf7 70%, var(--cream) 100%
  );
  position: relative;
  text-align: center;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0; left: -10%;
  width: 50%; height: 80%;
  background: radial-gradient(ellipse at center, rgba(34,197,94,0.04) 0%, transparent 55%);
  pointer-events: none;
}
.page-hero .overline { justify-content: center; }
.page-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1rem;
}
.page-hero p {
  font-size: 1.1rem;
  color: var(--warm-500);
  margin-inline: auto;
  text-align: center;
  max-width: 600px;
}
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--warm-400);
  margin-top: 1.5rem;
}
.breadcrumb a { color: var(--green-600); }
.breadcrumb a:hover { text-decoration: underline; }


/* ============================================
   ABOUT PAGE
   ============================================ */
.story-section {
  background: linear-gradient(180deg, var(--cream) 0%, var(--warm-50) 50%, var(--cream) 100%);
}
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.story-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 2px solid rgba(255,255,255,0.5);
}
.story-content h2 { margin-bottom: 1.5rem; }
.story-content p {
  margin-bottom: 1rem;
  font-size: 1.05rem;
  line-height: 1.8;
}
.story-content .founder { font-weight: 600; color: var(--green-700); }

/* Timeline */
.timeline-section {
  background: linear-gradient(
    180deg, var(--cream) 0%, #f0fdf4 30%, #dcfce7 50%, #f0fdf4 70%, var(--cream) 100%
  );
}
.timeline {
  position: relative;
  max-width: 800px;
  margin-inline: auto;
  padding-left: 2rem;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--green-300), var(--green-500), var(--green-300));
  border-radius: 3px;
}
.timeline-item {
  position: relative;
  padding-left: 2.5rem;
  padding-bottom: 3rem;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-dot {
  position: absolute;
  left: -0.5rem; top: 0.25rem;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--green-500);
  border: 4px solid var(--cream);
  box-shadow: var(--shadow-sm);
}
.timeline-year {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--green-700);
  margin-bottom: 0.5rem;
}
.timeline-item h4 {
  font-family: var(--font-body);
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}
.timeline-item p { font-size: 0.95rem; }

/* Values */
.values-section {
  background: linear-gradient(180deg, var(--cream) 0%, var(--warm-50) 50%, var(--cream) 100%);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.value-card {
  background: var(--surface-card);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.04);
  transition: all var(--transition-base);
}
.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.value-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-50), var(--green-100));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 1rem;
}
.value-card h4 { margin-bottom: 0.5rem; }
.value-card p { font-size: 0.9rem; color: var(--warm-500); margin-inline: auto; }

/* Regions */
.regions-section {
  background: linear-gradient(180deg, var(--cream) 0%, #f0fdf4 50%, var(--cream) 100%);
}
.regions-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}
.region-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  background: var(--surface-card);
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.04);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--warm-700);
  transition: all var(--transition-base);
}
.region-badge:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md), var(--shadow-glow-green);
  border-color: var(--green-200);
  color: var(--green-700);
}


/* ============================================
   PRODUCTS PAGE
   ============================================ */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 3rem;
}
.filter-btn {
  padding: 0.625rem 1.5rem;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--warm-600);
  background: transparent;
  border: 2px solid var(--warm-200);
  transition: all var(--transition-fast);
  cursor: pointer;
}
.filter-btn:hover {
  border-color: var(--green-300);
  color: var(--green-700);
  background: var(--green-50);
}
.filter-btn.active {
  background: linear-gradient(135deg, var(--green-500), var(--green-600));
  color: #fff;
  border-color: transparent;
  box-shadow: var(--shadow-sm), var(--shadow-glow-green);
}

/* Large cards */
.products-grid-large {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.product-card-large {
  background: var(--surface-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0,0,0,0.04);
  transition: all var(--transition-base);
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.product-card-large:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}
.product-card-large-image {
  height: 100%;
  min-height: 320px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-card-large-image img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 1.5rem;
  transition: transform var(--transition-base);
}
.product-card-large:hover .product-card-large-image img {
  transform: scale(1.05);
}
.product-card-large-body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.product-badge-row {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.product-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.badge-flagship { background: linear-gradient(135deg, #fef3c7, #fde68a); color: #92400e; }
.badge-masala { background: #fef3c7; color: #92400e; }
.badge-energy { background: #fee2e2; color: #991b1b; }
.badge-soda { background: var(--green-100); color: var(--green-800); }
.badge-water { background: #dbeafe; color: #1e40af; }
.badge-veg { background: var(--green-100); color: var(--green-800); gap: 0.35rem; }

.product-card-large-body h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}
.product-card-large-body .desc {
  font-size: 0.95rem;
  color: var(--warm-500);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.product-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.product-feature-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.3rem 0.75rem;
  background: var(--warm-50);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--warm-600);
}

/* Quality */
.quality-section {
  background: linear-gradient(180deg, var(--cream) 0%, #f5fbf7 50%, var(--cream) 100%);
}
.quality-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.quality-card {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all var(--transition-base);
}
.quality-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  background: rgba(255,255,255,0.9);
}
.quality-icon {
  width: 56px; height: 56px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--green-50), var(--green-100));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto 1rem;
}
.quality-card h4 { margin-bottom: 0.5rem; font-size: 1rem; }
.quality-card p { font-size: 0.85rem; color: var(--warm-500); margin-inline: auto; }


/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-section {
  background: linear-gradient(180deg, var(--cream) 0%, var(--warm-50) 50%, var(--cream) 100%);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: start;
}
.contact-form-card {
  background: var(--surface-card);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(0,0,0,0.04);
}
.contact-form-card h3 { margin-bottom: 0.5rem; }
.contact-form-card .form-desc {
  color: var(--warm-500);
  font-size: 0.95rem;
  margin-bottom: 2rem;
}
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--warm-700);
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.875rem 1.25rem;
  border: 2px solid var(--warm-200);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--warm-800);
  background: var(--warm-50);
  transition: all var(--transition-fast);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--green-400);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(34,197,94,0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--warm-400); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-success {
  display: none;
  padding: 1.25rem;
  background: var(--green-50);
  border: 1px solid var(--green-200);
  border-radius: var(--radius-md);
  color: var(--green-700);
  font-weight: 600;
  text-align: center;
  margin-top: 1rem;
}
.form-success.show { display: block; }

/* Contact info */
.contact-info-stack {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contact-info-card {
  background: var(--surface-card);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.04);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: all var(--transition-base);
}
.contact-info-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.contact-info-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--green-50), var(--green-100));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-info-card h4 {
  font-size: 0.95rem;
  font-family: var(--font-body);
  margin-bottom: 0.25rem;
}
.contact-info-card p { font-size: 0.9rem; color: var(--warm-500); }

/* Map */
.map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 2px solid rgba(0,0,0,0.04);
  margin-top: 3rem;
}
.map-wrapper iframe {
  width: 100%; height: 400px;
  border: none; display: block;
}


/* ============================================
   SCROLL REVEAL
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out-expo), transform 0.7s var(--ease-out-expo);
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* Bubbles canvas */
#bubbles-canvas {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}


/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-content { order: 2; }
  .hero-visual { order: 1; }
  .hero-desc { margin-inline: auto; }
  .hero-buttons { justify-content: center; }
  .hero-badge { right: 0; top: 1rem; }

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

  .featured-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .featured-content { order: 2; }
  .featured-image { order: 1; max-width: 500px; margin-inline: auto; }
  .ingredients-row { justify-content: center; }

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

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

  .story-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .story-image { max-width: 500px; margin-inline: auto; }
  .story-content p { margin-inline: auto; }

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

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

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

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

@media (max-width: 640px) {
  .hero-title { font-size: clamp(2.2rem, 8vw, 3rem); }

  .product-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-inline: auto;
  }
  .features-grid, .stats-bar, .values-grid, .quality-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-inline: auto;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-brand .footer-logo { margin-inline: auto; }
  .footer-social { justify-content: center; }
  .footer-bottom { justify-content: center; text-align: center; }
  .state-pills { justify-content: center; }

  .product-card-large { grid-template-columns: 1fr; }
  .product-card-large-image { min-height: 240px; }

  .form-row { grid-template-columns: 1fr; }
  .hero-badge { display: none; }
}

/* Focus visible */
:focus-visible {
  outline: 2px solid var(--green-500);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Selection */
::selection {
  background: var(--green-200);
  color: var(--green-900);
}

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--warm-50); }
::-webkit-scrollbar-thumb { background: var(--green-400); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--green-600); }
