* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: #0f172a;
  color: white;
}

/* CONTAINER */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* NAVBAR */
.navbar {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(10px);
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo {
  font-weight: 600;
  font-size: 20px;
  color: #333;
}

.logo span {
  color: #c9a96e;
}

.menu a {
  margin: 0 15px;
  text-decoration: none;
  color: #333;
  font-size: 14px;
}

.btn-book {
  background: #c9a96e;
  color: white;
  padding: 10px 18px;
  border-radius: 20px;
  text-decoration: none;
  font-size: 14px;
}

/* HERO */
.hero {
  min-height: 80vh;
  padding-top: 120px;
  padding-bottom: 60px;;

  display: flex;
  justify-content: center;
  align-items: center;

  position: relative;

  /* FOTO + OVERLAY */
  background:
    linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
    url('/img/hero.jpg');

  background-size: cover;
  background-position: 100%;
  background-attachment: fixed;
}


.overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(0,0,0,0.2), rgba(0,0,0,0.8));
}

.hero-content {
  text-align: center;
  z-index: 2;
  max-width: 750px;
  text-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.subtitle {
  letter-spacing: 3px;
  font-size: 12px;
  color: #c9a96e;
  margin-bottom: 15px;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 54px;
  line-height: 1.3;
  margin-bottom: 20px;
}

.subtitle {
  letter-spacing: 4px;
  font-size: 12px;
  color: #d6b98c;
  margin-bottom: 15px;
}

.desc {
  color: #e2e8f0;
  margin-bottom: 30px;
}

.desc {
  color: #cbd5f5;
  margin-bottom: 30px;
}

/* =======================
   HERO ANIMATION
======================= */

/* default (sembunyi dulu) */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
}

/* aktif */
.fade-up.show {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.8s ease;
}

/* delay biar berurutan */
.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }
.delay-3 { transition-delay: 0.6s; }
.delay-4 { transition-delay: 0.8s; }

/* BUTTON */
.btn-wa {
  background: #c9a96e;
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  color: white;
  display: inline-block;
  transition: 0.3s;
  box-shadow: 0 10px 30px rgba(201,169,110,0.4);
}

.btn-wa:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(201,169,110,0.6);
}

/* SCROLL */
.scroll-down {
  margin-top: 40px;
  font-size: 24px;
  opacity: 0.7;
}

/* FITUR ICON */
.fitur {
  background: #ffffff;
  padding: 60px 0;
}

.fitur-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* ITEM */
.fitur-item {
  flex: 1;
  min-width: 150px;
}

/* ICON BULAT */
.icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 10px;
  border-radius: 50%;
  background: #f3eee7;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #c9a96e;
  transition: 0.3s;
}

/* HOVER EFFECT */
.fitur-item:hover .icon {
  background: #c9a96e;
  color: white;
  transform: translateY(-5px);
}

/* TEXT */
.fitur-item p {
  font-size: 14px;
  color: #333;
}

/* TENTANG */
.tentang {
  background: #f6f3ee;
  color: #2b2b2b;
  padding: 100px 0;
}

.tentang-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
}

.tentang-text {
  flex: 1;
}

.label {
  font-size: 12px;
  letter-spacing: 3px;
  color: #c9a96e;
  margin-bottom: 15px;
}

.tentang-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  margin-bottom: 20px;
}

.tentang-text .desc {
  color: #555;
  line-height: 1.8;
}

.tentang-text .small {
  font-size: 14px;
  color: #777;
}

