/* ==========================================================================
   SHRESTAM - FARM TO FAMILY
   Premium Responsive Bootstrap 5 Theme Stylesheet
   Brand Colors extracted from Official Shrestam Identity
   ========================================================================== */

:root {
  /* Brand Color Tokens */
  --sh-navy: #07135C;
  --sh-navy-dark: #040A33;
  --sh-navy-light: #12227E;
  --sh-navy-rgb: 7, 19, 92;
  
  --sh-green: #188824;
  --sh-green-dark: #126B1C;
  --sh-green-light: #22A732;
  --sh-green-bg: #EAF7EC;
  --sh-green-rgb: 24, 136, 36;
  
  --sh-blue: #0899D8;
  --sh-blue-dark: #057AAE;
  --sh-blue-light: #E3F5FC;
  --sh-blue-rgb: 8, 153, 216;
  
  --sh-yellow: #F7E419;
  --sh-gold: #E5A600;
  --sh-gold-light: #FFF8D6;
  --sh-gold-bg: #FEFCE8;
  --sh-gold-rgb: 247, 228, 25;
  
  --sh-pink: #F4A3AA;
  --sh-pink-dark: #D47B83;
  --sh-pink-light: #FDF2F3;
  --sh-pink-rgb: 244, 163, 170;

  --sh-white: #FFFFFF;
  --sh-cream: #FBF9F4;
  --sh-light-bg: #F4F8F5;
  --sh-gray-50: #F8FAFC;
  --sh-gray-100: #F1F5F9;
  --sh-gray-200: #E2E8F0;
  --sh-gray-300: #CBD5E1;
  --sh-gray-500: #64748B;
  --sh-gray-700: #334155;
  --sh-gray-800: #1E293B;
  --sh-gray-900: #0F172A;

  /* Fonts */
  --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-heading: 'Outfit', sans-serif;
  --font-display: 'DM Serif Display', Georgia, serif;

  /* Elevation Shadows */
  --shadow-sm: 0 2px 8px rgba(7, 19, 92, 0.05);
  --shadow-md: 0 8px 24px rgba(7, 19, 92, 0.08);
  --shadow-lg: 0 16px 40px rgba(7, 19, 92, 0.12);
  --shadow-hover: 0 20px 48px rgba(7, 19, 92, 0.18);
  --shadow-gold: 0 8px 30px rgba(229, 166, 0, 0.25);
  --shadow-green: 0 8px 28px rgba(24, 136, 36, 0.2);

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-base: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  overflow-x: hidden !important;
  width: 100% !important;
  max-width: 100vw !important;
}

body {
  font-family: var(--font-body);
  color: var(--sh-gray-800);
  background-color: var(--sh-cream);
  line-height: 1.65;
  overflow-x: hidden !important;
  width: 100% !important;
  max-width: 100vw !important;
  position: relative;
  padding-top: 68px;
  -webkit-font-smoothing: antialiased;
}

section {
  overflow-x: clip !important;
  max-width: 100vw !important;
  width: 100% !important;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--sh-navy);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.font-display {
  font-family: var(--font-display);
}

p {
  color: var(--sh-gray-700);
}

a {
  color: var(--sh-blue);
  text-decoration: none;
  transition: var(--transition-fast);
}

a:hover {
  color: var(--sh-navy-light);
}

/* Custom Selection */
::selection {
  background-color: var(--sh-navy);
  color: var(--sh-yellow);
}

/* --------------------------------------------------------------------------
   UTILITY CLASSES & COLOR HELPERS
   -------------------------------------------------------------------------- */
.text-sh-navy { color: var(--sh-navy) !important; }
.text-sh-green { color: var(--sh-green) !important; }
.text-sh-blue { color: var(--sh-blue) !important; }
.text-sh-gold { color: var(--sh-gold) !important; }
.text-sh-pink { color: var(--sh-pink-dark) !important; }

.bg-sh-navy { background-color: var(--sh-navy) !important; }
.bg-sh-navy-dark { background-color: var(--sh-navy-dark) !important; }
.bg-sh-green { background-color: var(--sh-green) !important; }
.bg-sh-green-bg { background-color: var(--sh-green-bg) !important; }
.bg-sh-blue { background-color: var(--sh-blue) !important; }
.bg-sh-blue-light { background-color: var(--sh-blue-light) !important; }
.bg-sh-gold-light { background-color: var(--sh-gold-light) !important; }
.bg-sh-gold-bg { background-color: var(--sh-gold-bg) !important; }
.bg-sh-pink-light { background-color: var(--sh-pink-light) !important; }
.bg-sh-cream { background-color: var(--sh-cream) !important; }
.bg-sh-light { background-color: var(--sh-light-bg) !important; }

/* --------------------------------------------------------------------------
   BUTTONS
   -------------------------------------------------------------------------- */
