:root {
  --farm-green: #0b5518;
  --leaf-green: #6f8f24;
  --deep-brown: #17330f;
  --warm-brown: #815f13;
  --cream: #fffaf0;
  --cream-2: #f5ead0;
  --gold: #c49309;
  --ink: #172411;
  --muted: #655f50;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(23, 51, 15, 0.13);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--farm-green);
  text-decoration: none;
}

a:hover {
  color: var(--deep-brown);
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 1100;
  padding: 0.75rem 1rem;
  color: var(--white);
  background: var(--farm-green);
  border-radius: var(--radius);
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 1rem;
}

.navbar {
  background: rgba(255, 250, 240, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(74, 52, 35, 0.1);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--deep-brown);
  font-weight: 800;
}

.brand-logo {
  width: 54px;
  height: 54px;
  object-fit: cover;
  background: var(--white);
  border: 2px solid rgba(196, 147, 9, 0.75);
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(11, 85, 24, 0.14);
}

.nav-link {
  color: var(--deep-brown);
  font-weight: 650;
}

.nav-link.active,
.nav-link:hover {
  color: var(--farm-green);
}

.dropdown-menu {
  padding: 0.6rem;
  background: var(--white);
  border: 1px solid rgba(23, 51, 15, 0.12);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.dropdown-item {
  color: var(--deep-brown);
  border-radius: 6px;
  font-weight: 750;
}

.dropdown-item:hover,
.dropdown-item:focus,
.dropdown-item.active {
  color: var(--farm-green);
  background: rgba(196, 147, 9, 0.12);
}

@media (min-width: 992px) {
  .product-dropdown:hover .dropdown-menu,
  .product-dropdown:focus-within .dropdown-menu {
    display: block;
    margin-top: 0;
  }
}

.language-switch {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: 0.75rem;
  padding: 0.3rem;
  background: var(--white);
  border: 1px solid rgba(11, 85, 24, 0.16);
  border-radius: 999px;
  box-shadow: 0 10px 28px rgba(23, 51, 15, 0.08);
}

.language-switch::before {
  content: "अ";
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--white);
  background: var(--farm-green);
  border-radius: 50%;
  font-weight: 900;
}

.language-switch label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.language-switch select {
  min-height: 34px;
  padding: 0.2rem 2rem 0.2rem 0.45rem;
  color: var(--deep-brown);
  background-color: transparent;
  border: 0;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 850;
}

.navbar-toggler {
  border-color: rgba(74, 52, 35, 0.2);
}

.btn {
  border-radius: var(--radius);
  font-weight: 750;
  padding: 0.75rem 1.2rem;
}

.btn-primary {
  background: var(--farm-green);
  border-color: var(--farm-green);
}

.btn-primary:hover,
.btn-primary:focus {
  background: #073e11;
  border-color: #073e11;
}

.btn-outline-primary {
  color: var(--farm-green);
  border-color: var(--farm-green);
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
  color: var(--white);
  background: var(--farm-green);
  border-color: var(--farm-green);
}

.btn-gold {
  color: #241a0e;
  background: var(--gold);
  border-color: var(--gold);
}

.btn-gold:hover,
.btn-gold:focus {
  color: #241a0e;
  background: #c48d25;
  border-color: #c48d25;
}

.hero {
  position: relative;
  min-height: calc(100vh - 76px);
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: #2a261b;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(26, 30, 18, 0.76) 0%, rgba(26, 30, 18, 0.48) 42%, rgba(26, 30, 18, 0.14) 78%),
    url("../images/hero-farm-ghee.jpg") center / cover no-repeat;
}

.hero .container {
  position: relative;
  z-index: 1;
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 1rem;
  color: #fff4cf;
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.eyebrow.text-success {
  color: var(--farm-green) !important;
}

.hero h1,
.page-hero h1 {
  max-width: 760px;
  margin-bottom: 1rem;
  font-weight: 900;
  line-height: 1.05;
}

.hero h1 {
  font-size: clamp(2.8rem, 7vw, 6.5rem);
}

.hero p {
  max-width: 650px;
  margin-bottom: 1.75rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.15rem;
}

.section {
  padding: 5rem 0;
}

.section-tight {
  padding: 3.5rem 0;
}

.section-alt {
  background: var(--cream-2);
}

.section-green {
  color: var(--white);
  background: var(--farm-green);
}

.section-title {
  max-width: 760px;
  margin-bottom: 2.5rem;
}

.section-title h2,
.page-hero h1 {
  color: var(--deep-brown);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1.12;
}

.section-title p,
.page-hero p,
.muted {
  color: var(--muted);
}

.section-green .section-title h2,
.section-green .section-title p,
.section-green .muted {
  color: var(--white);
}

.page-hero {
  padding: 8.25rem 0 4.5rem;
  background:
    linear-gradient(135deg, rgba(95, 141, 78, 0.14), rgba(216, 162, 50, 0.18)),
    var(--cream);
}

.product-hero {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--deep-brown);
  background:
    radial-gradient(circle at 14% 18%, rgba(196, 147, 9, 0.16), transparent 32%),
    linear-gradient(135deg, #fffaf0 0%, #f5ead0 58%, rgba(111, 143, 36, 0.22) 100%);
}

.product-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 250, 240, 0.92), rgba(255, 250, 240, 0.52));
}