/* IMAGE */
.tentang-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.image-card {
  width: 100%;
  max-width: 420px;
  height: 300px;
  border-radius: 20px;
  background: linear-gradient(135deg, #6b4c35, #3e2c21);
  position: relative;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 20px;
}

/* =======================
   PREMIUM CARD
======================= */

.premium-card {

  background:
    linear-gradient(
      135deg,
      #4b3325,
      #2d1f17
    );

  display: flex;
  flex-direction: column;

  align-items: center;
  justify-content: center;

  text-align: center;

  padding: 40px;
}

/* ICON */
/* ICON RUMAH BESAR */
.villa-main-icon {
  font-size: 90px;
  color: #d6b98c;

  margin-bottom: 25px;

  opacity: 0.95;

  transition: 0.4s ease;
}

/* HOVER */
.premium-card:hover .villa-main-icon {
  transform: translateY(-5px) scale(1.05);
}

/* MOBILE */
@media (max-width: 768px) {

  .villa-main-icon {
    font-size: 70px;
  }

}

/* TITLE */
.premium-card h3 {
  font-size: 26px;
  color: #fff;

  margin-bottom: 10px;

  font-family: 'Playfair Display', serif;
}

/* TEXT */
.premium-card p {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255,255,255,0.75);
}



/* MOBILE */
@media (max-width: 768px) {

  .premium-card {
    padding: 35px 25px;
  }

  .villa-icon {
    width: 75px;
    height: 75px;
  }

  .villa-icon i {
    font-size: 30px;
  }

  .premium-card h3 {
    font-size: 22px;
  }

  .premium-card p {
    font-size: 13px;
  }

}

/* =======================
   FASILITAS
======================= */
.fasilitas {
  background: #ffffff; /* cream warm */
  padding: 100px 0;
}

/* TEXT CENTER */
.center {
  text-align: center;
}

/* TITLE */
.title {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  color: #2b2b2b;
  margin-bottom: 10px;
}

/* GARIS BAWAH TITLE */
.title::after {
  content: "";
  width: 40px;
  height: 2px;
  background: #c9a96e;
  display: block;
  margin: 10px auto 40px;
}

/* GRID */
.fasilitas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* CARD */
.fasilitas-card {
  background: #ffffff; /* soft white */
  border-radius: 15px;
  padding: 30px 20px;
  text-align: center;

  /* BORDER HALUS */
  border: 1px solid #e5dfd6;

  transition: all 0.3s ease;
}

/* ICON BULAT */
.fasilitas-card .icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;

  background: #f3eee7;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  transition: 0.3s;
}

.fasilitas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* ICON FONT AWESOME */
.fasilitas-card .icon i {
  font-size: 22px;
  color: #c9a96e;
  transition: 0.3s;
}

/* HOVER */
.fasilitas-card:hover .icon {
  background: #c9a96e;
}

.fasilitas-card:hover .icon i {
  color: #fff;
}

/* JUDUL */
.fasilitas-card h3 {
  font-size: 16px;
  color: #2b2b2b;
  margin-bottom: 5px;
}

/* DESKRIPSI */
.fasilitas-card p {
  font-size: 13px;
  color: #777;
}

/* HOVER EFFECT */
.fasilitas-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.08);

  /* border jadi gold halus */
  border: 1px solid #c9a96e;
}

/* ICON HOVER */
.fasilitas-card:hover i {
  background: #c9a96e;
  color: #fff;
}

/* =======================
   GALERI
======================= */
.galeri {
  background: #f6f3ee;
  padding: 100px 0;
}

/* GRID */
.galeri-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 220px;
  gap: 20px;
}

/* ITEM */
.galeri-item {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;

  background-size: cover;
  background-position: center;

  transition: 0.4s;
}

/* ITEM BESAR */
.galeri-item.besar {
  grid-row: span 2;
}

/* OVERLAY GELAP */
.galeri-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.6),
    rgba(0,0,0,0.2)
  );
  transition: 0.3s;
}

/* TEXT */
.galeri-item span {
  position: relative;
  z-index: 2;
  color: #fff;
  font-size: 13px;
  letter-spacing: 2px;
}

/* HOVER PREMIUM */
.galeri-item:hover {
  transform: scale(1.05);
}

.galeri-item:hover::before {
  background: rgba(0,0,0,0.7);
}

/* =======================
   GAMBAR ASLI
======================= */
.pool {
  background-image: url('../img/depan/6.jpeg');
}

.bedroom {
  background-image: url('../img/kamartidur/18.jpeg');
}

.living {
  background-image: url('../img/ruangtamu/1.jpeg');
}

