/* ── HOME PAGE STYLES ── */

/* HERO */
.hero {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  width: 100%;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('../images/IMG_9387.JPG.jpeg') center/cover no-repeat;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(140deg, rgba(10,34,24,0.80) 0%, rgba(29,107,68,0.45) 60%, rgba(201,162,39,0.15) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 680px;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 22px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 28px; height: 2px;
  background: var(--gold);
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 40px;
  max-width: 480px;
  line-height: 1.7;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
      <div class="hero-badges">
        <div class="hero-badge"><div class="hero-badge-icon">P</div><span>Hygienically Processed</span></div>
        <div class="hero-badge"><div class="hero-badge-icon">N</div><span>Natural Feed Only</span></div>
        <div class="hero-badge"><div class="hero-badge-icon">D</div><span>Home Delivery</span></div>
      </div>
.hero-scroll { display: none; }
.hero-scroll {
  position: absolute; bottom: 36px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.hero-scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { opacity: 0.4; transform: scaleY(0.6); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); }
}

/* WHY CHOOSE US */
.why-section { background: var(--white); }
.why-card {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: 20px;
  padding: 36px 28px;
  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));
  opacity: 0;
  transition: opacity 0.3s ease;
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.why-card.card-f { background: #f4faf7; border-color: #e6f4ed; }
.why-card.card-s { background: #fffdf5; border-color: #fff9e6; }
.why-card.card-c { background: #f5fbfc; border-color: #e6f7f9; }
.why-card.card-n { background: #f9faf5; border-color: #f2f5e6; }
.why-card:hover::before {
  opacity: 1;
}
.why-icon {
  width: 54px; height: 54px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: var(--forest);
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 22px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.why-icon.icon-f {
  background: linear-gradient(135deg, #103125 0%, #1d6b44 100%);
  box-shadow: 0 6px 16px rgba(29, 107, 68, 0.25);
}
.why-icon.icon-s {
  background: linear-gradient(135deg, #8a6d1d 0%, #c9a227 100%);
  box-shadow: 0 6px 16px rgba(201, 162, 39, 0.25);
}
.why-icon.icon-c {
  background: linear-gradient(135deg, #0a4d5a 0%, #1e7a8c 100%);
  box-shadow: 0 6px 16px rgba(30, 122, 140, 0.25);
}
.why-icon.icon-n {
  background: linear-gradient(135deg, #3d4d1d 0%, #5d7a27 100%);
  box-shadow: 0 6px 16px rgba(93, 122, 39, 0.25);
}
.why-card:hover .why-icon {
  transform: scale(1.1) rotate(5deg);
}
.why-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--forest-dark);
  margin-bottom: 10px;
}
.why-card p {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.85;
}

/* PRODUCTS PREVIEW */
.products-section { background: var(--cream); }
.product-card {
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  background: var(--white);
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid var(--cream-dark);
}
.product-card:hover {
  transform: translateY(-4px);
  border-color: var(--forest);
}
.product-card-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}
.product-card:hover .product-card-img { transform: scale(1.03); }
.product-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,34,24,0.92) 0%, rgba(10,34,24,0.3) 50%, transparent 100%);
}
.product-card-body {
  position: relative;
  z-index: 2;
  padding: 34px 28px;
}
.product-card .tag {
  color: var(--gold-light);
  margin-bottom: 10px;
}
.product-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.product-card p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
}
.product-card .btn {
  margin-top: 22px;
  font-size: 0.92rem;
  padding: 12px 24px;
}

/* STATS STRIP */
.stats-strip {
  background: linear-gradient(135deg, var(--forest-dark) 0%, var(--forest-mid) 100%);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}
.stats-strip::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}
.stat-item {
  padding: 32px;
  background: rgba(255,255,255,0.06);
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 12px;
  text-shadow: 0 2px 12px rgba(229,192,74,0.3);
}
.stat-label {
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

/* HEALTH BENEFITS */
.health-section { background: var(--cream); }
.health-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.health-img-wrap {
  position: relative;
}
.health-img {
  border-radius: 20px;
  width: 100%; height: 520px;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}
.health-img-badge {
  position: absolute;
  bottom: -24px; right: -24px;
  width: 130px; height: 130px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  font-family: var(--font-display);
  font-size: 0.9rem; font-weight: 700;
  color: var(--forest-dark);
  line-height: 1.3;
  box-shadow: 0 8px 32px rgba(201,168,76,0.5);
  padding: 10px;
}
.health-img-badge strong { font-size: 1.8rem; display: block; }
.health-benefits-list { margin-top: 32px; display: flex; flex-direction: column; gap: 16px; }
.health-benefit-item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 18px 20px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: var(--transition);
}
.health-benefit-item:hover { transform: translateX(2px); }
.benefit-icon {
  width: 52px; height: 52px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
  border-radius: 14px;
  display: grid; place-items: center;
  color: var(--forest-dark);
  font-size: 1.25rem;
  font-weight: 900;
  box-shadow: 
    0 8px 20px rgba(201,162,39,0.3),
    inset 0 2px 4px rgba(255,255,255,0.4),
    inset 0 -2px 4px rgba(0,0,0,0.1);
  position: relative;
  overflow: hidden;
}
.benefit-icon::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 50%;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  pointer-events: none;
}
.hero-badges {
  display: flex;
  gap: 24px;
  margin-top: 48px;
  flex-wrap: wrap;
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-badge-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
  border-radius: 12px;
  display: grid; place-items: center;
  color: var(--forest-dark);
  font-size: 1.2rem;
  font-weight: 900;
  box-shadow: 
    0 8px 20px rgba(201,162,39,0.3),
    inset 0 2px 4px rgba(255,255,255,0.4);
  position: relative;
  overflow: hidden;
}
.hero-badge-icon::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 50%;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
}
.hero-badge span {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.02em;
}
.health-benefit-item h4 {
  font-weight: 700; font-size: 1rem;
  color: var(--forest-dark);
  margin-bottom: 6px;
}
.health-benefit-item p { font-size: 0.95rem; color: var(--text-mid); line-height: 1.75; }

