@import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@400;500;600;700;800&family=Noto+Sans+Devanagari:wght@400;500;600;700&family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
  --green-dark: #1a5c2a;
  --green-main: #2e7d32;
  --green-mid: #388e3c;
  --green-light: #66bb6a;
  --green-pale: #e8f5e9;
  --yellow-main: #fdd835;
  --yellow-warm: #ffb300;
  --yellow-light: #fff9c4;
  --brown-dark: #4e342e;
  --white: #ffffff;
  --text-dark: #1b2618;
  --text-mid: #3a4a38;
  --text-light: #6a7d68;
  --border: #c8e6c9;
  --shadow: 0 4px 24px rgba(30,90,40,0.10);
  --shadow-lg: 0 8px 40px rgba(30,90,40,0.15);
  --radius: 12px;
  --radius-lg: 20px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-dark);
  background: #f9fef9;
  overflow-x: hidden;
}

/* ===== NAVBAR ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--green-dark);
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
}

.nav-top {
  background: var(--yellow-main);
  padding: 6px 0;
  font-size: 0.78rem;
  color: var(--green-dark);
  font-weight: 600;
}

.nav-top .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-top a { color: var(--green-dark); text-decoration: none; }
.nav-top a:hover { text-decoration: underline; }

.nav-main {
  padding: 12px 0;
}

.nav-main .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-brand .logo-circle {
  width: 54px;
  height: 54px;
  background: var(--yellow-main);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--green-dark);
  font-family: 'Baloo 2', cursive;
  border: 3px solid rgba(255,255,255,0.3);
  flex-shrink: 0;
}

.nav-brand .brand-text {
  line-height: 1.2;
}

.nav-brand .brand-name {
  font-family: 'Baloo 2', cursive;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--yellow-main);
  display: block;
}

.nav-brand .brand-sub {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav-links a {
  color: rgba(255,255,255,0.88);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition: all 0.2s;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  background: var(--yellow-main);
  color: var(--green-dark);
  font-weight: 700;
}

.nav-cta {
  background: var(--yellow-main) !important;
  color: var(--green-dark) !important;
  font-weight: 700 !important;
  border-radius: 8px !important;
}

.nav-cta:hover {
  background: var(--yellow-warm) !important;
}

.nav-whatsapp {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: white !important;
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 600 !important;
  font-size: 0.85rem !important;
}

.nav-whatsapp:hover {
  background: #1ebe5d !important;
  color: white !important;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--yellow-main);
  border-radius: 2px;
  transition: 0.3s;
}

/* ===== CONTAINER ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== HERO SLIDER ===== */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--green-dark);
}

.hero-slider {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-slide {
  min-width: 100%;
  min-height: 540px;
  display: flex;
  align-items: center;
  position: relative;
  padding: 60px 0;
}

.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(20,60,20,0.85) 0%, rgba(20,60,20,0.5) 60%, transparent 100%);
}

.slide-1 .slide-bg { background: linear-gradient(135deg, #1a5c2a 0%, #2e7d32 40%, #388e3c 100%); }
.slide-2 .slide-bg { background: linear-gradient(135deg, #1b5e20 0%, #33691e 50%, #558b2f 100%); }
.slide-3 .slide-bg { background: linear-gradient(135deg, #e65100 0%, #bf360c 40%, #4e342e 100%); }

.slide-content {
  position: relative;
  z-index: 2;
}

.slide-badge {
  display: inline-block;
  background: var(--yellow-main);
  color: var(--green-dark);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.slide-title {
  font-family: 'Baloo 2', cursive;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: white;
  line-height: 1.15;
  margin-bottom: 8px;
}

.slide-title-hindi {
  font-family: 'Noto Sans Devanagari', sans-serif;
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  color: var(--yellow-main);
  font-weight: 600;
  margin-bottom: 16px;
  display: block;
}

.slide-desc {
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 32px;
}

.slide-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.25s;
}

.btn-yellow {
  background: var(--yellow-main);
  color: var(--green-dark);
}

.btn-yellow:hover {
  background: var(--yellow-warm);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(253,216,53,0.4);
}

.btn-outline-white {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.7);
}

.btn-outline-white:hover {
  background: rgba(255,255,255,0.15);
  border-color: white;
}

.btn-green {
  background: var(--green-main);
  color: white;
}

.btn-green:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-whatsapp {
  background: #25D366;
  color: white;
}

.btn-whatsapp:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
}

.hero-slide-img {
  text-align: center;
}

.hero-slide-img img {
  max-height: 360px;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.35));
  animation: floatImg 4s ease-in-out infinite;
}

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

.hero-controls {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  cursor: pointer;
  border: none;
  transition: all 0.3s;
}

.hero-dot.active {
  background: var(--yellow-main);
  width: 28px;
  border-radius: 5px;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.3);
  color: white;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.25s;
}

.hero-arrow:hover { background: var(--yellow-main); color: var(--green-dark); border-color: var(--yellow-main); }
.hero-arrow-prev { left: 20px; }
.hero-arrow-next { right: 20px; }

/* ===== TAGLINE STRIP ===== */
.tagline-strip {
  background: var(--yellow-main);
  padding: 14px 0;
  text-align: center;
  font-family: 'Noto Sans Devanagari', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--green-dark);
  letter-spacing: 0.5px;
}

