/* ============================================================
   Lucky Fresh – Bagulya Roller Flour Mill
   Main Stylesheet
   ============================================================ */

/* ── Google Fonts Import ── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;900&family=Poppins:wght@300;400;500;600;700&display=swap');

/* ── CSS Custom Properties ── */
:root {
  --gold:       #D4A017;
  --gold-light: #F0C040;
  --gold-dark:  #A87C10;
  --green:      #2E7D32;
  --green-light:#43A047;
  --green-dark: #1B5E20;
  --white:      #FFFFFF;
  --off-white:  #FAFAF7;
  --gray-100:   #F5F5F0;
  --gray-200:   #E8E8E0;
  --gray-400:   #ACACAC;
  --gray-600:   #666660;
  --gray-800:   #2A2A25;
  --black:      #111111;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Poppins', sans-serif;

  --shadow-sm:  0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:  0 8px 24px rgba(0,0,0,0.12);
  --shadow-lg:  0 20px 60px rgba(0,0,0,0.18);
  --shadow-gold:0 8px 32px rgba(212,160,23,0.35);

  --radius-sm:  6px;
  --radius-md:  14px;
  --radius-lg:  24px;
  --radius-xl:  40px;

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

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

/* ── Utility Classes ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(212,160,23,0.12);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--gray-800);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-600);
  max-width: 580px;
  line-height: 1.75;
}

.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.btn:hover::before { transform: scaleX(1); }

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(212,160,23,0.45);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.7);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--green);
  border: 2px solid var(--green);
}
.btn-outline:hover {
  background: var(--green);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(46,125,50,0.3);
}

.btn-green {
  background: linear-gradient(135deg, var(--green-light), var(--green));
  color: var(--white);
  box-shadow: 0 8px 24px rgba(46,125,50,0.3);
}
.btn-green:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(46,125,50,0.4);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: var(--transition);
  padding: 0;
}

.navbar.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 30px rgba(0,0,0,0.1);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: var(--shadow-gold);
  flex-shrink: 0;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-logo-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gray-800);
  transition: var(--transition);
}

.navbar:not(.scrolled) .nav-logo-name { color: var(--white); }

.nav-logo-tagline {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  padding: 8px 18px;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 100px;
  color: rgba(255,255,255,0.9);
  transition: var(--transition);
  position: relative;
}

.navbar.scrolled .nav-link {
  color: var(--gray-600);
}

.nav-link:hover,
.nav-link.active {
  background: rgba(255,255,255,0.2);
  color: var(--white);
}

.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active {
  background: rgba(212,160,23,0.12);
  color: var(--gold-dark);
}

.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white) !important;
  box-shadow: var(--shadow-gold);
  padding: 10px 22px;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(212,160,23,0.4) !important;
  background: rgba(255,255,255,0.2) !important;
}

.navbar.scrolled .nav-cta {
  color: var(--white) !important;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark)) !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.navbar.scrolled .hamburger span { background: var(--gray-800); }

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0; right: 0;
  background: var(--white);
  padding: 100px 32px 40px;
  z-index: 999;
  gap: 8px;
  box-shadow: var(--shadow-lg);
  transform: translateY(-100%);
  transition: transform var(--transition-slow);
}

.mobile-nav.open {
  transform: translateY(0);
}

.mobile-nav a {
  display: block;
  padding: 14px 20px;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--gray-800);
  border-radius: var(--radius-md);
  transition: var(--transition);
  border-bottom: 1px solid var(--gray-200);
}

.mobile-nav a:hover {
  background: var(--gray-100);
  color: var(--gold-dark);
  padding-left: 28px;
}


/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Wheat field SVG background */
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      160deg,
      rgba(26,20,5,0.75) 0%,
      rgba(46,80,32,0.55) 50%,
      rgba(212,160,23,0.3) 100%
    ),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25'%3E%3Cdefs%3E%3ClinearGradient id='sky' x1='0' y1='0' x2='0' y2='1'%3E%3Cstop offset='0%25' stop-color='%23C8A24A'/%3E%3Cstop offset='40%25' stop-color='%23E8C56A'/%3E%3Cstop offset='100%25' stop-color='%232E7D32'/%3E%3C/linearGradient%3E%3C/defs%3E%3Crect width='100%25' height='100%25' fill='url(%23sky)'/%3E%3C/svg%3E");
  background-size: cover;
  background-position: center;
}

/* Animated wheat stalks overlay */
.hero-wheat-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% 80%, rgba(212,160,23,0.2) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 20% 90%, rgba(46,125,50,0.15) 0%, transparent 60%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 24px;
  margin-left: max(24px, calc((100vw - 1200px)/2 + 24px));
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212,160,23,0.25);
  border: 1px solid rgba(212,160,23,0.5);
  color: var(--gold-light);
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 28px;
  backdrop-filter: blur(10px);
  animation: fadeSlideUp 0.8s ease both;
}

