/* ============================================================
   PRIMEORAH – Premium Himalayan Shilajit Resin
   Style: Luxury Black & Gold
   ============================================================ */

:root {
  --gold: #c9a84c;
  --gold-light: #f0d080;
  --gold-dark: #a07830;
  --gold-gradient: linear-gradient(135deg, #c9a84c 0%, #f5d073 50%, #c9a84c 100%);
  --black: #0a0a0a;
  --black-2: #111111;
  --black-3: #1a1a1a;
  --black-4: #222222;
  --black-5: #2a2a2a;
  --white: #ffffff;
  --white-80: rgba(255,255,255,0.80);
  --white-60: rgba(255,255,255,0.60);
  --white-20: rgba(255,255,255,0.20);
  --white-10: rgba(255,255,255,0.10);
  --gold-10: rgba(201,168,76,0.10);
  --gold-20: rgba(201,168,76,0.20);
  --gold-30: rgba(201,168,76,0.30);
  --whatsapp: #25d366;
  --nav-height: 80px;
  --container: 1200px;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

img { max-width: 100%; display: block; }

a { text-decoration: none; color: inherit; }

ul { list-style: none; }

/* ── CONTAINER ── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── GOLD TEXT ── */
.gold-text {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── SECTION COMMON ── */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-tag {
  display: inline-block;
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  letter-spacing: 0.35em;
  color: var(--gold);
  padding: 0.4rem 1.2rem;
  border: 1px solid var(--gold-30);
  border-radius: 100px;
  margin-bottom: 1.2rem;
  background: var(--gold-10);
}

.section-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1rem;
  color: var(--white);
}

.section-subtitle {
  color: var(--white-60);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 1rem auto 0;
}

.gold-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin-bottom: 2rem;
}

.gold-divider::before,
.gold-divider::after {
  content: '';
  flex: 1;
  max-width: 100px;
  height: 1px;
  background: var(--gold-gradient);
  opacity: 0.6;
}

.gold-divider span {
  color: var(--gold);
  font-size: 0.8rem;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  transition: all 0.4s ease;
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--gold-20);
  box-shadow: 0 4px 40px rgba(0,0,0,0.5);
}

.nav-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 56px;
  width: auto;
  filter: drop-shadow(0 0 12px rgba(201,168,76,0.4));
  transition: filter 0.3s ease;
}

.logo-img:hover {
  filter: drop-shadow(0 0 20px rgba(201,168,76,0.7));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-link {
  font-family: 'Cinzel', serif;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  color: var(--white-80);
  position: relative;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold-gradient);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.nav-link:hover { color: var(--gold); }
.nav-link:hover::after { transform: scaleX(1); }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gold-gradient);
  color: var(--black);
  font-family: 'Cinzel', serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.6rem 1.4rem;
  border-radius: 100px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(201,168,76,0.3);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,168,76,0.5);
}

.whatsapp-icon { display: flex; align-items: center; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  transition: all 0.3s ease;
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   CAROUSEL
   ============================================================ */
.carousel-section {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.carousel-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.9s ease;
}

.carousel-slide.active { opacity: 1; }

.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.05);
  transition: transform 8s ease;
  will-change: transform;
}

.carousel-slide.active .slide-bg { transform: scale(1); }

/* Responsive product images in carousel */
.carousel-slide:nth-child(2) .slide-bg {
  background-image: url('product1.png') !important;
}

@media (max-width: 768px) {
  .carousel-slide:nth-child(2) .slide-bg {
    background-image: url('product2.png') !important;
  }
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,10,10,0.85) 0%,
    rgba(10,10,10,0.65) 50%,
    rgba(10,10,10,0.4) 100%
  );
}

.slide-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--nav-height) + 2rem) 8% 6rem;
  max-width: 750px;
}

.slide-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: var(--gold-light);
  padding: 0.4rem 1rem;
  border: 1px solid var(--gold-30);
  border-radius: 100px;
  background: var(--gold-10);
  margin-bottom: 1.5rem;
  width: fit-content;
  animation: fadeSlideUp 0.8s ease 0.2s both;
}

.slide-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.2rem;
  animation: fadeSlideUp 0.8s ease 0.35s both;
}

.slide-desc {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--white-80);
  max-width: 500px;
  margin-bottom: 2rem;
  animation: fadeSlideUp 0.8s ease 0.5s both;
}

