:root {
  --green: #0b4a32;
  --green-2: #19784f;
  --gold: #d9ad3f;
  --gold-light: #ffe7a0;
  --cream: #fff8e8;
  --pearl: #fffdf7;
  --sage: #e9fbef;
  --rose-cream: #fff4ea;
  --mint-bright: #dffbea;
  --amber-soft: #fff0bf;
  --white: #ffffff;
  --brown: #9a7048;
  --text: #26312b;
  --muted: #6f7b73;
  --shadow: 0 18px 45px rgba(16, 61, 43, 0.14);
}

html {
  scroll-behavior: smooth;
}

body {
  color: var(--text);
  font-family: "Segoe UI", Arial, sans-serif;
  background:
    radial-gradient(circle at 8% 5%, rgba(255, 231, 160, 0.55), transparent 24%),
    radial-gradient(circle at 92% 12%, rgba(25, 120, 79, 0.14), transparent 24%),
    linear-gradient(180deg, #fffdf7 0%, #ffffff 36%, #f0fff4 100%);
}

main {
  background:
    radial-gradient(circle at 14% 18%, rgba(217, 173, 63, 0.12), transparent 22%),
    radial-gradient(circle at 88% 42%, rgba(25, 120, 79, 0.1), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.48), rgba(223, 251, 234, 0.3));
}

a {
  text-decoration: none;
}

.brand-navbar {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.98), rgba(255, 248, 232, 0.96));
  box-shadow: 0 10px 34px rgba(11, 74, 50, 0.11);
  backdrop-filter: blur(12px);
}

.navbar-brand {
  color: var(--green);
  font-weight: 900;
  letter-spacing: 0;
  font-size: 1.55rem;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  text-shadow: 0 2px 10px rgba(11, 74, 50, 0.1);
}

.brand-mark {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-right: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0b4a32 0%, #138a51 36%, #d9ad3f 70%, #d71920 100%);
  color: #fff5d4;
  font-size: 1.02rem;
  font-weight: 900;
  border: 3px solid rgba(255, 231, 160, 0.98);
  box-shadow: 0 0 20px rgba(217, 173, 63, 0.48), 0 0 0 5px rgba(19, 138, 81, 0.1);
  animation: logoPulse 2.8s ease-in-out infinite, logoHue 7s linear infinite;
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: -7px;
  border-radius: 50%;
  border: 2px solid rgba(217, 173, 63, 0.32);
  border-top-color: rgba(215, 25, 32, 0.65);
  border-right-color: rgba(19, 138, 81, 0.65);
  animation: logoSpin 5.5s linear infinite;
}

@keyframes logoPulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 18px rgba(217, 173, 63, 0.4), 0 0 0 5px rgba(19, 138, 81, 0.1);
  }
  50% {
    transform: scale(1.06);
    box-shadow: 0 0 30px rgba(217, 173, 63, 0.68), 0 0 0 8px rgba(215, 25, 32, 0.08);
  }
}

@keyframes logoSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes logoHue {
  0%,
  100% {
    filter: hue-rotate(0deg);
  }
  50% {
    filter: hue-rotate(18deg);
  }
}

.nav-link {
  color: var(--green);
  font-weight: 650;
  margin-left: 8px;
}

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

.hero-section {
  min-height: 100vh;
  padding: 132px 0 78px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(7, 52, 34, 0.96) 0%, rgba(7, 52, 34, 0.86) 44%, rgba(25, 120, 79, 0.42) 100%),
    url("images/result-after.svg") right 8% bottom 0 / 46% auto no-repeat,
    radial-gradient(circle at 82% 20%, rgba(255, 231, 160, 0.36), transparent 18%),
    url("images/hero-bg.svg") center/cover no-repeat;
  color: var(--white);
}

.hero-section h1,
.page-hero h1 {
  font-size: clamp(3rem, 6vw, 5.9rem);
  line-height: 0.96;
  font-weight: 900;
  margin-bottom: 22px;
}