.night {
  background-image: url('../img/pool/5.jpeg');
}

.lighting {
  background-image: url('../img/dapur/11.jpeg');
}

/* =======================
   LIGHTBOX
======================= */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.lightbox-img {
  max-width: 90%;
  max-height: 85%;
  border-radius: 10px;
  animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* tombol close */
.lightbox .close {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 30px;
  color: #fff;
  cursor: pointer;
}

/* tombol next prev */
.lightbox .prev,
.lightbox .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 40px;
  color: #fff;
  cursor: pointer;
  padding: 10px;
}

.lightbox .prev { left: 30px; }
.lightbox .next { right: 30px; }

/* INDICATOR */
.indicator {
  position: absolute;
  bottom: 80px;
  color: #fff;
  font-size: 14px;
}

/* THUMBNAILS */
.thumbnails {
  position: absolute;
  bottom: 20px;
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 10px;
}

.thumbnails img {
  width: 70px;
  height: 50px;
  object-fit: cover;
  border-radius: 6px;
  opacity: 0.6;
  cursor: pointer;
  transition: 0.3s;
}

.thumbnails img.active {
  opacity: 1;
  border: 2px solid #c9a96e;
}

/* =======================
   VIDEO SECTION
======================= */
.video {
  background: #ffffff;
  padding: 100px 0;
}

/* BOX */
/* BOX */
.video-box {
  position: relative;

  width: 100%;
  max-width: 900px;

  aspect-ratio: 16 / 9;

  margin: 50px auto 0;

  border-radius: 20px;
  overflow: hidden;

  /* background gradient */
  background: linear-gradient(135deg, #0f2a22, #0b1f33);

  box-shadow: 0 20px 40px rgba(0,0,0,0.15);

  cursor: pointer;
}

/* OVERLAY */
.video-overlay {
  position: absolute;
  inset: 0;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  color: #d6b98c;
  z-index: 2;

  transition: 0.3s;
}

/* PLAY BUTTON */
.play-btn {
  width: 70px;
  height: 70px;

  border-radius: 50%;
  border: 2px solid #c9a96e;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 15px;

  transition: 0.3s;
}

.play-btn i {
  color: #c9a96e;
  font-size: 20px;
}

/* TEXT */
.video-overlay p {
  font-size: 12px;
  letter-spacing: 2px;
}

/* HOVER */
.video-box:hover .play-btn {
  background: #c9a96e;
}

.video-box:hover .play-btn i {
  color: white;
}

/* VIDEO */
.video-box video {
  width: 100%;
  height: 100%;

  object-fit: cover;

  display: none;
}

/* =======================
   HARGA
======================= */
.harga {
  background: #f3eee7;
  padding: 100px 0;
}

/* GRID */
.harga-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 50px;
  flex-wrap: wrap;
}

/* CARD */
.harga-card {
  background: #faf7f2;
  border-radius: 20px;
  padding: 40px 30px;
  width: 320px;
  text-align: center;

  border: 1px solid #e5dfd6;
  position: relative;

  transition: 0.3s;
}

/* CARD ACTIVE (WEEKEND) */
.harga-card.active {
  border: 2px solid #c9a96e;
  transform: scale(1.05);
}

/* BADGE */
.badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #c9a96e;
  color: white;
  font-size: 10px;
  padding: 5px 10px;
  border-radius: 10px;
}

/* TEXT */
.jenis {
  font-size: 12px;
  letter-spacing: 2px;
  color: #c9a96e;
  margin-bottom: 10px;
}

.harga-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: #2b2b2b;
  margin-bottom: 15px;
}

.mulai {
  font-size: 12px;
  color: #888;
}

.price {
  font-size: 32px;
  color: #c9a96e;
  margin: 10px 0;
}

.per {
  font-size: 12px;
  color: #888;
}