.product-hero .container {
  position: relative;
  z-index: 1;
  padding-top: 9rem;
  padding-bottom: 5.5rem;
}

.product-hero h1 {
  max-width: 780px;
  margin-bottom: 1rem;
  font-size: clamp(2.4rem, 6vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
}

.product-hero .lead {
  max-width: 650px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.32rem);
}

.product-hero-image {
  position: relative;
  overflow: hidden;
  padding: 0.55rem;
  background: var(--white);
  border: 1px solid rgba(196, 147, 9, 0.28);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.product-hero-image::after {
  content: "";
  position: absolute;
  inset: 0.55rem;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 48%, rgba(23, 51, 15, 0.14));
  border-radius: 6px;
}

.product-hero-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 6px;
}

.delivery-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.7rem 1rem;
  color: #241a0e;
  background: #fff4cf;
  border: 1px solid rgba(196, 147, 9, 0.45);
  border-radius: var(--radius);
  font-weight: 900;
}

.product-card,
.benefit-card,
.review-card,
.blog-card,
.story-panel,
.faq-panel,
.contact-panel {
  height: 100%;
  background: var(--white);
  border: 1px solid rgba(74, 52, 35, 0.1);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.benefit-image-card {
  height: 100%;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(23, 51, 15, 0.1);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.benefit-image-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.benefit-image-card .card-body-space {
  padding: 1.25rem;
}

.product-card {
  overflow: hidden;
}

.product-card img,
.blog-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.card-body-space {
  padding: 1.4rem;
}

.price {
  color: var(--farm-green);
  font-size: 1.35rem;
  font-weight: 900;
}

.delivery-text {
  color: var(--farm-green);
  font-size: 1.05rem;
  font-weight: 900;
}

.badge-organic {
  color: #1e351e;
  background: #ddecce;
}

.badge-gold {
  color: #3d2b0f;
  background: #ffe5a8;
}

.icon-tile {
  display: inline-grid;
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  place-items: center;
  color: var(--white);
  background: var(--farm-green);
  border-radius: var(--radius);
  font-size: 1.35rem;
}

.benefit-card,
.review-card,
.story-panel,
.faq-panel,
.contact-panel {
  padding: 1.5rem;
}

.star-rating {
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 0.08em;
}

.quote-mark {
  color: var(--gold);
  font-size: 2.5rem;
  line-height: 1;
}

.timeline {
  position: relative;
  display: grid;
  gap: 1rem;
}

.timeline-item {
  padding: 1.25rem 1.25rem 1.25rem 1.5rem;
  border-left: 4px solid var(--gold);
  background: rgba(255, 255, 255, 0.72);
  border-radius: var(--radius);
}

.method-card,
.process-card,
.why-image-card {
  height: 100%;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(23, 51, 15, 0.1);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.method-card img,
.why-image-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.method-card .card-body-space,
.why-image-card .card-body-space {
  padding: 1.3rem;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}

.process-card {
  position: relative;
}

.process-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.process-card-content {
  padding: 1.25rem;
}

.process-step {
  display: inline-grid;
  width: 42px;
  height: 42px;
  margin-bottom: 1rem;
  place-items: center;
  color: var(--white);
  background: var(--farm-green);
  border: 2px solid rgba(196, 147, 9, 0.55);
  border-radius: 50%;
  font-weight: 900;
}

.process-showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 2rem;
  align-items: start;
}

.process-visual {
  position: sticky;
  top: 100px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.process-visual img {
  width: 100%;
  min-height: 640px;
  object-fit: cover;
}

.process-list {
  display: grid;
  gap: 1rem;
}

.process-list-large {
  gap: 1.35rem;
}

.process-row {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.1fr);
  gap: 1.5rem;
  align-items: center;
  padding: 1.2rem;
  background: var(--white);
  border: 1px solid rgba(23, 51, 15, 0.1);
  border-radius: var(--radius);
  box-shadow: 0 14px 32px rgba(23, 51, 15, 0.08);
}

.process-row img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 6px;
}

.process-row .process-step {
  width: 36px;
  height: 36px;
  margin-bottom: 0.45rem;
}

.buy-now-card {
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: space-between;
  padding: 2rem;
  background: var(--white);
  border: 1px solid rgba(23, 51, 15, 0.12);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.buy-now-card h2 {
  margin-bottom: 0.5rem;
  font-weight: 900;
}

.buy-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: flex-end;
  min-width: 280px;
}

.cert-box {
  padding: 1.2rem;
  background: rgba(95, 141, 78, 0.1);
  border: 1px solid rgba(47, 107, 63, 0.18);
  border-radius: var(--radius);
}

.form-control,
.form-select {
  min-height: 48px;
  border-color: rgba(74, 52, 35, 0.18);
  border-radius: var(--radius);
}

.form-control:focus,
.form-select:focus {
  border-color: var(--farm-green);
  box-shadow: 0 0 0 0.2rem rgba(47, 107, 63, 0.18);
}

.map-frame {
  width: 100%;
  min-height: 360px;
  border: 0;
  border-radius: var(--radius);
}

.contact-showcase {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: 1.5rem;
  align-items: stretch;
}

.contact-hero-card,
.contact-info-card {
  background: var(--white);
  border: 1px solid rgba(23, 51, 15, 0.1);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-hero-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: center;
  padding: 2rem;
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.92), rgba(245, 234, 208, 0.86)),
    url("../images/hero-farm-ghee.jpg") center / cover no-repeat;
}