.btn {
  font-weight: 600;
  border-radius: 50rem;
  padding: 0.65rem 1.6rem;
  transition: all var(--transition-base);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-sh-primary {
  background: linear-gradient(135deg, var(--sh-navy) 0%, var(--sh-navy-light) 100%);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 6px 18px rgba(7, 19, 92, 0.25);
}

.btn-sh-primary:hover {
  background: linear-gradient(135deg, var(--sh-navy-light) 0%, var(--sh-navy) 100%);
  color: var(--sh-yellow);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(7, 19, 92, 0.35);
}

.btn-sh-green {
  background: linear-gradient(135deg, var(--sh-green) 0%, var(--sh-green-light) 100%);
  color: #fff;
  border: none;
  box-shadow: var(--shadow-green);
}

.btn-sh-green:hover {
  background: linear-gradient(135deg, var(--sh-green-light) 0%, var(--sh-green-dark) 100%);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(24, 136, 36, 0.35);
}

.btn-sh-gold {
  background: linear-gradient(135deg, var(--sh-yellow) 0%, var(--sh-gold) 100%);
  color: var(--sh-navy);
  font-weight: 700;
  border: none;
  box-shadow: var(--shadow-gold);
}

.btn-sh-gold:hover {
  background: linear-gradient(135deg, #FFF04D 0%, var(--sh-yellow) 100%);
  color: var(--sh-navy-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(229, 166, 0, 0.4);
}

.btn-sh-outline {
  background: transparent;
  color: var(--sh-navy);
  border: 2px solid var(--sh-navy);
}

.btn-sh-outline:hover {
  background-color: var(--sh-navy);
  color: var(--sh-yellow);
  transform: translateY(-2px);
}

.btn-sh-outline-white {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.6);
}

.btn-sh-outline-white:hover {
  background: #fff;
  color: var(--sh-navy);
  border-color: #fff;
  transform: translateY(-2px);
}

/* --------------------------------------------------------------------------
   BADGES & PILLS
   -------------------------------------------------------------------------- */
.badge-pill-custom {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 0.45rem 1.1rem;
  border-radius: 50rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.badge-sh-gold {
  background-color: var(--sh-gold-light);
  color: #8C6200;
  border: 1px solid rgba(229, 166, 0, 0.3);
}

.badge-sh-green {
  background-color: var(--sh-green-bg);
  color: var(--sh-green-dark);
  border: 1px solid rgba(24, 136, 36, 0.25);
}

.badge-sh-blue {
  background-color: var(--sh-blue-light);
  color: var(--sh-blue-dark);
  border: 1px solid rgba(8, 153, 216, 0.25);
}

.badge-sh-pink {
  background-color: var(--sh-pink-light);
  color: var(--sh-pink-dark);
  border: 1px solid rgba(244, 163, 170, 0.4);
}

.badge-sh-navy {
  background-color: rgba(7, 19, 92, 0.08);
  color: var(--sh-navy);
  border: 1px solid rgba(7, 19, 92, 0.15);
}

/* --------------------------------------------------------------------------
   TOP INFORMATION BAR
   -------------------------------------------------------------------------- */
.topbar {
  background: var(--sh-navy-dark);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.45rem 0;
  position: relative;
  z-index: 1030;
}

.topbar a {
  color: rgba(255, 255, 255, 0.9);
  transition: var(--transition-fast);
}

.topbar a:hover {
  color: var(--sh-yellow);
}

.topbar-badge {
  background: rgba(247, 228, 25, 0.15);
  color: var(--sh-yellow);
  padding: 0.15rem 0.65rem;
  border-radius: 4px;
  font-size: 0.76rem;
  font-weight: 700;
}

/* --------------------------------------------------------------------------
   STICKY NAVBAR (Single-Line Minimal Layout)
   -------------------------------------------------------------------------- */
.navbar-shrestam {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 4px 20px rgba(7, 19, 92, 0.05);
  padding: 0.6rem 0;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 1050 !important;
  border-bottom: 1px solid rgba(7, 19, 92, 0.06);
  width: 100% !important;
  max-width: 100vw !important;
  overflow-x: clip !important;
}

.navbar-shrestam.scrolled {
  background: rgba(255, 255, 255, 0.76) !important;
  backdrop-filter: blur(24px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(24px) saturate(180%) !important;
  box-shadow: 0 10px 32px rgba(7, 19, 92, 0.12) !important;
  padding: 0.38rem 0 !important;
  border-bottom: 1.5px solid rgba(8, 153, 216, 0.35) !important;
  animation: navbarBlurIn 0.35s ease-out;
}

@keyframes navbarBlurIn {
  from {
    transform: translateY(-4px);
    opacity: 0.95;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.navbar-shrestam .navbar-brand {
  margin-right: 1.25rem;
  padding: 0;
  flex-shrink: 0;
}

.navbar-shrestam .navbar-brand img {
  height: 48px;
  width: auto;
  transition: transform var(--transition-fast);
}

.navbar-shrestam .navbar-nav {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  gap: 0.15rem;
  margin: 0 !important;
}

.navbar-shrestam .nav-link {
  color: var(--sh-navy);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 0.45rem 0.75rem !important;
  white-space: nowrap !important;
  position: relative;
  transition: color var(--transition-fast);
}

@media (min-width: 1200px) {
  .navbar-shrestam .nav-link {
    font-size: 0.96rem;
    padding: 0.45rem 0.95rem !important;
  }
}

.navbar-shrestam .nav-link:hover,
.navbar-shrestam .nav-link.active {
  color: var(--sh-green);
}

.navbar-shrestam .nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--sh-green);
  transition: all var(--transition-fast);
  transform: translateX(-50%);
}

.navbar-shrestam .nav-link:hover::after,
.navbar-shrestam .nav-link.active::after {
  width: 65%;
}

/* Mobile Offcanvas Customization */
.offcanvas-shrestam {
  background: var(--sh-cream);
  border-left: 2px solid var(--sh-green);
}

.offcanvas-shrestam .nav-link {
  font-size: 1.1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--sh-gray-200);
}

/* --------------------------------------------------------------------------
   HERO SECTION
   -------------------------------------------------------------------------- */
.hero-section {
  position: relative;
  background: radial-gradient(circle at 10% 20%, rgba(227, 245, 252, 0.7) 0%, rgba(251, 249, 244, 0.9) 60%, rgba(234, 247, 236, 0.8) 100%);
  padding-top: 3.5rem;
  padding-bottom: 7rem;
  overflow: hidden;
}

.hero-glow-1 {
  position: absolute;
  top: -100px;
  right: -50px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(8, 153, 216, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  filter: blur(50px);
}

.hero-glow-2 {
  position: absolute;
  bottom: 50px;
  left: -80px;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(24, 136, 36, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  filter: blur(50px);
}

.hero-title {
  font-size: clamp(2.4rem, 4.2vw, 3.8rem);
  line-height: 1.15;
  font-weight: 800;
  color: var(--sh-navy);
}

.hero-title .text-highlight-green {
  color: var(--sh-green);
  position: relative;
  display: inline-block;
}

.hero-title .text-highlight-blue {
  color: var(--sh-blue);
}

.hero-subtitle {
  font-size: clamp(1.05rem, 1.3vw, 1.25rem);
  color: var(--sh-gray-700);
  max-width: 580px;
}

/* Hero Mascot Card */
.hero-mascot-card {
  position: relative;
  border-radius: 36px;
  background: #ffffff;
  padding: 2.2rem 1.8rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.8);
  text-align: center;
  transition: transform var(--transition-base);
}

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

.hero-mascot-img {
  max-width: 90%;
  height: auto;
  max-height: 420px;
  object-fit: contain;
  filter: drop-shadow(0 12px 28px rgba(7, 19, 92, 0.15));
  animation: gentleFloat 5s ease-in-out infinite;
}

/* Floating Badges */
.floating-pill {
  position: absolute;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  padding: 0.65rem 1.1rem;
  border-radius: 50rem;
  box-shadow: 0 10px 25px rgba(7, 19, 92, 0.12);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.8);
  z-index: 5;
}

.floating-pill-1 {
  top: 12%;
  left: -8%;
  animation: floatSlow 4s ease-in-out infinite;
}

.floating-pill-2 {
  bottom: 14%;
  right: -6%;
  animation: floatSlow 4.5s ease-in-out infinite 0.6s;
}

.floating-pill-3 {
  top: 50%;
  right: -10%;
  animation: floatSlow 5s ease-in-out infinite 1.2s;
}

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

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

/* SVG Wave Divider */
.wave-divider {
  position: relative;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.wave-divider svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 60px;
}

@media (min-width: 768px) {
  .wave-divider svg { height: 90px; }
}

@media (min-width: 1200px) {
  .wave-divider svg { height: 110px; }
}

/* --------------------------------------------------------------------------
   CERTIFICATIONS & TRUST TICKER
   -------------------------------------------------------------------------- */
.trust-strip {
  background: #ffffff;
  padding: 1.75rem 0;
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 10;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 1rem;
  border-radius: 12px;
  transition: var(--transition-fast);
}

.trust-item:hover {
  background: var(--sh-gray-50);
  transform: translateY(-2px);
}

.trust-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   SECTION HEADERS
   -------------------------------------------------------------------------- */
.section-header {
  margin-bottom: 3.5rem;
}

.section-title {
  font-size: clamp(1.9rem, 3.2vw, 2.75rem);
  font-weight: 800;
  color: var(--sh-navy);
  margin-top: 0.75rem;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--sh-gray-600);
  max-width: 650px;
  margin: 0 auto;
}

/* --------------------------------------------------------------------------
   FEATURE BENEFIT CARDS (WHY SHRESTAM)
   -------------------------------------------------------------------------- */
.feature-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 2.2rem 1.8rem;
  height: 100%;
  border: 1px solid var(--sh-gray-200);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--sh-green) 0%, var(--sh-blue) 100%);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(24, 136, 36, 0.3);
}

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

.feature-icon-wrapper {
  width: 68px;
  height: 68px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  transition: transform var(--transition-fast);
}

.feature-card:hover .feature-icon-wrapper {
  transform: scale(1.1) rotate(5deg);
}