/* BUTTON */
.btn-harga {
  display: inline-block;
  margin-top: 25px;
  padding: 12px 25px;
  border-radius: 25px;
  background: #c9a96e;
  color: white;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.btn-harga:hover {
  transform: scale(1.05);
}

/* NOTE */
.note {
  margin-top: 40px;
  font-size: 12px;
  color: #999;
}


/* =======================
   LOKASI - NEW DESIGN
======================= */
.lokasi {
  background: #ffffff;
  padding: 100px 0;
}

/* BOX UTAMA */
.lokasi-box {
  margin-top: 50px;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
  align-items: center;
}

/* MAP */
.lokasi-map iframe {
  width: 100%;
  height: 380px;
  border: none;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* INFO CARD */
.lokasi-info {
  background: #ffffff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);

  display: flex;
  flex-direction: column;
  gap: 25px;
  
}

/* ITEM */
.lokasi-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.lokasi-item i {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #f3eee7;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c9a96e;
  font-size: 16px;
}

/* TEXT */
.lokasi-item h4 {
  font-size: 16px;
  color: #2b2b2b;
  margin-bottom: 3px;
}

.lokasi-item p {
  font-size: 13px;
  color: #777;
}

/* BUTTON */
.btn-lokasi {
  margin-top: 10px;
  text-align: center;
  padding: 14px;
  border-radius: 30px;
  background: #c9a96e;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.btn-lokasi:hover {
  transform: scale(1.05);
}

.btn-map {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 25px;
  border-radius: 25px;
  background: #c9a96e;
  color: white;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.btn-map:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}


/* =======================
   TESTIMONI
======================= */
.testimoni {
  background: #f3eee7;
  padding: 100px 0;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

.center {
  text-align: center;
}

/* TITLE */
.label {
  font-size: 12px;
  letter-spacing: 2px;
  color: #c9a96e;
  margin-bottom: 10px;
}

.title {
  font-size: 32px;
  font-family: 'Playfair Display', serif;
}

/* GRID */
.testimoni-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;

  align-items: stretch; /* WAJIB */
}

/* CARD */
.testimoni-card {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  text-align: left;
  border: 1px solid #e5dfd6;
  transition: 0.3s;

  display: flex;
  flex-direction: column;
  justify-content: space-between; /* bikin isi rata atas-bawah */
  height: 100%; /* bikin semua card sama tinggi */
}

/* HOVER */
.testimoni-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

/* STARS */
.stars {
  color: #c9a96e;
  margin-bottom: 15px;
  font-size: 14px;
}

/* TEXT */
.text {
  font-size: 14px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 20px;

  min-height: 90px; /* biar semua rata */
}

/* USER */
.user {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* AVATAR */
.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f3eee7;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #c9a96e;
  font-weight: 600;
}

/* NAME */
.user h4 {
  font-size: 14px;
  margin-bottom: 2px;
}

/* ROLE */
.user span {
  font-size: 12px;
  color: #888;
}




/* =======================
   FAQ
======================= */
.faq {
  background: #ffffff;
  padding: 50px 0;
}

.faq-list {
  max-width: 700px;
  margin: 50px auto 0;
  text-align: left;
}

.faq-item {
  border-bottom: 1px solid #666;
  padding: 15px 0;
  cursor: pointer;
}

/* PERTANYAAN */
.faq-question {
  display: flex;
  justify-content: space-between;
  font-weight: 500;
  font-size: 15px;
  color: #000000; /* ✅ TAMBAH INI */
}

.faq-question span {
  transition: 0.3s;
  color: #666; /* biar icon juga sama */
}

/* JAWABAN */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  font-size: 14px;
  color: #666; /* sudah benar */
  line-height: 1.6;
  transition: all 0.3s ease;
}

/* ACTIVE */
.faq-item.active .faq-answer {
  max-height: 200px;
  margin-top: 10px;
}

.faq-item.active .faq-question span {
  transform: rotate(180deg);
}


/* =======================
   CTA
======================= */
.cta {
  background: linear-gradient(135deg, #1f2b1f, #6c7268);
  padding: 50px 20px;
  color: #fff;
}

.cta h2 {
  font-size: 36px;
  font-family: 'Playfair Display', serif;
  margin: 20px 0;
}

.cta .desc {
  color: #ddd;
  margin-bottom: 30px;
}

.btn-cta {
  background: #c9a96e;

  padding: 15px 30px;

  border-radius: 50px;

  color: #fff;
  text-decoration: none;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 10px;

  transition: 0.3s;
}

.btn-cta:hover {
  opacity: 0.85;
}


/* =======================
   FOOTER
======================= */
.footer {
  background: #3b2c23;
  color: #ccc;
  padding: 10px 0;
}

.footer-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer .logo {
  font-size: 20px;
  color: #fff;
}

.footer .logo span {
  color: #c9a96e;
}

.social a {
  color: #ccc;
  margin-left: 10px;
  font-size: 14px;
  width: 35px;
  height: 35px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #555;
  border-radius: 50%;
  transition: 0.3s;
}

.social a:hover {
  background: #c9a96e;
  color: #fff;
  border-color: #c9a96e;
}

#tentang,
#fasilitas,
#galeri,
#harga,
#faq {
  scroll-margin-top: 120px;
}


/* =======================
   RESPONSIVE
======================= */

/* =======================
   TABLET
======================= */
@media (max-width: 992px) {

  /* NAVBAR */
  .nav-wrapper {
    flex-direction: column;
    gap: 15px;
  }

  .menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .menu a {
    margin: 5px 10px;
  }

  /* HERO */
  .hero h1 {
    font-size: 42px;
  }

  /* TENTANG */
  .tentang-wrapper {
    flex-direction: column;
    gap: 40px;
  }

  /* FASILITAS */
  .fasilitas-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* GALERI */
  .galeri-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* TESTIMONI */
  .testimoni-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* LOKASI */
  .lokasi-box {
    grid-template-columns: 1fr;
  }

  /* FOOTER */
  .footer-wrapper {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}


/* =======================
   MOBILE
======================= */
@media (max-width: 768px) {

  .container {
    width: 92%;
  }

  /* HERO */
  .hero {
    padding-top: 140px;
    background-attachment: scroll;
  }

  .hero h1 {
    font-size: 32px;
    line-height: 1.4;
  }

  .desc {
    font-size: 14px;
    line-height: 1.7;
  }

  /* BUTTON */
  .btn-wa,
  .btn-harga,
  .btn-map,
  .btn-lokasi,
  .btn-cta {
    width: 100%;
    text-align: center;
  }

 /* FITUR MOBILE KECIL */
.fitur-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;

  flex-wrap: nowrap;
}

.fitur-item {
  flex: 1;
  min-width: 0;
}

/* ICON */
.fitur-item .icon {
  width: 50px;
  height: 50px;
  font-size: 18px;
}

/* TEXT */
.fitur-item p {
  font-size: 11px;
  line-height: 1.4;
}
  /* FASILITAS */
  .fasilitas-grid {
    grid-template-columns: 1fr;
  }

  /* VIDEO */
  .video-box {
    height: 250px;
  }

  /* TESTIMONI */
  .testimoni-grid {
    grid-template-columns: 1fr;
  }

  /* FAQ */
  .faq-question {
    font-size: 14px;
    gap: 10px;
  }

  /* CTA */
  .cta h2 {
    font-size: 28px;
  }

  /* FOOTER */
  .footer-wrapper {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

}


/* =======================
   MOBILE KECIL
======================= */
@media (max-width: 480px) {

  /* TITLE */
  .title {
    font-size: 28px;
  }

  .tentang-text h2 {
    font-size: 30px;
  }

  .hero h1 {
    font-size: 26px;
  }

  /* MENU */
  .menu {
    gap: 5px;
  }

  .menu a {
    font-size: 13px;
  }

  /* CARD */
  .harga-card {
    width: 100%;
    padding: 30px 20px;
  }

  .fasilitas-card,
  .testimoni-card {
    padding: 25px 20px;
  }

  /* LIGHTBOX */
  .lightbox .prev,
  .lightbox .next {
    font-size: 28px;
  }

  .thumbnails img {
    width: 55px;
    height: 40px;
  }

}
@media (max-width: 480px) {

  .fitur-item .icon {
    width: 42px;
    height: 42px;
    font-size: 15px;
  }

  .fitur-item p {
    font-size: 10px;
  }

}

/* =======================
   HAMBURGER MENU
======================= */

/* tombol hamburger */
.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: #333;
}

/* MOBILE */
@media (max-width: 768px) {

  .nav-wrapper {
    flex-direction: row;
  }

  /* tombol muncul */
  .menu-toggle {
    display: block;
  }

  /* menu mobile */
  .menu {
    position: absolute;
    top: 100%;
    left: 0;

    width: 100%;
    background: white;

    display: flex;
    flex-direction: column;

    padding: 20px;

    gap: 15px;

    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);

    transition: 0.3s;
  }

  /* aktif */
  .menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .menu a {
    margin: 0;
    font-size: 15px;
  }

  .btn-book {
    display: none;
  }

}