/* ===== STATS STRIP ===== */
.stats-strip {
  background: var(--green-dark);
  padding: 28px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-item {
  text-align: center;
  padding: 16px;
  border-right: 1px solid rgba(255,255,255,0.15);
}

.stat-item:last-child { border-right: none; }

.stat-number {
  font-family: 'Baloo 2', cursive;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--yellow-main);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.75);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ===== SECTIONS ===== */
.section { padding: 72px 0; }
.section-alt { background: var(--green-pale); }

.section-header {
  text-align: center;
  margin-bottom: 52px;
}

.section-badge {
  display: inline-block;
  background: var(--green-pale);
  color: var(--green-main);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
  border: 1px solid var(--border);
}

.section-title {
  font-family: 'Baloo 2', cursive;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 12px;
}

.section-title span { color: var(--green-main); }

.section-subtitle {
  font-size: 1rem;
  color: var(--text-light);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}

.section-divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--green-main), var(--yellow-main));
  border-radius: 2px;
  margin: 18px auto 0;
}

/* ===== PRODUCT CARD ===== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}

.product-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}

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

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

.product-card-img::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.12;
}

.product-icon-placeholder {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  position: relative;
  z-index: 1;
  background: rgba(255,255,255,0.9);
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.product-card-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-category-tag {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--green-main);
  background: var(--green-pale);
  padding: 3px 10px;
  border-radius: 12px;
  display: inline-block;
  margin-bottom: 10px;
  border: 1px solid var(--border);
}

.product-name {
  font-family: 'Baloo 2', cursive;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.product-name-hindi {
  font-family: 'Noto Sans Devanagari', sans-serif;
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 10px;
}

.product-subtitle {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.5;
  margin-bottom: 16px;
  flex: 1;
}

.product-packaging {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--text-mid);
  font-weight: 500;
  margin-bottom: 16px;
}

.product-card-actions {
  display: flex;
  gap: 10px;
}

.btn-sm {
  padding: 9px 16px;
  font-size: 0.82rem;
  border-radius: 8px;
  flex: 1;
  justify-content: center;
}

/* ===== CATEGORY FILTER ===== */
.category-filter {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 36px;
  justify-content: center;
}

.cat-btn {
  padding: 9px 20px;
  border-radius: 25px;
  border: 2px solid var(--border);
  background: white;
  color: var(--text-mid);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}

.cat-btn:hover,
.cat-btn.active {
  background: var(--green-main);
  border-color: var(--green-main);
  color: white;
}

/* ===== WHY CHOOSE US ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 28px;
}

.feature-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: center;
  border: 1px solid var(--border);
  transition: all 0.3s;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--green-light);
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: var(--green-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 20px;
}

.feature-title {
  font-family: 'Baloo 2', cursive;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.feature-desc {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ===== ABOUT SECTION ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-img-side {
  position: relative;
}

.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, var(--green-main), var(--green-dark));
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-img-badge {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: var(--yellow-main);
  color: var(--green-dark);
  font-family: 'Baloo 2', cursive;
  font-weight: 800;
  font-size: 0.9rem;
  padding: 16px 20px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
}

.about-text { }

.about-text .section-badge { text-align: left; margin-bottom: 14px; }
.about-text .section-title { text-align: left; }
.about-text .section-divider { margin: 18px 0; }

.about-desc {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 24px;
}

.about-director {
  background: var(--green-pale);
  border-left: 4px solid var(--green-main);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 16px 20px;
  margin-bottom: 24px;
}

.director-name {
  font-family: 'Baloo 2', cursive;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--green-dark);
}

.director-title {
  font-size: 0.82rem;
  color: var(--text-light);
}

/* ===== CONTACT SECTION ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
  align-items: start;
}

.contact-info-card {
  background: var(--green-dark);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  color: white;
}

.contact-info-card h3 {
  font-family: 'Baloo 2', cursive;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--yellow-main);
  margin-bottom: 28px;
}

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

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

.contact-item-text .label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 3px;
}

.contact-item-text .value {
  font-size: 0.95rem;
  color: white;
  font-weight: 500;
  line-height: 1.5;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}

.social-link {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  text-decoration: none;
  background: rgba(255,255,255,0.12);
  color: white;
  transition: all 0.2s;
}

.social-link:hover { transform: translateY(-2px); }
.social-link.wa { background: #25D366; }
.social-link.fb { background: #1877f2; }
.social-link.ig { background: linear-gradient(135deg, #f58529, #dd2a7b, #515bd4); }

/* ===== ENQUIRY FORM ===== */
.enquiry-form {
  background: white;
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.enquiry-form h3 {
  font-family: 'Baloo 2', cursive;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 28px;
}

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

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-mid);
  margin-bottom: 6px;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: 10px;
  font-size: 0.9rem;
  color: var(--text-dark);
  font-family: inherit;
  transition: border-color 0.2s;
  background: #fafafa;
}