/* --------------------------------------------------------------------------
   FEATURED PRODUCT: BILONA GHEE HIGHLIGHT (Milkvilla-Style)
   -------------------------------------------------------------------------- */
.bilona-showcase {
  background: linear-gradient(135deg, #FFFBEB 0%, #FEF9C3 50%, #FFFDF0 100%);
  border-radius: 36px;
  padding: 3rem 2.5rem;
  border: 2px solid rgba(229, 166, 0, 0.25);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.bilona-showcase .badge-bestseller {
  background: linear-gradient(135deg, var(--sh-gold) 0%, #B88200 100%);
  color: #fff;
  font-weight: 700;
  padding: 0.45rem 1.2rem;
  border-radius: 50rem;
  box-shadow: 0 4px 14px rgba(229, 166, 0, 0.35);
}

.bilona-feature-pill {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(229, 166, 0, 0.2);
  border-radius: 14px;
  padding: 0.8rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 600;
  color: var(--sh-gray-800);
}

.ghee-jar-img-wrapper {
  position: relative;
  text-align: center;
}

.ghee-glow-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(247, 228, 25, 0.4) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(30px);
  z-index: 1;
}

/* --------------------------------------------------------------------------
   PRODUCT CATALOG (Tabs & Cards)
   -------------------------------------------------------------------------- */
.product-nav-tabs {
  border: none;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.product-nav-tabs .nav-link {
  border-radius: 50rem;
  padding: 0.65rem 1.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--sh-gray-700);
  background: #ffffff;
  border: 1px solid var(--sh-gray-200);
  transition: all var(--transition-fast);
}

.product-nav-tabs .nav-link:hover {
  color: var(--sh-navy);
  border-color: var(--sh-blue);
  background: var(--sh-blue-light);
}

.product-nav-tabs .nav-link.active {
  background: var(--sh-navy);
  color: #ffffff;
  border-color: var(--sh-navy);
  box-shadow: 0 6px 18px rgba(7, 19, 92, 0.25);
}

.product-card {
  background: #ffffff;
  border-radius: 22px;
  border: 1px solid var(--sh-gray-200);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: all var(--transition-base);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(7, 19, 92, 0.2);
}

.product-img-box {
  background: linear-gradient(180deg, #F8FAFC 0%, #FFFFFF 100%);
  padding: 2rem 1.5rem;
  text-align: center;
  position: relative;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-img-box svg,
.product-img-box img {
  max-height: 160px;
  width: auto;
  transition: transform var(--transition-base);
}

.product-card:hover .product-img-box svg,
.product-card:hover .product-img-box img {
  transform: scale(1.08);
}

.product-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 50rem;
}

.product-body {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.product-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--sh-navy);
  margin-bottom: 0.4rem;
}

.product-desc {
  font-size: 0.88rem;
  color: var(--sh-gray-600);
  flex-grow: 1;
  margin-bottom: 1.2rem;
}

.product-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px dashed var(--sh-gray-200);
}

.product-price {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--sh-navy);
}

.product-unit {
  font-size: 0.8rem;
  color: var(--sh-gray-500);
  font-weight: normal;
}

/* --------------------------------------------------------------------------
   FARM-TO-FAMILY TECHNOLOGY TIMELINE
   -------------------------------------------------------------------------- */
.journey-step {
  position: relative;
  background: #ffffff;
  border-radius: 24px;
  padding: 2.2rem 1.6rem;
  border: 1px solid var(--sh-gray-200);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  height: 100%;
}

.journey-step:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--sh-blue);
}

.journey-badge-number {
  position: absolute;
  top: -16px;
  left: 24px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--sh-navy);
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(7, 19, 92, 0.3);
}

.journey-step:hover .journey-badge-number {
  background: var(--sh-green);
  color: #fff;
}

/* --------------------------------------------------------------------------
   INTERACTIVE MILK SUBSCRIPTION CALCULATOR
   -------------------------------------------------------------------------- */
.calc-card {
  background: #ffffff;
  border-radius: 32px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--sh-gray-200);
  overflow: hidden;
}

.calc-header {
  background: linear-gradient(135deg, var(--sh-navy) 0%, var(--sh-navy-light) 100%);
  color: #ffffff;
  padding: 2rem 2.5rem;
}

.calc-body {
  padding: 2.5rem;
}

.calc-option-pill {
  cursor: pointer;
  border: 2px solid var(--sh-gray-200);
  border-radius: 16px;
  padding: 1rem;
  text-align: center;
  transition: all var(--transition-fast);
  background: var(--sh-gray-50);
}

.calc-option-pill:hover {
  border-color: var(--sh-blue);
  background: var(--sh-blue-light);
}

.calc-option-pill.active {
  border-color: var(--sh-navy);
  background: rgba(7, 19, 92, 0.04);
  box-shadow: 0 4px 14px rgba(7, 19, 92, 0.08);
}

.calc-summary-box {
  background: linear-gradient(135deg, #F0FDF4 0%, #DCFCE7 100%);
  border-radius: 24px;
  padding: 2.2rem;
  border: 1px solid rgba(24, 136, 36, 0.25);
  box-shadow: var(--shadow-sm);
}

.calc-total-price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--sh-green-dark);
}

/* --------------------------------------------------------------------------
   PURITY COMPARISON MATRIX
   -------------------------------------------------------------------------- */
.matrix-table {
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--sh-gray-200);
}

.matrix-table th {
  padding: 1.3rem 1.2rem;
  font-weight: 700;
  font-size: 1rem;
  border-bottom: 2px solid var(--sh-gray-200);
}

.matrix-table td {
  padding: 1.1rem 1.2rem;
  vertical-align: middle;
  border-bottom: 1px solid var(--sh-gray-200);
  font-size: 0.95rem;
}

.matrix-shrestam-col {
  background: rgba(234, 247, 236, 0.5);
  border-left: 2px solid var(--sh-green) !important;
  border-right: 2px solid var(--sh-green) !important;
}

.matrix-table tbody tr:last-child td {
  border-bottom: none;
}

/* --------------------------------------------------------------------------
   FARMER EMPOWERMENT & SUSTAINABILITY (Muralya-Inspired)
   -------------------------------------------------------------------------- */
.farmer-banner {
  background: linear-gradient(135deg, var(--sh-navy-dark) 0%, var(--sh-navy) 100%);
  border-radius: 36px;
  color: #ffffff;
  padding: 4rem 3rem;
  position: relative;
  overflow: hidden;
}

.farmer-stat-badge {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 1.5rem;
  text-align: center;
  transition: transform var(--transition-fast);
}

.farmer-stat-badge:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.14);
}

.farmer-stat-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--sh-yellow);
}

/* --------------------------------------------------------------------------
   MILESTONES & ANIMATED COUNTER
   -------------------------------------------------------------------------- */
.milestone-section {
  background: linear-gradient(135deg, #07135C 0%, #0F257D 100%);
  color: #ffffff;
  padding: 5rem 0;
  position: relative;
}

.milestone-box {
  text-align: center;
  padding: 1.5rem;
}

.milestone-number {
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 800;
  font-family: var(--font-heading);
  color: var(--sh-yellow);
  margin-bottom: 0.4rem;
}

.milestone-label {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}

/* --------------------------------------------------------------------------
   TESTIMONIALS CAROUSEL
   -------------------------------------------------------------------------- */
.testimonial-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 2.2rem;
  border: 1px solid var(--sh-gray-200);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  height: 100%;
  display: flex;
  flex-direction: column;
}

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