.slide-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeSlideUp 0.8s ease 0.65s both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  background: var(--gold-gradient);
  color: var(--black);
  font-family: 'Cinzel', serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.85rem 2rem;
  border-radius: 100px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 30px rgba(201,168,76,0.35);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(201,168,76,0.55);
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(37,211,102,0.15);
  color: #fff;
  border: 1px solid rgba(37,211,102,0.5);
  font-family: 'Cinzel', serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 0.85rem 2rem;
  border-radius: 100px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.btn-whatsapp:hover {
  background: rgba(37,211,102,0.3);
  border-color: var(--whatsapp);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(37,211,102,0.3);
}

/* Carousel Controls */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(201,168,76,0.15);
  border: 1px solid var(--gold-30);
  color: var(--gold);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-btn:hover {
  background: var(--gold-20);
  border-color: var(--gold);
  box-shadow: 0 0 20px var(--gold-20);
}

.carousel-btn.prev { left: 2rem; }
.carousel-btn.next { right: 2rem; }

.carousel-dots {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.6rem;
  z-index: 10;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 100px;
  background: var(--white-20);
  border: 1px solid var(--white-20);
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.dot.active {
  width: 28px;
  background: var(--gold-gradient);
  border-color: transparent;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  right: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.6;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease infinite;
}

.scroll-indicator span {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  color: var(--gold);
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: linear-gradient(90deg, #0d0d0d 0%, #1a1300 50%, #0d0d0d 100%);
  border-top: 1px solid var(--gold-20);
  border-bottom: 1px solid var(--gold-20);
  padding: 0.9rem 1.5rem;
  overflow: hidden;
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Cinzel', serif;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--gold-light);
  white-space: nowrap;
}

.trust-icon { font-size: 1rem; }

.trust-divider {
  color: var(--gold-30);
  font-size: 0.6rem;
}

/* ============================================================
   PRODUCT SECTION
   ============================================================ */
.product-section {
  padding: 7rem 0;
  background: var(--black-2);
  position: relative;
  overflow: hidden;
}

.product-section::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.product-section::after {
  content: '';
  position: absolute;
  bottom: -200px;
  left: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

/* Product Gallery */
.product-gallery { position: relative; }

.product-main-img-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--gold-20);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 0 1px var(--gold-10);
  transition: box-shadow 0.3s ease;
}

.product-main-img-wrap:hover {
  box-shadow: 0 30px 80px rgba(0,0,0,0.6), 0 0 40px rgba(201,168,76,0.1);
}

.product-main-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.product-main-img-wrap:hover .product-main-img { transform: scale(1.03); }

.product-badge-float {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  background: var(--gold-gradient);
  color: var(--black);
  border-radius: 50%;
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(201,168,76,0.4);
  animation: rotateBadge 20s linear infinite;
}

.badge-inner {
  text-align: center;
  font-family: 'Cinzel', serif;
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.3;
}

.product-thumbs {
  display: flex;
  gap: 0.8rem;
  margin-top: 1rem;
}

.thumb-btn {
  border: 2px solid var(--gold-20);
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  width: 90px;
  height: 70px;
  background: none;
  padding: 0;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.thumb-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thumb-btn:hover, .thumb-btn.active {
  border-color: var(--gold);
  box-shadow: 0 0 12px var(--gold-30);
}

/* Product Details */
.product-brand {
  font-family: 'Cinzel', serif;
  font-size: 0.72rem;
  letter-spacing: 0.4em;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

.product-name {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.product-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}

.product-price-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, rgba(201,168,76,0.08), rgba(201,168,76,0.03));
  border: 1px solid var(--gold-20);
  border-radius: 12px;
  padding: 1.2rem 1.5rem;
  margin-bottom: 1.5rem;
}

.price-left { display: flex; align-items: center; gap: 0.8rem; flex-wrap: wrap; }

.price-current {
  font-family: 'Cinzel', serif;
  font-size: 2.2rem;
  font-weight: 900;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.price-original {
  font-size: 1.2rem;
  color: var(--white-60);
  text-decoration: line-through;
}

.price-tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  background: rgba(201,168,76,0.2);
  color: var(--gold);
  padding: 0.25rem 0.6rem;
  border-radius: 100px;
  border: 1px solid var(--gold-30);
}

.price-weight {
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  color: var(--gold-light);
  font-weight: 600;
}

.product-desc {
  font-size: 0.95rem;
  color: var(--white-60);
  line-height: 1.75;
  margin-bottom: 1.8rem;
}

/* Benefits Grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.benefit-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  background: var(--gold-10);
  border: 1px solid var(--gold-20);
  border-radius: 10px;
  padding: 0.9rem 0.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.benefit-card:hover {
  background: var(--gold-20);
  border-color: var(--gold-30);
  transform: translateY(-2px);
}

.benefit-icon { font-size: 1.3rem; }

.benefit-text {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--white-80);
  letter-spacing: 0.03em;
}

/* How to Use */
.how-to-use {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--white-10);
  border-radius: 12px;
  padding: 1.2rem 1.5rem;
  margin-bottom: 1.8rem;
}

