/* ==========================================================================
   MORNINGINDIA CRAFT DAIRY - LUXURY STYLESHEET
   Inspired by Mildar & Milatte (Artisanal European & Vedic Farm Aesthetics)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Google Fonts & CSS Custom Properties / Design Tokens
   -------------------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,500;0,600;0,700;0,800;0,900;1,600;1,700&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
  /* Warm Organic Palette (Mildar & Milatte Signature) */
  --bg-cream: #FAF7F2;
  --bg-cream-alt: #F4EFE6;
  --bg-paper: #EDE6D8;
  --bg-white: #FFFFFF;
  --bg-card: #FFFFFF;

  /* Forest & Heritage Charcoal */
  --forest-dark: #162419;
  --forest-deep: #101B13;
  --forest-medium: #1E3324;
  --forest-muted: #2E4735;
  --forest-light: #EBF2EC;

  /* Golden Sunshine & Vedic Honey */
  --gold: #D4A038;
  --gold-hover: #BF8D2B;
  --gold-light: #FBF4E6;
  --gold-border: rgba(212, 160, 24, 0.25);

  /* Text Colors */
  --text-dark: #1A241C;
  --text-body: #3E4B41;
  --text-muted: #6B7B6F;
  --text-light: #FAF7F2;

  /* Accent & Status */
  --accent-terra: #C66A38;
  --border-subtle: rgba(22, 36, 25, 0.08);
  --border-medium: rgba(22, 36, 25, 0.14);

  /* Typography */
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-brand: 'Outfit', sans-serif;

  /* Dimensions & Spacing */
  --header-height: 84px;
  --max-width: 1240px;
  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-pill: 999px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(22, 36, 25, 0.04);
  --shadow-md: 0 8px 24px rgba(22, 36, 25, 0.07);
  --shadow-lg: 0 16px 40px rgba(22, 36, 25, 0.1);
  --shadow-hover: 0 20px 48px rgba(22, 36, 25, 0.14);

  /* Transitions */
  --transition: all 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-cream);
  color: var(--text-body);
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-cream);
  color: var(--text-body);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

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

button, input, select, textarea {
  font-family: inherit;
  font-size: 1rem;
  color: inherit;
  border: none;
  outline: none;
}

button {
  cursor: pointer;
  background: none;
}

/* Typography Headings */
h1, h2, h3, h4, .serif-font {
  font-family: var(--font-serif);
  color: var(--text-dark);
  line-height: 1.25;
  font-weight: 700;
}

/* Container & Sections */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.section-padding {
  padding-top: 5.5rem;
  padding-bottom: 5.5rem;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 3.5rem auto;
}

.sub-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2.2px;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 700;
  color: var(--forest-dark);
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Torn Paper / Organic Edge Divider */
.torn-paper-divider {
  position: relative;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 5;
}

.torn-paper-divider svg {
  display: block;
  width: 100%;
  height: 48px;
}

.torn-divider-cream path {
  fill: var(--bg-cream);
}

.torn-divider-white path {
  fill: var(--bg-white);
}

.torn-divider-paper path {
  fill: var(--bg-cream-alt);
}

.torn-divider-dark path {
  fill: var(--forest-dark);
}

/* --------------------------------------------------------------------------
   3. Buttons & Interactive Controls
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.85rem 1.85rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: var(--radius-pill);
  transition: var(--transition);
  white-space: nowrap;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, #b88624 100%);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(212, 160, 24, 0.35);
}

.btn-gold:hover {
  background: linear-gradient(135deg, #e0aa3e 0%, var(--gold) 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 160, 24, 0.45);
}

.btn-forest {
  background: var(--forest-dark);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(22, 36, 25, 0.25);
}

.btn-forest:hover {
  background: var(--forest-medium);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(22, 36, 25, 0.35);
}

.btn-outline-forest {
  border: 1.5px solid var(--forest-dark);
  color: var(--forest-dark);
  background: transparent;
}

.btn-outline-forest:hover {
  background: var(--forest-dark);
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.55rem 1.25rem;
  font-size: 0.85rem;
}

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

/* --------------------------------------------------------------------------
   4. Top Announcement Bar
   -------------------------------------------------------------------------- */
