/* =========================================
   1. GLOBAL VARIABLES & RESET
   ========================================= */
:root {
  --primary-color: #00aeef;
  --secondary-color: #0056b3;
  --text-color: #333;
  --bg-light: #f9f9f9;
  --bg-white: #ffffff;
  --bg-light-blue: #f1f9ff;
  --card-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  list-style: none;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: #f4f4f4;
  padding-top: 90px; /* Ruang untuk Navbar Fixed */
}

/* =========================================
   2. NAVBAR STYLING
   ========================================= */
.container-navbar {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 7%;
  background-color: var(--bg-white);
  border-bottom: 2px solid var(--primary-color);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
}

.img-navbar {
  width: 250px;
  height: auto;
  display: block;
  margin-left: -30px;
  margin-top: 5px;
}

.container-navbar .navbar-list {
  margin-top: 12px;
}

.container-navbar .navbar-list a {
  display: inline-block;
  font-size: 1.4rem;
  margin: 0 1rem;
  color: black;
  position: relative;
  padding-bottom: 0.7rem;
}

.container-navbar .navbar-list a::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background: var(--primary-color);
  transform: scaleX(0);
  transition: transform 0.3s linear;
}

.container-navbar .navbar-list a:hover::after {
  transform: scaleX(0.7);
}

.container-navbar .navbar-extra {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.container-navbar .navbar-extra a {
  color: black;
  margin: 0 0.5rem;
}

.container-navbar .navbar-extra a:hover {
  color: var(--primary-color);
}

#hamburger-menu {
  display: none;
}

/* --- Language Dropdown --- */
.language-dropdown {
  position: relative;
  display: inline-block;
  margin-right: 10px;
  z-index: 1000;
  transform: translateY(-4px);
}

.language-dropdown .lang-btn {
  background-color: transparent;
  color: #333;
  border: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 12px;
  border-radius: 8px;
  transition: background 0.2s ease;
}

.language-dropdown .lang-btn:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

.language-dropdown .lang-btn svg {
  width: 18px;
  height: 18px;
  stroke-width: 2;
  transition: transform 0.2s ease;
  position: relative;
  top: 1px;
}

.language-dropdown:hover .lang-btn svg {
  transform: rotate(180deg);
}

.language-dropdown .lang-content {
  display: none;
  position: absolute;
  right: 0;
  background-color: white;
  min-width: 160px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
}

.language-dropdown .lang-content a {
  display: block;
  padding: 12px 16px;
  text-decoration: none;
  color: #333;
  font-size: 15px;
  transition: background 0.2s ease;
}

.language-dropdown .lang-content a:hover {
  background-color: #f3f3f3;
}

.language-dropdown:hover .lang-content {
  display: block;
}

/* --- Product Dropdown --- */
.nav-item-dropdown {
  position: relative;
  display: inline-block;
  margin: 0 1rem;
  padding-bottom: 0.7rem;
}

.nav-item-dropdown .dropdown-btn {
  display: flex;
  align-items: center;
  padding-bottom: 0;
  margin: 0;
}

.dropdown-icon {
  width: 1rem;
  height: 1rem;
  margin-left: 0.3rem;
  transition: transform 0.3s ease;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: white;
  min-width: 250px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border: 1px solid #ddd;
  border-radius: 5px;
  z-index: 1000;
  padding: 0.5rem 0;
}

.submenu-link {
  display: block;
  padding: 0.75rem 1.5rem;
  color: black;
  font-size: 1.2rem;
  margin: 0;
}

.submenu-link:hover {
  background-color: #f0f0f0;
  color: var(--primary-color);
}

.nav-item-dropdown:hover .dropdown-menu {
  display: block;
}

.nav-item-dropdown:hover .dropdown-icon {
  transform: rotate(180deg);
}