.htu-title {
  font-family: 'Cinzel', serif;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 1rem;
}

.htu-steps {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.htu-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  text-align: center;
  flex: 1;
  min-width: 80px;
}

.htu-num {
  width: 32px;
  height: 32px;
  background: var(--gold-gradient);
  color: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  font-family: 'Cinzel', serif;
  flex-shrink: 0;
}

.htu-step p {
  font-size: 0.72rem;
  color: var(--white-60);
  line-height: 1.4;
}

.htu-arrow {
  color: var(--gold-30);
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* Certifications */
.cert-row {
  display: flex;
  gap: 0.6rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.cert-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(201,168,76,0.08);
  border: 1px solid var(--gold-20);
  border-radius: 8px;
  padding: 0.6rem 0.8rem;
  flex: 1;
  min-width: 60px;
  text-align: center;
}

.cert-badge span {
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.05em;
}

.cert-badge small {
  font-size: 0.6rem;
  color: var(--white-60);
}

/* Order Buttons */
.order-btns {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.2rem;
  flex-wrap: wrap;
}

.order-whatsapp {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: linear-gradient(135deg, #1db954, #25d366);
  color: var(--white);
  font-family: 'Cinzel', serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 0.9rem 1.8rem;
  border-radius: 12px;
  flex: 1;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 6px 30px rgba(37,211,102,0.3);
}

.order-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(37,211,102,0.5);
}

.order-price {
  background: rgba(0,0,0,0.25);
  padding: 0.2rem 0.7rem;
  border-radius: 100px;
  font-size: 0.85rem;
}

.order-enquiry {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold-30);
  font-family: 'Cinzel', serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 0.9rem 1.5rem;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.order-enquiry:hover {
  background: var(--gold-10);
  border-color: var(--gold);
  transform: translateY(-3px);
}

.safe-order {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.safe-order span {
  font-size: 0.72rem;
  color: var(--white-60);
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-section {
  position: relative;
  padding: 8rem 0;
  overflow: hidden;
}

.about-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.15;
}

.about-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,10,10,0.97) 0%,
    rgba(10,10,10,0.88) 50%,
    rgba(10,10,10,0.95) 100%
  );
}

.about-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-text {
  color: var(--white-60);
  font-size: 0.97rem;
  line-height: 1.85;
  margin-bottom: 1.2rem;
}

.about-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-style: italic;
  color: var(--white-80);
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--gold-20);
}

/* Value Cards */
.value-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

.value-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--gold-20);
  border-radius: 14px;
  padding: 1.5rem 1.2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold-gradient);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.value-card:hover {
  background: var(--gold-10);
  border-color: var(--gold-30);
  transform: translateY(-4px);
}

.value-card:hover::before { transform: scaleX(1); }

.value-icon { font-size: 1.8rem; margin-bottom: 0.6rem; }

.value-card h4 {
  font-family: 'Cinzel', serif;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.value-card p {
  font-size: 0.82rem;
  color: var(--white-60);
  line-height: 1.6;
}

/* Stats */
.about-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(201,168,76,0.08), rgba(201,168,76,0.04));
  border: 1px solid var(--gold-20);
  border-radius: 14px;
  padding: 1.5rem;
}

.stat-item {
  flex: 1;
  text-align: center;
}

.stat-num {
  font-family: 'Cinzel', serif;
  font-size: 2.2rem;
  font-weight: 900;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.3rem;
}