.hero-copy {
  font-size: 1.25rem;
  max-width: 590px;
  color: rgba(255, 255, 255, 0.88);
}

.eyebrow {
  color: var(--gold);
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  font-size: 0.82rem;
  margin-bottom: 14px;
}

.eyebrow.dark {
  color: var(--green-2);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 30px 0;
}

.btn {
  border-radius: 999px;
  font-weight: 800;
  padding: 12px 24px;
  transition: 0.25s ease;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--green);
  border-color: var(--gold);
  box-shadow: 0 12px 28px rgba(217, 173, 63, 0.32);
}

.btn-gold:hover {
  background: #d8ae4d;
  color: var(--green);
  transform: translateY(-2px);
}

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

.btn-green:hover {
  background: var(--green-2);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #25d366;
  color: var(--white);
}

.btn-order {
  background: linear-gradient(135deg, #118c4f 0%, #5aa632 42%, #e5a21e 68%, #d71920 100%);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.46);
  box-shadow: 0 12px 28px rgba(215, 25, 32, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.42);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.28);
}

.btn-order:hover {
  background: linear-gradient(135deg, #0b6f3e 0%, #3f942d 38%, #e78e1c 66%, #b80f19 100%);
  color: #ffffff;
  transform: translateY(-2px);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 650;
}

.trust-row i {
  color: var(--gold);
  margin-right: 6px;
}

.hero-product {
  position: relative;
  text-align: center;
}

.hero-product img {
  max-height: 610px;
  filter: drop-shadow(0 38px 48px rgba(0, 0, 0, 0.34)) drop-shadow(0 0 24px rgba(255, 231, 160, 0.18));
}

.hero-bottle-photo {
  width: min(430px, 100%);
  max-height: 620px;
  border-radius: 8px;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 34px 70px rgba(0, 0, 0, 0.38), 0 0 0 1px rgba(255, 231, 160, 0.28);
}

.section-padding {
  padding: 92px 0;
}

.section-padding:nth-of-type(odd) {
  background:
    radial-gradient(circle at 92% 12%, rgba(255, 231, 160, 0.32), transparent 18%),
    linear-gradient(135deg, rgba(255, 253, 247, 0.78), rgba(223, 251, 234, 0.38));
}

.section-padding:nth-of-type(even) {
  background:
    radial-gradient(circle at 8% 20%, rgba(25, 120, 79, 0.1), transparent 20%),
    linear-gradient(135deg, rgba(255, 240, 191, 0.42), rgba(255, 255, 255, 0.74));
}

.section-title {
  max-width: 760px;
  margin: 0 auto 44px;
  text-align: center;
}

.section-title h2,
.green-band h2,
.value-panel h2 {
  color: var(--green);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 880;
}

.cream-band {
  background:
    url("images/ingredient-coconut.svg") left 5% top 28px / 140px auto no-repeat,
    url("images/ingredient-amla.svg") right 6% bottom 34px / 150px auto no-repeat,
    radial-gradient(circle at 16% 10%, rgba(255, 231, 160, 0.45), transparent 22%),
    linear-gradient(135deg, rgba(255, 248, 232, 0.98), rgba(233, 251, 239, 0.98)),
    url("images/hero-bg.svg") center/cover no-repeat;
}

.green-band {
  background:
    url("images/bottle-250ml.svg") right 5% bottom -34px / 220px auto no-repeat,
    radial-gradient(circle at 86% 16%, rgba(255, 231, 160, 0.22), transparent 22%),
    linear-gradient(135deg, rgba(5, 36, 25, 0.98), rgba(9, 75, 49, 0.96)),
    url("images/hero-bg.svg") center/cover no-repeat;
  color: rgba(255, 255, 255, 0.84);
}

.green-band h2 {
  color: var(--green);
}

.benefit-card,
.product-card,
.result-card,
.testimonial,
.mini-card,
.value-panel,
.ingredient-card,
.contact-form,
.contact-panel,
.why-box {
  background: var(--white);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(255, 248, 232, 0.88) 48%, rgba(233, 251, 239, 0.94));
  border-radius: 8px;
  box-shadow: 0 20px 52px rgba(11, 74, 50, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(217, 173, 63, 0.2);
  position: relative;
  overflow: hidden;
}

.benefit-card::before,
.product-card::before,
.ingredient-card::before,
.testimonial::before,
.value-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 231, 160, 0.38), transparent 22%),
    linear-gradient(135deg, rgba(217, 173, 63, 0.14), transparent 36%);
  pointer-events: none;
}