/* --- Search Form Inline --- */
.search-form-inline {
  display: flex;
  align-items: center;
  position: relative;
  max-width: 0 !important;
  opacity: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
  min-width: 0;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.search-form-inline.active {
  max-width: 200px !important;
  opacity: 1;
  margin-right: 0;
}

.search-form-inline input[type="search"] {
  width: 200px;
  padding: 8px 80px 8px 15px;
  border: 1px solid var(--primary-color);
  border-radius: 50px;
  font-size: 1rem;
  background-color: #fff;
  -webkit-appearance: none;
  appearance: none;
}

.search-form-inline button[type="submit"] {
  position: absolute;
  right: 0px;
  top: 0;
  bottom: 0;
  height: 100%;
  width: 40px;
  background: none;
  color: var(--primary-color);
  cursor: pointer;
  border-radius: 0 50px 50px 0;
}

.search-form-inline button[type="submit"] i {
  width: 20px;
  height: 20px;
}

/* =========================================
   3. HERO SECTION
   ========================================= */
.boostmoo-hero {
  padding: 0;
  margin: 0;
  background: none;
  display: block;
  min-height: auto;
  width: 100%;
  overflow: hidden;
}

.hero-banner-wrapper {
  position: relative;
  width: 100%;
}

.hero-banner-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.hero-overlay-btn {
  position: absolute;
  bottom: 28%;
  right: 19%;
  transform: translateX(-10%);
  background-color: var(--primary-color);
  color: white;
  padding: 5px 90px;
  font-size: 1.5rem;
  font-weight: 800;
  border-radius: 50px;
  text-transform: uppercase;
  box-shadow: 0 4px 15px rgba(0, 174, 239, 0.4);
  transition: all 0.3s ease;
  z-index: 10;
  text-align: center;
}

.hero-overlay-btn:hover {
  background-color: var(--secondary-color);
  transform: translateX(-10%) scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 86, 179, 0.5);
}

/* =========================================
   4. SLOGAN / FEATURE SECTION
   ========================================= */
.boostmoo-feature-section {
  background-color: #fce8ca;
  padding: 15px 10px;
  width: 100%;
}

.feature-text {
  flex: 1;
  text-align: right;
  color: #000;
  padding-right: 90px;
}

.feature-text p {
  font-family: "Open Sans", sans-serif;
  font-size: 1.3rem;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #000000;
  font-weight: bold;
}

/* =========================================
   5. GRASS SECTION (HOTSPOTS)
   ========================================= */
.boostmoo-grass-section {
  position: relative;
  width: 100%;
  min-height: 900px;
  background-image: url("/assets/rumput.png");
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 40px;
  overflow: hidden;
}

.grass-logo-top img {
  width: 250px;
  height: auto;
  margin-bottom: 30px;
  filter: drop-shadow(0 4px 5px rgba(0, 0, 0, 0.2));
  z-index: 5;
  position: relative;
  padding-top: 50px;
}

.main-image-wrapper {
  position: relative;
  width: 80%;
  max-width: 550px;
  margin: 0 auto;
}

.composite-img {
  width: 100%;
  height: auto;
  display: block;
  animation: scaleUp 0.8s ease-out;
}

@keyframes scaleUp {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.info-box {
  position: absolute;
  background: #fce8ca;
  width: 220px;
  padding: 15px 20px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  z-index: 10;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
}

.info-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 174, 239, 0.3);
}

.info-box h4 {
  color: #00aeef;
  margin: 0 0 5px 0;
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
}

.info-box p {
  color: #555;
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.4;
  font-weight: 500;
}

/* Koordinat Posisi Desktop */
.pos-top-left { top: 16%; right: 102%; text-align: right; }
.pos-bottom-left { bottom: 18%; right: 105%; text-align: right; }
.pos-top-right { top: 18%; left: 105%; text-align: left; }
.pos-bottom-right { bottom: 15%; left: 105%; text-align: left; }

/* =========================================
   6. DESCRIPTION SECTION
   ========================================= */