.stat-num span { font-size: 1.2rem; }

.stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--white-60);
}

.stat-divider {
  width: 1px;
  height: 50px;
  background: var(--gold-20);
  margin: 0 1.5rem;
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-section {
  padding: 7rem 0;
  background: var(--black);
  position: relative;
  overflow: hidden;
}

.faq-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 1px;
  background: var(--gold-gradient);
  opacity: 0.3;
}

.faq-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: -100%;
  width: 200%;
  height: 1px;
  background: var(--gold-gradient);
  opacity: 0.3;
}

.faq-content {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 3rem;
  align-items: start;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

/* FAQ Item */
.faq-item {
  background: var(--black-3);
  border: 1px solid var(--gold-20);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--gold-30);
  box-shadow: 0 8px 24px rgba(201,168,76,0.1);
}

.faq-question {
  width: 100%;
  padding: 1.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  font-family: 'Cinzel', serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  text-align: left;
  transition: all 0.3s ease;
  letter-spacing: 0.03em;
}

.faq-question:hover {
  color: var(--gold);
}

.faq-question:focus {
  outline: none;
  color: var(--gold);
}

.faq-q-text {
  flex: 1;
}

.faq-toggle-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: var(--gold-10);
  border: 1px solid var(--gold-30);
  border-radius: 50%;
  font-size: 1.1rem;
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.faq-item.active .faq-toggle-icon {
  background: var(--gold-20);
  color: var(--black);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding: 0 1.5rem;
  background: rgba(201,168,76,0.05);
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--white-80);
  transition: all 0.4s ease;
  border-top: 1px solid var(--gold-20);
}

.faq-item.active .faq-answer {
  max-height: 500px;
  opacity: 1;
  padding: 1.5rem;
}

.faq-answer p {
  margin: 0;
  color: var(--white-60);
}

/* FAQ Sidebar */
.faq-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  position: sticky;
  top: 120px;
}

.faq-sidebar-card {
  background: linear-gradient(135deg, var(--black-3) 0%, rgba(201,168,76,0.05) 100%);
  border: 1px solid var(--gold-20);
  border-radius: 8px;
  padding: 1.8rem 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.faq-sidebar-card:hover {
  border-color: var(--gold);
  background: linear-gradient(135deg, var(--black-3) 0%, rgba(201,168,76,0.1) 100%);
  transform: translateY(-2px);
}

.faq-card-icon {
  font-size: 2.5rem;
  margin-bottom: 0.8rem;
  display: block;
}

.faq-sidebar-card h4 {
  font-family: 'Cinzel', serif;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 0.6rem;
  font-weight: 700;
}

.faq-sidebar-card p {
  font-size: 0.8rem;
  color: var(--white-60);
  line-height: 1.5;
  margin: 0;
}

.faq-cta-btn {
  margin-top: 0.8rem;
}

.faq-cta-btn .btn-primary {
  display: inline-block;
  width: 100%;
  padding: 0.8rem 1rem;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
}

/* Responsive FAQ */
@media (max-width: 768px) {
  .faq-content {
    grid-template-columns: 1fr;
  }

  .faq-sidebar {
    position: static;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    display: grid;
  }

  .faq-question {
    font-size: 0.85rem;
    padding: 1.2rem;
  }

  .faq-answer {
    font-size: 0.85rem;
  }

  .faq-toggle-icon {
    width: 24px;
    height: 24px;
    font-size: 0.9rem;
  }

  .faq-sidebar-card {
    padding: 1.2rem 1rem;
  }

  .faq-sidebar-card h4 {
    font-size: 0.75rem;
  }

  .faq-sidebar-card p {
    font-size: 0.7rem;
  }
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-section {
  padding: 7rem 0;
  background: var(--black-3);
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(201,168,76,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

.contact-info { display: flex; flex-direction: column; gap: 1.2rem; }

.contact-card {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--gold-20);
  border-radius: 14px;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.contact-card:hover {
  background: var(--gold-10);
  border-color: var(--gold-30);
  transform: translateX(4px);
}

.contact-card-icon {
  width: 52px;
  height: 52px;
  background: var(--gold-10);
  border: 1px solid var(--gold-30);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  color: var(--whatsapp);
}

.contact-card-content h4 {
  font-family: 'Cinzel', serif;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 0.4rem;
}

.contact-card-content p {
  font-size: 0.82rem;
  color: var(--white-60);
  line-height: 1.6;
  margin-bottom: 0.8rem;
}

.contact-cta {
  display: inline-block;
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--whatsapp);
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
}

.contact-cta:hover { color: var(--gold); }

.contact-detail {
  font-family: 'Cinzel', serif;
  font-size: 0.82rem;
  color: var(--gold);
  letter-spacing: 0.05em;
}

/* Contact Form */
.contact-form-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--gold-20);
  border-radius: 20px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}

.contact-form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold-gradient);
}

