﻿@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Poppins:wght@300;400;500;600;700&family=Caveat:wght@600;700&display=swap");

/* ===== CSS VARIABLES ===== */
:root {
  --cream: #FEFCF6; --cream-dark: #F5F0E8;
  --green: #1B4332; --green-mid: #2D6A4F; --green-light: #52B788;
  --gold: #C9A24B; --gold-light: #E4C77B;
  --text-body: #4A3728; --text-muted: #7A6152;
  --white: #FFFFFF;
  --shadow-sm: 0 2px 12px rgba(27,67,50,0.08);
  --shadow-md: 0 8px 32px rgba(27,67,50,0.12);
  --shadow-lg: 0 20px 60px rgba(27,67,50,0.18);
  --radius-sm: 12px; --radius-md: 20px; --radius-lg: 32px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: "Poppins", sans-serif; background: var(--cream); color: var(--text-body); line-height: 1.7; overflow-x: hidden; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
h1, h2, h3, h4 { font-family: "Playfair Display", serif; line-height: 1.25; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.text-center { text-align: center; }
section { padding: 5rem 0; }

.section-label { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); display: inline-block; margin-bottom: 0.65rem; }
.section-title { font-size: clamp(1.6rem, 4vw, 2.6rem); color: var(--green); margin-bottom: 0.85rem; }
.section-sub { font-size: 1rem; color: var(--text-muted); max-width: 560px; margin: 0 auto; line-height: 1.75; }

/* ===== BUTTONS ===== */
.btn { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.8rem 1.75rem; border-radius: 50px; font-family: "Poppins", sans-serif; font-size: 0.92rem; font-weight: 600; cursor: pointer; border: none; transition: var(--transition); white-space: nowrap; text-decoration: none; }
.btn-primary { background: var(--green); color: var(--white); box-shadow: 0 4px 20px rgba(27,67,50,0.35); }
.btn-primary:hover { background: var(--green-mid); transform: translateY(-2px); }
.btn-gold { background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: var(--green); box-shadow: 0 4px 20px rgba(201,162,75,0.4); font-weight: 700; }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(201,162,75,0.5); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.7); backdrop-filter: blur(10px); }
.btn-outline:hover { background: rgba(255,255,255,0.15); transform: translateY(-2px); }
.btn-wa { background: #25D366; color: var(--white); box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
.btn-wa:hover { background: #1ebe5d; transform: translateY(-2px); }

/* ===== HEADER ===== */
#header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; transition: all 0.4s ease; padding: 0.75rem 0; }
#header.scrolled { background: rgba(254,252,246,0.97); backdrop-filter: blur(20px); box-shadow: var(--shadow-sm); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }

/* Nav Logo */
.nav-logo { display: flex; align-items: center; gap: 0.65rem; text-decoration: none; flex-shrink: 0; }
.nav-logo-circle { width: 52px; height: 52px; border-radius: 50%; overflow: hidden; flex-shrink: 0; border: 2px solid rgba(201,162,75,0.5); box-shadow: 0 4px 12px rgba(27,67,50,0.25); transition: var(--transition); }
.nav-logo-circle img { width: 100%; height: 100%; object-fit: cover; display: block; }
.nav-logo:hover .nav-logo-circle { transform: scale(1.08); border-color: var(--gold); }
.nav-logo-text .brand-name { font-family: "Playfair Display", serif; font-size: 1.3rem; font-weight: 700; color: var(--white); display: block; line-height: 1.1; }
.nav-logo-text .brand-name .accent { color: var(--gold-light); }
.nav-logo-text .brand-sub { font-size: 0.58rem; color: rgba(255,255,255,0.7); letter-spacing: 0.1em; font-weight: 500; }
#header.scrolled .nav-logo-text .brand-name { color: var(--green); }
#header.scrolled .nav-logo-text .brand-name .accent { color: var(--gold); }
#header.scrolled .nav-logo-text .brand-sub { color: var(--text-muted); }

/* Nav Links */
.nav-links { display: flex; align-items: center; gap: 0.15rem; list-style: none; }
.nav-links a { padding: 0.45rem 0.85rem; font-size: 0.85rem; font-weight: 500; color: rgba(255,255,255,0.88); border-radius: 50px; transition: var(--transition); }
.nav-links a:hover { color: var(--gold-light); }
#header.scrolled .nav-links a { color: var(--text-body); }
#header.scrolled .nav-links a:hover { color: var(--green); }
.nav-links .nav-cta { background: var(--gold); color: var(--green) !important; padding: 0.45rem 1.1rem; font-weight: 700; margin-left: 0.4rem; }
.nav-links .nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; background: none; border: none; z-index: 10; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); }
#header.scrolled .hamburger span { background: var(--green); }