/* TESTIMONIALS */
.testimonials-section {
  background: linear-gradient(135deg, var(--forest-dark) 0%, var(--forest-mid) 100%);
  position: relative;
  overflow: hidden;
}
.testimonials-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
}
.testimonials-track {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: rgba(255,255,255,0.06);
  border-radius: 20px;
  padding: 36px;
  border: 1px solid rgba(255,255,255,0.1);
  transition: var(--transition);
  backdrop-filter: blur(4px);
}
.testimonial-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-3px);
  border-color: rgba(201,162,39,0.35);
}
.quote-mark {
  font-family: var(--font-display);
  font-size: 3.5rem;
  line-height: 0.5;
  color: var(--gold);
  opacity: 0.6;
  margin-bottom: 14px;
}
.testimonial-text {
  font-size: 0.96rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.85;
  margin-bottom: 24px;
  font-style: normal;
}
.testimonial-stars {
  color: var(--gold-light);
  font-size: 1rem;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 1rem;
  color: var(--forest-dark);
  flex-shrink: 0;
}
.author-name { font-weight: 700; font-size: 0.95rem; color: var(--white); }
.author-loc { font-size: 0.88rem; color: rgba(255,255,255,0.5); }
.testimonials-nav { display: none; }

/* Testimonials heading overrides for dark bg */
.testimonials-section .section-title.light {
  color: #ffffff;
}
.testimonials-section .tag {
  color: var(--gold-light);
}
.testimonials-section .divider {
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}

/* INSTAGRAM */
.instagram-section { background: var(--cream); }
.instagram-header { text-align: center; margin-bottom: 42px; }
.insta-handle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--forest);
  font-weight: 700;
  font-size: 0.95rem;
  margin-top: 10px;
}
.ig-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 14px;
}
.ig-item {
  border-radius: 16px;
  min-height: 260px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.ig-item:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 40px rgba(10,34,24,0.25);
}
.ig-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,34,24,0.75), transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  color: var(--white);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.ig-item:hover .ig-overlay { opacity: 1; }
.ig-overlay svg { width: 22px; height: 22px; }

/* MAP SECTION */
.map-section { background: var(--cream); padding: 100px 0; }
.map-wrapper {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--cream-dark);
  position: relative;
}
.map-overlay-badge {
  position: absolute;
  top: 16px; left: 16px; z-index: 10;
  background: var(--white);
  color: var(--forest-dark);
  font-size: 0.82rem; font-weight: 700;
  padding: 8px 14px;
  border-radius: 30px;
  box-shadow: var(--shadow);
  display: flex; align-items: center; gap: 8px;
}
.map-overlay-badge svg { color: var(--forest); }
.map-cta-row {
  display: flex; gap: 16px; justify-content: center; margin-top: 28px; flex-wrap: wrap;
}

/* CTA BANNER */
.cta-banner {
  background: linear-gradient(135deg, var(--forest-dark) 0%, var(--forest-mid) 100%);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
}
.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  color: var(--white);
  margin-bottom: 16px;
}
.cta-banner p {
  color: rgba(255,255,255,0.65);
  font-size: 1rem;
  margin-bottom: 36px;
}
.cta-banner .cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-banner .btn-outline {
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.cta-banner .btn-outline:hover {
  background: var(--white);
  color: var(--forest-dark);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .testimonials-track { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
  .stat-item { border-bottom: 1px solid rgba(255,255,255,0.1); }
}
@media (max-width: 768px) {
  .hero { padding-top: 80px; padding-bottom: 60px; height: auto; min-height: auto; }
  .hero h1 { font-size: 2.4rem; }
  .health-layout { grid-template-columns: 1fr; gap: 48px; }
  .health-img { height: 320px; }
  .health-img-badge { bottom: -10px; right: -10px; width: 100px; height: 100px; font-size: 0.78rem; }
  .health-img-badge strong { font-size: 1.4rem; }
  .hero-badges { gap: 16px; margin-top: 32px; }
  .hero-badge-icon { width: 42px; height: 42px; font-size: 1rem; }
  .why-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 12px 20px;
    padding: 24px;
    text-align: left;
  }
  .why-icon {
    grid-column: 1;
    grid-row: 1;
    margin-bottom: 0;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    font-size: 1rem;
  }
  .why-card h3 {
    grid-column: 2;
    grid-row: 1;
    align-self: center;
    margin-top: 0;
    font-size: 1.1rem;
  }
  .why-card p {
    grid-column: 1 / -1;
    grid-row: 2;
    font-size: 0.9rem;
  }
  .testimonial-card { padding: 24px; }
  .ig-grid { grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 10px; }
  .ig-item { min-height: 160px; }
  .stats-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .ig-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .ig-item { min-height: 140px; border-radius: 10px; }
}