.hero-eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold-light);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
  animation: fadeSlideUp 0.8s 0.15s ease both;
}

.hero-title span {
  display: block;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.8;
  margin-bottom: 40px;
  animation: fadeSlideUp 0.8s 0.3s ease both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeSlideUp 0.8s 0.45s ease both;
}

/* Hero scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: fadeIn 1.5s 1s ease both;
}

.scroll-mouse {
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.scroll-dot {
  width: 4px;
  height: 8px;
  background: var(--gold-light);
  border-radius: 2px;
  animation: scrollBounce 2s ease-in-out infinite;
}

/* Hero stats strip */
.hero-stats {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  display: flex;
  justify-content: center;
  padding: 24px 0;
  z-index: 3;
  box-shadow: 0 -4px 30px rgba(0,0,0,0.1);
}

.hero-stats-inner {
  display: flex;
  gap: 0;
  max-width: 1000px;
  width: 100%;
  padding: 0 24px;
}

.stat-item {
  flex: 1;
  text-align: center;
  padding: 8px 16px;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 10%; bottom: 10%;
  width: 1px;
  background: var(--gray-200);
}

.stat-value {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-dark);
  line-height: 1;
}

.stat-label {
  font-size: 0.78rem;
  color: var(--gray-600);
  font-weight: 500;
  margin-top: 4px;
}

/* ============================================================
   PRODUCTS SHOWCASE (Home)
   ============================================================ */
.products-home {
  padding: 100px 0;
  background: var(--gray-100);
  position: relative;
  overflow: hidden;
}

.products-home::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(212,160,23,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 24px;
  margin-top: 56px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  cursor: pointer;
}

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

.product-card-image {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.product-card-image .product-emoji {
  font-size: 4.5rem;
  z-index: 2;
  position: relative;
  transition: transform var(--transition);
  filter: drop-shadow(0 8px 16px rgba(0,0,0,0.15));
}

.product-card:hover .product-emoji {
  transform: scale(1.1) translateY(-4px);
}

.product-card-bg {
  position: absolute;
  inset: 0;
  transition: var(--transition);
}

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

.product-card-body {
  padding: 20px;
}

.product-card-tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 8px;
}

.product-card-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 8px;
}

.product-card-desc {
  font-size: 0.85rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 16px;
}

.product-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green);
  transition: var(--transition);
}

.product-card-link:hover {
  gap: 10px;
  color: var(--green-dark);
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-section {
  padding: 100px 0;
  background: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 32px;
  margin-top: 56px;
}

.why-card {
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  background: var(--white);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.why-card:hover::before { transform: scaleX(1); }

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.why-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(212,160,23,0.15), rgba(212,160,23,0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
  transition: var(--transition);
}

.why-card:hover .why-icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
}

.why-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--gray-800);
}

.why-desc {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.7;
}

/* ============================================================
   MANUFACTURING PROCESS
   ============================================================ */
.process-section {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--gray-100) 0%, var(--white) 100%);
  overflow: hidden;
}

.process-timeline {
  position: relative;
  margin-top: 64px;
  padding: 40px 0;
}

/* Horizontal connecting line */
.process-timeline::before {
  content: '';
  position: absolute;
  top: 88px;
  left: calc(10% + 60px);
  right: calc(10% + 60px);
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--green));
  z-index: 0;
}

.process-steps {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  position: relative;
  z-index: 1;
}

.process-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.process-number {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold-dark);
  margin-bottom: 24px;
  box-shadow: var(--shadow-gold);
  transition: var(--transition);
  position: relative;
  z-index: 2;
}

.process-step:hover .process-number {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  transform: scale(1.1);
}

.process-icon {
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.process-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 8px;
}

.process-desc {
  font-size: 0.8rem;
  color: var(--gray-600);
  line-height: 1.6;
  max-width: 160px;
}

/* ============================================================
   DISTRIBUTOR CTA SECTION
   ============================================================ */
.distributor-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 50%, var(--green-light) 100%);
  position: relative;
  overflow: hidden;
}

.distributor-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(212,160,23,0.2) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.05) 0%, transparent 40%);
  pointer-events: none;
}

.distributor-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}

.distributor-content .section-title {
  color: var(--white);
}

.distributor-content .section-subtitle {
  color: rgba(255,255,255,0.85);
}

.distributor-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--gray-800);
  color: var(--white);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.footer-brand-sub {
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}

.footer-brand-desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  margin-bottom: 24px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
  color: rgba(255,255,255,0.7);
}

