:root {
  --leaf: #4f7c3a;
  --turmeric: #e8b923;
  --orange: #f4a259;
  --earth: #7a5230;
  --beet: #8e294f;
  --lemon: #f6d54a;
  --cream: #faf8f2;
  --ink: #272a22;
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
}

::selection {
  background: rgba(79, 124, 58, 0.2);
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  border-radius: 999px;
  background: white;
  color: var(--leaf);
  padding: 0.75rem 1rem;
  font-weight: 800;
  transition: top 0.2s ease;
}

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

#site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(79, 124, 58, 0.12);
  box-shadow: 0 12px 40px rgba(39, 42, 34, 0.08);
  backdrop-filter: blur(18px);
}

#site-header:not(.is-scrolled) .brand-mark,
#site-header:not(.is-scrolled) .nav-link {
  color: white;
}

#site-header:not(.is-scrolled) .brand-mark .text-leaf {
  color: var(--lemon);
}

#site-header:not(.is-scrolled) .nav-link::after {
  background: var(--lemon);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  color: inherit;
  line-height: 1;
}

.brand-symbol {
  display: grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  border: 1px solid rgba(79, 124, 58, 0.2);
  border-radius: 999px;
  background: linear-gradient(135deg, white, #f6f2e6);
  color: var(--leaf);
  font-family: "Playfair Display", serif;
  font-size: 1.35rem;
  font-weight: 800;
  box-shadow: 0 14px 35px rgba(79, 124, 58, 0.14);
}

.brand-symbol.small {
  width: 2rem;
  height: 2rem;
  font-size: 1rem;
}

.brand-logo-shell {
  display: block;
  width: 8.55rem;
  height: 2.8rem;
  overflow: hidden;
  flex: 0 0 auto;
}

.brand-logo-shell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.brand-logo-shell.small {
  width: 5.8rem;
  height: 1.9rem;
  border-radius: 999px;
  background: white;
  padding: 0 0.2rem;
}

.nav-link {
  position: relative;
  color: rgba(39, 42, 34, 0.78);
  font-size: 0.9rem;
  font-weight: 800;
  transition: color 0.2s ease;
}

.nav-link::after {
  position: absolute;
  left: 0;
  bottom: -0.45rem;
  width: 0;
  height: 2px;
  content: "";
  background: var(--leaf);
  transition: width 0.25s ease;
}

.nav-link:hover,
.nav-link:focus {
  color: var(--leaf);
}

.nav-link:hover::after,
.nav-link:focus::after {
  width: 100%;
}

.mobile-link {
  display: block;
  border-radius: 0.9rem;
  padding: 0.85rem 1rem;
  color: rgba(39, 42, 34, 0.8);
  font-weight: 800;
}

.mobile-link:hover {
  background: rgba(79, 124, 58, 0.08);
  color: var(--leaf);
}

.icon-button,
.social-link,
.back-to-top {
  display: inline-grid;
  width: 2.8rem;
  height: 2.8rem;
  place-items: center;
  border-radius: 999px;
  background: white;
  color: var(--leaf);
  box-shadow: 0 12px 28px rgba(39, 42, 34, 0.1);
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.icon-button:hover,
.social-link:hover,
.back-to-top:hover {
  transform: translateY(-2px);
  background: var(--leaf);
  color: white;
}

.icon-button svg,
.social-link svg,
.back-to-top svg {
  width: 1.25rem;
  height: 1.25rem;
}

.hero-section {
  background: #1c2417;
}

.hero-visual {
  background:
    radial-gradient(circle at 18% 22%, rgba(246, 213, 74, 0.45), transparent 16rem),
    radial-gradient(circle at 82% 32%, rgba(244, 162, 89, 0.32), transparent 18rem),
    linear-gradient(135deg, rgba(79, 124, 58, 0.92), rgba(39, 42, 34, 0.72)),
    url("../assets/images/TenTurmeric.jpeg");
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
}

.floating-product {
  position: absolute;
  z-index: 12;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: white;
  padding: 1rem 1.35rem;
  font-weight: 900;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(16px);
  animation: float 5s ease-in-out infinite;
}

.floating-product:nth-of-type(2) {
  animation-delay: -1.5s;
}

.floating-product:nth-of-type(3) {
  animation-delay: -3s;
}

.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 2rem;
  z-index: 20;
  display: grid;
  width: 2rem;
  height: 3.2rem;
  place-items: start center;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  transform: translateX(-50%);
}

.scroll-indicator span {
  width: 0.35rem;
  height: 0.35rem;
  margin-top: 0.55rem;
  border-radius: 50%;
  background: white;
  animation: scrollDot 1.8s ease-in-out infinite;
}

.btn-primary,
.btn-secondary {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 999px;
  padding: 0.95rem 1.45rem;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary {
  background: var(--leaf);
  color: white;
  box-shadow: 0 16px 34px rgba(79, 124, 58, 0.24);
}

.btn-primary:hover,
.btn-secondary:hover {
  transform: translateY(-2px);
}

.btn-primary:hover {
  background: #426a31;
  box-shadow: 0 20px 42px rgba(79, 124, 58, 0.28);
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.14);
  color: white;
  backdrop-filter: blur(14px);
}

.section-pad {
  padding: 6rem 0;
}

.section-heading {
  max-width: 46rem;
  margin: 0 auto;
  text-align: center;
}

.eyebrow {
  color: var(--leaf);
  font-size: 0.77rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-title {
  margin-top: 0.85rem;
  color: var(--ink);
  font-family: "Playfair Display", serif;
  font-size: clamp(2.35rem, 5vw, 4.6rem);
  font-weight: 800;
  line-height: 1.04;
}

.image-frame {
  border-radius: 2rem;
  background: white;
  padding: 0.85rem;
  box-shadow: 0 24px 80px rgba(44, 54, 36, 0.14);
}

.placeholder-image {
  display: grid;
  min-height: 28rem;
  place-items: center;
  border: 1px solid rgba(79, 124, 58, 0.16);
  border-radius: 1.5rem;
  color: rgba(39, 42, 34, 0.64);
  font-weight: 900;
  text-align: center;
}

.about-image {
  display: block;
  width: 100%;
  min-height: 28rem;
  border-radius: 1.5rem;
  object-fit: cover;
  object-position: center;
}

.stat-card,
.feature-card,
.product-card,
.faq-item,
.testimonial-card,
.contact-form {
  border: 1px solid rgba(79, 124, 58, 0.1);
  border-radius: 1.4rem;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 16px 50px rgba(79, 124, 58, 0.08);
}

.stat-card {
  padding: 1.35rem;
}

.stat-card strong {
  display: block;
  color: var(--earth);
  font-family: "Playfair Display", serif;
  font-size: 1.7rem;
  line-height: 1;
}

.stat-card span {
  margin-top: 0.4rem;
  display: block;
  color: rgba(39, 42, 34, 0.65);
  font-weight: 800;
}

.product-card {
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 80px rgba(79, 124, 58, 0.16);
}

.product-image {
  position: relative;
  display: grid;
  height: 13rem;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 25% 20%, rgba(255, 255, 255, 0.78), transparent 6rem),
    linear-gradient(135deg, color-mix(in srgb, var(--accent) 16%, white), #f8f4ea);
  color: white;
  font-weight: 900;
}

.product-image::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(135deg, transparent, color-mix(in srgb, var(--accent) 18%, transparent));
  transition: transform 0.35s ease;
}

.product-card:hover .product-image::before {
  transform: scale(1.08);
}

.product-image img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  padding: 0.6rem;
  object-fit: contain;
  transition: transform 0.35s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.04);
}