.quote-icon {
  font-size: 2.4rem;
  color: rgba(7, 19, 92, 0.12);
  line-height: 1;
}

.star-rating {
  color: #F59E0B;
  font-size: 1rem;
}

.author-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--sh-green);
}

/* --------------------------------------------------------------------------
   FAQ ACCORDION
   -------------------------------------------------------------------------- */
.accordion-shrestam .accordion-item {
  border: 1px solid var(--sh-gray-200);
  border-radius: 18px !important;
  margin-bottom: 1rem;
  background: #ffffff;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: border-color var(--transition-fast);
}

.accordion-shrestam .accordion-item:hover {
  border-color: var(--sh-blue);
}

.accordion-shrestam .accordion-button {
  padding: 1.3rem 1.6rem;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--sh-navy);
  background: #ffffff;
  box-shadow: none;
  border: none;
}

.accordion-shrestam .accordion-button:not(.collapsed) {
  background: rgba(8, 153, 216, 0.06);
  color: var(--sh-blue-dark);
}

.accordion-shrestam .accordion-body {
  padding: 1.3rem 1.6rem;
  color: var(--sh-gray-700);
  font-size: 0.98rem;
  border-top: 1px solid var(--sh-gray-100);
}

/* --------------------------------------------------------------------------
   APP DOWNLOAD & FREE SAMPLE CTA
   -------------------------------------------------------------------------- */
.app-banner {
  background: linear-gradient(135deg, #0A1B7A 0%, #07135C 60%, #030826 100%);
  border-radius: 36px;
  color: #ffffff;
  padding: 4rem 3rem;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.app-store-btn {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 14px;
  padding: 0.75rem 1.4rem;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  transition: all var(--transition-fast);
}

.app-store-btn:hover {
  background: #ffffff;
  color: var(--sh-navy);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* --------------------------------------------------------------------------
   FOOTER
   -------------------------------------------------------------------------- */
.footer-shrestam {
  background: #FFFFFF;
  color: var(--sh-gray-700);
  padding-top: 4.5rem;
  padding-bottom: 0;
  position: relative;
  border-top: 1px solid #E2E8F0;
}

.footer-heading {
  color: var(--sh-navy);
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2.5px;
  background: var(--sh-green);
  border-radius: 2px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.7rem;
}

.footer-links a {
  color: #64748B;
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.92rem;
}

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

.footer-social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #F1F5F9;
  color: var(--sh-navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  border: 1px solid #E2E8F0;
}

.footer-social-icon:hover {
  background: var(--sh-green);
  color: #ffffff;
  border-color: var(--sh-green);
  transform: translateY(-3px);
}

.footer-whatsapp-chat-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #16A34A;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.2s ease;
  text-decoration: none;
}

.footer-whatsapp-chat-link:hover {
  color: #15803D;
  text-decoration: underline;
}

/* Delivery Areas Strip inside Footer */
.footer-delivery-strip {
  padding: 2.5rem 0 1rem;
  text-align: center;
  border-top: 1px solid #F1F5F9;
}

.footer-delivery-title {
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sh-navy);
  margin-bottom: 0.75rem;
}

.footer-delivery-links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-delivery-links a {
  color: #64748B;
  font-size: 0.92rem;
  font-weight: 600;
  transition: color 0.2s ease;
  text-decoration: none;
}

.footer-delivery-links a:hover {
  color: var(--sh-green);
}

/* Panoramic Cow Meadow Banner at bottom of Footer */
.footer-meadow-panorama {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #FFFFFF;
  margin-top: 0.5rem;
  line-height: 0;
}

.footer-meadow-credits {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 900px;
  text-align: center;
  z-index: 5;
  padding: 0 1rem;
  line-height: 1.5;
}

.footer-meadow-credits p {
  color: #334155;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.footer-meadow-credits a {
  color: #64748B;
  font-size: 0.85rem;
  margin: 0 0.4rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-meadow-credits a:hover {
  color: var(--sh-green);
  text-decoration: underline;
}

.footer-meadow-img {
  width: 100%;
  max-width: 1600px;
  height: auto;
  max-height: 290px;
  object-fit: cover;
  object-position: center bottom;
  margin: 0 auto;
  display: block;
}

/* --------------------------------------------------------------------------
   BACK TO TOP BUTTON
   -------------------------------------------------------------------------- */
.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--sh-navy);
  color: var(--sh-yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: 0 6px 20px rgba(7, 19, 92, 0.3);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--sh-green);
  color: #ffffff;
  transform: translateY(-4px);
}

/* --------------------------------------------------------------------------
   MODALS
   -------------------------------------------------------------------------- */
.modal-shrestam .modal-content {
  border-radius: 28px;
  border: none;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.modal-shrestam .modal-header {
  background: linear-gradient(135deg, var(--sh-navy) 0%, var(--sh-navy-light) 100%);
  color: #ffffff;
  padding: 1.6rem 2rem;
  border-bottom: none;
}

.modal-shrestam .modal-body {
  padding: 2rem;
}

/* Form Controls */
.form-shrestam .form-control,
.form-shrestam .form-select {
  border-radius: 12px;
  padding: 0.75rem 1rem;
  border: 1px solid var(--sh-gray-200);
  background: var(--sh-gray-50);
  font-size: 0.95rem;
}

.form-shrestam .form-control:focus,
.form-shrestam .form-select:focus {
  border-color: var(--sh-blue);
  box-shadow: 0 0 0 4px rgba(8, 153, 216, 0.15);
  background: #ffffff;
}

/* --------------------------------------------------------------------------
   RESPONSIVE OVERRIDES
   -------------------------------------------------------------------------- */
@media (max-width: 991.98px) {
  .hero-section {
    padding-top: 2rem;
    padding-bottom: 4rem;
    text-align: center;
  }
  
  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-cta-group {
    justify-content: center;
  }
  
  .floating-pill {
    position: static;
    margin: 0.35rem;
    display: inline-flex;
    animation: none;
  }
  
  .hero-pills-mobile-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.25rem;
  }

  .bilona-showcase {
    padding: 2rem 1.5rem;
    text-align: center;
  }
  
  .calc-header,
  .calc-body {
    padding: 1.5rem;
  }

  .farmer-banner,
  .app-banner {
    padding: 2.5rem 1.5rem;
    text-align: center;
  }
}

@media (max-width: 575.98px) {
  .navbar-shrestam .navbar-brand img {
    height: 42px;
  }
  
  .section-header {
    margin-bottom: 2.5rem;
  }

  .calc-total-price {
    font-size: 2rem;
  }

  .bilona-feature-pill {
    font-size: 0.88rem;
    padding: 0.6rem 0.8rem;
  }
}

/* --------------------------------------------------------------------------
   SECTION TITLE ORNAMENT (From Reference Images 3 & 4)
   -------------------------------------------------------------------------- */
.section-title-ornament {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}

.section-title-ornament .ornament-bar {
  width: 50px;
  height: 2px;
  background: #38BDF8;
  border-radius: 2px;
}

.section-title-ornament .ornament-bullet {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #38BDF8;
  display: inline-block;
  transition: transform 0.3s ease;
}

.section-title-ornament .ornament-bullet.active {
  width: 10px;
  height: 10px;
  background: #0284C7;
  box-shadow: 0 0 8px rgba(2, 132, 199, 0.5);
}

.text-white .section-title-ornament .ornament-bar {
  background: rgba(255, 255, 255, 0.6);
}

.text-white .section-title-ornament .ornament-bullet {
  background: rgba(255, 255, 255, 0.7);
}

