/* ==========================================================================
   JUS QAURA SOLUTION - PREMIUM LANDING PAGE STYLESHEET
   Design System: Elementor WordPress Aesthetic (Emerald, Gold, Cream, Dark Green)
   Font: Inter (Google Fonts)
   ========================================================================== */

/* --- CSS Variables & Design Tokens --- */
:root {
  --color-primary: #0e5e3a;         /* Hijau Zamrud */
  --color-primary-light: #158050;   /* Zamrud Cerah */
  --color-primary-dark: #093c24;    /* Hijau Hutan Gelap */
  --color-dark-bg: #062315;         /* Latar Hijau Sangat Gelap */
  --color-accent-gold: #c99a2c;     /* Emas Elegan */
  --color-accent-gold-hover: #b3841e;
  --color-gold-soft: #fcf6e8;
  --color-gold-border: #e8d08c;
  --color-cream-bg: #f9f8f4;        /* Krim Lembut */
  --color-cream-card: #f4f1ea;
  --color-soft-green: #eef7f1;      /* Hijau Sangat Muda */
  --color-white: #ffffff;
  --color-text-main: #1c2826;
  --color-text-muted: #576b65;
  --color-text-light: #8fa19b;
  --color-border-light: #e5ede8;
  --color-border-accent: rgba(14, 94, 58, 0.16);
  --color-danger: #e11d48;
  --color-danger-bg: #ffe4e6;
  --color-whatsapp: #25d366;
  --color-whatsapp-dark: #128c7e;

  /* Typography */
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Shadows */
  --shadow-sm: 0 2px 6px rgba(14, 94, 58, 0.05);
  --shadow-md: 0 8px 24px -4px rgba(14, 94, 58, 0.08), 0 4px 8px -4px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 16px 36px -6px rgba(14, 94, 58, 0.12), 0 8px 16px -6px rgba(0, 0, 0, 0.06);
  --shadow-xl: 0 24px 48px -10px rgba(6, 35, 21, 0.2);
  --shadow-gold: 0 10px 25px -3px rgba(201, 154, 44, 0.35);

  /* Transitions & Border Radius */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* --- Resets & Base Styles --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-family);
  font-size: 16px;
  line-height: 1.65;
  color: var(--color-text-main);
  background-color: var(--color-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

/* --- Layout Containers --- */
.site-container {
  width: 100%;
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.site-container-narrow {
  max-width: 860px;
}

.site-section {
  padding-top: 75px;
  padding-bottom: 75px;
  position: relative;
  scroll-margin-top: 80px;
}

@media (max-width: 768px) {
  .site-section {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

/* --- Section Headings (Elementor Style) --- */
.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 45px;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: var(--color-soft-green);
  color: var(--color-primary);
  border: 1px solid rgba(14, 94, 58, 0.2);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}

.section-badge.badge-gold {
  background: var(--color-gold-soft);
  color: var(--color-accent-gold);
  border-color: var(--color-gold-border);
}

.section-title {
  font-size: clamp(1.85rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--color-primary-dark);
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.section-title.title-white {
  color: var(--color-white);
}

.section-subtitle {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: var(--color-text-muted);
  line-height: 1.6;
}

.section-subtitle.subtitle-light {
  color: #c7dbd2;
}

.title-underline {
  width: 65px;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent-gold));
  border-radius: 2px;
  margin: 14px auto 0;
}

.title-underline.gold {
  background: var(--color-accent-gold);
}

/* --- Buttons & CTAs --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  font-size: 1.05rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-normal);
  text-align: center;
  line-height: 1.2;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  color: var(--color-white);
  box-shadow: 0 8px 20px -3px rgba(14, 94, 58, 0.35);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--color-primary-light), var(--color-primary));
  transform: translateY(-2px);
  box-shadow: 0 12px 26px -3px rgba(14, 94, 58, 0.45);
  color: var(--color-white);
}

.btn-gold {
  background: linear-gradient(135deg, #e3b036, #c29221);
  color: #1a1503;
  box-shadow: var(--shadow-gold);
  border-color: #f7d277;
}

.btn-gold:hover {
  background: linear-gradient(135deg, #edbd45, #d4a329);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -3px rgba(201, 154, 44, 0.5);
  color: #1a1503;
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25d366, #1db954);
  color: var(--color-white);
  box-shadow: 0 8px 22px -3px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp:hover {
  background: linear-gradient(135deg, #28e06c, #22c75a);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -3px rgba(37, 211, 102, 0.55);
  color: var(--color-white);
}

.btn-pulse {
  animation: subtlePulse 2.4s infinite;
}

@keyframes subtlePulse {
  0% {
    box-shadow: 0 0 0 0 rgba(201, 154, 44, 0.55);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(201, 154, 44, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(201, 154, 44, 0);
  }
}

.btn-block {
  width: 100%;
}

.btn-lg {
  padding: 18px 36px;
  font-size: 1.15rem;
}

/* ==========================================================================
   1. HEADER (Sticky Navigation)
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(14, 94, 58, 0.1);
  z-index: 1000;
  transition: all var(--transition-fast);
}

.site-header.is-scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.98);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--color-primary-dark);
  letter-spacing: -0.01em;
}

.brand-logo .brand-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent-gold);
  box-shadow: 0 4px 10px rgba(14, 94, 58, 0.2);
}

.brand-logo .brand-name {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-logo .brand-title {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--color-primary);
}

.brand-logo .brand-sub {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--color-accent-gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text-main);
  padding: 6px 0;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2.5px;
  background: var(--color-primary);
  transition: width var(--transition-fast);
  border-radius: 2px;
}

.nav-link:hover {
  color: var(--color-primary);
}

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

.header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-btn {
  padding: 10px 20px;
  font-size: 0.92rem;
  gap: 8px;
  white-space: nowrap;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  color: var(--color-primary-dark);
}

/* ==========================================================================
   2. HERO SECTION
   ========================================================================== */
.hero-section {
  padding: 60px 0 80px;
  background: linear-gradient(180deg, #f3f9f5 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201, 154, 44, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: center;
}

.hero-content {
  z-index: 2;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(14, 94, 58, 0.1);
  color: var(--color-primary);
  border: 1px solid rgba(14, 94, 58, 0.2);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}

.hero-title {
  font-size: clamp(2rem, 3.8vw, 2.9rem);
  font-weight: 900;
  color: var(--color-primary-dark);
  line-height: 1.2;
  letter-spacing: -0.025em;
  margin-bottom: 18px;
}

.hero-desc {
  font-size: clamp(1.05rem, 1.8vw, 1.18rem);
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 28px;
}

.hero-badges-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 34px;
}

.hero-badge-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--color-primary-dark);
}