.announcement-bar {
  background: var(--forest-dark);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.84rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.announcement-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.announcement-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.announcement-item svg {
  width: 16px;
  height: 16px;
  fill: var(--gold);
  flex-shrink: 0;
}

.announcement-contact a {
  color: #ffffff;
  font-weight: 700;
  margin-left: 0.35rem;
}

.announcement-contact a:hover {
  color: var(--gold);
}

/* --------------------------------------------------------------------------
   5. Sticky Header & Navigation
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-subtle);
  transition: var(--transition);
}

.site-header.scrolled {
  box-shadow: 0 6px 24px rgba(22, 36, 25, 0.07);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  gap: 1.25rem;
}

/* Brand Logo (Clean, high-contrast, black logo) */
.brand-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-logo-img {
  height: 56px;
  width: auto;
  max-width: 190px;
  object-fit: contain;
  display: block;
  transition: transform 0.2s ease;
}

.brand-logo:hover .brand-logo-img {
  transform: scale(1.02);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 1.8vw, 2rem);
}

.nav-link {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-dark);
  position: relative;
  padding: 0.4rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--gold);
  transition: width 0.25s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

/* Language Switcher */
.lang-switch-toggle {
  display: inline-flex;
  align-items: center;
  background-color: var(--bg-cream-alt);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-pill);
  padding: 2px 4px;
}

.lang-btn {
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-pill);
  color: var(--text-muted);
  transition: var(--transition);
}

.lang-btn.active {
  background: var(--forest-dark);
  color: #ffffff;
}

.lang-divider {
  color: #c9c3b8;
  font-size: 0.75rem;
  user-select: none;
}

.phone-quick-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--forest-dark);
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-pill);
  background-color: var(--bg-cream-alt);
  transition: var(--transition);
}

.phone-quick-btn svg {
  width: 15px;
  height: 15px;
  fill: var(--gold);
}

.phone-quick-btn:hover {
  background-color: var(--gold-light);
  color: var(--gold-hover);
}

.mobile-toggle-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  border-radius: var(--radius-sm);
  background-color: var(--bg-cream-alt);
}

.mobile-toggle-btn span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: var(--forest-dark);
  border-radius: 2px;
}

/* --------------------------------------------------------------------------
   6. Hero Section (Milatte / Mildar Grandeur)
   -------------------------------------------------------------------------- */
.hero-section {
  position: relative;
  background-color: var(--bg-cream);
  padding: 4.5rem 0 6rem 0;
  overflow: hidden;
}

.hero-bg-watermark {
  position: absolute;
  top: 5%;
  right: -5%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 160, 24, 0.12) 0%, rgba(250, 247, 242, 0) 70%);
  pointer-events: none;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 3.5rem;
  position: relative;
  z-index: 2;
}

.hero-badge-wrap {
  margin-bottom: 1.25rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background-color: var(--gold-light);
  border: 1px solid var(--gold-border);
  color: #9c6c10;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
}

.hero-headline {
  font-size: clamp(2.4rem, 4.4vw, 3.8rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--forest-dark);
  margin-bottom: 1.35rem;
  letter-spacing: -0.7px;
}

.hero-headline em {
  font-style: italic;
  color: var(--gold);
  font-weight: 700;
}

.hero-description {
  font-size: 1.12rem;
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 580px;
}

.hero-description strong {
  color: var(--forest-dark);
  font-weight: 700;
}

.hero-cta-group {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 2.75rem;
}

/* Hero Trust Strip */
.hero-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--border-medium);
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-trust-icon {
  width: 36px;
  height: 36px;
  background: var(--bg-white);
  border: 1px solid var(--border-medium);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.hero-trust-icon svg {
  width: 18px;
  height: 18px;
  fill: var(--forest-dark);
}

.hero-trust-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--forest-dark);
  line-height: 1.2;
}

.hero-trust-sub {
  font-size: 0.74rem;
  color: var(--text-muted);
}

/* Hero Visual Card */
.hero-visual-col {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-bottle-card {
  position: relative;
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem 2rem 2rem;
  box-shadow: 0 20px 50px rgba(22, 36, 25, 0.12);
  border: 1px solid var(--border-subtle);
  max-width: 440px;
  width: 100%;
  text-align: center;
}

.hero-bottle-halo {
  position: absolute;
  top: 12%;
  left: 50%;
  transform: translateX(-50%);
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 160, 24, 0.22) 0%, rgba(255, 255, 255, 0) 70%);
  z-index: 1;
}

.hero-bottle-img {
  position: relative;
  z-index: 2;
  height: 380px;
  width: auto;
  margin: 0 auto 1.5rem auto;
  filter: drop-shadow(0 15px 25px rgba(22, 36, 25, 0.2));
  transition: transform 0.4s ease;
}

.hero-bottle-card:hover .hero-bottle-img {
  transform: translateY(-6px) scale(1.02);
}