.form-header {
  text-align: center;
  margin-bottom: 2rem;
}

.form-header svg { margin: 0 auto 0.8rem; }

.form-header h3 {
  font-family: 'Cinzel', serif;
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 0.4rem;
}

.form-header p {
  font-size: 0.85rem;
  color: var(--white-60);
}

.contact-form { display: flex; flex-direction: column; gap: 1.2rem; }

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--gold);
  font-family: 'Cinzel', serif;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--gold-20);
  border-radius: 10px;
  padding: 0.85rem 1rem;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  outline: none;
  -webkit-appearance: none;
}

.form-group select {
  background-color: var(--black-4);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23c9a84c' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  cursor: pointer;
}

.form-group select option { background: var(--black-4); color: var(--white); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(201,168,76,0.06);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--white-20);
}

.form-group textarea { resize: vertical; min-height: 80px; }

.form-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  background: linear-gradient(135deg, #1db954, #25d366);
  color: var(--white);
  border: none;
  border-radius: 12px;
  padding: 1rem 1.5rem;
  font-family: 'Cinzel', serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 30px rgba(37,211,102,0.3);
  width: 100%;
}

.form-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(37,211,102,0.5);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #050505;
  border-top: 1px solid var(--gold-20);
  position: relative;
  overflow: hidden;
}

.footer-glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: var(--gold-gradient);
  opacity: 0.4;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding: 4rem 0 3rem;
}

.footer-logo {
  height: 80px;
  width: auto;
  margin-bottom: 1.2rem;
  filter: drop-shadow(0 0 8px rgba(201,168,76,0.3));
}

.footer-brand-text {
  font-size: 0.85rem;
  color: var(--white-60);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.footer-socials {
  display: flex;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border: 1px solid var(--gold-20);
  color: var(--white);
}

.whatsapp-social {
  background: rgba(37,211,102,0.15);
  border-color: rgba(37,211,102,0.3);
  color: var(--whatsapp);
}

.whatsapp-social:hover {
  background: var(--whatsapp);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(37,211,102,0.4);
}

.footer-fssai {
  margin-top: 0.5rem;
}

.fssai-badge {
  font-size: 0.68rem;
  color: var(--white-60);
  letter-spacing: 0.05em;
  padding: 0.35rem 0.8rem;
  border: 1px solid var(--gold-20);
  border-radius: 6px;
  background: var(--gold-10);
  display: inline-block;
}

.footer-col-title {
  font-family: 'Cinzel', serif;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 1.2rem;
  position: relative;
}

.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: -0.4rem;
  left: 0;
  width: 30px;
  height: 1px;
  background: var(--gold-gradient);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links li a,
.footer-links li span {
  font-size: 0.84rem;
  color: var(--white-60);
  transition: color 0.3s ease;
  cursor: default;
}

.footer-links li a { cursor: pointer; }
.footer-links li a:hover { color: var(--gold); padding-left: 4px; transition: all 0.3s; }

.footer-contact-items { display: flex; flex-direction: column; gap: 1rem; }

.footer-contact-item {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
}

.fc-icon { font-size: 1.1rem; margin-top: 2px; }

.footer-contact-item strong {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--gold);
  font-family: 'Cinzel', serif;
  margin-bottom: 0.2rem;
}

.footer-contact-item span,
.footer-contact-item a {
  font-size: 0.84rem;
  color: var(--white-60);
  display: block;
}

.footer-contact-item a:hover { color: var(--whatsapp); }

/* Certs Strip */
.footer-certs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 1.2rem 0;
  border-top: 1px solid var(--gold-20);
  border-bottom: 1px solid var(--gold-20);
  margin: 0 0 2rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.cert-strip-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  color: var(--white-60);
  padding: 0.3rem 0.8rem;
}