.benefit-card,
.testimonial,
.mini-card,
.value-panel,
.why-box {
  padding: 28px;
  height: 100%;
}

.benefit-card i,
.mini-card i,
.why-box i {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(198, 154, 56, 0.15);
  color: var(--gold);
  font-size: 1.35rem;
  margin-bottom: 18px;
}

h2,
h3,
h4 {
  letter-spacing: 0;
}

.benefit-card h3,
.product-card h3,
.result-card h3,
.mini-card h3,
.ingredient-card h3,
.why-box h3 {
  color: var(--green);
  font-size: 1.18rem;
  font-weight: 820;
}

.benefit-card p,
.product-card p,
.result-card p,
.mini-card p,
.ingredient-card p,
.testimonial p,
.value-panel p,
.why-box p {
  color: var(--muted);
  margin-bottom: 0;
}

.product-card {
  position: relative;
  padding: 22px;
  height: 100%;
  text-align: center;
  transition: 0.25s ease;
  background:
    url("images/ingredient-amla.svg") right 14px top 48px / 54px auto no-repeat,
    radial-gradient(circle at 50% 20%, rgba(255, 231, 160, 0.72), transparent 31%),
    linear-gradient(180deg, #ffffff 0%, #fff8e8 54%, #eaf9ef 100%);
}

.product-card:hover,
.benefit-card:hover,
.ingredient-card:hover,
.result-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 24px 54px rgba(16, 61, 43, 0.18);
}

.product-card img {
  width: 100%;
  height: 285px;
  object-fit: cover;
  object-position: center 42%;
  margin: 20px 0 18px;
  padding: 8px;
  background:
    radial-gradient(ellipse at center, rgba(255, 255, 255, 0.95), rgba(255, 231, 160, 0.24) 56%, transparent 72%);
  border-radius: 8px;
  filter: drop-shadow(0 22px 20px rgba(11, 74, 50, 0.18));
}

.product-card img[src$=".jpeg"] {
  height: 310px;
  padding: 0;
  border: 8px solid rgba(255, 248, 232, 0.94);
  background: #fff8e8;
}

.product-card h3 {
  min-height: 46px;
}

.product-card p {
  min-height: 72px;
}

.badge {
  position: absolute;
  top: 16px;
  left: 16px;
  border-radius: 999px;
  padding: 8px 12px;
}

.badge-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--green);
}

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

.badge-brown {
  background: var(--brown);
  color: var(--white);
}

.price {
  color: #073422;
  font-size: 1.48rem;
  font-weight: 900;
  margin: 16px 0;
  padding: 9px 14px;
  display: inline-block;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 247, 201, 0.96), rgba(255, 212, 90, 0.62));
  border: 1px solid rgba(217, 173, 63, 0.28);
}

.result-card {
  overflow: hidden;
  height: 100%;
  background:
    linear-gradient(180deg, #ffffff, #fff8e8);
}

.result-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center top;
  background: var(--cream);
}