.feature-card {
  padding: 1.5rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 70px rgba(79, 124, 58, 0.14);
}

.feature-icon,
.process-icon {
  display: grid;
  width: 3.2rem;
  height: 3.2rem;
  place-items: center;
  border-radius: 1rem;
  background: rgba(79, 124, 58, 0.1);
  color: var(--leaf);
}

.feature-icon svg,
.process-icon svg,
.contact-row svg,
.map-placeholder svg {
  width: 1.35rem;
  height: 1.35rem;
}

.process-timeline {
  position: relative;
  display: grid;
  gap: 1.2rem;
}

@media (min-width: 1024px) {
  .process-timeline {
    grid-template-columns: repeat(6, 1fr);
  }

  .process-timeline::before {
    position: absolute;
    left: 8%;
    right: 8%;
    top: 1.6rem;
    height: 2px;
    content: "";
    background: linear-gradient(90deg, rgba(79, 124, 58, 0.12), rgba(79, 124, 58, 0.55), rgba(79, 124, 58, 0.12));
  }
}

.process-step {
  position: relative;
  z-index: 1;
  border-radius: 1.2rem;
  padding: 1rem;
  text-align: center;
}

.process-step .process-icon {
  margin: 0 auto 1rem;
  background: white;
  box-shadow: 0 12px 35px rgba(79, 124, 58, 0.12);
}