.form-control:focus {
  outline: none;
  border-color: var(--green-main);
  background: white;
}

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

.form-success {
  background: var(--green-pale);
  border: 2px solid var(--green-light);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  color: var(--green-dark);
  font-weight: 600;
  margin-bottom: 20px;
}

/* ===== PRODUCT DETAIL ===== */
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  align-items: start;
  margin-bottom: 56px;
}

.product-detail-img {
  background: linear-gradient(135deg, var(--green-pale), white);
  border-radius: var(--radius-lg);
  padding: 48px;
  text-align: center;
  border: 2px solid var(--border);
  position: sticky;
  top: 100px;
}

.product-detail-body {}

.product-detail-title {
  font-family: 'Baloo 2', cursive;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.product-detail-hindi {
  font-family: 'Noto Sans Devanagari', sans-serif;
  font-size: 1.3rem;
  color: var(--text-light);
  margin-bottom: 12px;
}

.product-detail-subtitle {
  font-size: 1rem;
  color: var(--green-main);
  font-weight: 500;
  margin-bottom: 20px;
  line-height: 1.5;
}

.product-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 24px;
  border-bottom: 2px solid var(--border);
}

.tab-btn {
  padding: 10px 18px;
  border: none;
  background: none;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-light);
  cursor: pointer;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: all 0.2s;
}

.tab-btn.active {
  color: var(--green-main);
  border-bottom-color: var(--green-main);
}

.tab-panel { display: none; }
.tab-panel.active { display: block; }

.benefit-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.benefit-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.5;
}

.benefit-list li::before {
  content: '✓';
  color: var(--green-main);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.composition-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}

.composition-table td {
  padding: 10px 14px;
  font-size: 0.88rem;
  border-bottom: 1px solid var(--border);
}

.composition-table td:first-child {
  color: var(--text-light);
  width: 55%;
}

.composition-table td:last-child {
  font-weight: 700;
  color: var(--green-dark);
}

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

.info-box {
  background: var(--green-pale);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-bottom: 14px;
}

.info-box-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--green-main);
  margin-bottom: 5px;
}

.info-box-value {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.5;
}

/* ===== GALLERY ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--green-pale);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 0.9rem;
  cursor: pointer;
  transition: transform 0.3s;
  position: relative;
}

.gallery-item:hover {
  transform: scale(1.02);
}

/* ===== PAGE HEADER ===== */
.page-header {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 100%);
  padding: 56px 0 52px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--yellow-main), var(--green-light), var(--yellow-main));
}

.page-header h1 {
  font-family: 'Baloo 2', cursive;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: white;
  margin-bottom: 10px;
}

.page-header p {
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  max-width: 540px;
  margin: 0 auto;
}

.breadcrumb {
  margin-top: 16px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
}

.breadcrumb a { color: var(--yellow-main); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }

/* ===== FOOTER ===== */
.footer {
  background: var(--text-dark);
  color: rgba(255,255,255,0.8);
  padding-top: 60px;
}

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

.footer-brand {}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-logo .logo-circle {
  width: 48px;
  height: 48px;
  background: var(--yellow-main);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  color: var(--green-dark);
  font-family: 'Baloo 2', cursive;
  flex-shrink: 0;
}

.footer-logo-text .name {
  font-family: 'Baloo 2', cursive;
  font-weight: 800;
  font-size: 1rem;
  color: var(--yellow-main);
}

.footer-logo-text .sub {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.5px;
}

.footer-desc {
  font-size: 0.85rem;
  line-height: 1.7;
  margin-bottom: 20px;
  color: rgba(255,255,255,0.65);
}

.footer-tagline {
  font-family: 'Noto Sans Devanagari', sans-serif;
  font-size: 0.9rem;
  color: var(--yellow-main);
  font-weight: 600;
}

.footer-col h4 {
  font-family: 'Baloo 2', cursive;
  font-weight: 700;
  font-size: 1rem;
  color: white;
  margin-bottom: 18px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-links a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--yellow-main); }

.footer-contact-item {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  align-items: flex-start;
}

.footer-contact-icon { color: var(--yellow-main); flex-shrink: 0; margin-top: 2px; }

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

.footer-bottom a {
  color: var(--yellow-main);
  text-decoration: none;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  text-decoration: none;
  animation: pulse-wa 2s infinite;
  font-size: 1.6rem;
}

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

/* ===== ISO BADGE ===== */
.iso-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-pale);
  border: 2px solid var(--green-light);
  border-radius: 10px;
  padding: 8px 16px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--green-dark);
}

/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}

.service-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  border: 1px solid var(--border);
  transition: all 0.3s;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green-light);
}

.service-icon {
  font-size: 2.8rem;
  margin-bottom: 20px;
}

.service-title {
  font-family: 'Baloo 2', cursive;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.service-desc {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .product-detail-grid { grid-template-columns: 1fr; }
  .product-detail-img { position: static; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--green-dark);
    flex-direction: column;
    padding: 20px;
    gap: 6px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .hero-slide { min-height: 440px; }
  .hero-slide-img { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .section { padding: 48px 0; }
  .products-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
}
