:root {
  /* Greenish Spice Plantation Theme Palette */
  --primary-dark: #1b3323;       /* Deep Forest / Cardamom Dark Green */
  --primary-brown: #2e5339;      /* Deep Herbal Green */
  --accent-gold: #c29b38;        /* Warm Cured Spice Gold */
  --accent-copper: #2b7a4b;      /* Lush Green Accent for Buttons & Badges */
  --accent-hover: #1e5c37;       /* Darker Button Hover Green */
  --forest-green: #235c36;      /* Botanical Leaf Green */
  --bg-creme: #f4f8f4;          /* Soft Herbal Mist Light Background */
  --bg-white: #ffffff;
  --card-border: #d4e4d6;        /* Subtle Pale Green Card Borders */
  --text-muted: #556b5b;         /* Muted Sage Text Color */
  --shadow-subtle: 0 10px 30px rgba(27, 51, 35, 0.08);
  --shadow-lg: 0 16px 36px rgba(27, 51, 35, 0.12);
  --transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background-color: var(--bg-creme);
  color: var(--primary-dark);
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

h1, h2, h3, h4, .brand-font {
  font-family: 'Cinzel', Georgia, serif;
  letter-spacing: 0.5px;
}

/* Top Notification Bar */
.top-bar {
  background-color: var(--primary-dark);
  color: #e2f0e4;
  font-size: 0.84rem;
  padding: 8px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.top-bar-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.top-bar-links a {
  color: #e2f0e4;
  text-decoration: none;
  margin-left: 16px;
  transition: var(--transition);
}

.top-bar-links a:hover {
  color: var(--accent-gold);
}

/* Navigation */
nav {
  background-color: var(--bg-white);
  box-shadow: 0 4px 20px rgba(27, 51, 35, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--card-border);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 24px;
}

.brand-logo-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.brand-logo-wrap svg,
.brand-logo-wrap img {
  width: 62px;
  height: 62px;
  transition: var(--transition);
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.08));
}

.brand-logo-wrap:hover svg,
.brand-logo-wrap:hover img {
  transform: scale(1.04) rotate(1deg);
}

.brand-name {
  display: flex;
  flex-direction: column;
}

.brand-name span:first-child {
  font-family: 'Cinzel', serif;
  font-weight: 900;
  font-size: 1.35rem;
  color: var(--primary-dark);
  line-height: 1.1;
}

.brand-name span:last-child {
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--forest-green);
  font-weight: 700;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 8px;
  align-items: center;
}

.nav-link {
  padding: 8px 16px;
  text-decoration: none;
  color: var(--primary-dark);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 6px;
  transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
  background-color: var(--primary-dark);
  color: #f4f8f4;
}

/* Hero Section (Fresh Deep Botanical Gradient) */
.hero {
  background: linear-gradient(135deg, rgba(27, 51, 35, 0.92), rgba(43, 90, 58, 0.88)),
              url('https://images.unsplash.com/photo-1596040033229-a9821ebd058d?auto=format&fit=crop&w=1600&q=80') center/cover;
  color: #f4f8f4;
  padding: 80px 24px;
  text-align: center;
}

.hero h1 {
  font-size: 2.9rem;
  margin-bottom: 18px;
  color: #ffffff;
}

.hero p {
  font-size: 1.18rem;
  max-width: 800px;
  margin: 0 auto 30px auto;
  font-weight: 300;
  color: #e2ede4;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px;
}

/* Grids & Cards */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.card {
  background-color: var(--bg-white);
  border-radius: 12px;
  border: 1px solid var(--card-border);
  overflow: hidden;
  box-shadow: var(--shadow-subtle);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: #b7d6bb;
}

.card-img {
  height: 220px;
  width: 100%;
  object-fit: cover;
}

.card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-tag {
  align-self: flex-start;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  background: #e7f3e9;
  color: var(--forest-green);
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 12px;
}

/* Buttons */
.btn {
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 2px solid transparent;
  transition: var(--transition);
}

.btn-primary {
  background-color: var(--accent-copper);
  color: #fff;
}

.btn-primary:hover {
  background-color: var(--accent-hover);
}

.btn-outline {
  border-color: #ffffff;
  color: #ffffff;
}

.btn-outline:hover {
  background-color: #ffffff;
  color: var(--primary-dark);
}

/* Badges */
.fssai-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(35, 92, 54, 0.12);
  border: 1px solid var(--forest-green);
  color: var(--forest-green);
  padding: 5px 12px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.85rem;
}

/* Contact Layout */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  background: var(--bg-white);
  border-radius: 16px;
  border: 1px solid var(--card-border);
  padding: 40px;
  box-shadow: var(--shadow-subtle);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  font-size: 0.9rem;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--card-border);
  border-radius: 8px;
  font-size: 0.95rem;
  background-color: #fbfdfb;
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-copper);
  box-shadow: 0 0 0 3px rgba(43, 122, 75, 0.15);
}

/* Footer (Deep Cardamom Green Theme) */
footer {
  background-color: var(--primary-dark);
  color: #dbe8dd;
  padding: 60px 24px 25px 24px;
  border-top: 4px solid var(--forest-green);
  margin-top: auto;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.6fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h4 {
  color: #ffffff;
  font-size: 1.2rem;
  margin-bottom: 18px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #c4dac7;
  text-decoration: none;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--accent-gold);
  padding-left: 4px;
}

.official-address-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 18px;
  border-radius: 8px;
  line-height: 1.7;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 0.85rem;
  color: #8fa792;
}

@media (max-width: 900px) {
  .footer-grid, .contact-layout {
    grid-template-columns: 1fr;
  }
}