.contact-hero-card img {
  width: 110px;
  height: 110px;
  margin-bottom: 1.2rem;
  object-fit: cover;
  background: var(--white);
  border: 3px solid rgba(196, 147, 9, 0.72);
  border-radius: 50%;
  box-shadow: 0 14px 34px rgba(23, 51, 15, 0.16);
}

.contact-hero-card h2 {
  color: var(--deep-brown);
  font-weight: 900;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.contact-info-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem;
}

.contact-info-card.wide {
  grid-column: 1 / -1;
}

.contact-info-card h3 {
  margin-bottom: 0.25rem;
  color: var(--deep-brown);
  font-size: 1.05rem;
  font-weight: 900;
}

.contact-info-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.contact-info-card .btn {
  margin-top: 0.9rem;
}

.contact-icon {
  display: inline-grid;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  place-items: center;
  color: var(--white);
  background: var(--farm-green);
  border: 2px solid rgba(196, 147, 9, 0.42);
  border-radius: 50%;
  font-size: 1.15rem;
  font-weight: 900;
}

.site-footer {
  padding: 4rem 0 1.5rem;
  color: rgba(255, 255, 255, 0.86);
  background: #2f251d;
}

.site-footer h2,
.site-footer h3,
.site-footer h4,
.site-footer a {
  color: var(--white);
}

.footer-link {
  display: block;
  margin-bottom: 0.55rem;
  color: rgba(255, 255, 255, 0.78);
}

.whatsapp-float {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 1050;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 54px;
  padding: 0.85rem 1.1rem;
  color: var(--white);
  background: #25d366;
  border-radius: 999px;
  box-shadow: 0 16px 36px rgba(37, 211, 102, 0.35);
  font-size: 1rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  animation: orderPulse 1.8s ease-in-out infinite;
}

.whatsapp-float::before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  background: url("../images/order-chat-icon.svg") center / contain no-repeat;
  flex: 0 0 30px;
}

.whatsapp-float:hover {
  color: var(--white);
  transform: translateY(-2px);
  animation-play-state: paused;
}

@keyframes orderPulse {
  0%,
  100% {
    box-shadow: 0 16px 36px rgba(37, 211, 102, 0.35);
    transform: translateY(0) scale(1);
  }

  50% {
    box-shadow: 0 18px 44px rgba(37, 211, 102, 0.55);
    transform: translateY(-2px) scale(1.04);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

.cta-band {
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(47, 107, 63, 0.96), rgba(74, 52, 35, 0.88)),
    url("../images/hero-farm-ghee.jpg") center / cover no-repeat;
}

.accordion-button {
  color: var(--deep-brown);
  background: var(--white);
  font-weight: 800;
}

.accordion-button:not(.collapsed) {
  color: var(--farm-green);
  background: #f8f0db;
}

.accordion-button:focus {
  box-shadow: 0 0 0 0.2rem rgba(47, 107, 63, 0.18);
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    padding: 1rem 0;
  }

  .language-switch {
    width: fit-content;
    margin: 0.75rem 0 0;
  }

  .hero {
    min-height: auto;
  }

  .hero::before {
    background: linear-gradient(180deg, rgba(26, 30, 18, 0.76) 0%, rgba(26, 30, 18, 0.58) 58%, rgba(26, 30, 18, 0.3) 100%),
      url("../images/hero-farm-ghee.jpg") center / cover no-repeat;
  }

  .hero .container {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-showcase {
    grid-template-columns: 1fr;
  }

  .process-visual {
    position: static;
  }

  .process-visual img {
    min-height: 360px;
  }

  .process-row {
    grid-template-columns: minmax(210px, 0.85fr) minmax(0, 1.15fr);
  }

  .buy-now-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .buy-actions {
    justify-content: flex-start;
    min-width: 0;
  }

  .contact-showcase {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767.98px) {
  .section {
    padding: 3.75rem 0;
  }

  .page-hero {
    padding: 7rem 0 3.5rem;
  }

  .hero p {
    font-size: 1.03rem;
  }

  .whatsapp-float {
    right: 0.85rem;
    bottom: 0.85rem;
    min-height: 50px;
    padding: 0.75rem 0.95rem;
  }

  .contact-info-grid {
    grid-template-columns: 1fr;
  }

  .product-hero {
    min-height: auto;
  }

  .process-row {
    grid-template-columns: 1fr;
  }

  .process-row img {
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 575.98px) {
  .process-grid {
    grid-template-columns: 1fr;
  }

  .buy-actions,
  .buy-actions .btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