.text-white .section-title-ornament .ornament-bullet.active {
  background: #F7E419;
  box-shadow: 0 0 10px rgba(247, 228, 25, 0.8);
}

/* --------------------------------------------------------------------------
   ANIMATED FLUID WAVE TRANSITIONS (Continuous Parallax Undulation)
   -------------------------------------------------------------------------- */
.animated-wave-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 5;
}

.animated-wave-container.wave-flip {
  transform: rotate(180deg);
}

.animated-waves {
  position: relative;
  width: 100%;
  height: 55px;
  margin-bottom: -2px;
  min-height: 55px;
  max-height: 95px;
  display: block;
}

@media (min-width: 768px) {
  .animated-waves {
    height: 75px;
  }
}

@media (min-width: 1200px) {
  .animated-waves {
    height: 95px;
  }
}

.wave-parallax > use {
  animation: moveWave 25s cubic-bezier(.55,.5,.45,.5) infinite;
}

.wave-parallax > use:nth-child(1) {
  animation-delay: -2s;
  animation-duration: 7s;
}

.wave-parallax > use:nth-child(2) {
  animation-delay: -3s;
  animation-duration: 10s;
}

.wave-parallax > use:nth-child(3) {
  animation-delay: -4s;
  animation-duration: 13s;
}

.wave-parallax > use:nth-child(4) {
  animation-delay: -5s;
  animation-duration: 20s;
}

@keyframes moveWave {
  0% { transform: translate3d(-90px, 0, 0); }
  100% { transform: translate3d(85px, 0, 0); }
}