.hero-badge-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--color-soft-green);
  border: 1.5px solid var(--color-primary);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-media {
  position: relative;
  z-index: 2;
  text-align: center;
}

/* Ambient Glowing Aura Behind Product */
.hero-media::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120%;
  height: 120%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(201, 154, 44, 0.22) 0%, rgba(14, 94, 58, 0.16) 45%, transparent 72%);
  border-radius: 50%;
  z-index: -1;
  pointer-events: none;
  animation: auraPulse 6s ease-in-out infinite alternate;
}

@keyframes auraPulse {
  0% {
    transform: translate(-50%, -50%) scale(0.92);
    opacity: 0.6;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 0.95;
  }
}

.hero-img-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  background: var(--color-white);
  border: 4px solid var(--color-white);
  animation: heroProductFloat 4.8s ease-in-out infinite;
  transition: transform var(--transition-normal);
}

/* Shimmer Light Reflection Across Product */
.hero-img-wrapper::after {
  content: '';
  position: absolute;
  top: -60%;
  left: -70%;
  width: 50%;
  height: 220%;
  background: linear-gradient(
    65deg,
    rgba(255, 255, 255, 0) 20%,
    rgba(255, 255, 255, 0.45) 50%,
    rgba(255, 255, 255, 0) 80%
  );
  transform: rotate(25deg);
  animation: shimmerSweep 6s infinite;
  pointer-events: none;
}

@keyframes shimmerSweep {
  0% {
    left: -70%;
  }
  22%, 100% {
    left: 140%;
  }
}

@keyframes heroProductFloat {
  0% {
    transform: translateY(0px);
    box-shadow: 0 20px 42px -8px rgba(14, 94, 58, 0.25);
  }
  50% {
    transform: translateY(-12px);
    box-shadow: 0 32px 55px -10px rgba(14, 94, 58, 0.38);
  }
  100% {
    transform: translateY(0px);
    box-shadow: 0 20px 42px -8px rgba(14, 94, 58, 0.25);
  }
}

.hero-img {
  width: 100%;
  height: auto;
  border-radius: calc(var(--radius-xl) - 4px);
  transition: transform var(--transition-normal);
}

.hero-img-wrapper:hover .hero-img {
  transform: scale(1.02);
}