/* Floating Cold-Chain Badge */
.hero-cold-badge {
  position: absolute;
  top: -15px;
  right: -15px;
  background: var(--forest-dark);
  color: #ffffff;
  padding: 0.85rem 1.15rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  text-align: left;
  z-index: 3;
}

.cold-temp {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.cold-text {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.9;
}

.bottle-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid var(--border-subtle);
  font-size: 0.88rem;
}

.bottle-card-rates {
  font-weight: 700;
  color: var(--forest-dark);
}

/* --------------------------------------------------------------------------
   7. Heritage Breeds & Cattle Showcase (3 Breeds)
   -------------------------------------------------------------------------- */
.cattle-section {
  background-color: var(--bg-cream-alt);
}

.cattle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.cattle-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

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

.cattle-img-wrap {
  position: relative;
  height: 250px;
  overflow: hidden;
}

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

.cattle-card:hover .cattle-img {
  transform: scale(1.06);
}

.cattle-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--forest-dark);
  color: #ffffff;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
}

.cattle-tag.tag-gold {
  background: #b9760f;
}

.cattle-content {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.cattle-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--forest-dark);
  margin-bottom: 0.65rem;
}

.cattle-desc {
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.cattle-specs {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.88rem;
}

.cattle-spec-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--forest-muted);
}

.spec-check {
  color: var(--gold);
  font-weight: 900;
}

.cattle-footer {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-subtle);
}

.cattle-rate-block {
  display: flex;
  flex-direction: column;
}

.cattle-rate-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.cattle-rate-val {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--forest-dark);
  font-family: var(--font-brand);
}

/* --------------------------------------------------------------------------
   8. Craft Products & Pricing Grid (Mildar Tabbed Shop Experience)
   -------------------------------------------------------------------------- */
.products-section {
  background-color: var(--bg-cream);
}

/* Category Filter Tabs */
.filter-tabs {
  display: flex;
  justify-content: center;
  gap: 0.65rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.filter-tab-btn {
  padding: 0.65rem 1.45rem;
  font-size: 0.92rem;
  font-weight: 700;
  border-radius: var(--radius-pill);
  background: var(--bg-cream-alt);
  color: var(--text-muted);
  border: 1px solid var(--border-medium);
  transition: var(--transition);
}

.filter-tab-btn.active,
.filter-tab-btn:hover {
  background: var(--forest-dark);
  color: #ffffff;
  border-color: var(--forest-dark);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.product-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  position: relative;
}

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

.product-fat-badge {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  background: var(--gold-light);
  border: 1px solid var(--gold-border);
  color: #9c6c10;
  font-size: 0.76rem;
  font-weight: 800;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-pill);
  z-index: 2;
}

.product-img-wrap {
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  padding: 1rem;
}

.product-img {
  max-height: 100%;
  width: auto;
  object-fit: contain;
  transition: transform 0.4s ease;
}

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

.product-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--forest-dark);
  margin-bottom: 0.4rem;
}

.product-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  min-height: 48px;
}

/* Stepper & Pricing Inside Card */
.stepper-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-cream);
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-md);
  margin-bottom: 0.75rem;
}

.stepper-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dark);
}

.stepper-controls {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.step-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid var(--border-medium);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--forest-dark);
  transition: var(--transition);
}

.step-btn:hover {
  background: var(--forest-dark);
  color: #ffffff;
}

.step-val {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--forest-dark);
  min-width: 20px;
  text-align: center;
}

.fee-indicator {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 0.85rem;
  padding: 0 0.2rem;
}

.fee-tag-free {
  color: #2e7d32;
  font-weight: 700;
}

.fee-tag-paid {
  color: #c67d0a;
  font-weight: 700;
}

.card-calc-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0.2rem;
  border-top: 1px solid var(--border-subtle);
  margin-bottom: 1rem;
}

.calc-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
}

.calc-amount {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--forest-dark);
  font-family: var(--font-brand);
}

.btn-card-order {
  width: 100%;
  padding: 0.75rem;
  background: var(--forest-dark);
  color: #ffffff;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.92rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: var(--transition);
}

.btn-card-order:hover {
  background: var(--gold);
  color: #ffffff;
  transform: translateY(-2px);
}

/* --------------------------------------------------------------------------
   9. Vedic Bilona Ghee Story (The 30-Liter Math)
   -------------------------------------------------------------------------- */
.bilona-story-section {
  background-color: var(--forest-dark);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.bilona-story-section h2,
.bilona-story-section h3,
.bilona-story-section h4 {
  color: #ffffff;
}

.bilona-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
}

.bilona-math-box {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(212, 160, 24, 0.35);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin: 1.75rem 0;
}

