html {
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
    margin: 0;
}

/* NAVBAR */
.custom-navbar {
    background: transparent;
    width: 100%;
    z-index: 1000;
}

.wrap-header-mobile {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
}

.wrap-icon-header a {
    color: #333;
    font-size: 20px;
    margin-left: 15px;
}

/* HAMBURGER */
.btn-hamburger {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 3000;

    width: 44px;
    height: 44px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    cursor: pointer;
    background: transparent;
}

.btn-hamburger span {
    width: 26px;
    height: 3px;
    background: #000;
    margin: 4px 0;
    border-radius: 2px;
    transition: 0.3s;
}

.btn-hamburger:hover {
    transform: scale(1.05);
}

/* FULLSCREEN MENU */
/* FULLSCREEN OVERLAY */
.fullscreen-menu {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 2000;

    opacity: 0;
    visibility: hidden;
    transition: opacity .4s ease;
}

/* ACTIVE OVERLAY */
.fullscreen-menu.active {
    opacity: 1;
    visibility: visible;
}

/* MENU PANEL */
.menu-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 85%;
    max-width: 360px;
    height: 100vh;
    background: linear-gradient(to bottom, #a6a000, #ed6700);
    padding: 80px 30px;
    transform: translateX(100%);
    transition: transform .4s ease;
}

/* SLIDE IN */
.fullscreen-menu.active .menu-content {
    transform: translateX(0);
}

/* MENU LIST */
.menu-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-content ul li {
    margin-bottom: 24px;
}

.menu-content ul li a {
    color: #fff;
    font-size: 22px;
    text-decoration: none;
    transition: .3s;
}

.menu-content ul li a:hover {
    color: #f1c40f;
}

/* CLOSE BUTTON */
.close-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 36px;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
}

.logo-mobile img {
    width: 120px;
    max-width: none;
    margin-right: 10px;
}

.belakang {
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

.belakang::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("../images/pattern-daun.jpg");
    background-size: cover;
    opacity: .9;
    filter: blur(2px);
    z-index: -1;
}

.fw-light {
  font-weight: 200 !important;
}

.text-muted {
  --bs-text-opacity: 1;
  color: #6c757d !important;
  text-align: center;
  font-size: 20px;
}

.display-3 {
    font-size: 80px;
    text-align: center;
    text-transform: uppercase;
    background-image: linear-gradient(to bottom, #a6a000, #ed6700);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent; /* Untuk kompatibilitas browser */
}

@media (max-width: 992px) {
  .text-muted {
      --bs-text-opacity: 1;
      color: #6c757d !important;
      text-align: center;
      font-size: 14px;
      padding-top: 30%;
    }

.display-3 {
        font-size: 40px;
        text-align: center;
        text-transform: uppercase;
        background-image: linear-gradient(to bottom, #a6a000, #ed6700);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        -webkit-text-fill-color: transparent; /* Untuk kompatibilitas browser */
    }
}

.btn-pri {
    background-color: #ed6700;
    color: white;
}

.btn-pri:hover {
    background-color: #a6a000;
}

@media (max-width: 992px) {
    .btn-pri {
        width: 70%;
        margin: 0 auto;
        display: block;
    }

    .btn-outline-dark {
        width: 70%;
        margin: 0 auto;
        display: block;
    }
}

#bottle-container {
    position: fixed;
    top: 50%;
    left: 80%;
    width: auto;
    height: 25vh;
    transform: translate(-50%, -50%);
    z-index: 20;
    pointer-events: none;
    will-change: transform;
}

#bottle-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,.25));
}

@media (min-width: 768px) {
    #bottle-container {
        height: 50vh;
    }
}

.khasiat {
  min-height: 80vh;
  margin-top: 100px;
  /*background: linear-gradient(to bottom, #a6a000, #ed6700);*/
  background: linear-gradient(
    to bottom,
    #a6a000 0%,
    #ed6700 40%,
    #0a0a0a 100%
  );
}

.galeri-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

/* CARD */
.khasiat-card {
  background: rgba(255,255,255,0.60);
  border-radius: 20px;
  border: none;
  padding: 30px 20px;
  transition: transform .3s ease, box-shadow .3s ease;
}

.khasiat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0,0,0,.15);
}

/* ICON */
.khasiat-icon {
  font-size: 40px;
  color: #ed6700;
  margin-bottom: 15px;
}

/* 2 CARD TERAKHIR DI TENGAH */
.galeri-grid .khasiat-card:nth-child(4) {
  grid-column: 1 / 2;
}

.galeri-grid .khasiat-card:nth-child(5) {
  grid-column: 2 / 3;
}