/* =======================
   HERO MOBILE PREMIUM
======================= */
@media (max-width: 768px) {

  .hero {
    min-height: 100vh;

    padding-top: 120px;
    padding-bottom: 60px;

    background-position: center;
    background-size: cover;

    /* penting supaya HP tidak lag */
    background-attachment: scroll;
  }

  .overlay {
    background:
      linear-gradient(
        to bottom,
        rgba(0,0,0,0.45),
        rgba(0,0,0,0.75)
      );
  }

  .hero-content {
    width: 100%;
    padding: 0 10px;
  }

  .subtitle {
    font-size: 11px;
    letter-spacing: 3px;
  }

  .hero h1 {
    font-size: 30px;
    line-height: 1.4;
    margin-bottom: 18px;
  }

  .desc {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 25px;
  }

  .btn-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: auto;
  min-width: 220px;

  padding: 14px 24px;

  font-size: 14px;
}

  .scroll-down {
    margin-top: 30px;
    font-size: 20px;
  }

}

/* HP KECIL */
@media (max-width: 480px) {

  .hero h1 {
    font-size: 25px;
  }

  .desc {
    font-size: 13px;
  }

  .btn-wa {
    min-width: 200px;
    font-size: 13px;
    padding: 13px 22px;
  }

}

/* =======================
   GALERI MOBILE PREMIUM
======================= */
@media (max-width: 768px) {

  .galeri-grid {

    grid-template-columns: repeat(2, 1fr);

    gap: 12px;

    grid-auto-rows: 140px;
  }

  .galeri-item.besar {
    grid-column: span 2;
    grid-row: span 2;
  }

  .galeri-item {
    border-radius: 14px;
  }

  .galeri-item span {
    font-size: 11px;
    letter-spacing: 1px;
  }

}