.bilona-math-title {
  color: var(--gold);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.math-equation {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #ffffff;
}

.math-desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

/* 3-Step Process Cards */
.bilona-steps {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.bilona-step-card {
  display: flex;
  gap: 1.25rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.25rem;
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.bilona-step-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(212, 160, 24, 0.4);
}

.step-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.step-info h4 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.step-info p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
}

/* --------------------------------------------------------------------------
   10. Lucknow Posh Societies Route Search Checker
   -------------------------------------------------------------------------- */
.societies-section {
  background-color: var(--bg-cream-alt);
}

.pincode-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  max-width: 820px;
  margin: 0 auto;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-subtle);
  text-align: center;
}

.pincode-form {
  display: flex;
  gap: 0.75rem;
  margin: 1.75rem 0;
  flex-wrap: wrap;
}

.pincode-input {
  flex: 1;
  min-width: 280px;
  padding: 0.95rem 1.45rem;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--border-medium);
  background: var(--bg-cream);
  font-size: 1rem;
}

.pincode-input:focus {
  border-color: var(--gold);
  background: #ffffff;
}

.pincode-result {
  margin-top: 1rem;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  font-size: 0.92rem;
  display: none;
}

.pincode-result.success {
  display: block;
  background-color: #e8f5e9;
  border: 1px solid #c8e6c9;
  color: #1b5e20;
}

.pincode-result.failure {
  display: block;
  background-color: #fbe9e7;
  border: 1px solid #ffccbc;
  color: #bf360c;
}

/* Society Badges Cloud */
.society-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.soc-chip {
  font-size: 0.8rem;
  font-weight: 600;
  background: var(--bg-cream-alt);
  color: var(--text-dark);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-subtle);
  cursor: pointer;
  transition: var(--transition);
}

.soc-chip:hover {
  background: var(--forest-dark);
  color: #ffffff;
}

/* --------------------------------------------------------------------------
   11. Smart Subscription Calculator (Interactive Delivery Configurator)
   -------------------------------------------------------------------------- */
.calculator-section {
  background-color: var(--bg-cream);
}

.calc-card-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.calc-controls {
  padding: 2.75rem;
}

.calc-group {
  margin-bottom: 1.85rem;
}

.calc-group-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--forest-dark);
  margin-bottom: 0.75rem;
}

/* Product Choice Grid */
.calc-choice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.calc-choice-btn {
  padding: 0.85rem 0.65rem;
  border: 1.5px solid var(--border-medium);
  border-radius: var(--radius-md);
  background: var(--bg-cream);
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
}

.calc-choice-btn.active {
  border-color: var(--forest-dark);
  background: var(--forest-dark);
  color: #ffffff;
}

.choice-name {
  font-size: 0.88rem;
  font-weight: 700;
  display: block;
}

.choice-rate {
  font-size: 0.78rem;
  opacity: 0.85;
}

/* Range Slider */
.calc-range-wrap {
  position: relative;
  margin: 1.25rem 0;
}

.calc-range-slider {
  width: 100%;
  height: 6px;
  background: var(--bg-paper);
  border-radius: 3px;
  outline: none;
  -webkit-appearance: none;
}

.calc-range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid #ffffff;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}

/* Plan Duration Tabs */
.calc-plan-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
}

.calc-plan-tab {
  padding: 0.75rem;
  text-align: center;
  border: 1.5px solid var(--border-medium);
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  transition: var(--transition);
}

.calc-plan-tab.active {
  border-color: var(--gold);
  background: var(--gold-light);
  color: #8c5b05;
}

/* Summary Card */
.calc-summary-panel {
  background: var(--forest-dark);
  color: #ffffff;
  padding: 2.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.calc-summary-panel h3 {
  color: #ffffff;
  font-size: 1.45rem;
  margin-bottom: 1.5rem;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.92rem;
}

.summary-total-row {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1.5px solid rgba(212, 160, 24, 0.4);
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.85rem;
}

.sum-total-val {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  font-family: var(--font-brand);
}

/* --------------------------------------------------------------------------
   12. Comparison Matrix: Glass Bottle vs Plastic Packets
   -------------------------------------------------------------------------- */
.comparison-section {
  background-color: var(--bg-cream-alt);
}

.comparison-table-wrapper {
  background: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-subtle);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.comparison-table th,
.comparison-table td {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 0.94rem;
}

.comparison-table th {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  background-color: var(--bg-paper);
  color: var(--forest-dark);
}

.comparison-table th.col-highlight {
  background-color: var(--forest-dark);
  color: #ffffff;
}

.comparison-table td.col-highlight {
  background-color: rgba(22, 36, 25, 0.03);
  font-weight: 600;
  color: var(--forest-dark);
}

.check-green {
  color: #2e7d32;
  font-weight: 800;
  margin-right: 0.4rem;
}

.cross-red {
  color: #c62828;
  font-weight: 800;
  margin-right: 0.4rem;
}

/* --------------------------------------------------------------------------
   13. Testimonials & Medical Endorsements
   -------------------------------------------------------------------------- */
.testimonials-section {
  background-color: var(--bg-cream);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition);
}

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