.boostmoo-desc-section {
  background-color: #fce8ca;
  padding: 80px 20px;
  width: 100%;
  text-align: center;
}

.desc-container {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.desc-title {
  font-family: "Poppins", sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 20px;
  text-transform: uppercase;
}

.desc-paragraph {
  font-family: "Poppins", sans-serif;
  font-size: 1.1rem;
  color: #1b1b1b;
  line-height: 1.8;
  margin-bottom: 15px;
  text-align: justify;
  text-justify: inter-word;
}

.desc-paragraph strong {
  color: #333;
  font-weight: 700;
}

.desc-image-group {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 100%;
  max-width: 700px;
}

.img-col img {
  display: block;
  height: auto;
  transition: transform 0.3s ease;
}

.img-col img:hover {
  transform: scale(1.05);
}

.logo-col img { max-width: 300px; width: 100%; padding-bottom: 45px; }
.sachet-col img { max-width: 250px; width: 100%; }

/* =========================================
   NEW SLIDER STYLE (KANDUNGAN & MANFAAT)
   ========================================= */

.benefits-container {
  background-color: #9edbfa; /* Background abu-abu sangat muda */
  padding: 80px 20px;
  width: 100%;
}

.benefits-header {
  margin-bottom: 40px; /* Jarak ke slider di bawahnya */
  display: flex; /* Gunakan Flexbox agar mudah diatur */
  justify-content: center; /* Memaksa konten (gambar) ke TENGAH */
  align-items: center;
  width: 100%;
  padding-top: 25px;
}

.title-img {
  /* Ukuran diperkecil sesuai request */
  max-width: 300px; /* Sebelumnya 500px, sekarang 300px agar lebih manis */

  width: 80%; /* Lebar relatif di layar HP */
  height: auto; /* Tinggi menyesuaikan proporsional */
  display: block;
}

.benefits-slider-wrapper {
  position: relative;
  width: 100%;
  max-width: 1200px; /* Lebar maksimal slider */
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 50px; /* Ruang untuk tombol panah */
}

/* Area Tampilan (Viewport) - Sembunyikan yang meluap */
.benefits-slider-viewport {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 20px 0; /* Ruang untuk bayangan kartu agar tidak terpotong */
}

/* Jalur Slider (Track) - Bergerak Kiri/Kanan */
.benefits-slider-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1); /* Animasi halus */
  width: 100%;
}

/* Pembungkus Per Item Slide */
.benefit-slide {
  flex: 0 0 33.333%; /* DESKTOP: 3 item per layar (100% / 3) */
  max-width: 33.333%;
  padding: 0 15px; /* Jarak antar kartu (Gutter) */
  box-sizing: border-box;
}

/* Style Kartu (Diambil dari yang lama & disesuaikan) */
.benefit-card {
  background: #ffffff; /* Ubah background jadi putih agar kontras */
  border-radius: 20px;
  box-shadow: 0 10px 20px rgba(0, 174, 239, 0.15);
  padding: 30px 20px;
  text-align: center;
  height: 100%; /* Agar tinggi kartu seragam */
  border: 1px solid #e0f4ff;
  transition: transform 0.3s;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 174, 239, 0.25);
}

/* Tombol Navigasi (Panah) */
.benefit-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--primary-color, #00aeef);
  color: white;
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition:
    background 0.3s,
    transform 0.2s;
}

