:root {
  --green-dark: #1a3a1f;
  --green-mid: #2d6a35;
  --green-light: #4caf62;
  --gold: #e8a020;
  --gold-light: #f5c842;
  --cream: #fdf8ee;
  --warm-white: #fffdf7;
  --text-dark: #1a1a0f;
  --text-mid: #3a3a2a;
  --text-muted: #7a7a6a;
  --red-accent: #c0392b;
  --shadow: 0 8px 40px rgba(26,58,31,0.13);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

nav {
  position: fixed; top: 0; width: 100%; z-index: 100;
  background: rgba(26,58,31,0.97);
  backdrop-filter: blur(10px);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 6vw;
  height: 68px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
}
.nav-brand {
  display: flex; align-items: center; gap: 12px;
}
.nav-logo-circle {
  width: 42px; height: 42px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
}
.nav-title {
  font-family: 'Playfair Display', serif;
  color: var(--cream);
  font-size: 1.05rem;
  line-height: 1.2;
}
.nav-title span { color: var(--gold-light); font-size: 0.75rem; display: block; font-weight: 300; letter-spacing: 0.05em; }
.nav-links {
  display: flex; gap: 28px; list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold-light); }

.hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--cream); border-radius: 2px; transition: 0.3s; }
.mobile-menu {
  display: none;
  position: fixed; top: 68px; left: 0; right: 0;
  background: var(--green-dark);
  padding: 20px 6vw 28px;
  z-index: 99;
  flex-direction: column; gap: 18px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { color: rgba(255,255,255,0.85); text-decoration: none; font-size: 1rem; font-weight: 500; }
.mobile-menu a.active { color: var(--gold-light); }

.hero {
  min-height: 80vh;
  background: linear-gradient(150deg, var(--green-dark) 0%, #254d2c 55%, #1e4424 100%);
  display: flex; align-items: center;
  padding: 110px 6vw 60px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-veg-bg {
  position: absolute; right: 6vw; bottom: 40px;
  font-size: 16vw; opacity: 0.08; user-select: none;
}

.hero-content { position: relative; z-index: 2; max-width: 680px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(232,160,32,0.18); border: 1px solid rgba(232,160,32,0.4);
  border-radius: 30px; padding: 6px 16px; margin-bottom: 28px;
}
.hero-badge span { color: var(--gold-light); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }
.hero-badge .dot { width: 6px; height: 6px; background: var(--gold-light); border-radius: 50%; animation: blink 1.5s infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }

.hero h1 {
  font-family: 'Playfair Display', serif;
  color: #fff;
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  line-height: 1.1;
  margin-bottom: 12px;
}
.hero h1 .highlight { color: var(--gold-light); }
.hero-sub {
  color: rgba(255,255,255,0.65);
  font-size: 1.05rem;
  font-weight: 300;
  margin-bottom: 36px;
  line-height: 1.6;
}
.hero-ctas {
  display: flex; flex-wrap: wrap; gap: 14px;
}
.btn-primary {
  background: var(--gold); color: var(--green-dark);
  padding: 14px 30px; border-radius: 8px;
  font-weight: 700; font-size: 0.95rem; text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 18px rgba(232,160,32,0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(232,160,32,0.45); }
.btn-secondary {
  background: transparent; color: #fff;
  border: 1.5px solid rgba(255,255,255,0.35);
  padding: 14px 30px; border-radius: 8px;
  font-weight: 500; font-size: 0.95rem; text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}
.btn-secondary:hover { border-color: var(--gold-light); background: rgba(232,160,32,0.08); }

.hero-stats {
  display: flex; flex-wrap: wrap; gap: 28px; margin-top: 52px;
}
.stat { border-left: 3px solid var(--gold); padding-left: 14px; }
.stat-num { font-family: 'Playfair Display', serif; font-size: 1.9rem; color: #fff; line-height: 1; }
.stat-label { color: rgba(255,255,255,0.5); font-size: 0.78rem; font-weight: 500; margin-top: 2px; letter-spacing: 0.04em; text-transform: uppercase; }

.inner-hero {
  background: linear-gradient(150deg, var(--green-dark) 0%, #254d2c 100%);
  padding: 120px 6vw 50px;
  text-align: center;
  position: relative;
}
.inner-hero h1 {
  font-family: 'Playfair Display', serif;
  color: #fff;
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 10px;
}
.inner-hero p {
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

section { padding: 80px 6vw; flex: 1; }
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(76,175,98,0.12); border: 1px solid rgba(76,175,98,0.3);
  border-radius: 20px; padding: 5px 14px; margin-bottom: 16px;
  font-size: 0.75rem; font-weight: 600; color: var(--green-mid); letter-spacing: 0.07em; text-transform: uppercase;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--text-dark); margin-bottom: 14px; line-height: 1.2;
}
.section-sub { color: var(--text-muted); font-size: 1rem; line-height: 1.7; max-width: 560px; }

#about { background: var(--warm-white); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-top: 30px;
}
.about-card {
  background: var(--green-dark); border-radius: 20px;
  padding: 40px 36px; color: #fff;
  position: relative; overflow: hidden;
}
.about-card::after {
  content: '🥬';
  position: absolute; bottom: -10px; right: -10px; font-size: 7rem; opacity: 0.08;
}
.about-card h3 { font-family: 'Playfair Display', serif; font-size: 1.5rem; margin-bottom: 20px; color: var(--gold-light); }
.info-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.1); font-size: 0.88rem; }
.info-row:last-child { border-bottom: none; }
.info-key { color: rgba(255,255,255,0.55); font-weight: 500; }
.info-val { color: #fff; font-weight: 600; text-align: right; }
.about-text p { color: var(--text-mid); line-height: 1.8; font-size: 0.97rem; margin-bottom: 16px; }
.msme-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, #1a3a1f, #2d6a35);
  color: #fff; border-radius: 12px; padding: 14px 20px; margin-top: 10px;
  font-size: 0.85rem; font-weight: 600;
}
.msme-badge .icon { font-size: 1.4rem; }

#services { background: var(--cream); }
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px; margin-top: 30px;
}
.service-card {
  background: #fff; border-radius: 16px; padding: 32px 28px;
  border: 1.5px solid rgba(76,175,98,0.12);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--green-mid), var(--gold));
  transform: scaleX(0); transform-origin: left; transition: transform 0.3s;
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: rgba(76,175,98,0.3); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon { font-size: 2.4rem; margin-bottom: 16px; }
.service-card h3 { font-family: 'Playfair Display', serif; font-size: 1.2rem; margin-bottom: 10px; color: var(--text-dark); }
.service-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.65; }