.floating-cert-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(14, 94, 58, 0.2);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-lg);
  text-align: left;
  animation: badgeFloat 3.8s ease-in-out infinite alternate;
  z-index: 3;
}

@keyframes badgeFloat {
  0% {
    transform: translateY(0) scale(1);
  }
  100% {
    transform: translateY(-6px) scale(1.02);
  }
}

.floating-cert-badge .cert-icon {
  width: 36px;
  height: 36px;
  background: var(--color-soft-green);
  border-radius: 50%;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.floating-cert-badge .cert-title {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.floating-cert-badge .cert-num {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--color-primary-dark);
}

/* ==========================================================================
   3. BAHAGIAN PERHATIAN (Attention Section)
   ========================================================================== */
.section-attention {
  background-color: var(--color-soft-green);
}

.attention-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.attention-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border-light);
}

.attention-text {
  font-size: 1.12rem;
  color: var(--color-text-main);
  line-height: 1.75;
  margin-bottom: 24px;
}

.pain-points-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.pain-point-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #fff8f8;
  border: 1px solid #ffe1e1;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  font-size: 0.92rem;
  font-weight: 600;
  color: #881337;
}

.pain-point-icon {
  color: var(--color-danger);
  flex-shrink: 0;
  margin-top: 2px;
}

.attention-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 3px solid var(--color-white);
}

.attention-visual img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* ==========================================================================
   4. BAHAGIAN "MANA SILAPNYA?"
   ========================================================================== */
.section-contrast {
  background-color: var(--color-white);
}

.contrast-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 35px;
}

.contrast-card {
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  transition: transform var(--transition-normal);
}

.contrast-card.card-wrong {
  background: #fdf6f6;
  border: 2px dashed #f87171;
}

.contrast-card.card-right {
  background: linear-gradient(145deg, #f1f8f3, #e5f3e9);
  border: 2px solid var(--color-primary);
  box-shadow: var(--shadow-md);
}

.contrast-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

.contrast-tag.tag-danger {
  background: #fee2e2;
  color: #991b1b;
}

.contrast-tag.tag-success {
  background: var(--color-primary);
  color: var(--color-white);
}

.contrast-card h3 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 14px;
}

.contrast-card.card-wrong h3 {
  color: #991b1b;
}

.contrast-card.card-right h3 {
  color: var(--color-primary-dark);
}

.contrast-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.98rem;
  line-height: 1.55;
}

.contrast-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.contrast-banner {
  margin-top: 40px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.contrast-banner img {
  width: 100%;
  height: auto;
  display: block;
}

/* ==========================================================================
   5. FUNGSI DAN KELEBIHAN UTAMA (6 Kad Grid)
   ========================================================================== */
.section-benefits {
  background: var(--color-cream-bg);
}

/* --- Video Promo Menegak (9:16) --- */
.benefits-video-wrapper {
  margin: 35px auto 55px;
  max-width: 500px;
  text-align: center;
}

.benefits-video-header {
  margin-bottom: 22px;
}

.video-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-gold-soft);
  color: var(--color-accent-gold-hover);
  border: 1px solid var(--color-gold-border);
  padding: 6px 18px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.video-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--color-primary-dark);
}

.video-player-container {
  display: flex;
  justify-content: center;
}

.video-frame {
  width: 100%;
  max-width: 480px;
  border-radius: 24px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 20px 45px -10px rgba(14, 94, 58, 0.28), 0 0 0 3px rgba(201, 154, 44, 0.35);
  position: relative;
  aspect-ratio: 1 / 1;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.video-frame:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px -10px rgba(14, 94, 58, 0.38), 0 0 0 3px rgba(201, 154, 44, 0.6);
}

.video-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #000;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.benefit-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border-light);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent-gold));
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(14, 94, 58, 0.3);
}

.benefit-card:hover::before {
  opacity: 1;
}

.benefit-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.benefit-card-top .benefit-icon-wrap {
  margin-bottom: 0;
}

.benefit-check-badge {
  font-size: 1.25rem;
  line-height: 1;
}

.benefit-icon-wrap {
  width: 54px;
  height: 54px;
  background: var(--color-soft-green);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  margin-bottom: 20px;
  transition: background-color var(--transition-fast);
}

.benefit-card:hover .benefit-icon-wrap {
  background: var(--color-primary);
  color: var(--color-accent-gold);
}

.benefit-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--color-primary-dark);
  line-height: 1.35;
  margin-bottom: 10px;
}