/* TEXT */
.khasiat-card .card-title {
  font-weight: 600;
  margin-top: 15px;
}


/* TABLET */
@media (max-width: 992px) {
  .galeri-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .galeri-grid .khasiat-card:nth-child(4),
  .galeri-grid .khasiat-card:nth-child(5) {
    grid-column: auto;
  }
}

/* MOBILE */
@media (max-width: 576px) {
  .galeri-grid {
    grid-template-columns: 1fr;
  }
}

.display-1 {
    font-size: 48px;
    font-weight: 800;
    text-align: center;
    /*text-transform: uppercase;*/
    background-color: #fff;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent; /* Untuk kompatibilitas browser */
}

@media (max-width: 992px) {
.display-1 {
        font-size: 40px;
    }
}

.komposisi-section {
  background: linear-gradient(
    to bottom,
    #0a0a0a 0%,
    #050505 60%,
    #000000 100%
  );
  color: #fff;
  padding: 100px 0;
  overflow: hidden;
}

.komposisi-header {
  padding: 0 60px;
  margin-bottom: 40px;
}

.komposisi-header h2 {
  font-size: 48px;
  font-weight: 800;
}

.text-accent {
  color: #ed6700;
}

.komposisi-header p {
  color: #aaa;
  margin-top: 10px;
}

/* SLIDER */
.komposisi-slider {
  display: flex;
  gap: 30px;
  padding: 0 60px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
}

.komposisi-slider::-webkit-scrollbar {
  display: none;
}

/* CARD */
.komposisi-card {
  min-width: 340px;
  height: 460px;
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  scroll-snap-align: center;
  background: #111;
}

.komposisi-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.komposisi-card:hover img {
  transform: scale(1.1);
}

/* OVERLAY */
.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,.85),
    rgba(0,0,0,.2)
  );
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.overlay .tag {
  color: #ed6700;
  font-size: 12px;
  letter-spacing: 2px;
  margin-bottom: 6px;
}

.overlay h3 {
  font-size: 28px;
  margin: 0;
}

.overlay em {
  font-size: 14px;
  color: #ccc;
}

.overlay p {
  font-size: 14px;
  margin-top: 10px;
  color: #ddd;
}

@media (max-width: 768px) {
  .komposisi-header {
    padding: 0 20px;
  }

  .komposisi-slider {
    padding: 0 20px;
  }

  .komposisi-card {
    min-width: 280px;
    height: 400px;
  }
}

.kontak-section {
    min-height: 100vh;
    background: linear-gradient(
        to bottom,
        #050505 0%,
        #a6a000 60%,
        #ed6700 100%
      );
    color: #fff;
    overflow: hidden;
}

.kontak-img {
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
  100% { transform: translateY(0px); }
}

.kontak-img {
  max-width: 340px;
  transition: transform .5s ease;
}

.kontak-img:hover {
  transform: scale(1.05);
}

.btn-pesan {
  display: inline-block;
  background: #050505;
  color: #fff;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 4px;
  padding: 20px 60px;
  text-decoration: none;
  font-size: 20px;
  transition: all 0.3s ease;
  border: none;
  border-radius: 2px;
}

.btn-pesan:hover {
  background: #a6a000;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

@media (max-width: 992px) {
    .btn-pesan {
        width: 70%;
        margin: 0 auto;
        display: block;
    }
}

.legal-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("../images/pattern-daun.jpg");
    background-size: cover;
    opacity: .9;
    filter: blur(2px);
    z-index: -1;
}

.legal-section {
    min-height: 50vh;
    position: relative;
    overflow-x: hidden;
}

.legal-card {
  padding: 20px;
  background: rgba(255,255,255,0.7);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.legal-card img {
  max-height: 90px;
}

.legal-card:hover {
  transform: translateY(-5px);
  background: rgba(255,255,255,0.1);
}

.legal-card h5 {
    font-size: 20px;
    font-weight: 400;
    text-align: center;
    background-color: #ed6700;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent; /* Untuk kompatibilitas browser */
}

.display-5 {
    font-size: 50px;
    text-align: center;
    text-transform: uppercase;
    background-image: linear-gradient(to bottom, #a6a000, #ed6700);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent; /* Untuk kompatibilitas browser */
}

.accordion-item {
    background: linear-gradient(to bottom, #a6a000, #ed6700);
}

.accordion-body {
    color: white;
}

.social-icon i {
  background: linear-gradient(to bottom, #a6a000, #ed6700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: 0.3s ease;
}

.social-icon i:hover {
  transform: scale(1.2);
}

.bg-footer {
    background-image: linear-gradient(to bottom, #a6a000, #ed6700);
}