.quote-stars {
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.quote-text {
  font-style: italic;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.author-info {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.author-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--forest-dark);
}

.author-cred {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   14. Luxury Dark Footer (Milatte Style)
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--forest-dark);
  color: rgba(255, 255, 255, 0.85);
  padding: 5rem 0 2rem 0;
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

/* White logo plaque for black logo contrast */
.footer-logo-plaque {
  background: #ffffff;
  padding: 8px 18px;
  border-radius: var(--radius-md);
  display: inline-flex;
  align-items: center;
  margin-bottom: 1.25rem;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

.footer-logo-img {
  height: 48px;
  width: auto;
  display: block;
}

.footer-about {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
}

.footer-col h4 {
  font-size: 1.15rem;
  color: #ffffff;
  margin-bottom: 1.25rem;
  font-family: var(--font-serif);
}

.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  font-size: 0.88rem;
}

.footer-links-list a:hover {
  color: var(--gold);
  transform: translateX(4px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.6);
}

/* --------------------------------------------------------------------------
   15. Modals & Drawer Overlays
   -------------------------------------------------------------------------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(22, 36, 25, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.open,
.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-dialog {
  background: #ffffff;
  border-radius: var(--radius-lg);
  max-width: 540px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
  transform: translateY(20px);
  transition: transform 0.3s ease;
  padding: 2.25rem;
}

.modal-overlay.open .modal-dialog,
.modal-overlay.active .modal-dialog {
  transform: translateY(0);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.modal-close-btn {
  background: transparent;
  border: none;
  font-size: 1.5rem;
  color: var(--text-muted);
  cursor: pointer;
  line-height: 1;
}

.modal-close-btn:hover {
  color: var(--forest-dark);
}

.drawer-backdrop.open,
.drawer-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav-drawer.open,
.mobile-nav-drawer.active {
  right: 0;
}

.modal-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--forest-dark);
}

.modal-close-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-cream-alt);
  font-size: 1rem;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-group {
  margin-bottom: 1.15rem;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--forest-dark);
  margin-bottom: 0.4rem;
}

.form-control {
  width: 100%;
  padding: 0.85rem 1.15rem;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--border-medium);
  background: var(--bg-cream);
  font-size: 0.95rem;
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--gold);
  background: #ffffff;
}

/* Mobile Drawer */
.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(22, 36, 25, 0.5);
  backdrop-filter: blur(4px);
  z-index: 1500;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.drawer-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100%;
  background: #ffffff;
  z-index: 1600;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  transition: right 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
}

.mobile-nav-drawer.open {
  right: 0;
}

.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-subtle);
}

.drawer-links {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

/* Floating Actions */
.floating-actions-bar {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 990;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.float-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  transition: var(--transition);
}

.float-btn:hover {
  transform: translateY(-3px) scale(1.05);
}

.float-whatsapp {
  background: #25D366;
  color: #ffffff;
}

.float-whatsapp svg {
  width: 28px;
  height: 28px;
  fill: #ffffff;
}

.float-call {
  background: var(--forest-dark);
  color: #ffffff;
}

.float-call svg {
  width: 22px;
  height: 22px;
  fill: #ffffff;
}

/* --------------------------------------------------------------------------
   16. Responsive Media Queries
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .hero-grid,
  .bilona-grid,
  .calc-card-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

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

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

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

@media (max-width: 768px) {
  :root {
    --header-height: 72px;
  }

  .nav-links,
  .phone-quick-btn {
    display: none;
  }

  .mobile-toggle-btn {
    display: flex;
  }

  .brand-logo-img {
    height: 44px;
  }

  .cattle-grid,
  .products-grid,
  .testimonials-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .calc-choice-grid,
  .calc-plan-tabs {
    grid-template-columns: 1fr;
  }

  .section-padding {
    padding-top: 3.75rem;
    padding-bottom: 3.75rem;
  }

  .hero-trust-grid {
    grid-template-columns: 1fr;
  }
}