.benefit-card p {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.disclaimer-box {
  margin-top: 40px;
  background: rgba(14, 94, 58, 0.05);
  border-left: 4px solid var(--color-primary);
  padding: 16px 22px;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  text-align: center;
}

/* ==========================================================================
   6. ISI KANDUNGAN (Campuran 14 Herba)
   ========================================================================== */
.section-herbs {
  background: var(--color-white);
}

.herbs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 22px;
}

.herb-card {
  background: #ffffff;
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  padding: 24px 20px 20px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.herb-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(14, 94, 58, 0.35);
  background: #fbfdfc;
}

.herb-header {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 16px;
}

.herb-img-wrap {
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  background: transparent;
  border-radius: 50%;
  position: relative;
  transition: transform var(--transition-normal);
}

.herb-card:hover .herb-img-wrap {
  transform: scale(1.1) translateY(-4px);
}

.herb-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.12));
  transition: filter var(--transition-normal);
}

.herb-card:hover .herb-img {
  filter: drop-shadow(0 12px 22px rgba(14, 94, 58, 0.25));
}

.herb-number {
  position: absolute;
  top: -6px;
  left: 0;
  font-size: 0.8rem;
  font-weight: 900;
  color: var(--color-accent-gold);
  background: var(--color-gold-soft);
  border: 1.5px solid var(--color-gold-border);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(201, 154, 44, 0.2);
  z-index: 2;
}

.herb-info {
  width: 100%;
}

.herb-info h4 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--color-primary-dark);
  margin-bottom: 6px;
  line-height: 1.3;
}

.herb-info p {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

/* ==========================================================================
   7. MAKLUMAT PRODUK (Dark Green Studio)
   ========================================================================== */
.section-product-info {
  background: linear-gradient(160deg, #062315 0%, #0c3e27 60%, #072818 100%);
  color: var(--color-white);
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

.section-product-info::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.product-info-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 36px;
  align-items: start;
}

.product-specs-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.25);
}

.specs-header-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(16, 185, 129, 0.16);
  border: 1px solid rgba(16, 185, 129, 0.45);
  color: #6ee7b7;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 22px;
  letter-spacing: 0.03em;
}

.status-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 10px #10b981;
  display: inline-block;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.6; }
}

.specs-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.spec-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  gap: 16px;
}

.spec-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.spec-label {
  font-size: 0.92rem;
  color: #a3c9b7;
  font-weight: 500;
  flex-shrink: 0;
}

.spec-value {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--color-white);
  text-align: right;
  line-height: 1.4;
}

.spec-value.gold-val {
  color: #f7d277;
}

.spec-value.highlight-mal {
  font-size: 1.18rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  background: linear-gradient(135deg, #ffd700 0%, #ffae19 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.active-ingredients-section {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.active-ingredients-title {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: #f7d277;
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}

.active-ingredients-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ing-tag {
  background: rgba(14, 94, 58, 0.4);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #e2f1e8;
  padding: 5px 11px;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  line-height: 1.3;
}

.ing-tag strong {
  color: #ffffff;
  font-style: italic;
}

.standards-row {
  display: flex;
  gap: 10px;
  margin-top: 22px;
  flex-wrap: wrap;
}

.standard-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(201, 154, 44, 0.12);
  border: 1px solid rgba(201, 154, 44, 0.35);
  color: #f7d277;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.cert-verify-column {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.cert-image-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35);
  border: 1.5px solid rgba(201, 154, 44, 0.3);
  background: #ffffff;
}

.cert-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(135deg, #0e5e3a 0%, #063d24 100%);
  color: #ffffff;
  padding: 10px 16px;
  border-bottom: 1px solid rgba(201, 154, 44, 0.3);
}