.masonry-grid {
  columns: 1;
  column-gap: 1.25rem;
}

@media (min-width: 640px) {
  .masonry-grid {
    columns: 2;
  }
}

@media (min-width: 1024px) {
  .masonry-grid {
    columns: 4;
  }
}

.gallery-item {
  display: inline-block;
  width: 100%;
  margin: 0 0 1.25rem;
  overflow: hidden;
  border-radius: 1.4rem;
  background: white;
  box-shadow: 0 16px 50px rgba(79, 124, 58, 0.1);
}

.gallery-visual {
  display: grid;
  min-height: var(--height);
  place-items: center;
  overflow: hidden;
  background: #f7f4ed;
  color: white;
  font-weight: 900;
  text-align: center;
  transition: transform 0.35s ease;
}

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

.gallery-visual img {
  width: 100%;
  height: var(--height);
  object-fit: cover;
  object-position: center;
}

.testimonial-shell {
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.45s ease;
}

.testimonial-card {
  min-width: 100%;
  padding: 2rem;
}

.avatar {
  display: grid;
  width: 3.5rem;
  height: 3.5rem;
  place-items: center;
  border-radius: 999px;
  background: rgba(79, 124, 58, 0.12);
  color: var(--leaf);
  font-weight: 900;
}

.dot {
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 999px;
  background: rgba(79, 124, 58, 0.22);
  transition: width 0.25s ease, background 0.25s ease;
}

.dot.is-active {
  width: 1.8rem;
  background: var(--leaf);
}

.faq-item button {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 1.4rem;
  text-align: left;
  font-weight: 900;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 1.4rem;
  color: rgba(39, 42, 34, 0.7);
  line-height: 1.75;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.is-open .faq-answer {
  max-height: 12rem;
  padding-bottom: 1.3rem;
}

.faq-item svg {
  flex: 0 0 auto;
  transition: transform 0.2s ease;
}

.faq-item.is-open svg {
  transform: rotate(45deg);
}

.contact-panel {
  border-radius: 1.7rem;
  background:
    radial-gradient(circle at 20% 15%, rgba(246, 213, 74, 0.22), transparent 12rem),
    linear-gradient(145deg, #2f4d25, #182014);
  padding: clamp(1.5rem, 4vw, 3rem);
  box-shadow: 0 24px 80px rgba(44, 54, 36, 0.18);
}

.contact-row {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-row svg {
  flex: 0 0 auto;
  color: var(--lemon);
}

.map-placeholder {
  display: grid;
  min-height: 12rem;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.09);
  color: white;
  text-align: center;
}

.contact-form {
  display: grid;
  gap: 1.25rem;
  padding: clamp(1.25rem, 4vw, 2.2rem);
}

.contact-form label {
  display: grid;
  gap: 0.5rem;
  color: rgba(39, 42, 34, 0.74);
  font-size: 0.9rem;
  font-weight: 900;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(79, 124, 58, 0.16);
  border-radius: 1rem;
  background: #fff;
  padding: 0.95rem 1rem;
  color: var(--ink);
  outline: none;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--leaf);
  box-shadow: 0 0 0 4px rgba(79, 124, 58, 0.1);
}

.footer-title {
  margin-bottom: 1rem;
  font-weight: 900;
}

.footer-link {
  display: block;
  margin-top: 0.75rem;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: white;
}

.back-to-top {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 60;
  opacity: 0;
  pointer-events: none;
  transform: translateY(0.75rem);
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

[data-reveal] {
  opacity: 0;
  transition: opacity 0.65s ease, transform 0.65s ease;
}

[data-reveal="fade-up"] {
  transform: translateY(32px);
}

[data-reveal="fade-right"] {
  transform: translateX(-32px);
}

[data-reveal="fade-left"] {
  transform: translateX(32px);
}

[data-reveal="zoom"] {
  transform: scale(0.96);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-16px);
  }
}

@keyframes scrollDot {
  0% {
    opacity: 0;
    transform: translateY(0);
  }

  35% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateY(1.4rem);
  }
}

@media (max-width: 767px) {
  .section-pad {
    padding: 4.5rem 0;
  }

  .placeholder-image,
  .about-image {
    min-height: 20rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
.whatsapp-float {
  position: fixed;
  right: 25px;
  bottom: 25px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .25);
  z-index: 999;
  transition: transform .3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float img {
  width: 34px;
  height: 34px;
}
.whatsapp-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.whatsapp-btn i {
  color: white;
  font-size: 34px;
}