.social-btn:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-col-title {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-links a::before {
  content: '›';
  color: var(--gold);
  font-size: 1rem;
  transition: transform var(--transition);
}

.footer-links a:hover {
  color: var(--white);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
}

.footer-contact-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(212,160,23,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.footer-contact-text {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  color: rgba(255,255,255,0.4);
  transition: var(--transition);
}

.footer-bottom-links a:hover { color: var(--gold); }

/* ============================================================
   PAGE HEADER (Inner Pages)
   ============================================================ */
.page-header {
  height: 380px;
  background: linear-gradient(135deg, var(--green-dark), var(--green), rgba(212,160,23,0.4));
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  margin-top: 0;
  padding-top: 88px;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(212,160,23,0.25) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 80%, rgba(255,255,255,0.05) 0%, transparent 40%);
}

.page-header-content {
  position: relative;
  z-index: 1;
}

.page-header-tag {
  display: inline-block;
  background: rgba(212,160,23,0.25);
  border: 1px solid rgba(212,160,23,0.5);
  color: var(--gold-light);
  padding: 6px 18px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.page-header-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 16px;
}

.page-header-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  max-width: 560px;
}

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

.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8rem;
  box-shadow: var(--shadow-lg);
}

.about-image-badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: var(--white);
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: var(--shadow-md);
  text-align: center;
}

.badge-value {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-dark);
  line-height: 1;
}

.badge-label {
  font-size: 0.75rem;
  color: var(--gray-600);
  font-weight: 500;
}

.mission-vision {
  padding: 80px 0;
  background: var(--gray-100);
}

.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
}

.mv-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--gold);
  transition: var(--transition);
}

.mv-card:nth-child(2) { border-left-color: var(--green); }

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

.mv-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.mv-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--gray-800);
}

.mv-text {
  font-size: 0.925rem;
  color: var(--gray-600);
  line-height: 1.8;
}

.infrastructure-section {
  padding: 80px 0;
}

.infra-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.infra-item {
  background: var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  transition: var(--transition);
}

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

.infra-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold-dark);
  line-height: 1;
  margin-bottom: 8px;
}

.infra-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 6px;
}

.infra-desc {
  font-size: 0.8rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* ============================================================
   PRODUCTS PAGE
   ============================================================ */
.products-page {
  padding: 80px 0;
  background: var(--off-white);
}

.products-filter {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 56px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 24px;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 500;
  border: 2px solid var(--gray-200);
  color: var(--gray-600);
  background: var(--white);
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  border-color: var(--gold);
  color: var(--gold-dark);
  background: rgba(212,160,23,0.08);
}

.products-full-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 32px;
}

.product-full-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

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

.product-full-image {
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  position: relative;
  overflow: hidden;
}

.product-full-body {
  padding: 28px;
}

.product-full-category {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: rgba(212,160,23,0.1);
  padding: 4px 12px;
  border-radius: 100px;
  display: inline-block;
  margin-bottom: 12px;
}

.product-full-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 12px;
}

.product-full-desc {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 16px;
}

.product-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.product-feature-tag {
  background: var(--gray-100);
  color: var(--gray-600);
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-page {
  padding: 80px 0 100px;
  background: var(--off-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  align-items: start;
}

.contact-info-card {
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  border-radius: var(--radius-xl);
  padding: 48px;
  color: var(--white);
  position: sticky;
  top: 100px;
}

.contact-info-title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.contact-info-sub {
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  margin-bottom: 40px;
  line-height: 1.7;
}

.contact-detail {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-detail-content strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 4px;
}

.contact-detail-content span {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
}

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-md);
}

.form-title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 8px;
}

.form-subtitle {
  font-size: 0.9rem;
  color: var(--gray-600);
  margin-bottom: 36px;
}

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

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

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--gray-800);
  background: var(--off-white);
  transition: var(--transition);
  outline: none;
}

.form-control:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(212,160,23,0.1);
}

.form-control::placeholder { color: var(--gray-400); }

textarea.form-control {
  resize: vertical;
  min-height: 140px;
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23ACACAC' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

.map-placeholder {
  margin-top: 56px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  height: 320px;
  background: linear-gradient(135deg, var(--gray-200), var(--gray-100));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: var(--shadow-sm);
}

.map-placeholder-inner {
  text-align: center;
  z-index: 1;
}

.map-placeholder-icon {
  font-size: 3rem;
  margin-bottom: 12px;
}

.map-placeholder-text {
  font-weight: 600;
  color: var(--gray-600);
  margin-bottom: 4px;
}

.map-placeholder-sub {
  font-size: 0.85rem;
  color: var(--gray-400);
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.5); opacity: 0.5; }
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50%       { transform: translateY(8px); opacity: 0.4; }
}

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

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* Form success message */
.form-success {
  display: none;
  text-align: center;
  padding: 32px;
}