.cert-card-title {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.cert-status-badge {
  background: #f7d277;
  color: #063d24;
  padding: 3px 9px;
  border-radius: var(--radius-full);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.05em;
}

.cert-img-container {
  padding: 14px;
  background: #f8faf9;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cert-image-card img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.npra-verify-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(201, 154, 44, 0.35);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}

.npra-verify-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.npra-verify-header h4 {
  font-size: 1rem;
  font-weight: 800;
  color: #f7d277;
  margin: 0;
  line-height: 1.3;
}

.npra-steps-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.npra-steps-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.88rem;
  color: #e2f1e8;
  line-height: 1.45;
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: linear-gradient(135deg, #f7d277 0%, #d99a2b 100%);
  color: #063d24;
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 1px;
}

.keyword-highlight {
  color: #f7d277;
  background: rgba(201, 154, 44, 0.2);
  padding: 1px 7px;
  border-radius: 4px;
  border: 1px solid rgba(201, 154, 44, 0.4);
}

.npra-action {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.btn-npra-verify {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  background: linear-gradient(135deg, #d99a2b 0%, #b87c14 100%);
  color: #ffffff;
  border-radius: var(--radius-md);
  font-weight: 800;
  font-size: 0.95rem;
  text-decoration: none;
  box-shadow: 0 6px 16px rgba(217, 154, 43, 0.35);
  transition: all var(--transition-normal);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn-npra-verify:hover {
  background: linear-gradient(135deg, #e5a839 0%, #c98a1a 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(217, 154, 43, 0.45);
  color: #ffffff;
}

.npra-note {
  font-size: 0.76rem;
  color: #a3c9b7;
  text-align: center;
}

@media (max-width: 900px) {
  .product-info-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* ==========================================================================
   8. CARA PENGAMBILAN
   ========================================================================== */
.section-dosage {
  background: linear-gradient(180deg, #f4f9f6 0%, #e8f3ec 100%);
  position: relative;
}

.dosage-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 36px;
  align-items: center;
  max-width: 1120px;
  margin: 0 auto;
}

.dosage-image-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(14, 94, 58, 0.15);
  border: 2px solid rgba(201, 154, 44, 0.35);
  background: var(--color-white);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
}

.dosage-image-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 46px rgba(14, 94, 58, 0.22);
  border-color: var(--color-accent-gold);
}

.dosage-img {
  width: 100%;
  height: auto;
  display: block;
}

.dosage-content-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: 0 14px 32px rgba(14, 94, 58, 0.08);
  border: 1px solid var(--color-border-light);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.dosage-highlight-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: linear-gradient(135deg, rgba(14, 94, 58, 0.08) 0%, rgba(201, 154, 44, 0.12) 100%);
  border: 2px solid rgba(201, 154, 44, 0.4);
  border-radius: var(--radius-lg);
  padding: 20px 22px;
}

.moon-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f7d277 0%, #d99a2b 100%);
  color: #063d24;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(217, 154, 43, 0.3);
}

.dosage-highlight-text h3 {
  font-size: 1.22rem;
  font-weight: 800;
  color: var(--color-primary-dark);
  margin-bottom: 4px;
  line-height: 1.3;
}

.dosage-highlight-text p {
  font-size: 0.92rem;
  color: var(--color-text-main);
  line-height: 1.45;
}

.dosage-step-items {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.dosage-step-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #fbfdfc;
  border: 1px solid rgba(14, 94, 58, 0.12);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  transition: all var(--transition-normal);
}

.dosage-step-item:hover {
  transform: translateX(4px);
  border-color: var(--color-primary);
  background: #f4faf6;
  box-shadow: 0 6px 16px rgba(14, 94, 58, 0.08);
}

.step-badge {
  width: 34px;
  height: 34px;
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.95rem;
  flex-shrink: 0;
  box-shadow: 0 3px 8px rgba(14, 94, 58, 0.25);
  margin-top: 1px;
}

.step-text h4 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--color-primary-dark);
  margin-bottom: 4px;
  letter-spacing: 0.02em;
}

.step-text p {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.45;
  margin: 0;
}

.dosage-tips-box {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #fffbeb;
  border-left: 4px solid #f59e0b;
  padding: 14px 18px;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-size: 0.86rem;
  color: #92400e;
  line-height: 1.5;
}

.dosage-tips-box svg {
  flex-shrink: 0;
  margin-top: 2px;
}

@media (max-width: 900px) {
  .dosage-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  
  .dosage-image-card {
    max-width: 480px;
    margin: 0 auto;
  }
  
  .dosage-content-card {
    padding: 24px;
  }
}

/* ==========================================================================
   9. SESUAI SEBAGAI SOKONGAN PENJAGAAN UNTUK
   ========================================================================== */
.section-suitable {
  background: var(--color-white);
}

.suitable-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.suitable-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--color-cream-bg);
  border: 1px solid var(--color-border-light);
  padding: 20px 24px;
  border-radius: var(--radius-md);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-primary-dark);
  transition: all var(--transition-fast);
}

.suitable-item:hover {
  transform: translateX(4px);
  border-color: var(--color-primary);
  background: var(--color-soft-green);
}