/* Theme Color Waves */
.wave-to-cream .wave-bg-1 { fill: rgba(251, 249, 244, 0.25); }
.wave-to-cream .wave-bg-2 { fill: rgba(8, 153, 216, 0.15); }
.wave-to-cream .wave-bg-3 { fill: rgba(251, 249, 244, 0.65); }
.wave-to-cream .wave-bg-4 { fill: #FBF9F4; }

.wave-to-white .wave-bg-1 { fill: rgba(255, 255, 255, 0.25); }
.wave-to-white .wave-bg-2 { fill: rgba(24, 136, 36, 0.12); }
.wave-to-white .wave-bg-3 { fill: rgba(255, 255, 255, 0.7); }
.wave-to-white .wave-bg-4 { fill: #FFFFFF; }

.wave-to-navy .wave-bg-1 { fill: rgba(7, 19, 92, 0.25); }
.wave-to-navy .wave-bg-2 { fill: rgba(8, 153, 216, 0.35); }
.wave-to-navy .wave-bg-3 { fill: rgba(7, 19, 92, 0.65); }
.wave-to-navy .wave-bg-4 { fill: #07135C; }

/* --------------------------------------------------------------------------
   ORGANIC BRUSH & TORN PAPER DIVIDERS (From Reference Images 2 & 4)
   -------------------------------------------------------------------------- */
.brush-divider-top,
.brush-divider-bottom {
  position: relative;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 6;
}

.brush-divider-top svg,
.brush-divider-bottom svg {
  position: relative;
  display: block;
  width: 100% !important;
  height: 38px;
}

@media (min-width: 768px) {
  .brush-divider-top svg,
  .brush-divider-bottom svg {
    height: 52px;
  }
}

.brush-divider-bottom {
  transform: rotate(180deg);
  margin-top: -1px;
}

.brush-divider-top {
  margin-bottom: -1px;
}

/* --------------------------------------------------------------------------
   MODERN BARN & COW FEEDING SHOWCASE SECTION (Image 2)
   -------------------------------------------------------------------------- */
.barn-showcase-section {
  position: relative;
  background: #000;
  overflow: hidden;
  padding: 0;
}

.barn-backdrop {
  position: relative;
  width: 100%;
  height: 360px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 768px) {
  .barn-backdrop {
    height: 480px;
  }
}

@media (min-width: 1200px) {
  .barn-backdrop {
    height: 540px;
  }
}

.barn-overlay-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 750px;
  padding: 2rem;
  background: rgba(4, 10, 51, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

/* --------------------------------------------------------------------------
   OUR JOURNEY SO FAR: S-CURVE CONNECTED TIMELINE (Image 3)
   -------------------------------------------------------------------------- */
.journey-modern-card {
  background: #FFFFFF;
  border: 1.5px solid #BAE6FD;
  border-radius: 22px;
  padding: 1.8rem 1.4rem;
  text-align: center;
  height: 100%;
  box-shadow: 0 4px 18px rgba(8, 153, 216, 0.08);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.journey-modern-card:hover {
  transform: translateY(-6px);
  border-color: #0284C7;
  box-shadow: 0 12px 30px rgba(8, 153, 216, 0.18);
}

.journey-img-circle {
  width: 95px;
  height: 95px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F0F9FF;
  border: 2px solid #E0F2FE;
  box-shadow: 0 4px 12px rgba(8, 153, 216, 0.1);
}

.journey-img-circle img,
.journey-img-circle svg {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
}

.journey-arrow-svg {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 40px;
}

.journey-dashed-connector {
  stroke-dasharray: 6 6;
  animation: dashFlow 1.8s linear infinite;
}

@keyframes dashFlow {
  from { stroke-dashoffset: 24; }
  to { stroke-dashoffset: 0; }
}

/* --------------------------------------------------------------------------
   LEADERSHIP TEAM SECTION (Image 4)
   -------------------------------------------------------------------------- */
.leadership-section {
  position: relative;
  background-color: var(--sh-navy);
  color: #FFFFFF;
  padding-top: 4.5rem;
  padding-bottom: 5.5rem;
  overflow: hidden;
}

.dairy-pattern-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.05;
  background-image: radial-gradient(#FFFFFF 1.5px, transparent 1.5px);
  background-size: 28px 28px;
  pointer-events: none;
}

.leadership-card {
  background: #FFFFFF;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.35s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.leadership-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
}

.leadership-photo-wrap {
  width: 100%;
  height: 240px;
  background: #E2E8F0;
  overflow: hidden;
  position: relative;
}

.leadership-photo-wrap img,
.leadership-photo-wrap svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.leadership-card:hover .leadership-photo-wrap img,
.leadership-card:hover .leadership-photo-wrap svg {
  transform: scale(1.05);
}

.leadership-info-bar {
  background: #38BDF8;
  padding: 1.1rem 1rem;
  text-align: center;
  color: #041444;
  position: relative;
  flex-grow: 1;
}

.leadership-toggle-btn {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #0284C7;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: bold;
  border: 2px solid #FFFFFF;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 3px 10px rgba(0,0,0,0.25);
}

.leadership-card:hover .leadership-toggle-btn {
  background: #07135C;
  transform: translateX(-50%) rotate(90deg);
}

.leadership-name {
  font-weight: 800;
  font-size: 1.05rem;
  margin-bottom: 0.2rem;
  color: #07135C;
}

.leadership-title {
  font-size: 0.85rem;
  color: #033C6B;
  font-weight: 600;
  margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   PASTORAL COW FARM SKETCH BANNER (Images 1 & 5)
   -------------------------------------------------------------------------- */
.pastoral-sketch-banner {
  background: #FFFFFF;
  border-top: 1px solid #E2E8F0;
  padding: 2.5rem 0 1rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pastoral-sketch-img {
  width: 100%;
  max-width: 1280px;
  height: auto;
  margin: 0 auto;
  display: block;
  opacity: 0.92;
}

.delivery-areas-strip {
  padding: 1.25rem 0 0.5rem;
  text-align: center;
}

.delivery-areas-title {
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sh-navy);
  margin-bottom: 0.6rem;
}

.delivery-area-links a {
  color: #475569;
  font-size: 0.9rem;
  margin: 0 0.6rem;
  display: inline-block;
  transition: color 0.2s ease;
}

.delivery-area-links a:hover {
  color: var(--sh-green);
}

/* --------------------------------------------------------------------------
   FLOATING WHATSAPP BUTTON (Images 1 & 5)
   -------------------------------------------------------------------------- */
.floating-whatsapp {
  position: fixed;
  bottom: 86px;
  right: 24px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25D366;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 6px 22px rgba(37, 211, 102, 0.45);
  z-index: 998;
  transition: all 0.3s ease;
  text-decoration: none;
}

.floating-whatsapp:hover {
  background: #20BA5A;
  color: #FFFFFF;
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.6);
}

@keyframes pulseGlow {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
  70% { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.floating-whatsapp {
  animation: pulseGlow 2.5s infinite;
}

/* --------------------------------------------------------------------------
   SHRESTAM MILK METER & LAB TEST REPORTS SECTION (From Uploaded Image)
   -------------------------------------------------------------------------- */
.milk-meter-section {
  position: relative;
  background: linear-gradient(180deg, #F0FDF4 0%, #FFFFFF 100%);
  padding: 4.5rem 0 3.5rem;
  overflow: hidden;
}

.meter-gauge-card {
  background: #FFFFFF;
  border-radius: 24px;
  padding: 2.2rem 1.8rem;
  box-shadow: 0 10px 30px rgba(24, 136, 36, 0.08);
  border: 1.5px solid #DCFCE7;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.meter-gauge-svg {
  width: 100%;
  max-width: 290px;
  height: auto;
  margin: 0 auto;
}

.meter-needle {
  transform-origin: 100px 95px;
  animation: needleSway 3s ease-in-out infinite alternate;
}

@keyframes needleSway {
  0% { transform: rotate(50deg); }
  50% { transform: rotate(56deg); }
  100% { transform: rotate(53deg); }
}

.meter-date-badge {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--sh-navy);
  margin-top: 0.5rem;
}

.meter-result-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #DCFCE7;
  color: #166534;
  font-weight: 800;
  font-size: 0.95rem;
  padding: 0.4rem 1.2rem;
  border-radius: 50rem;
  margin-top: 0.4rem;
  border: 1.5px solid #86EFAC;
}

.meter-scorecard-card {
  background: linear-gradient(135deg, #15803D 0%, #166534 100%);
  color: #FFFFFF;
  border-radius: 24px;
  padding: 2.2rem;
  box-shadow: 0 12px 36px rgba(22, 101, 52, 0.25);
  height: 100%;
}

.scorecard-stat-pill {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 14px;
  padding: 0.9rem 1rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.scorecard-stat-val {
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1;
  color: #FACC15;
}

.scorecard-stat-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
  margin-top: 0.2rem;
}

.adulterant-item {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 0.65rem 0.85rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.2s ease;
}

.adulterant-item:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: translateX(3px);
}

.adulterant-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: #FFFFFF;
}

.adulterant-status {
  font-size: 0.82rem;
  font-weight: 700;
  color: #86EFAC;
  background: rgba(22, 101, 52, 0.6);
  padding: 0.15rem 0.55rem;
  border-radius: 6px;
}

.lab-certificate-card {
  background: #FFFFFF;
  border-radius: 20px;
  border: 1.5px solid #E2E8F0;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(7, 19, 92, 0.06);
  transition: all 0.35s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.lab-certificate-card:hover {
  transform: translateY(-6px);
  border-color: #0899D8;
  box-shadow: 0 16px 36px rgba(8, 153, 216, 0.18);
}

.lab-cert-header {
  padding: 1.1rem 1.4rem;
  background: #F8FAFC;
  border-bottom: 1px solid #E2E8F0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.lab-cert-preview {
  position: relative;
  background: #F1F5F9;
  padding: 1.25rem;
  text-align: center;
  overflow: hidden;
  cursor: pointer;
}

.lab-cert-preview img {
  max-width: 100%;
  height: 200px;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.lab-cert-card:hover .lab-cert-preview img {
  transform: scale(1.03);
}

.lab-cert-overlay-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(7, 19, 92, 0.88);
  color: #FFFFFF;
  padding: 0.5rem 1.2rem;
  border-radius: 50rem;
  font-size: 0.82rem;
  font-weight: 700;
  opacity: 0;
  transition: all 0.25s ease;
}

.lab-cert-preview:hover .lab-cert-overlay-btn {
  opacity: 1;
}

/* --------------------------------------------------------------------------
   REAL PRODUCT PHOTOGRAPHY DISPLAY
   -------------------------------------------------------------------------- */
.product-real-img-wrap {
  position: relative;
  width: 100%;
  height: 230px;
  background: linear-gradient(180deg, #F8FAFC 0%, #EDF2F7 100%);
  border-radius: 18px 18px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 1rem;
}

.product-real-img {
  max-height: 90%;
  max-width: 85%;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(7, 19, 92, 0.14));
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover .product-real-img {
  transform: scale(1.08) translateY(-4px);
}

/* --------------------------------------------------------------------------
   DISTINCT ANIMATED SECTION TRANSITIONS (Every Section Has Its Own Animation)
   -------------------------------------------------------------------------- */

/* 1. Droplet Milk Wave Divider (Milk Meter -> Trust Strip) */
.wave-droplet-divider {
  position: relative;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  background: transparent;
}

.wave-droplet-divider svg {
  display: block;
  width: 100%;
  height: 50px;
}

/* 2. Sloped Dynamic Wave Divider (Trust Strip -> Why Shrestam) */
.wave-sloped-divider {
  position: relative;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  background: transparent;
}

.wave-sloped-divider svg {
  display: block;
  width: 100%;
  height: 55px;
}

/* 3. Golden Honey Dripping Curve (Bilona Ghee -> Products) */
.wave-honey-drip {
  position: relative;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.wave-honey-drip svg {
  display: block;
  width: 100%;
  height: 52px;
}

/* 4. Organic Cloud Wave Divider (Products -> Journey) */
.wave-cloud-divider {
  position: relative;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.wave-cloud-divider svg {
  display: block;
  width: 100%;
  height: 56px;
}

/* 5. Asymmetric Slanted Cut Divider (Calculator -> Purity) */
.wave-slanted-divider {
  position: relative;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

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

/* 6. Harmonic Sine Wave Divider (Purity -> CSR) */
.wave-sine-divider {
  position: relative;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.wave-sine-divider svg {
  display: block;
  width: 100%;
  height: 52px;
}

/* 7. Stepped Ripple Wave Divider (CSR -> Milestones) */
.wave-ripple-divider {
  position: relative;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.wave-ripple-divider svg {
  display: block;
  width: 100%;
  height: 54px;
}

/* 8. Curved Convex Arc Divider (Milestones -> Reviews) */
.wave-arc-divider {
  position: relative;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.wave-arc-divider svg {
  display: block;
  width: 100%;
  height: 46px;
}

/* 9. Double-Layer Fluid Wave Divider (Reviews -> FAQ) */
.wave-double-divider {
  position: relative;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.wave-double-divider svg {
  display: block;
  width: 100%;
  height: 56px;
}

/* 10. Concave Scoop Wave Divider (FAQ -> App) */
.wave-scoop-divider {
  position: relative;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.wave-scoop-divider svg {
  display: block;
  width: 100%;
  height: 52px;
}

/* --------------------------------------------------------------------------
   THEME GOLDEN DOWNLOAD APP PILL BUTTON (From Uploaded Image 4)
   -------------------------------------------------------------------------- */
.btn-download-app {
  background: #FFD200;
  color: #000000 !important;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.92rem;
  border-radius: 50rem;
  padding: 0.55rem 1.35rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  border: none;
  box-shadow: 0 4px 14px rgba(255, 210, 0, 0.45);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
}

.btn-download-app:hover {
  background: #F5C000;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 22px rgba(255, 210, 0, 0.6);
  color: #000000 !important;
}

.btn-download-app svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.btn-download-app-sm {
  padding: 0.4rem 1rem;
  font-size: 0.84rem;
}

.btn-download-app-lg {
  padding: 0.8rem 2rem;
  font-size: 1.08rem;
}

/* --------------------------------------------------------------------------
   NEW SECTION 1: OUR MILK JOURNEY IS DIFFERENT (< 12 hrs) (From Image 1)
   -------------------------------------------------------------------------- */
.milk-journey-section {
  background: linear-gradient(180deg, #FFFDEB 0%, #F5FBF5 60%, #FFFFFF 100%);
  padding: 4.5rem 0 3.5rem;
  position: relative;
  overflow: hidden;
}

.journey-steps-track {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin: 3.5rem auto 2.5rem;
  max-width: 1040px;
}

.journey-steps-track::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 5%;
  right: 5%;
  height: 2.5px;
  background: linear-gradient(90deg, #10B981 0%, #06B6D4 35%, #3B82F6 65%, #F59E0B 100%);
  z-index: 1;
}

.journey-step-node {
  position: relative;
  z-index: 2;
  text-align: center;
  flex: 1;
  padding: 0 0.5rem;
}

.journey-step-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #FFFFFF;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  border: 2px solid #E2E8F0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.1rem;
  font-size: 1.85rem;
  transition: all 0.3s ease;
}

.journey-step-node:hover .journey-step-circle {
  transform: scale(1.12) translateY(-4px);
  border-color: #10B981;
  box-shadow: 0 10px 26px rgba(16, 185, 129, 0.25);
}

.journey-step-time {
  font-size: 0.8rem;
  font-weight: 800;
  color: #D97706;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.2rem;
}

.journey-step-name {
  font-size: 1.02rem;
  font-weight: 800;
  color: var(--sh-navy);
  margin-bottom: 0.2rem;
}

.journey-step-desc {
  font-size: 0.8rem;
  color: #64748B;
  line-height: 1.35;
  margin-bottom: 0;
}

.journey-under-12h-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ECFDF5;
  border: 1.5px solid #A7F3D0;
  border-radius: 50rem;
  padding: 0.6rem 2rem;
  font-family: var(--font-heading);
  box-shadow: 0 4px 16px rgba(16, 185, 129, 0.12);
  margin: 1.5rem auto 0;
}

.journey-under-12h-badge .time-val {
  color: #059669;
  font-weight: 800;
  font-size: 1.25rem;
}

.journey-under-12h-badge .time-label {
  color: #065F46;
  font-weight: 700;
  font-size: 0.98rem;
}

/* --------------------------------------------------------------------------
   NEW SECTION 2: RESTORING PURITY (SUSTAINABLE PACKAGING) (From Image 2)
   -------------------------------------------------------------------------- */
.sustainable-packaging-section {
  background: #FFFDF0;
  padding: 4.5rem 0 3.5rem;
  position: relative;
  overflow: hidden;
}

.sustainable-pack-grid {
  position: relative;
  margin: 2.5rem auto;
}

.sustainable-pack-card {
  text-align: center;
  padding: 1rem;
  transition: transform 0.3s ease;
}

.sustainable-pack-card:hover {
  transform: translateY(-6px);
}

.sustainable-pack-img-wrap {
  width: 100%;
  height: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.8rem;
}

.sustainable-pack-img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.12));
  transition: transform 0.3s ease;
}

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

.sustainable-pack-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--sh-navy);
}

.sustainable-green-statement {
  background: #16A34A;
  color: #FFFFFF;
  border-radius: 16px;
  padding: 1.25rem 2rem;
  text-align: center;
  font-family: var(--font-heading);
  font-size: 1.12rem;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(22, 163, 74, 0.28);
  max-width: 860px;
  margin: 2rem auto 1.25rem;
}

.sustainable-stats-text {
  font-size: 1rem;
  color: #475569;
  text-align: center;
  font-weight: 500;
}

.sustainable-ev-cart-img {
  max-height: 85px;
  width: auto;
  position: absolute;
  bottom: 15px;
  right: 25px;
  filter: drop-shadow(0 6px 14px rgba(0,0,0,0.15));
}

/* --------------------------------------------------------------------------
   NEW SECTION 3: WHAT WE PRODUCE (From Image 3)
   -------------------------------------------------------------------------- */
.what-we-produce-section {
  background: #FBF9F4;
  padding: 4rem 0 3.5rem;
  position: relative;
  overflow: hidden;
}

.produce-card {
  background: #FFFFFF;
  border-radius: 18px;
  padding: 2.2rem 1.5rem 1.8rem;
  text-align: center;
  box-shadow: 0 6px 20px rgba(7, 19, 92, 0.06);
  border: 1px solid #E2E8F0;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.produce-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 36px rgba(7, 19, 92, 0.12);
  border-color: #0899D8;
}

.produce-card-img-wrap {
  width: 100%;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.produce-card-img {
  max-height: 100%;
  max-width: 85%;
  object-fit: contain;
  transition: transform 0.3s ease;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.08));
}

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

.produce-card-title {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--sh-navy);
  margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   GUARANTEED VISIBILITY OF REAL PRODUCT IMAGES
   -------------------------------------------------------------------------- */
.product-real-img {
  width: auto !important;
  max-width: 90% !important;
  height: 190px !important;
  object-fit: contain !important;
  display: block !important;
  margin: 0 auto !important;
  filter: drop-shadow(0 8px 18px rgba(7, 19, 92, 0.12)) !important;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.product-real-img-wrap {
  width: 100% !important;
  height: 220px !important;
  background: linear-gradient(180deg, #F8FAFC 0%, #EEF2F6 100%) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: hidden !important;
  position: relative !important;
}

/* --------------------------------------------------------------------------
   COMPREHENSIVE FLAWLESS MOBILE RESPONSIVE ENGINE (< 992px & < 576px)
   Keeps Desktop Exact & Perfect — Resolves All Mobile Alignment & Clumsiness
   -------------------------------------------------------------------------- */

/* Global Mobile Guard */
@media (max-width: 991.98px) {
  html, body {
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100vw !important;
  }

  /* 1. Section Spacing & Headers */
  section {
    padding: 3.5rem 0 3rem !important;
    overflow-x: clip !important;
    width: 100% !important;
    max-width: 100vw !important;
  }

  .section-header {
    margin-bottom: 2rem !important;
    text-align: center !important;
  }

  .section-title {
    font-size: 1.95rem !important;
    line-height: 1.25 !important;
  }

  .section-subtitle {
    font-size: 0.94rem !important;
    line-height: 1.5 !important;
    padding: 0 0.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .section-title-ornament {
    margin-top: 0.35rem !important;
    margin-bottom: 0.85rem !important;
  }

  .section-title-ornament .ornament-bar {
    width: 35px !important;
  }

  /* 2. Hero Section */
  .hero-section {
    padding: 2.2rem 0 3.5rem !important;
    text-align: center !important;
  }

  .hero-title {
    font-size: clamp(2.1rem, 5.5vw, 2.8rem) !important;
    line-height: 1.2 !important;
  }

  .hero-subtitle {
    font-size: 0.96rem !important;
    margin-left: auto !important;
    margin-right: auto !important;
    margin-bottom: 1.5rem !important;
  }

  .hero-cta-group {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 0.75rem !important;
    margin-bottom: 1.5rem !important;
  }

  .hero-mascot-card {
    padding: 1.6rem 1.2rem !important;
    border-radius: 26px !important;
    margin-top: 1.5rem !important;
  }

  .hero-mascot-img {
    max-height: 250px !important;
    width: auto !important;
  }

  /* 3. Milk Meter & Scorecard */
  .meter-gauge-card {
    padding: 1.5rem 1rem !important;
    border-radius: 20px !important;
  }

  .meter-gauge-svg {
    max-width: 230px !important;
  }

  .meter-scorecard-card {
    padding: 1.5rem 1rem !important;
    border-radius: 20px !important;
  }

  .scorecard-stat-pill {
    padding: 0.6rem 0.35rem !important;
  }

  .scorecard-stat-val {
    font-size: 1.35rem !important;
  }

  .adulterant-item {
    padding: 0.45rem 0.5rem !important;
  }

  .adulterant-name {
    font-size: 0.76rem !important;
  }

  .adulterant-status {
    font-size: 0.7rem !important;
    padding: 0.12rem 0.35rem !important;
  }

  /* 4. Milk Journey (< 12 hrs) - Clean 2-Col Card Grid */
  .journey-steps-track {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.85rem !important;
    margin: 1.75rem auto 1.25rem !important;
  }

  .journey-steps-track::before {
    display: none !important;
  }

  .journey-step-node {
    flex: none !important;
    width: 100% !important;
    background: #FFFFFF !important;
    border-radius: 16px !important;
    padding: 1rem 0.5rem !important;
    border: 1.5px solid #E2E8F0 !important;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04) !important;
    text-align: center !important;
  }

  .journey-step-circle {
    width: 52px !important;
    height: 52px !important;
    font-size: 1.35rem !important;
    margin: 0 auto 0.6rem !important;
  }

  .journey-step-time {
    font-size: 0.75rem !important;
  }

  .journey-step-name {
    font-size: 0.95rem !important;
  }

  .journey-step-desc {
    font-size: 0.72rem !important;
  }

  .journey-under-12h-badge {
    padding: 0.55rem 1.4rem !important;
    font-size: 0.92rem !important;
  }

  /* 5. Sustainable Eco Packaging */
  .sustainable-pack-card {
    background: #FFFFFF !important;
    border-radius: 16px !important;
    border: 1px solid #FEF3C7 !important;
    padding: 0.85rem 0.5rem !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03) !important;
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
  }

  .sustainable-pack-img-wrap {
    height: 120px !important;
    margin-bottom: 0.5rem !important;
  }

  .sustainable-pack-title {
    font-size: 0.82rem !important;
    line-height: 1.3 !important;
  }

  .sustainable-green-statement {
    padding: 0.95rem 1.2rem !important;
    font-size: 0.94rem !important;
    line-height: 1.4 !important;
    border-radius: 14px !important;
    margin: 1.5rem auto 1rem !important;
  }

  /* 6. What We Produce Cards */
  .produce-card {
    padding: 1.1rem 0.6rem !important;
    border-radius: 16px !important;
  }

  .produce-card-img-wrap {
    height: 115px !important;
    margin-bottom: 0.6rem !important;
  }

  .produce-card-title {
    font-size: 1.2rem !important;
  }

  /* 7. Product Catalog */
  .product-real-img-wrap {
    height: 195px !important;
  }

  .product-real-img {
    max-height: 165px !important;
  }

  .product-body {
    padding: 1.2rem 1rem !important;
  }

  /* 8. Journey Timeline & Leadership */
  .journey-modern-card {
    padding: 1.4rem 1rem !important;
    border-radius: 18px !important;
  }

  .journey-img-circle {
    width: 78px !important;
    height: 78px !important;
    margin-bottom: 0.85rem !important;
  }

  .leadership-photo-wrap {
    height: 270px !important;
  }

  /* 9. Calculator */
  .calc-header,
  .calc-body {
    padding: 1.4rem 1rem !important;
  }

  .calc-summary-box {
    padding: 1.4rem 1.1rem !important;
    border-radius: 18px !important;
  }

  .calc-total-price {
    font-size: 2.2rem !important;
  }

  /* 10. Farmer Banner & App Banner */
  .farmer-banner,
  .app-banner {
    padding: 2.2rem 1.25rem !important;
    border-radius: 24px !important;
    text-align: center !important;
  }

  .farmer-stat-badge {
    padding: 1rem 0.6rem !important;
    border-radius: 16px !important;
  }

  .farmer-stat-number {
    font-size: 1.7rem !important;
  }

  /* 11. Footer Meadow Panorama Mobile Fix */
  .footer-meadow-panorama {
    display: flex !important;
    flex-direction: column-reverse !important;
    background: #FFFFFF !important;
  }

  .footer-meadow-credits {
    position: static !important;
    transform: none !important;
    padding: 0.85rem 1rem 0.6rem !important;
    text-align: center !important;
    width: 100% !important;
    line-height: 1.4 !important;
  }

  .footer-meadow-credits p {
    font-size: 0.82rem !important;
  }

  .footer-meadow-credits a {
    font-size: 0.78rem !important;
  }

  .footer-meadow-img {
    height: 95px !important;
    width: 100% !important;
    object-fit: cover !important;
    object-position: center bottom !important;
  }
}

/* Extra Small Phones (< 576px) */
@media (max-width: 575.98px) {
  .hero-cta-group {
    flex-direction: column !important;
    width: 100% !important;
    max-width: 320px !important;
    margin: 0 auto 1.5rem !important;
  }

  .hero-cta-group .btn-download-app,
  .hero-cta-group .btn {
    width: 100% !important;
    justify-content: center !important;
  }

  .hero-pills-mobile-wrapper .badge-pill-custom {
    font-size: 0.72rem !important;
    padding: 0.3rem 0.55rem !important;
  }

  /* Adulterants on small phones */
  .adulterant-item {
    padding: 0.38rem 0.4rem !important;
  }

  .adulterant-name {
    font-size: 0.72rem !important;
  }

  .adulterant-status {
    font-size: 0.64rem !important;
    padding: 0.1rem 0.28rem !important;
  }

  /* Calculator family pills on small phones */
  .calc-option-pill {
    padding: 0.55rem 0.2rem !important;
    border-radius: 12px !important;
  }

  .calc-option-pill i {
    font-size: 1.25rem !important;
    margin-bottom: 0.15rem !important;
  }

  .calc-option-pill span {
    font-size: 0.74rem !important;
    line-height: 1.2 !important;
  }

  .calc-option-pill small {
    font-size: 0.68rem !important;
  }

  /* Floating WhatsApp & Back to Top spacing */
  .floating-whatsapp {
    bottom: 16px !important;
    right: 16px !important;
    width: 48px !important;
    height: 48px !important;
    font-size: 22px !important;
    z-index: 1030 !important;
  }

  .back-to-top {
    bottom: 74px !important;
    right: 16px !important;
    width: 40px !important;
    height: 40px !important;
    z-index: 1025 !important;
  }
}