@media (max-width: 480px) {

  .galeri-grid {
    grid-auto-rows: 120px;
    gap: 10px;
  }

}

/* =======================
   SCROLL ANIMATION
======================= */

.reveal {
  opacity: 0;
  transform: translateY(40px);

  transition:
    opacity 0.8s ease,
    transform 0.8s ease;

  will-change: transform, opacity;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* delay */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* =======================
   VIDEO RESPONSIVE
======================= */
@media (max-width: 768px) {

  .video {
    padding: 70px 0;
  }

  .video-box {
    height: 230px;
    margin-top: 35px;

    border-radius: 18px;
  }

  .play-btn {
    width: 60px;
    height: 60px;
  }

  .play-btn i {
    font-size: 18px;
  }

  .video-overlay p {
    font-size: 11px;
    letter-spacing: 2px;
  }

}

/* HP KECIL */
@media (max-width: 480px) {

  .video-box {
    height: 200px;
    border-radius: 16px;
  }

  .play-btn {
    width: 55px;
    height: 55px;
  }

  .play-btn i {
    font-size: 16px;
  }

}

/* =======================
   VIDEO MOBILE FIX
======================= */
@media (max-width: 768px) {

  .video-box {
    width: 100%;
    max-width: 500px;

    margin: 35px auto 0;

    aspect-ratio: 5 / 7;

    border-radius: 20px;
  }

}

/* HP KECIL */
@media (max-width: 480px) {

  .video-box {
    width: 95%;

    aspect-ratio: 5 / 7;

    border-radius: 18px;
  }

}

/* =======================
   TESTIMONI MOBILE
======================= */
@media (max-width: 768px) {

  .testimoni {
    padding: 70px 0;
  }

  .testimoni-grid {
    gap: 20px;
    margin-top: 35px;
  }

  .testimoni-card {
    padding: 25px 22px;

    border-radius: 18px;
  }

  .stars {
    font-size: 13px;
    margin-bottom: 12px;
  }

  .text {
    font-size: 13px;
    line-height: 1.8;

    min-height: auto;

    margin-bottom: 18px;
  }

  .avatar {
    width: 38px;
    height: 38px;

    font-size: 11px;
  }

  .user h4 {
    font-size: 13px;
  }

  .user span {
    font-size: 11px;
  }

}

/* HP KECIL */
@media (max-width: 480px) {

  .testimoni-card {
    padding: 22px 18px;
  }

  .text {
    font-size: 12.5px;
  }

}

/* =======================
   LOKASI MOBILE
======================= */
@media (max-width: 768px) {

  .lokasi {
    padding: 70px 0;
  }

  .lokasi-box {
    gap: 25px;
    margin-top: 35px;
  }

  .lokasi-map iframe {
    height: 240px;

    border-radius: 18px;
  }

  .lokasi-info {
    padding: 25px;

    border-radius: 18px;

    gap: 20px;
  }

  .lokasi-item {
    align-items: flex-start;
  }

  .lokasi-item i {
    width: 42px;
    height: 42px;

    font-size: 14px;

    flex-shrink: 0;
  }

  .lokasi-item h4 {
    font-size: 14px;
  }

  .lokasi-item p {
    font-size: 12px;
    line-height: 1.6;
  }

  .btn-lokasi {
    padding: 13px;

    font-size: 13px;

    border-radius: 16px;
  }

}

/* HP KECIL */
@media (max-width: 480px) {

  .lokasi-map iframe {
    height: 220px;
  }

  .lokasi-info {
    padding: 22px 18px;
  }

}

/* =======================
   FAQ MOBILE
======================= */
@media (max-width: 768px) {

  .faq {
    padding: 70px 0;
  }

  .faq-list {
    margin-top: 35px;
  }

  .faq-item {
    padding: 18px 0;
  }

  .faq-question {
    font-size: 14px;
    line-height: 1.6;

    gap: 15px;
  }

  .faq-answer {
    font-size: 13px;
    line-height: 1.8;
  }

}

/* =======================
   CTA MOBILE
======================= */
@media (max-width: 768px) {

  .cta {
    padding: 70px 20px;
  }

  .cta h2 {
    font-size: 30px;
    line-height: 1.4;

    margin: 15px 0;
  }

  .cta .desc {
    font-size: 14px;
    line-height: 1.8;

    margin-bottom: 25px;
  }

  .btn-cta {
    width: auto;

    min-width: 240px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 15px 20px;

    border-radius: 18px;

    font-size: 14px;
}
}

/* =======================
   FOOTER MOBILE
======================= */
@media (max-width: 768px) {

  .footer {
    padding: 18px 0;
  }

  .footer-wrapper {
    flex-direction: row;

    justify-content: space-between;
    align-items: center;

    gap: 10px;
  }

  .footer .logo {
    font-size: 16px;
  }

  .copyright {
    font-size: 10px;

    text-align: center;

    line-height: 1.5;
  }

  .social {
    display: flex;
    gap: 8px;
  }

  .social a {
    margin-left: 0;

    width: 30px;
    height: 30px;

    font-size: 12px;
  }

}

/* HP KECIL */
@media (max-width: 480px) {

  .footer .logo {
    font-size: 14px;
  }

  .copyright {
    font-size: 9px;
  }

  .social a {
    width: 28px;
    height: 28px;

    font-size: 11px;
  }

}