.suitable-icon {
  width: 36px;
  height: 36px;
  background: var(--color-soft-green);
  border-radius: 50%;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ==========================================================================
   10. TESTIMONI PENGGUNA (Galeri Responsif & Modal Lightbox)
   ========================================================================== */
.section-testimonials {
  background: var(--color-cream-bg);
}

.testimonials-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border-light);
  cursor: pointer;
  transition: all var(--transition-normal);
  position: relative;
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--color-primary);
}

.testimonial-img-box {
  position: relative;
  width: 100%;
  background: #f1f5f3;
  overflow: hidden;
}

.testimonial-img-box img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform var(--transition-normal);
}

.testimonial-card:hover .testimonial-img-box img {
  transform: scale(1.03);
}

.zoom-overlay {
  position: absolute;
  inset: 0;
  background: rgba(14, 94, 58, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.testimonial-card:hover .zoom-overlay {
  opacity: 1;
}

.zoom-btn {
  background: rgba(0, 0, 0, 0.6);
  padding: 10px 18px;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}

.testimonial-card-body {
  padding: 18px;
  text-align: center;
  border-top: 1px solid var(--color-border-light);
}

.testimonial-caption {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--color-primary-dark);
}

/* ==========================================================================
   11. PAKEJ DAN HARGA (4 Uniform Posters)
   ========================================================================== */
.section-packages {
  background: linear-gradient(180deg, #f3f9f5 0%, #ffffff 100%);
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.package-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border-light);
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
  position: relative;
}

.package-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--color-primary);
}

.package-card.featured-package {
  border: 2.5px solid var(--color-accent-gold);
  box-shadow: 0 16px 36px -4px rgba(201, 154, 44, 0.25);
  transform: scale(1.02);
}

.package-card.featured-package:hover {
  transform: scale(1.04) translateY(-8px);
}

.package-top-badge {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #d4af37, #b8860b);
  color: #1a1503;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 5px 16px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  z-index: 5;
  white-space: nowrap;
}

.package-poster-box {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #f8faf9;
  position: relative;
}

.package-poster-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal);
}

.package-card:hover .package-poster-img {
  transform: scale(1.03);
}

.package-details {
  padding: 24px 20px 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  text-align: center;
}

.package-name {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--color-primary-dark);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.price-container {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
  margin-bottom: 12px;
}

.price-original {
  font-size: 1.05rem;
  color: var(--color-text-light);
  text-decoration: line-through;
  font-weight: 600;
}

.price-promo {
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--color-primary);
  line-height: 1;
}

.save-badge {
  display: inline-block;
  background: #fee2e2;
  color: #991b1b;
  font-size: 0.8rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

.package-specs {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-bottom: 22px;
  text-align: left;
}

.package-specs li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.package-specs svg {
  color: var(--color-primary);
  flex-shrink: 0;
}

.package-btn {
  margin-top: auto;
  width: 100%;
  padding: 14px 18px;
  font-size: 1rem;
}

/* ==========================================================================
   12. BORANG TEMPAHAN WHATSAPP (High-Conversion Order Form)
   ========================================================================== */
.section-order-form {
  background: var(--color-cream-bg);
  position: relative;
}

.order-wrapper {
  max-width: 760px;
  margin: 0 auto;
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: 44px;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(14, 94, 58, 0.15);
  position: relative;
}

.order-form-header {
  text-align: center;
  margin-bottom: 35px;
}

.form-group {
  margin-bottom: 22px;
  position: relative;
}

.form-label {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-primary-dark);
  margin-bottom: 8px;
}

.form-label span.req {
  color: var(--color-danger);
  margin-left: 3px;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 14px 18px;
  font-size: 1rem;
  border-radius: var(--radius-md);
  border: 1.5px solid #d1ded6;
  background: #fdfdfd;
  color: var(--color-text-main);
  transition: all var(--transition-fast);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  background: var(--color-white);
  box-shadow: 0 0 0 4px rgba(14, 94, 58, 0.12);
}

.form-input.is-invalid, .form-select.is-invalid, .form-textarea.is-invalid {
  border-color: var(--color-danger);
  background: #fff8f8;
}

.field-error-msg {
  display: none;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--color-danger);
  margin-top: 6px;
}

.form-input.is-invalid ~ .field-error-msg,
.form-select.is-invalid ~ .field-error-msg,
.form-textarea.is-invalid ~ .field-error-msg {
  display: block;
}

.package-selector-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.package-radio-label {
  display: block;
  border: 2px solid var(--color-border-light);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  cursor: pointer;
  background: #fbfdfc;
  transition: all var(--transition-fast);
  position: relative;
}