.cert-strip-icon { font-size: 0.9rem; }
.cert-strip-divider { width: 1px; height: 20px; background: var(--gold-20); }

/* Footer Bottom */
.footer-bottom { text-align: center; padding-bottom: 2.5rem; }

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--white-60);
  margin-bottom: 0.5rem;
  font-family: 'Cinzel', serif;
  letter-spacing: 0.05em;
}

.footer-disclaimer {
  font-size: 0.68rem !important;
  color: var(--white-20) !important;
  max-width: 600px;
  margin: 0 auto;
  font-family: 'Inter', sans-serif !important;
  letter-spacing: 0 !important;
}

/* ============================================================
   FLOATING WHATSAPP BUTTON
   ============================================================ */
.float-whatsapp {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 62px;
  height: 62px;
  background: linear-gradient(135deg, #1db954, #25d366);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  z-index: 999;
  box-shadow: 0 6px 30px rgba(37,211,102,0.5);
  transition: all 0.3s ease;
  animation: pulse-whatsapp 2s ease infinite;
}

.float-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 40px rgba(37,211,102,0.7);
  animation: none;
}

.float-tooltip {
  position: absolute;
  right: 110%;
  background: var(--black-3);
  color: var(--white);
  font-size: 0.75rem;
  padding: 0.4rem 0.8rem;
  border-radius: 8px;
  border: 1px solid var(--gold-20);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.float-whatsapp:hover .float-tooltip { opacity: 1; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 0.6; }
  50% { transform: scaleY(1.3); opacity: 1; }
}

@keyframes rotateBadge {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes pulse-whatsapp {
  0%, 100% { box-shadow: 0 6px 30px rgba(37,211,102,0.5); }
  50% { box-shadow: 0 6px 40px rgba(37,211,102,0.8), 0 0 0 10px rgba(37,211,102,0.1); }
}

/* Scroll Animate */
[data-animate] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-animate="fade-right"] { transform: translateX(-50px); }
[data-animate="fade-left"] { transform: translateX(50px); }

[data-animate].animated {
  opacity: 1;
  transform: translate(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .product-layout { grid-template-columns: 1fr; gap: 3rem; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .contact-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}

@media (max-width: 768px) {
  :root { --nav-height: 68px; }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(10,10,10,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    gap: 0;
    padding: calc(var(--nav-height) + 1rem) 0 2rem;
    border-left: 1px solid var(--gold-20);
    transition: right 0.4s ease;
    z-index: 999;
  }

  .nav-links.open { right: 0; }

  .nav-links li {
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }

  .nav-link {
    display: block;
    padding: 1rem 2rem;
    font-size: 0.9rem;
  }

  .nav-cta {
    margin: 1rem 2rem 0;
    justify-content: center;
  }

  .hamburger { display: flex; }

  .slide-content { padding: calc(var(--nav-height) + 1rem) 5% 5rem; }

  .trust-bar-inner { gap: 0.75rem; }
  .trust-divider { display: none; }
  .trust-item { font-size: 0.68rem; }

  .product-thumbs { gap: 0.6rem; }
  .thumb-btn { width: 70px; height: 55px; }

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

  .htu-steps { flex-direction: column; gap: 0.6rem; align-items: flex-start; }
  .htu-arrow { transform: rotate(90deg); align-self: center; }

  .value-cards { grid-template-columns: 1fr; }

  .about-stats { flex-direction: column; gap: 1.5rem; }
  .stat-divider { width: 60px; height: 1px; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }

  .footer-certs { gap: 0.3rem; }
  .cert-strip-divider { display: none; }

  .carousel-btn { display: none; }

  .scroll-indicator { display: none; }

  .float-whatsapp { bottom: 1.5rem; right: 1.5rem; width: 54px; height: 54px; }
}

@media (max-width: 480px) {
  .slide-title { font-size: 2rem; }
  .section-title { font-size: 1.7rem; }
  .slide-btns { flex-direction: column; }
  .btn-primary, .btn-whatsapp { justify-content: center; text-align: center; }
  .product-price-box { flex-direction: column; gap: 0.8rem; align-items: flex-start; }
  .order-btns { flex-direction: column; }
  .cert-row { gap: 0.4rem; }
}