/* Mobile Nav Overlay */
.mobile-nav { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(27,67,50,0.97); backdrop-filter: blur(20px); z-index: 999; flex-direction: column; align-items: center; justify-content: center; gap: 1.75rem; }
.mobile-nav.active { display: flex; }
.mobile-nav a { font-family: "Playfair Display", serif; font-size: 1.8rem; color: var(--white); font-weight: 600; transition: var(--transition); }
.mobile-nav a:hover { color: var(--gold-light); transform: translateX(8px); }
.mobile-nav-close { position: absolute; top: 1.5rem; right: 1.5rem; font-size: 2.2rem; background: none; border: none; color: var(--white); cursor: pointer; line-height: 1; }
.mobile-nav-logo { margin-bottom: 1rem; }
.mobile-nav-logo img { width: 80px; height: 80px; border-radius: 50%; border: 3px solid rgba(201,162,75,0.6); margin: 0 auto; }

/* ===== HERO ===== */
#hero { min-height: 100vh; position: relative; display: flex; align-items: center; overflow: hidden; padding: 0; }
.hero-bg { position: absolute; inset: 0; background-image: url("../images/hero_background.jpg"); background-size: cover; background-position: center; transform: scale(1.05); }
.hero-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(27,67,50,0.88) 0%, rgba(27,67,50,0.65) 55%, rgba(92,61,30,0.45) 100%); }
.hero-content { position: relative; z-index: 2; max-width: 660px; padding: 6rem 0 4rem; }

.hero-badge { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(201,162,75,0.18); border: 1px solid rgba(201,162,75,0.45); color: var(--gold-light); padding: 0.38rem 0.9rem; border-radius: 50px; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 1.25rem; animation: fadeInUp 0.8s ease both; }
.hero-title { font-size: clamp(2rem, 5.5vw, 4.2rem); color: var(--white); line-height: 1.1; margin-bottom: 0.65rem; animation: fadeInUp 0.8s 0.15s ease both; }
.hero-title .accent { color: var(--gold-light); font-style: italic; }
.hero-script { font-family: "Caveat", cursive; font-size: clamp(1.15rem, 2.5vw, 1.7rem); color: var(--gold-light); margin-bottom: 1rem; animation: fadeInUp 0.8s 0.25s ease both; }
.hero-desc { color: rgba(255,255,255,0.85); font-size: 0.96rem; margin-bottom: 1.5rem; animation: fadeInUp 0.8s 0.35s ease both; max-width: 480px; }
.hero-grains-chips { display: flex; flex-wrap: wrap; gap: 0.45rem; margin-bottom: 2rem; animation: fadeInUp 0.8s 0.45s ease both; }
.hero-grains-chips span { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.22); color: rgba(255,255,255,0.88); padding: 0.25rem 0.8rem; border-radius: 50px; font-size: 0.75rem; font-weight: 500; backdrop-filter: blur(8px); transition: var(--transition); }
.hero-grains-chips span:hover { background: rgba(201,162,75,0.25); border-color: var(--gold); color: var(--gold-light); }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 0.85rem; animation: fadeInUp 0.8s 0.55s ease both; }
.hero-scroll { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 0.4rem; color: rgba(255,255,255,0.5); font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; animation: bounce 2s infinite; }
.hero-scroll svg { width: 16px; height: 16px; }