.package-radio-label:hover {
  border-color: var(--color-primary-light);
  background: var(--color-soft-green);
}

.package-radio-label.is-selected {
  border-color: var(--color-primary);
  background: #ebf7f0;
  box-shadow: 0 4px 12px rgba(14, 94, 58, 0.12);
}

.package-radio-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.radio-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.radio-title {
  font-weight: 800;
  font-size: 0.98rem;
  color: var(--color-primary-dark);
}

.radio-price {
  font-weight: 900;
  font-size: 1.15rem;
  color: var(--color-primary);
}

/* Order Summary Box */
.order-summary-box {
  background: linear-gradient(145deg, #f3f8f5, #e8f3ec);
  border: 1.5px solid rgba(14, 94, 58, 0.2);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  margin: 28px 0;
}

.order-summary-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--color-primary-dark);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.summary-rows {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.95rem;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.summary-row.total-row {
  border-top: 1.5px dashed rgba(14, 94, 58, 0.25);
  padding-top: 12px;
  margin-top: 6px;
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--color-primary-dark);
}

.summary-row.total-row .total-amount {
  color: var(--color-primary);
  font-size: 1.5rem;
}

.checkbox-group {
  margin: 24px 0 28px;
}

.custom-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text-main);
  user-select: none;
}

.custom-checkbox input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  accent-color: var(--color-primary);
  cursor: pointer;
}

.form-security-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* ==========================================================================
   13. MAKLUMAT PENGHANTARAN
   ========================================================================== */
.section-shipping {
  background: var(--color-white);
  position: relative;
}

.shipping-layout-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 36px;
  align-items: center;
  max-width: 1120px;
  margin: 0 auto;
}

.shipping-image-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(14, 94, 58, 0.14);
  border: 2px solid rgba(201, 154, 44, 0.35);
  background: var(--color-white);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
}

.shipping-image-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 46px rgba(14, 94, 58, 0.2);
  border-color: var(--color-accent-gold);
}

.shipping-img {
  width: 100%;
  height: auto;
  display: block;
}

.shipping-content-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.shipping-detail-card {
  background: var(--color-soft-green);
  border: 1px solid rgba(14, 94, 58, 0.16);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  position: relative;
}

.shipping-detail-card:hover {
  transform: translateX(4px);
  border-color: var(--color-primary);
  box-shadow: 0 8px 20px rgba(14, 94, 58, 0.1);
  background: #edf7f1;
}

.shipping-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.shipping-region-title {
  display: flex;
  align-items: center;
  gap: 10px;
}

.shipping-region-icon {
  width: 38px;
  height: 38px;
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(14, 94, 58, 0.25);
}

.shipping-region-title h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--color-primary-dark);
  margin: 0;
}

.badge-free-pos {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #f7d277 0%, #d99a2b 100%);
  color: #063d24;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  box-shadow: 0 3px 8px rgba(217, 154, 43, 0.3);
}

.shipping-days-highlight {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--color-primary-dark);
  margin-bottom: 8px;
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.shipping-days-highlight span {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-text-muted);
}

.shipping-desc {
  font-size: 0.9rem;
  color: var(--color-text-main);
  line-height: 1.5;
  margin: 0;
}

.shipping-guarantees-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.guarantee-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(14, 94, 58, 0.08);
  border: 1px solid rgba(14, 94, 58, 0.2);
  color: var(--color-primary-dark);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 700;
}

.shipping-note {
  text-align: left;
  font-size: 0.82rem;
  color: var(--color-text-muted);
  line-height: 1.45;
  margin-top: 4px;
}

@media (max-width: 900px) {
  .shipping-layout-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .shipping-image-card {
    max-width: 480px;
    margin: 0 auto;
  }
}

/* ==========================================================================
   14. SOALAN LAZIM (FAQ Accordion)
   ========================================================================== */
.section-faq {
  background: var(--color-cream-bg);
}

.faq-wrapper {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--color-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border-light);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
}

.faq-item.is-active {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--color-primary-dark);
  cursor: pointer;
  transition: color var(--transition-fast);
}

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

.faq-icon-arrow {
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  transition: transform var(--transition-normal);
  flex-shrink: 0;
}

.faq-item.is-active .faq-icon-arrow {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease-out, padding 0.35s ease-out;
  padding: 0 24px;
}

.faq-item.is-active .faq-answer {
  padding: 0 24px 20px;
}