.result-card span {
  display: inline-block;
  margin: 22px 22px 8px;
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.result-card h3,
.result-card p {
  margin-left: 22px;
  margin-right: 22px;
}

.result-card p {
  padding-bottom: 24px;
}

.rounded-image,
.gallery-img {
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.why-box {
  background: rgba(3, 31, 21, 0.62);
  border-color: rgba(255, 231, 160, 0.24);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.2);
}

.why-box h3,
.why-box p {
  color: var(--white);
}

.green-band p,
.green-band .eyebrow {
  color: var(--green);
  text-shadow: 0 2px 6px rgba(255, 255, 255, 0.78);
}

.green-band .eyebrow {
  color: var(--green);
}

.green-band h2 {
  text-shadow: 0 3px 8px rgba(255, 255, 255, 0.78);
}

.testimonial strong,
.testimonial span {
  display: block;
}

.testimonial strong {
  color: var(--green);
}

.testimonial span {
  color: var(--gold);
  font-weight: 750;
}

.cta-section {
  padding: 78px 0;
  text-align: center;
  color: var(--white);
  background:
    url("images/bottle-300ml.svg") left 10% bottom -48px / 210px auto no-repeat,
    url("images/ingredient-herbal.svg") right 12% top 28px / 130px auto no-repeat,
    radial-gradient(circle at 50% 0%, rgba(255, 231, 160, 0.45), transparent 28%),
    linear-gradient(135deg, #073422, var(--green-2));
}

.cta-section h2 {
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3rem);
}

.page-hero {
  padding: 156px 0 92px;
  color: var(--white);
  background:
    url("images/bottle-300ml.svg") right 8% bottom -60px / 245px auto no-repeat,
    radial-gradient(circle at 84% 18%, rgba(255, 231, 160, 0.34), transparent 20%),
    linear-gradient(90deg, rgba(7, 52, 34, 0.94), rgba(25, 120, 79, 0.68)),
    url("images/hero-bg.svg") center/cover no-repeat;
}

.about-hero {
  background:
    url("images/ingredient-herbal.svg") right 8% bottom 22px / 180px auto no-repeat,
    radial-gradient(circle at 82% 18%, rgba(255, 231, 160, 0.38), transparent 20%),
    linear-gradient(90deg, rgba(7, 52, 34, 0.92), rgba(154, 112, 72, 0.58)),
    url("images/hero-bg.svg") center/cover no-repeat;
}

.product-hero {
  background:
    url("images/bottle-500ml.svg") right 9% bottom -74px / 260px auto no-repeat,
    radial-gradient(circle at 82% 18%, rgba(255, 231, 160, 0.48), transparent 22%),
    linear-gradient(90deg, rgba(7, 52, 34, 0.92), rgba(217, 173, 63, 0.42)),
    url("images/hero-bg.svg") center/cover no-repeat;
}

.results-hero {
  background:
    url("images/result-after.svg") right 8% bottom 0 / 360px auto no-repeat,
    radial-gradient(circle at 82% 18%, rgba(255, 231, 160, 0.4), transparent 20%),
    linear-gradient(90deg, rgba(7, 52, 34, 0.92), rgba(25, 120, 79, 0.62)),
    url("images/hero-bg.svg") center/cover no-repeat;
}

.ingredients-hero {
  background:
    url("images/ingredient-coconut.svg") right 16% bottom 38px / 135px auto no-repeat,
    url("images/ingredient-amla.svg") right 5% bottom 76px / 150px auto no-repeat,
    radial-gradient(circle at 82% 18%, rgba(255, 231, 160, 0.44), transparent 22%),
    linear-gradient(90deg, rgba(7, 52, 34, 0.94), rgba(217, 173, 63, 0.38)),
    url("images/hero-bg.svg") center/cover no-repeat;
}

.contact-hero {
  background:
    url("images/bottle-100ml.svg") right 10% bottom -46px / 220px auto no-repeat,
    radial-gradient(circle at 82% 18%, rgba(255, 231, 160, 0.38), transparent 20%),
    linear-gradient(90deg, rgba(7, 52, 34, 0.94), rgba(25, 120, 79, 0.64)),
    url("images/hero-bg.svg") center/cover no-repeat;
}

.page-hero p:not(.eyebrow) {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.18rem;
}

.ingredient-card {
  padding: 26px;
  height: 100%;
  transition: 0.25s ease;
}

.ingredient-card img {
  width: 100%;
  height: 190px;
  object-fit: contain;
  border-radius: 8px;
  margin-bottom: 18px;
}

.comparison-grid {
  display: grid;
  gap: 14px;
  max-width: 900px;
  margin: 0 auto;
}

.comparison-grid div {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 12px;
  align-items: center;
  background: var(--white);
  padding: 18px 20px;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.comparison-grid strong {
  color: var(--green);
}

.comparison-grid span {
  color: var(--muted);
}

.comparison-grid span:last-child {
  color: var(--green-2);
  font-weight: 800;
}

.contact-form,
.contact-panel {
  padding: 30px;
  background:
    radial-gradient(circle at top right, rgba(255, 231, 160, 0.28), transparent 28%),
    linear-gradient(145deg, #ffffff, #fff8e8);
}

.contact-form label {
  color: var(--green);
  font-weight: 800;
  margin-bottom: 8px;
}

.form-control {
  border-radius: 8px;
  border: 1px solid rgba(16, 61, 43, 0.16);
  padding: 13px 14px;
}

.form-control:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 0.2rem rgba(198, 154, 56, 0.2);
}

.contact-item {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 18px 0;
  color: var(--green);
  font-weight: 750;
  border-bottom: 1px solid rgba(16, 61, 43, 0.1);
}

.contact-item i {
  color: var(--gold);
}

.map-placeholder {
  min-height: 210px;
  margin-top: 22px;
  border-radius: 8px;
  background:
    radial-gradient(circle at top, rgba(255, 231, 160, 0.5), transparent 32%),
    linear-gradient(135deg, var(--cream), var(--sage));
  color: var(--green);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-weight: 850;
}

.map-placeholder i {
  color: var(--gold);
  font-size: 2rem;
}

.site-footer {
  background:
    radial-gradient(circle at 12% 0%, rgba(217, 173, 63, 0.24), transparent 24%),
    linear-gradient(135deg, #062318, #0b4a32);
  color: rgba(255, 255, 255, 0.75);
  padding: 56px 0 24px;
}

.site-footer h3,
.site-footer h4 {
  color: var(--white);
  font-weight: 850;
}

.site-footer a {
  display: block;
  color: rgba(255, 255, 255, 0.76);
  margin: 8px 0;
}

.site-footer a:hover {
  color: var(--gold);
}

.socials {
  display: flex;
  gap: 10px;
}

.socials a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
}

.footer-bottom,
.footer-simple {
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-simple {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 0;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.35);
  z-index: 1000;
}

.whatsapp-float:hover {
  color: white;
  transform: translateY(-3px);
}

@media (max-width: 991px) {
  .navbar-collapse {
    padding: 18px 0;
  }

  .hero-section {
    text-align: center;
    padding-top: 118px;
  }

  .hero-actions,
  .trust-row {
    justify-content: center;
  }

  .hero-product img {
    max-height: 440px;
  }

  .product-card img {
    height: 250px;
  }
}

@media (max-width: 575px) {
  .hero-section h1,
  .page-hero h1 {
    font-size: 3rem;
  }

  .section-padding {
    padding: 66px 0;
  }

  .comparison-grid div {
    grid-template-columns: 1fr;
  }

  .footer-simple {
    display: block;
  }

  .btn-lg {
    width: 100%;
  }

  .product-card img {
    height: 220px;
  }

  .product-card h3,
  .product-card p {
    min-height: auto;
  }
}

.btn-video {
  background: linear-gradient(135deg, #118c4f 0%, #e5a21e 55%, #d71920 100%);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: 0 12px 28px rgba(215, 25, 32, 0.25);
}

.btn-video:hover {
  color: #ffffff;
  transform: translateY(-2px);
  filter: brightness(1.08);
}

.btn-video i {
  margin-right: 8px;
}