/* ===== WHY SAMPANN ===== */
#why { background: var(--white); }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; margin-top: 3rem; }
.why-card { background: var(--cream); border-radius: var(--radius-md); padding: 2rem 1.5rem; text-align: center; border: 1px solid rgba(201,162,75,0.15); transition: var(--transition); position: relative; overflow: hidden; }
.why-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--green), var(--gold)); transform: scaleX(0); transition: transform 0.4s ease; transform-origin: left; }
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.why-card:hover::before { transform: scaleX(1); }
.why-icon { width: 64px; height: 64px; background: linear-gradient(135deg, var(--green), var(--green-mid)); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.25rem; box-shadow: 0 6px 20px rgba(27,67,50,0.2); transition: var(--transition); }
.why-card:hover .why-icon { transform: scale(1.1) rotate(-5deg); }
.why-icon svg { width: 28px; height: 28px; color: var(--white); }
.why-card h3 { font-size: 1.05rem; color: var(--green); margin-bottom: 0.5rem; }
.why-card p { font-size: 0.83rem; color: var(--text-muted); line-height: 1.6; }

/* ===== OUR GRAINS ===== */
#grains { background: linear-gradient(180deg, var(--cream-dark) 0%, var(--cream) 100%); }
.grains-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; margin-top: 3rem; }
.grains-image-wrap { position: relative; }
.grains-image-wrap img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); width: 100%; object-fit: cover; }
.grains-image-badge { position: absolute; bottom: -1.25rem; right: -1.25rem; background: var(--green); color: var(--white); border-radius: var(--radius-md); padding: 1rem 1.25rem; text-align: center; box-shadow: var(--shadow-md); }
.grains-image-badge .num { font-family: "Playfair Display", serif; font-size: 2.2rem; font-weight: 700; color: var(--gold-light); line-height: 1; display: block; }
.grains-image-badge .lbl { font-size: 0.68rem; font-weight: 500; opacity: 0.85; }
.grains-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.grain-item { display: flex; align-items: center; gap: 0.85rem; padding: 0.85rem 1rem; background: var(--white); border-radius: var(--radius-sm); border: 1px solid rgba(201,162,75,0.15); transition: var(--transition); }
.grain-item:hover { transform: translateX(4px); border-color: var(--gold); box-shadow: var(--shadow-sm); }
.grain-icon-wrap { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.grain-icon-wrap svg { width: 20px; height: 20px; }
.grain-wheat  { background: rgba(201,162,75,0.15); color: #C9A24B; }
.grain-ragi   { background: rgba(101,67,33,0.12); color: #7B4F2E; }
.grain-jowar  { background: rgba(160,130,50,0.12); color: #A08030; }
.grain-bajra  { background: rgba(100,100,80,0.12); color: #6B6B3A; }
.grain-oats   { background: rgba(90,138,58,0.12); color: #5A8A3A; }
.grain-maize  { background: rgba(200,160,10,0.14); color: #B8920A; }
.grain-soy    { background: rgba(140,100,60,0.12); color: #8B6240; }
.grain-chana  { background: rgba(180,140,60,0.15); color: #9A7A30; }
.grain-info h4 { font-size: 0.88rem; font-weight: 600; color: var(--green); margin-bottom: 0.05rem; font-family: "Poppins", sans-serif; }
.grain-info p { font-size: 0.72rem; color: var(--text-muted); }

/* ===== PRODUCTS ===== */
#products { background: var(--white); }
.products-wrap { margin-top: 3rem; display: flex; justify-content: center; }
.product-card { background: var(--cream); border-radius: var(--radius-lg); overflow: hidden; border: 1px solid rgba(201,162,75,0.2); transition: var(--transition); max-width: 460px; width: 100%; }
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.product-image-area { background: linear-gradient(135deg, var(--cream-dark), #EDE8DC); padding: 2.5rem 2rem 2rem; text-align: center; position: relative; overflow: hidden; }
.product-image-area::before { content: ""; position: absolute; bottom: -30px; left: 50%; transform: translateX(-50%); width: 200px; height: 200px; background: radial-gradient(circle, rgba(27,67,50,0.06), transparent 70%); border-radius: 50%; }
.product-image-area img { height: 240px; width: auto; margin: 0 auto; object-fit: contain; position: relative; z-index: 1; transition: transform 0.5s ease; filter: drop-shadow(0 16px 32px rgba(27,67,50,0.18)); }
.product-card:hover .product-image-area img { transform: scale(1.05) translateY(-5px); }
.product-badge { position: absolute; top: 1rem; right: 1rem; background: var(--green); color: var(--white); font-size: 0.65rem; font-weight: 600; padding: 0.28rem 0.7rem; border-radius: 50px; letter-spacing: 0.05em; text-transform: uppercase; }
.product-body { padding: 1.75rem 1.75rem 2rem; }
.product-title { font-size: 1.4rem; color: var(--green); margin-bottom: 0.2rem; }
.product-subtitle { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 1.1rem; }
.product-features { display: flex; flex-wrap: wrap; gap: 0.35rem; margin-bottom: 1.5rem; }
.product-features span { background: rgba(27,67,50,0.08); color: var(--green); font-size: 0.7rem; font-weight: 500; padding: 0.25rem 0.7rem; border-radius: 50px; }
.product-price-row { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.product-price .price-label { font-size: 0.7rem; color: var(--text-muted); margin-bottom: 0.15rem; }
.product-price .price-main { font-family: "Playfair Display", serif; font-size: 1.1rem; font-weight: 700; color: var(--green); line-height: 1.2; }
.product-price .price-note { font-size: 0.7rem; color: var(--text-muted); margin-top: 0.15rem; }
.products-note { text-align: center; margin-top: 2rem; font-size: 0.85rem; color: var(--text-muted); }

/* ===== VIDEO SECTION ===== */
#video-section { background: var(--green); padding: 5rem 0; text-align: center; position: relative; overflow: hidden; }
#video-section::before { content: ""; position: absolute; inset: 0; background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E"); pointer-events: none; }
#video-section .section-label { color: var(--gold-light); }
#video-section .section-title { color: var(--white); }
#video-section .section-sub { color: rgba(255,255,255,0.7); margin-bottom: 2.5rem; }
.video-wrapper { max-width: 860px; margin: 0 auto; border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 40px 80px rgba(0,0,0,0.4); background: #000; position: relative; z-index: 1; }
.video-wrapper iframe { width: 100%; aspect-ratio: 16/9; border: none; display: block; border-radius: var(--radius-lg); }
.video-stats { display: flex; justify-content: center; gap: 3.5rem; margin-top: 3rem; flex-wrap: wrap; position: relative; z-index: 1; }
.video-stat { text-align: center; }
.video-stat .num { font-family: "Playfair Display", serif; font-size: 2.2rem; font-weight: 700; color: var(--gold-light); display: block; line-height: 1; margin-bottom: 0.2rem; }
.video-stat .lbl { font-size: 0.8rem; color: rgba(255,255,255,0.6); }

/* ===== NUTRITION ===== */
#nutrition { background: var(--cream-dark); }
.nutrition-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: start; margin-top: 3rem; }
.nutrition-table-wrap { background: var(--white); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-md); }
.nutrition-header { background: var(--green); color: var(--white); padding: 1.1rem 1.5rem; display: flex; justify-content: space-between; align-items: center; }
.nutrition-header h4 { font-size: 1rem; font-weight: 600; }
.nutrition-header span { font-size: 0.72rem; opacity: 0.7; }
.nutrition-table { width: 100%; border-collapse: collapse; }
.nutrition-table tr { border-bottom: 1px solid var(--cream-dark); transition: background 0.2s; }
.nutrition-table tr:last-child { border-bottom: none; }
.nutrition-table tr:hover { background: var(--cream); }
.nutrition-table td { padding: 0.85rem 1.5rem; font-size: 0.88rem; }
.nutrition-table td:first-child { color: var(--text-muted); }
.nutrition-table td:last-child { font-weight: 600; color: var(--green); text-align: right; }
.nutrition-note { padding: 0.75rem 1.5rem; font-size: 0.68rem; color: var(--text-muted); border-top: 1px solid var(--cream-dark); }
.nutrition-content h3 { font-size: 1.6rem; color: var(--green); margin-bottom: 0.75rem; }
.nutrition-content p { color: var(--text-muted); margin-bottom: 1.25rem; line-height: 1.75; font-size: 0.92rem; }
.ingredients-box { background: var(--white); border-radius: var(--radius-sm); padding: 1.25rem 1.5rem; border-left: 4px solid var(--gold); margin-bottom: 1.25rem; }
.ingredients-box h5, .how-to-box h5 { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.12em; font-weight: 700; margin-bottom: 0.4rem; font-family: "Poppins", sans-serif; }
.ingredients-box h5 { color: var(--gold); }
.ingredients-box p, .how-to-box p { font-size: 0.88rem; color: var(--text-body); line-height: 1.65; }
.how-to-box { background: rgba(27,67,50,0.06); border-radius: var(--radius-sm); padding: 1.25rem 1.5rem; }
.how-to-box h5 { color: var(--green); }

/* ===== ABOUT ===== */
#about { background: var(--white); }
.about-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 4.5rem; align-items: center; }
.about-image-wrap { position: relative; }
.about-image-wrap img { border-radius: var(--radius-lg); width: 100%; object-fit: cover; box-shadow: var(--shadow-lg); }
.about-float-badge { position: absolute; top: -1.25rem; left: -1.25rem; background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: var(--green); border-radius: var(--radius-md); padding: 1.1rem 1.25rem; text-align: center; box-shadow: var(--shadow-md); }
.about-float-badge .big { font-family: "Playfair Display", serif; font-size: 2rem; font-weight: 700; display: block; line-height: 1; }
.about-float-badge .sm { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; }
.about-content .section-label { display: block; }
.about-tagline { font-family: "Caveat", cursive; font-size: 1.45rem; color: var(--gold); margin: 0.4rem 0 0.9rem; display: block; }
.about-content p { color: var(--text-muted); margin-bottom: 1.1rem; line-height: 1.75; font-size: 0.92rem; }
.about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin-top: 1.75rem; }
.about-value { display: flex; align-items: flex-start; gap: 0.65rem; }
.check-circle { width: 20px; height: 20px; background: var(--green); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.check-circle svg { width: 11px; height: 11px; color: var(--white); }
.about-value p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.5; }

/* ===== CONTACT ===== */
#contact { background: var(--cream-dark); }
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; margin-top: 3rem; }
.contact-info h3 { font-size: 1.6rem; color: var(--green); margin-bottom: 0.75rem; }
.contact-info > p { color: var(--text-muted); margin-bottom: 1.75rem; line-height: 1.75; font-size: 0.92rem; }
.contact-channels { display: flex; flex-direction: column; gap: 0.85rem; margin-bottom: 1.75rem; }
.contact-channel { display: flex; align-items: center; gap: 1rem; padding: 0.9rem 1.1rem; background: var(--white); border-radius: var(--radius-sm); border: 1px solid rgba(201,162,75,0.2); transition: var(--transition); color: inherit; }
.contact-channel:hover { transform: translateX(4px); border-color: var(--gold); box-shadow: var(--shadow-sm); }
.channel-icon { width: 42px; height: 42px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.channel-icon.green { background: rgba(37,211,102,0.12); color: #25D366; }
.channel-icon.blue { background: rgba(27,67,50,0.08); color: var(--green); }
.channel-icon svg { width: 19px; height: 19px; }
.channel-text .label { font-size: 0.68rem; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.05rem; }
.channel-text .value { font-size: 0.88rem; font-weight: 600; color: var(--text-body); }
.contact-form-card { background: var(--white); border-radius: var(--radius-lg); padding: 2.25rem; box-shadow: var(--shadow-md); }
.contact-form-card h4 { font-size: 1.35rem; color: var(--green); margin-bottom: 1.5rem; }
.form-group { margin-bottom: 1.1rem; }
.form-group label { display: block; font-size: 0.72rem; font-weight: 600; color: var(--text-muted); margin-bottom: 0.45rem; text-transform: uppercase; letter-spacing: 0.08em; }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 0.78rem 1rem; border: 1.5px solid rgba(201,162,75,0.25); border-radius: var(--radius-sm); background: var(--cream); font-family: "Poppins", sans-serif; font-size: 0.88rem; color: var(--text-body); outline: none; transition: var(--transition); }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--green); background: var(--white); box-shadow: 0 0 0 3px rgba(27,67,50,0.08); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; }

/* ===== FOOTER ===== */
footer { background: var(--green); color: rgba(255,255,255,0.7); padding: 4rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2.5rem; margin-bottom: 2.5rem; }
.footer-brand { }
.footer-logo-img { width: 160px; height: auto; object-fit: contain; border-radius: 10px; background: rgba(255,255,255,0.1); padding: 8px 12px; margin-bottom: 1rem; display: block; }
.footer-brand p { font-size: 0.84rem; line-height: 1.7; color: rgba(255,255,255,0.58); }
.footer-col h5 { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; color: var(--gold-light); margin-bottom: 1.1rem; font-family: "Poppins", sans-serif; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.55rem; }
.footer-col ul li a { font-size: 0.84rem; color: rgba(255,255,255,0.58); transition: var(--transition); display: inline-block; }
.footer-col ul li a:hover { color: var(--white); transform: translateX(4px); }
.footer-social { display: flex; gap: 0.65rem; margin-top: 1.25rem; }
.footer-social a { width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.18); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.55); transition: var(--transition); }
.footer-social a:hover { background: rgba(255,255,255,0.1); border-color: var(--gold-light); color: var(--white); }
.footer-social a svg { width: 15px; height: 15px; }
.footer-divider { border: none; border-top: 1px solid rgba(255,255,255,0.1); margin-bottom: 1.75rem; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.75rem; }
.footer-bottom p { font-size: 0.75rem; color: rgba(255,255,255,0.4); }
.fssai-line { display: flex; align-items: center; gap: 0.45rem; font-size: 0.72rem; color: rgba(255,255,255,0.42); }
.fssai-badge { background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.18); padding: 0.15rem 0.5rem; border-radius: 4px; font-weight: 700; font-size: 0.65rem; color: var(--white); letter-spacing: 0.05em; }

/* ===== FLOATING WA BUTTON ===== */
.wa-float { position: fixed; bottom: 1.75rem; right: 1.75rem; z-index: 997; display: flex; align-items: center; gap: 0.65rem; background: #25D366; color: var(--white); border-radius: 50px; padding: 0.8rem 1.35rem 0.8rem 0.9rem; box-shadow: 0 8px 32px rgba(37,211,102,0.5); transition: var(--transition); animation: pulseWa 3s infinite; text-decoration: none; }
.wa-float:hover { background: #1ebe5d; transform: translateY(-3px) scale(1.03); animation: none; }
.wa-float svg { width: 22px; height: 22px; flex-shrink: 0; }
.wa-float span { font-size: 0.85rem; font-weight: 600; white-space: nowrap; }

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }
@keyframes bounce { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(9px); } }
@keyframes pulseWa { 0%, 100% { box-shadow: 0 8px 32px rgba(37,211,102,0.5); } 50% { box-shadow: 0 8px 48px rgba(37,211,102,0.75), 0 0 0 12px rgba(37,211,102,0.08); } }
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.stagger-1 { transition-delay: 0s; } .stagger-2 { transition-delay: 0.1s; } .stagger-3 { transition-delay: 0.2s; }
.stagger-4 { transition-delay: 0.3s; } .stagger-5 { transition-delay: 0.4s; } .stagger-6 { transition-delay: 0.5s; }
.stagger-7 { transition-delay: 0.6s; } .stagger-8 { transition-delay: 0.7s; }

/* ===========================
   RESPONSIVE â€” TABLET (768pxâ€“1023px)
   =========================== */
@media (max-width: 1023px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .grains-layout { grid-template-columns: 1fr; gap: 3rem; }
  .grains-list { grid-template-columns: 1fr 1fr; }
  .about-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-float-badge { top: -1rem; left: -0.75rem; }
  .nutrition-layout { grid-template-columns: 1fr; gap: 2.25rem; }
  .contact-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; }
  .video-stats { gap: 2rem; }
}

/* ===========================
   RESPONSIVE â€” MOBILE (max 767px)
   =========================== */
@media (max-width: 767px) {
  html { font-size: 15px; }
  section { padding: 3.5rem 0; }
  .container { padding: 0 1.1rem; }

  /* Header */
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-logo-circle { width: 44px; height: 44px; }
  .nav-logo-text .brand-name { font-size: 1.1rem; }
  .nav-logo-text .brand-sub { display: none; }

  /* Hero */
  .hero-content { padding: 5.5rem 0 3rem; }
  .hero-grains-chips { display: none; }
  .hero-buttons { flex-direction: column; width: 100%; }
  .hero-buttons .btn { width: 100%; justify-content: center; font-size: 0.9rem; padding: 0.85rem 1.25rem; }
  .hero-scroll { display: none; }

  /* Why */
  .why-grid { grid-template-columns: 1fr 1fr; gap: 0.9rem; }
  .why-card { padding: 1.5rem 1rem; }
  .why-icon { width: 52px; height: 52px; margin-bottom: 0.9rem; }
  .why-card h3 { font-size: 0.92rem; }
  .why-card p { font-size: 0.78rem; }

  /* Grains */
  .grains-layout { grid-template-columns: 1fr; gap: 2rem; }
  .grains-list { grid-template-columns: 1fr; }
  .grains-image-badge { bottom: -0.75rem; right: -0.5rem; padding: 0.75rem 1rem; }
  .grains-image-badge .num { font-size: 1.75rem; }

  /* Products */
  .product-image-area img { height: 190px; }
  .product-features { display: none; }
  .product-price-row { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
  .product-price-row .btn { width: 100%; justify-content: center; }

  /* Video */
  .video-stats { gap: 1.5rem; }
  .video-stat .num { font-size: 1.75rem; }

  /* Nutrition */
  .nutrition-layout { grid-template-columns: 1fr; }
  .nutrition-table td { padding: 0.7rem 1rem; }

  /* About */
  .about-layout { grid-template-columns: 1fr; }
  .about-values { grid-template-columns: 1fr; }
  .about-float-badge { top: -0.75rem; left: -0.5rem; }
  .about-float-badge .big { font-size: 1.6rem; }

  /* Contact */
  .contact-layout { grid-template-columns: 1fr; gap: 2rem; }
  .contact-form-card { padding: 1.5rem; }
  .form-row { grid-template-columns: 1fr; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 0.65rem; }
  .footer-logo-img { width: 130px; }

  /* Floating WA */
  .wa-float span { display: none; }
  .wa-float { padding: 0.95rem; border-radius: 50%; }
}

/* ===========================
   RESPONSIVE â€” SMALL MOBILE (max 420px)
   =========================== */
@media (max-width: 420px) {
  .why-grid { grid-template-columns: 1fr; }
  .section-title { font-size: 1.5rem; }
  .hero-title { font-size: 1.85rem; }
  .video-stats { flex-direction: column; gap: 1.25rem; align-items: center; }
}