.faq-answer-inner {
  font-size: 0.98rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  border-top: 1px solid var(--color-border-light);
  padding-top: 14px;
}

/* ==========================================================================
   15. FOOTER
   ========================================================================== */
.site-footer {
  background: var(--color-dark-bg);
  color: var(--color-white);
  padding: 60px 0 35px;
  border-top: 4px solid var(--color-primary);
}

.footer-top {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 40px;
}

.footer-title {
  font-size: 1.7rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  color: var(--color-white);
  margin-bottom: 12px;
}

.footer-contact-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 16px 24px;
  display: inline-block;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 24px;
}

.footer-contact-box strong {
  color: #f7d277;
}

.footer-cta-btn {
  margin: 0 auto;
}

.footer-links-row {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 24px;
}

.footer-link-btn {
  background: none;
  border: none;
  color: #9cb9ad;
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  transition: color var(--transition-fast);
}

.footer-link-btn:hover {
  color: #f7d277;
  text-decoration: underline;
}

.footer-disclaimer-text {
  font-size: 0.85rem;
  color: #8da49a;
  line-height: 1.6;
  text-align: center;
  max-width: 820px;
  margin: 0 auto 20px;
}

.footer-bottom-copy {
  text-align: center;
  font-size: 0.8rem;
  color: #6b8277;
}

/* ==========================================================================
   16. FLOATING WHATSAPP BUTTON
   ========================================================================== */
.floating-whatsapp {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: var(--color-white);
  padding: 12px 20px 12px 14px;
  border-radius: var(--radius-full);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.45);
  cursor: pointer;
  transition: all var(--transition-bounce);
  text-decoration: none;
}

.floating-whatsapp:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.6);
  color: var(--color-white);
}

.floating-wa-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-white);
  color: #25d366;
  border-radius: 50%;
  flex-shrink: 0;
}

.floating-wa-text {
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.1;
  white-space: nowrap;
}

.wa-status-dot {
  width: 8px;
  height: 8px;
  background: #34d399;
  border-radius: 50%;
  display: inline-block;
  margin-left: 4px;
  animation: pulseDot 1.6s infinite;
}

@keyframes pulseDot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.7; }
}

/* ==========================================================================
   LIGHTBOX MODAL & POLICY MODALS
   ========================================================================== */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.modal-backdrop.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.modal-close-btn {
  position: absolute;
  top: -45px;
  right: -5px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: var(--color-white);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: background var(--transition-fast);
}

.modal-close-btn:hover {
  background: rgba(255, 255, 255, 0.4);
}

.modal-card-dialog {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  padding: 35px;
  position: relative;
  box-shadow: var(--shadow-xl);
}

.modal-card-dialog h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--color-primary-dark);
  margin-bottom: 16px;
}

.modal-card-dialog p {
  font-size: 0.95rem;
  color: var(--color-text-main);
  line-height: 1.7;
  margin-bottom: 14px;
}

/* ==========================================================================
   SCROLL ANIMATIONS (Lightweight CSS & IntersectionObserver)
   ========================================================================== */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   RESPONSIVE DESIGN (Mobile First Optimizations)
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .hero-media {
    max-width: 520px;
    margin: 0 auto;
  }

  .packages-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .package-card.featured-package {
    transform: none;
  }
  .package-card.featured-package:hover {
    transform: translateY(-8px);
  }

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

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

@media (max-width: 768px) {
  .header-nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    width: 100%;
    background: var(--color-white);
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid var(--color-border-light);
  }

  .header-nav.is-open {
    display: flex;
  }

  .mobile-toggle {
    display: block;
  }

  .header-btn {
    padding: 8px 14px;
    font-size: 0.84rem;
  }

  .attention-grid,
  .contrast-container {
    grid-template-columns: 1fr;
  }

  .pain-points-list {
    grid-template-columns: 1fr;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .herbs-grid {
    grid-template-columns: 1fr;
  }

  .dosage-steps {
    grid-template-columns: 1fr;
  }

  .suitable-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-gallery {
    grid-template-columns: 1fr;
  }

  .packages-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }

  .shipping-grid {
    grid-template-columns: 1fr;
  }

  .package-selector-grid {
    grid-template-columns: 1fr;
  }

  .order-wrapper {
    padding: 26px 18px;
    border-radius: var(--radius-lg);
  }

  .floating-whatsapp {
    bottom: 20px;
    right: 20px;
    padding: 10px 16px 10px 12px;
  }

  .floating-wa-text {
    font-size: 0.85rem;
  }
}