.benefit-nav:hover {
  background-color: var(--secondary-color, #0056b3);
  transform: translateY(-50%) scale(1.1);
}

.benefit-nav.prev-btn {
  left: 0;
}
.benefit-nav.next-btn {
  right: 0;
}

.benefit-nav i {
  width: 24px;
  height: 24px;
}

/* Gambar Bulat */
.card-icon {
  width: 110px;
  height: 110px;
  margin: 0 auto 20px auto;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #f4fafd;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.card-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Teks */
.card-body h3 {
  color: var(--primary-color, #00aeef);
  font-family: "Poppins", sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.card-body p {
  color: #666;
  font-family: "Montserrat", sans-serif;
  font-size: 0.85rem;
  line-height: 1.5;
}

/* =========================================
   8. PHOTO DIVIDER
   ========================================= */
.boostmoo-photo-divider {
  width: 100%;
  background-color: #ffffff;
  padding: 40px 0;
  display: flex;
  justify-content: center;
}

.photo-container {
  width: 100%;
  max-width: 1200px;
  padding: 0 20px;
  box-sizing: border-box;
}

.fit-width-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* =========================================
   9. MIXED SECTION (NUTRITION TABLE)
   ========================================= */
.boostmoo-nutrition-section {
  padding: 60px 7%;
  background-color: #fff;
}

.nutrition-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  align-items: flex-start;
}

.nutrition-table-wrapper {
  flex: 1.2;
  min-width: 320px;
  border: 1px solid #333;
  color: #000;
}

.nutrition-header-card {
  border-bottom: 2px solid #000;
  padding: 15px;
  text-align: center;
}

.table-main-title {
  font-size: 1.6rem;
  font-weight: 900;
  margin: 0;
}

.table-row-header {
  background: #000;
  color: #fff;
  padding: 5px 15px;
  font-weight: bold;
  letter-spacing: 1px;
}

.nutrients-list {
  width: 100%;
  border-collapse: collapse;
}

.nutrients-list td {
  padding: 6px 15px;
  font-size: 0.9rem;
}

.bold-row { font-weight: bold; border-top: 1px solid #ccc; }
.indent-row td:first-child { padding-left: 30px; }
.separator-row { border-top: 2px solid #000; background: #f9f9f9; }
.table-footer { padding: 15px; font-size: 0.75rem; font-style: italic; border-top: 2px solid #000; }

/* Wrapper Kanan Mixed Section */
.preparation-wrapper {
  flex: 1.2;
  min-width: 320px;
}

/* =========================================
   10. SERVING & SLIDER SECTION
   ========================================= */
.boostmoo-serving-section {
  background-color: #f9f9f9;
  padding: 80px 20px;
  width: 100%;
}

.serving-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.serving-title {
  font-family: "Poppins", sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: #333;
  margin-bottom: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.serving-content-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.serving-image-col {
  flex: 1;
  display: flex;
  justify-content: center;
}

.serving-main-img {
  width: 100%;
  max-width: 450px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease;
}

.serving-main-img:hover {
  transform: scale(1.02);
}

.serving-steps-grid {
  flex: 1.2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.step-card {
  background-color: var(--primary-color);
  border-radius: 15px;
  padding: 25px 20px;
  text-align: left;
  color: #ffffff;
  position: relative;
  box-shadow: 0 8px 15px rgba(0, 174, 239, 0.3);
  transition: transform 0.3s;
}

.step-card:hover {
  transform: translateY(-5px);
}

.step-number {
  background-color: #ffffff;
  color: var(--primary-color);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-weight: 900;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.step-text h4 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.step-text p {
  font-family: "Montserrat", sans-serif;
  font-size: 0.9rem;
  line-height: 1.4;
  opacity: 0.95;
}

/* Slider Components */
.slider-container {
  margin-top: 30px;
  position: relative;
  width: 100%;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.slider-wrapper {
  display: flex;
  align-items: center;
  position: relative;
}

.slides {
  position: relative;
  width: 100%;
  overflow: visible;
  min-height: 480px;
  display: flex;
  justify-content: center;
}

.slide {
  display: none;
  flex-direction: column;
  align-items: center;
  animation: fadeSlide 0.9s ease;
}

.slide.active { display: flex; }

@keyframes fadeSlide {
  from { opacity: 0.4; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}

.img-box {
  position: relative;
  width: 100%;
  text-align: center;
  padding: 10px;
}

.img-box img {
  max-height: 380px;
  width: auto;
  object-fit: contain;
}

.slide-caption {
  margin-top: 15px;
  background: #ffffff;
  border: 2px solid var(--primary-color);
  padding: 10px 40px;
  border-radius: 10px;
  font-weight: bold;
  color: var(--secondary-color);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  display: inline-block;
}

.slider-btn {
  background: var(--primary-color);
  color: white;
  border: none;
  font-size: 20px;
  padding: 10px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 10;
  transition: 0.3s;
  width: 50px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
}

.slider-btn:hover {
  background: var(--secondary-color);
  transform: scale(1.1);
}

.slider-btn.prev { margin-right: 15px; }
.slider-btn.next { margin-left: 15px; }

.promo-badge {
  position: absolute;
  top: 273px;
  right: 10%;
  background: var(--primary-color);
  color: white;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.8rem;
  border: 4px solid #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  z-index: 5;
}

/* =========================================
   11. DOSAGE SECTION
   ========================================= */
.boostmoo-h3 {
  font-family: "Poppins", sans-serif;
  font-size: 2rem;
  font-weight: 800;
  background-color: var(--primary-color);
  color: #ffffff;
  border-radius: 50px;
  padding: 15px 50px;
  width: fit-content;
  margin: 60px auto 40px auto;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 5px 15px rgba(0, 174, 239, 0.4);
}

.dosage-box {
  background-color: #fce8ca;
  border-radius: 20px;
  padding: 30px 40px;
  max-width: 800px;
  margin: 0 auto 60px auto;
  box-shadow: 0 10px 30px rgba(0, 174, 239, 0.1);
  position: relative;
}

.dosage-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.dosage-list li {
  font-family: "Montserrat", sans-serif;
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 15px;
  padding-left: 35px;
  position: relative;
  line-height: 1.6;
}

.dosage-list li:last-child { margin-bottom: 0; }

.dosage-list li::before {
  content: "";
  width: 12px;
  height: 12px;
  background-color: var(--primary-color);
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 9px;
  box-shadow: 0 0 0 4px rgba(0, 174, 239, 0.2);
}

.dosage-list li strong {
  color: var(--primary-color);
  font-weight: 700;
}

/* =========================================
   12. WIDGETS & FOOTER
   ========================================= */
.floating-whatsapp {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 15px 10px 10px;
  min-width: 60px;
  height: 60px;
  background-color: #25d366;
  color: white;
  border-radius: 45%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease-in-out, box-shadow 0.3s;
  overflow: hidden;
}

.floating-whatsapp i { width: 30px; height: 30px; }

.floating-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.whatsapp-text {
  white-space: nowrap;
  font-size: 1em;
  font-weight: 500;
  color: white;
  margin-left: 10px;
  opacity: 1;
  max-width: 100%;
  transition: opacity 0.3s, width 0.5s ease-in-out;
  display: block;
}

.floating-whatsapp:hover .whatsapp-text {
  opacity: 1;
  max-width: 150px;
}

.container-footer {
  background-color: #333;
  color: white;
  padding: 3rem 7%;
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}

.footer-left { max-width: 45%; padding-right: 20px; }
.footer-left .h2-footer { font-size: 1.8em; margin-bottom: 10px; font-weight: 700; }
.footer-left .h3-footer { font-size: 1em; font-weight: 400; line-height: 1.6; opacity: 0.8; }

.footer-right { max-width: 50%; display: flex; flex-direction: column; }
.contact-item { display: flex; align-items: flex-start; margin-bottom: 15px; gap: 15px; }
.contact-item i { width: 20px; height: 20px; color: var(--primary-color); margin-top: 5px; flex-shrink: 0; }
.contact-item p { font-size: 1em; line-height: 1.4; margin: 0; }

/* =========================================
   13. MEDIA QUERIES (RESPONSIVE)
   ========================================= */

/* --- TABLET (max-width: 1024px) --- */
@media (max-width: 1024px) {
  .hero-overlay-btn {
    font-size: 1.2rem;
    padding: 12px 30px;
    bottom: 15%;
    right: 8%;
  }
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* --- MOBILE (max-width: 768px) --- */
@media (max-width: 768px) {
  html { font-size: 62.5%; }

  /* Navbar Mobile */
  #hamburger-menu { display: inline-block; }

  .container-navbar .navbar-list {
    position: absolute;
    top: 100%;
    right: -100%;
    background-color: white;
    width: 30rem;
    height: 100vh;
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem;
    transition: right 0.3s ease;
    display: flex;
    margin: 0;
    font-size: 2rem;
    z-index: 9999;
  }
  .container-navbar .navbar-list.active { right: 0; }
  .container-navbar .navbar-list a::after { display: none; }
  
  .img-navbar { width: 180px; margin-left: -15px; }

  .language-dropdown .lang-btn .lang-text { display: none; }
  .language-dropdown .lang-btn { padding: 8px; gap: 2px; }

  /* Dropdown Mobile */
  .container-navbar .navbar-list.active .nav-item-dropdown { width: 100%; margin: 0; padding: 0; }
  .container-navbar .navbar-list.active .nav-item-dropdown .dropdown-btn { display: flex; justify-content: space-between; align-items: center; width: 100%; padding: 0.5rem 0; margin: 1.5rem 0; font-size: 2rem; }
  .container-navbar .navbar-list.active .dropdown-icon { display: inline-block; width: 1.5rem; height: 1.5rem; transition: transform 0.3s ease; transform: rotate(0deg); }
  .container-navbar .navbar-list.active .nav-item-dropdown.active .dropdown-icon { transform: rotate(180deg); }
  .container-navbar .navbar-list.active .dropdown-menu { position: static; display: none; width: 100%; background-color: transparent; box-shadow: none; border: none; padding: 0; margin: 0; }
  .container-navbar .navbar-list.active .nav-item-dropdown.active .dropdown-menu { display: block; }
  .container-navbar .navbar-list.active .dropdown-menu .submenu-link { display: block; font-size: 1.8rem; color: #555; margin: 0; padding: 0.7rem 0 0.7rem 1.6rem; width: 100%; }
  
  /* Search Form Mobile */
  .search-form-inline { position: absolute; top: 100%; left: 0; right: 0; padding: 0.5rem 7%; background-color: transparent; box-shadow: none; border-top: none; z-index: 999; max-width: 0; width: 100%; opacity: 0; transition: all 0.3s ease; display: flex; overflow: visible; }
  .search-form-inline.active { max-width: 100%; opacity: 1; }
  .search-form-inline input[type="search"] { flex: 1; margin-right: 0.5rem; }

  /* Hero Section Mobile */
  .boostmoo-hero { padding-top: 0; }
  .hero-overlay-btn { font-size: 1.5rem; padding: 5px 30px; bottom: 12%; right: 20%; width: auto; }

  /* Feature Text */
  .feature-text { padding-right: 50px; }

  /* Grass Section (Hotspot) - PERBAIKAN STACKING */
  .main-image-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    padding-bottom: 20px;
  }
  .composite-img {
    width: 90%;
    height: auto;
    order: 1;
    margin-bottom: 10px;
  }
  /* Reset Posisi Info Box Mobile */
  .info-box {
    position: relative !important;
    top: auto !important; bottom: auto !important; left: auto !important; right: auto !important;
    order: 2;
    width: 45%;
    margin: 0;
    text-align: center !important;
    border: 1px solid #e0e0e0 !important;
    border-radius: 12px;
    background: #ffffff;
    padding: 15px 10px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 90px;
  }
  .info-box h4 { font-size: 0.85rem; margin-bottom: 4px; }
  .info-box p { display: block !important; font-size: 0.7rem; line-height: 1.3; color: #666; }
  .info-box:hover { transform: none; }

  /* KONTROL URUTAN (ORDER) DI MOBILE */
  
  /* 1. Gambar Produk tetap paling atas */
  .composite-img {
    order: 1;
  }

  /* 2. Urutan Box Keterangan */
  /* Semakin kecil angkanya, semakin di atas posisinya */
  
  .pos-top-left { 
    order: 2; /* Susu Sapi (Urutan ke-2) */
  } 
  
  .pos-bottom-right { 
    order: 3; /* Ikan Gabus -> Kita taruh di urutan ke-4 */
  }
  .pos-top-right { 
    order: 5; /* Daun Kelor -> Kita taruh paling bawah (Urutan ke-5) */
  }
  .pos-bottom-left { 
    order: 4; /* Temulawak (Urutan ke-3) */
  }

  /* Descriptions */
  .desc-image-group { flex-direction: column; align-items: center; gap: 30px; }
  .desc-title { font-size: 1.8rem; }
  .logo-col img { max-width: 200px; padding-bottom: 20px; }
  .sachet-col img { max-width: 150px; }

  .benefits-slider-wrapper {
    padding: 0; /* Hapus padding wrapper di HP */
  }

  /* Ubah jadi 1 Kartu per Layar */
  .benefit-slide {
    flex: 0 0 100%; /* 1 item full width */
    max-width: 100%;
    padding: 0 40px; /* Beri padding kiri-kanan agar kartu tidak nempel pinggir layar */
  }

  /* Perkecil Ukuran Kartu di HP agar tidak raksasa */
  .benefit-card {
    padding: 20px 15px; /* Kurangi padding dalam */
    max-width: 320px; /* Batasi lebar maksimal kartu */
    margin: 0 auto; /* Tengah-in kartu */
  }

  .card-icon {
    width: 80px; /* Perkecil ikon */
    height: 80px;
    margin-bottom: 15px;
  }

  .card-body h3 {
    font-size: 1rem; /* Kecilkan font judul */
  }

  .card-body p {
    font-size: 0.85rem; /* Kecilkan font deskripsi */
  }

  /* Posisi Tombol di HP */
  .benefit-nav {
    width: 35px;
    height: 35px;
    background-color: rgba(0, 174, 239, 0.8); /* Agak transparan */
  }

  /* Geser tombol masuk sedikit ke dalam area slider */
  .benefit-nav.prev-btn {
    left: 0px;
  }
  .benefit-nav.next-btn {
    right: 0px;
  }


  /* Nutrition & Serving */
  .nutrition-container, .mixed-content-row, .serving-content-wrapper { flex-direction: column; gap: 40px; }
  .nutrition-table-wrapper, .preparation-wrapper { width: 100%; order: unset; }
  .serving-image-col, .serving-steps-grid { width: 100%; flex: auto; }
  .serving-steps-grid { grid-template-columns: 1fr; }
  .serving-title { font-size: 2rem; }

  /* Dosage Mobile */
  .boostmoo-h3 { font-size: 1.5rem; margin-top: 30px; }
  .dosage-box { width: 90%; padding: 20px; margin-bottom: 40px; }
  .dosage-list li { font-size: 0.95rem; padding-left: 25px; }
  .dosage-list li::before { width: 10px; height: 10px; top: 7px; }

  /* Slider Mobile */
  .slider-container { width: 100%; max-width: 350px; margin: 20px auto; }
  .slides { display: block; min-height: 320px; }
  .slide.active { display: flex; flex-direction: column; align-items: center; width: 100%; }
  .img-box { display: block !important; width: 100%; text-align: center; margin-bottom: 10px; }
  .img-box img { max-width: 200px; height: auto; display: inline-block; }
  
  .slider-btn { position: absolute; top: 130px; width: 40px; height: 40px; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); }
  .slider-btn.prev { left: -10px; }
  .slider-btn.next { right: -10px; }
  
  .slide-caption { background: #fff; padding: 8px 20px; font-size: 14px; margin-top: 5px; }
  .promo-badge { display: none; }
}