#Product { background: var(--green-dark); }
#Product .section-title { color: #fff; }
#Product .section-sub { color: rgba(255,255,255,0.6); }
#Product .section-label { background: rgba(232,160,32,0.15); border-color: rgba(232,160,32,0.3); color: var(--gold-light); }
.veg-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 16px; margin-top: 30px;
}
.veg-chip {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px; padding: 20px 14px;
  text-align: center; cursor: default;
  transition: background 0.2s, transform 0.2s;
}
.veg-chip:hover { background: rgba(232,160,32,0.15); transform: translateY(-3px); border-color: rgba(232,160,32,0.3); }
.veg-chip .emoji { font-size: 2rem; display: block; margin-bottom: 8px; }
.veg-chip .name { color: rgba(255,255,255,0.8); font-size: 0.82rem; font-weight: 500; }

/* ── WHY US ── */
#why { background: var(--warm-white); }
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; margin-top: 30px; }
.why-card {
  text-align: center; padding: 36px 24px; border-radius: 16px;
  background: #fff; border: 1.5px solid rgba(76,175,98,0.1);
  transition: box-shadow 0.25s;
}
.why-card:hover { box-shadow: var(--shadow); }
.why-num {
  font-family: 'Playfair Display', serif; font-size: 2.8rem;
  color: var(--green-light); line-height: 1; margin-bottom: 10px;
}
.why-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; color: var(--text-dark); }
.why-card p { font-size: 0.86rem; color: var(--text-muted); line-height: 1.6; }

#contact { background: var(--cream); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; margin-top: 30px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-item {
  display: flex; align-items: flex-start; gap: 16px;
  background: #fff; border-radius: 14px; padding: 20px 22px;
  border: 1.5px solid rgba(76,175,98,0.1);
  transition: box-shadow 0.2s;
}
.contact-item:hover { box-shadow: var(--shadow); }
.contact-icon {
  width: 46px; height: 46px; min-width: 46px;
  background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
}
.contact-item-text h4 { font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-muted); margin-bottom: 4px; }
.contact-item-text p, .contact-item-text a { font-size: 0.95rem; color: var(--text-dark); font-weight: 600; text-decoration: none; }
.contact-item-text a:hover { color: var(--green-mid); }

.contact-form {
  background: var(--green-dark); border-radius: 20px; padding: 38px 34px;
}
.contact-form h3 { font-family: 'Playfair Display', serif; color: #fff; font-size: 1.4rem; margin-bottom: 24px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; color: rgba(255,255,255,0.6); font-size: 0.82rem; font-weight: 600; margin-bottom: 7px; letter-spacing: 0.04em; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.15); border-radius: 10px;
  padding: 12px 16px; color: #fff; font-family: inherit; font-size: 0.93rem;
  outline: none; transition: border-color 0.2s, background 0.2s;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,0.3); }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--gold); background: rgba(255,255,255,0.12);
}
.form-group select option { background: var(--green-dark); }
.form-group textarea { resize: vertical; min-height: 100px; }
.btn-submit {
  width: 100%; background: var(--gold); color: var(--green-dark);
  border: none; padding: 14px; border-radius: 10px;
  font-weight: 700; font-size: 1rem; cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  font-family: inherit;
}
.btn-submit:hover { background: var(--gold-light); transform: translateY(-1px); }
.form-success { display: none; text-align: center; color: var(--gold-light); padding: 20px; font-weight: 600; font-size: 1rem; }

footer {
  background: #0e2211; color: rgba(255,255,255,0.55);
  padding: 40px 6vw; text-align: center;
  margin-top: auto;
}
.footer-top {
  display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center;
  gap: 20px; margin-bottom: 28px; padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand { font-family: 'Playfair Display', serif; color: #fff; font-size: 1.2rem; text-align: left; }
.footer-brand span { display: block; font-family: 'DM Sans', sans-serif; font-size: 0.78rem; color: rgba(255,255,255,0.4); font-weight: 300; margin-top: 2px; }
.footer-links { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-links a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 0.85rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold-light); }
.footer-bottom { font-size: 0.8rem; line-height: 1.7; }
.footer-bottom strong { color: rgba(255,255,255,0.7); }

.udyam-strip {
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%);
  padding: 12px 6vw;
  display: flex; flex-wrap: wrap; gap: 16px; align-items: center; justify-content: center;
  font-size: 0.82rem; font-weight: 700; color: var(--green-dark);
  letter-spacing: 0.02em;
}
.udyam-strip span { display: flex; align-items: center; gap: 6px; }

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 18px; }
  .veg-grid { grid-template-columns: repeat(auto-fill, minmax(110px, 1fr)); }
  section { padding: 60px 5vw; }
}
@media (max-width: 480px) {
  .hero { padding-top: 100px; }
  .hero h1 { font-size: 2.1rem; }
  .contact-form { padding: 28px 22px; }
  .about-card { padding: 28px 22px; }
}