.form-success.show { display: block; }

.success-icon {
  font-size: 3.5rem;
  margin-bottom: 16px;
}

.success-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 8px;
}

.success-msg {
  color: var(--gray-600);
  font-size: 0.9rem;
}

/* ============================================================
   RESPONSIVE DESIGN
   ============================================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .process-timeline::before { display: none; }
  .process-steps { flex-wrap: wrap; }
  .process-step { flex: 0 0 calc(50% - 8px); }
  .about-story-grid { grid-template-columns: 1fr; gap: 48px; }
  .infra-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-info-card { position: static; }
  .distributor-inner { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .hero-content {
    margin-left: 0;
    padding: 0 24px;
  }

  .hero-stats-inner {
    flex-wrap: wrap;
    justify-content: center;
  }

  .stat-item { flex: 0 0 50%; }
  .stat-item::after { display: none; }

  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .mv-grid { grid-template-columns: 1fr; }
  .infra-grid { grid-template-columns: 1fr; }
  .products-full-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-card { padding: 28px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .process-step { flex: 0 0 100%; }
}

@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .stat-item { flex: 0 0 100%; }
  .page-header { height: 300px; }
  .contact-form-card { padding: 24px 18px; }
  .about-story-grid > div:first-child { margin-bottom: 40px; }
  .hero-stats { display: none; }  /* hide stats bar on very small screens */
}

/* ── Screen reader only ── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ── Mobile touch improvements ── */
@media (hover: none) and (pointer: coarse) {
  .btn:hover  { transform: none; }
  .product-card:hover { transform: none; }
  .why-card:hover { transform: none; }
  /* Ensure tap targets are large enough */
  .nav-link   { padding: 10px 18px; }
  .filter-btn { padding: 12px 20px; min-height: 44px; }
  .btn        { min-height: 44px; }
  .form-control { font-size: 16px; } /* prevents iOS zoom on input focus */
}

/* ── Details/Summary arrow fix ── */
details summary::-webkit-details-marker { display: none; }

/* ── Product card image object-fit ── */
.product-card-image img {
  transition: transform var(--transition);
}
.product-card:hover .product-card-image img {
  transform: scale(1.05);
}

/* ── About page grid fix on mobile ── */
@media (max-width: 768px) {
  .about-story-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   LEADERSHIP TEAM
   ============================================================ */
.team-section {
  padding: 80px 0;
  background: var(--gray-100);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border-top: 3px solid transparent;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-top-color: var(--gold);
}

.team-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 16px;
  box-shadow: 0 4px 16px rgba(212,160,23,0.3);
}

.team-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 6px;
  line-height: 1.3;
}

.team-surname {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--gold-dark);
  margin-bottom: 8px;
}

.team-role {
  font-size: 0.8rem;
  color: var(--gray-600);
  line-height: 1.5;
  background: var(--gray-100);
  padding: 6px 12px;
  border-radius: 100px;
  display: inline-block;
}

/* ============================================================
   LEGAL PAGES (Privacy, T&C)
   ============================================================ */
.legal-page {
  padding: 80px 0 100px;
  background: var(--white);
}

.legal-content {
  max-width: 820px;
  margin: 0 auto;
}

.legal-content h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-800);
  margin: 40px 0 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--gray-200);
}

.legal-content h2:first-child { margin-top: 0; }

.legal-content p {
  color: var(--gray-600);
  font-size: 0.92rem;
  line-height: 1.85;
  margin-bottom: 14px;
}

.legal-content ul {
  margin: 0 0 16px 20px;
  list-style: disc;
}

.legal-content ul li {
  color: var(--gray-600);
  font-size: 0.92rem;
  line-height: 1.85;
  margin-bottom: 6px;
}

.legal-content strong { color: var(--gray-800); }

.legal-meta {
  background: var(--gray-100);
  border-left: 4px solid var(--gold);
  padding: 16px 20px;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin-bottom: 40px;
  font-size: 0.85rem;
  color: var(--gray-600);
}

/* ============================================================
   FSSAI / GST BADGE STRIP
   ============================================================ */
.compliance-strip {
  background: var(--gray-800);
  padding: 12px 0;
  border-top: 2px solid var(--gold-dark);
}

.compliance-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  align-items: center;
}

.compliance-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.65);
}

.compliance-item strong {
  color: var(--gold-light);
  font-weight: 600;
}

@media (max-width: 600px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .compliance-inner { gap: 14px; }
  .compliance-item { font-size: 0.72rem; }
}
