/*==========================================*/ 
/*           TAMPILAN HOME (1)              */
/*==========================================*/
/* 1. RESET & BASE*/
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body{
  margin:0;
  padding:0;
  overflow-x:hidden;
  font-family: 'Outfit', sans-serif;
}

/* 2. NAVBAR DASAR (Mobile Default) */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 6px 60px;
  background: transparent; /* ← awalnya transparan */
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;
  transition: background 0.4s ease, box-shadow 0.4s ease; /* ← transisi halus */
}

/* Saat scroll — tambah class .scrolled via JS */
.navbar.scrolled {
  background: #f1f8e9; /* ← warna solid */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 2px;
  color: #1b5e20;
  position: relative; 
  z-index: 1001;
}

.logo img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: cover;
}

/* Menu Navigasi HP (Default Sembunyi) */
.navbar nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #f1f8e9;
  padding: 8px 60px;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.navbar nav.show {
  display: flex;
}

/* Styling dasar link navigasi */
.navbar nav a {
    position: relative;
    color: #2c2c2a;
    text-decoration: none;
    transition: color 0.3s ease;
}

/* Garis bawah yang awalnya lebar 0% */
.navbar nav a::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #2e7d32; /* Warna Hijau */
    transition: width 0.3s ease;
}

/* Saat di-hover (Desktop) atau di-klik/active */
.navbar nav a:hover, 
.navbar nav a:active,
.navbar nav a:focus {
    color: #2e7d32; /* Berubah jadi hijau */
}

.navbar nav a:hover::after,
.navbar nav a:active::after,
.navbar nav a:focus::after {
    width: 100%; /* Garis memanjang jadi full */
}

/* Efek saat tombol ditekan (Mobile & Desktop) */
.navbar nav a:active {
    background-color: rgba(46, 125, 50, 0.1); /* Background hijau transparan tipis */
    border-radius: 5px;
    transform: scale(0.95); /* Sedikit mengecil saat ditekan agar terasa seperti tombol asli */
}

/* Class tambahan jika menu sedang aktif di halaman itu */
.navbar nav a.active {
    color: #2e7d32;
    font-weight: 600;
}

.navbar nav a.active::after {
    width: 100%;
}

.menu-toggle {
  display: block;
  font-size: 28px;
  cursor: pointer;
}

/* 3. HERO SECTION (Mobile Default) */
/* HERO SECTION DASAR */
.hero {
  position: relative;
  width: 100%;
  min-height: 80vh; /* Minimal 80% tinggi layar */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color:  #f1f8e9;
  overflow: hidden; /* Menjaga video tetap di dalam */
  padding: 10px 20px; /* Ruang agar teks tidak mepet ke Navbar */
}

.video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  will-change: transform;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #388e3c(0, 50, 20, 0.3); /* Sedikit lebih gelap agar teks terbaca */
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 900px; /* Membatasi lebar teks di monitor besar */
}

.hero-content h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  line-height: 1.2;
  margin-bottom: 4px;
}

.hero-content p {
  font-size: 15px;
  margin-bottom: 20px;
  opacity: 0.9;
}

/* Animasi Hero */
.hero-content h1,
.hero-content p {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s cubic-bezier(0.22, 1, 0.36, 1),
              transform 1.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-content h1.fade-up,
.hero-content p.fade-up {
  opacity: 1;
  transform: translateY(0);
}

.buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.btn-primary, .btn-secondary {
  width: 200px;
  padding: 12px;
  border-radius: 25px;
  text-decoration: none;
  text-align: center;
  font-size: 14px;
}

.btn-primary { background: #f1f8e9; color: black; }
.btn-secondary { border: 2px solid #f1f8e9; color: #f1f8e9; }

/* UNTUK MOBILE & TABLET (Max 768px) */
@media (max-width: 768px) {
  /* CONTAINER NAVBAR UTAMA */
  .navbar {
    height: 40px; /* Sedikit lebih lega untuk header */
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    background: #f1f8e9;
    position: relative;
    z-index: 1002;
  }

  /* MENU OVERLAY (DIPERBAIKI) */
  .navbar nav {
    display: flex;
    flex-direction: column;
    justify-content: flex-start; 
    align-items: center;
    position: fixed;
    top: 0;
    left: 100%; 
    width: 100%;
    height: 100vh;
    background: #f1f8e9;
    backdrop-filter: blur(10px);
    
    /* Ruang aman agar menu pertama tidak tertutup header */
    padding-top: 50px !important; 
    margin: 0 !important;
    
    /* Jarak antar menu yang rapat dan konsisten */
    gap: 5px; 
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    overflow-y: auto; 
  }

  .navbar nav.show {
    left: 0;
  }

  /* LINK MENU (DIPERBAIKI) */
  .navbar nav a {
    /* KODE BARU UNTUK GARIS PEMISAH */
    display: block !important;
    width: 85% !important; /* Agar garis tidak mentok ke pinggir */
    border-bottom: 1px solid rgba(46, 125, 50, 0.5) !important; /* GARIS HIJAU PEMISAH */
    margin: 0 auto !important; /* Menjaga menu tetap di tengah */
    padding: 18px 0 !important; /* Memberi ruang antar garis */
    
    /* KODE ASLI KAMU (DI-LOCK) */
    position: relative;
    font-size: 18px; 
    font-weight: 500;
    color: black;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    text-align: center;
    transition: 0.3s ease;
    -webkit-tap-highlight-color: transparent; 
    background: transparent !important; 
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
  }

  .navbar nav a.fade-in {
    opacity: 1;
    transform: translateY(0); /* Kembali ke posisi semula */
  }

  /* Hilangkan garis di menu paling bawah (Contact) agar rapi */
  .navbar nav a:last-child {
    border-bottom: none !important;
  }

  /* Efek saat ditekan (Warna Hijau Menyala) */
  .navbar nav a:active {
    color: #4CAF50 !important; 
  }


  /* ICON HAMBURGER */
  .menu-toggle {
    display: block;
    z-index: 1001;
    position: relative;
    cursor: pointer;
    font-size: 25px;
    background: transparent !important;
    border: none !important;
    outline: none !important;
    -webkit-tap-highlight-color: transparent;
  }
}

/* UNTUK HP (Max 480px) */
@media (max-width: 480px) {
  .hero {
    min-height: 50vh; /* Di HP cukup setengah layar agar profesional */
  }
  .hero-content h1 {
    font-size: 28px;
    line-height: 1.2;
  }
  .hero-content p {
    font-size: 14px;
    opacity: 0.9;
  }
  .buttons {
    flex-direction: column; /* Tombol berbaris ke bawah */
    gap: 12px;
  }
  .btn-primary, .btn-secondary {
    width: 100%; /* Tombol melebar penuh di HP agar mudah di-klik */
    max-width: 250px;
    margin: 0 auto;
  }
}

/* Tampilan Menu untuk Desktop (Lebar di atas 769px) */
@media (min-width: 769px) {
  .menu-toggle {
    display: none; /* Sembunyikan hamburger */
  }

  .navbar {
    padding: 8px 60px; /* Lebih lebar dan mewah */
  }

  .navbar nav {
    display: flex !important; /* Paksa munculkan menu */
    position: static; /* Kembalikan ke posisi normal di navbar */
    flex-direction: row; /* Berbaris ke samping */
    background: transparent;
    box-shadow: none;
    width: auto;
    gap: 30px;
    padding: 0;
  }

  .navbar nav a {
    background: transparent;
    padding: 5px 0;
    font-size: 20px;
    font-weight: 500;
    width: auto;
  }
}

/* Tampilan Hero untuk Desktop */
@media (min-width: 1024px) {
  .hero {
    height: 100vh; /* Video Full Layar */
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-content h1 {
    font-size: 72px; /* Judul jauh lebih besar dan megah */
    font-weight: 700;
    max-width: 1000px;
    margin-bottom: 4px;
  }

  .hero-content p {
    font-size: 20px; /* Sub-judul lebih enak dibaca */
    max-width: 700px;
    margin: 0 auto 30px auto;
  }

  .buttons {
    flex-direction: row; /* Tombol kembali berdampingan */
    gap: 20px;
  }

  .btn-primary, .btn-secondary {
    width: auto;
    min-width: 180px;
    font-size: 16px;
  }
}

/*==========================================*/ 
/*          TAMPILAN ABOUT (2)              */
/*==========================================*/

/* CONTAINER UTAMA */
.about {
  /* Padding samping diperkecil agar konten bisa lebih ke pinggir */
  padding: 20px 3%;
  background: #f1f8e9;
  overflow: hidden;
}

.about-container {
  display: flex;
  align-items: center; 
  justify-content: space-between; /* Memaksa gambar ke kiri dan teks ke kanan */
  /* max-width dinaikkan agar frame lebih luas */
  max-width: 1450px; 
  margin: 0 auto;
  gap: 50px; /* Jarak antara gambar dan teks diperlebar */
}

/* BAGIAN GAMBAR (Mepet ke Kiri) */
/* 1. CONTAINER GAMBAR (Tempat JS menempelkan class .appear) */
.about-image {
  flex: 0.7;
  display: flex;
  justify-content: flex-start;
  opacity: 0; /* Awalnya sembunyi */
  transform: translateY(30px); /* Awalnya agak ke bawah */
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  cursor: pointer;
}

/* 2. KONDISI SAAT MUNCUL (Dipicu JS) */
.about-image.appear {
  opacity: 1;
  transform: translateY(0);
}

/* 3. SETTINGAN TAG FOTO */
.about-image img {
  width: 100%;
  max-width: clamp(220px, 30vw, 400px);
  height: auto;
  border-radius: 15px;
  object-fit: cover;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
  
  /* TRANSISI KHUSUS ZOOM: Harus ditaruh di sini agar halus saat kursor masuk & keluar */
  transition: transform 0.4s ease-in-out !important;
}

/* 4. EFEK ZOOM (HOVER) - PASTI JALAN */
/* Logikanya: Saat container .about-image disentuh, img di dalamnya membesar */
.about-image:hover img {
  transform: scale(1.03) !important;
  box-shadow: 0 20px 45px rgba(0,0,0,0.15);
}

/* BAGIAN TEKS */
.subtitle {
  display: block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 5px;
  color: #2e7d32;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.about-text {
  flex: 1.5; /* Memberi ruang lebih banyak untuk teks agar bisa memanjang */
  display: block;
}

.about-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  margin-bottom: 25px;
  letter-spacing: 5px;
  line-height: 1.1;
  color: #2c2c2a;
  /* max-width judul ditambah supaya tidak terlalu cepat patah baris */
  max-width: 550px; 
}

.about-text p {
  font-size: clamp(13px, 1.3vw, 16px); /* ← lebih kecil */
  line-height: 1.8;
  color: #444;
  text-align: justify;
  text-justify: inter-word;
  margin-bottom: 16px;
  width: 100%;
  text-indent: 2em; /* ← menjorok ke dalam seperti paragraf */
}

/* GANTI DARI INI */
.about-image, .subtitle, .about-text h2, .about-text p {
  opacity: 0;
  transform: translateY(30px);
}

.about-image.appear, .about-image.reveal,
.subtitle.appear, .subtitle.reveal,
.about-text h2.appear, .about-text h2.reveal,
.about-text p.appear, .about-text p.reveal {
  opacity: 1;
  transform: translateY(0);
}

/* JADI INI — tambahkan .about sebagai prefix */
.about-image,
.about .subtitle,
.about-text h2,
.about-text p {
  opacity: 0;
  transform: translateY(30px);
}

.about-image.appear, .about-image.reveal,
.about .subtitle.appear, .about .subtitle.reveal,
.about-text h2.appear, .about-text h2.reveal,
.about-text p.appear, .about-text p.reveal {
  opacity: 1;
  transform: translateY(0);
}

/* ================= TABLET (max 992px) ================= */
@media (max-width: 992px) {
  .about {
    padding: 40px 4%;
  }

  .about-container {
    gap: 30px;
  }
}

/* ================= HP & TABLET KECIL (max 768px) ================= */
@media (max-width: 768px) {
  .about {
    padding: 30px 16px;
  }

  .about-container {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  /* Supaya order flex bekerja */
  .about-text {
    display: contents;
  }

  /* 1. Subtitle */
  .subtitle {
    order: 1 !important;
    font-size: 11px !important;
    letter-spacing: 2px;
    margin-bottom: 5px !important;
    display: block;
  }

  /* 2. Judul */
  .about-text h2 {
    order: 2 !important;
    display: block;
    font-size: 26px !important;
    line-height: 1.2;
    margin-bottom: 15px !important;
    padding: 0 10px;
  }

  /* 3. Gambar — full width */
  .about-image {
    order: 3 !important;
    width: 100%;
    justify-content: center;
    margin-bottom: 16px;
  }

  .about-image img {
    width: 100% !important;
    max-width: 100% !important; /* ← hapus batasan desktop */
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
  }

  /* 4. Paragraf */
  .about-text p {
    order: 4 !important;
    font-size: 14px !important;
    line-height: 1.6;
    text-align: justify;
    text-justify: inter-word;
    text-indent: 30px;
    color: #555;
    padding: 0 15px;
    margin-bottom: 16px !important;
  }
}

/* ================= HP KECIL (max 480px) ================= */
@media (max-width: 480px) {
  .about-text h2 {
    font-size: 22px !important;
  }

  .about-image img {
    height: 200px;
  }
}

/*================================*/ 
/*      TAMPILAN ROOMS (3)        */
/*===============================*/
.rooms {
  /* Ubah padding atas (angka pertama) dari 80px atau 100px menjadi lebih kecil */
  padding: 16px 3%;
  background:#f1f8e9;
}

.rooms .subtitle {
  display: block;
  text-align: center;
  font-size: 10px;
  letter-spacing: 5px;
  color: #2e7d32;
  /* KUNCINYA: Ubah 80px menjadi 0 atau 10px saja agar teks naik ke atas */
  margin-top: 1px; 
  margin-bottom: 5px;
}

.rooms .section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  text-align: center;
  margin-top: 0;
  margin-bottom: 25px;
  color: #2c2c2a;
  letter-spacing: 5px;
}

/* Kondisi awal judul besar Rooms */
.rooms .subtitle, 
.rooms .section-title {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

/* Saat class .appear ditambahkan oleh JS */
.rooms .subtitle.appear, .rooms .subtitle.reveal,
.rooms .section-title.appear, .rooms .section-title.reveal {
  opacity: 1;
  transform: translateY(0);
}

/* Beri sedikit jeda agar Subtitle muncul lebih dulu baru Judul Utama */
.rooms .section-title {
    transition-delay: 0.2s;
}

/* ROOMS WRAPPER */
.room-container {
  display: flex;
  gap: 30px; /* Gap lebih standar */
  justify-content: center;
  flex-wrap: wrap; /* Agar otomatis turun jika layar mengecil */
}

/* CARD */
.room-card {
  flex: 1;
  min-width: 420px; 
  max-width: 600px; 
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  background: #f9f5ef;

  /* --- TAMBAHAN UNTUK REVEAL (JS) --- */
  opacity: 0;
  transform: translateY(40px);
  /* Transisi digabung: 0.8s untuk muncul, 0.3s untuk hover nanti */
  transition: opacity 0.8s ease-out, transform 0.4s ease-out, box-shadow 0.3s ease;
}

/* KONDISI MUNCUL (Dipicu JS) */
.room-card.appear, .room-card.reveal {
  opacity: 1;
  transform: translateY(0);
}

/* EFEK HOVER (Hanya aktif setelah muncul) */
.room-card.appear:hover, .room-card.reveal:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

/* IMAGE - Membersihkan code double */
.room-card img {
  width: 100%;
  height: clamp(180px, 18vw, 240px);
  object-fit: cover;
  display: block;
  /* Transisi ditaruh di sini agar halus saat kursor masuk & keluar */
  transition: transform 0.5s ease-in-out; 
}

/* EFEK ZOOM GAMBAR SAAT CARD DI-HOVER */
.room-card:hover img {
  transform: scale(1.05); /* Tetap sesuai aslimu */
}

/* Kartu kedua muncul sedikit lebih lambat dari kartu pertama */
.room-card:nth-child(2) {
  transition-delay: 0.2s;
}
/* Kartu ketiga muncul sedikit lebih lambat dari kartu kedua */
.room-card:nth-child(3) {
  transition-delay: 0.4s;
}

/* INFO */
.room-info {
  padding: 15px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: center;
}

.room-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(18px, 2vw, 24px);
  margin: 0;
  color: #2c2c2a;
  text-align: center;
}

.room-info p {
  font-size: clamp(13px, 1.3vw, 16px);
  line-height: 1.7;
  color: #555;
  margin: 0;
  text-align: center;
}

/* HARGA & TOMBOL */
.room-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #f1f8e9;
}

.room-price {
  text-align: left;
}

.room-price .night {
  display: block;
  font-family:'Outfit', sans-serif;
  font-size: clamp(14px, 1.5vw, 18px);
  font-weight: bold;
  color: #2e7d32;
}

.room-price .month {
  font-size: 13px;
  color: #a67c52;
}

.btn-room {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 15px;
  border: 1.5px solid #2e7d32;
  color: #2e7d32;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  white-space: nowrap;
  flex-shrink: 0;
  min-width: 100px;
  max-width: 140px;
  transition: all 0.3s ease;
}

.btn-room:hover {
  background: #2e7d32;
  color: #fff;
}

/* Sembunyikan elemen teks di dalam kartu sebelum muncul */
.room-info h3, 
.room-info p, 
.room-bottom {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease-out;
}

/* Munculkan teks SAAT kartu (.room-card) mendapatkan class .appear */
.room-card.appear .room-info h3,
.room-card.appear .room-info p,
.room-card.appear .room-bottom,
.room-card.reveal .room-info h3,
.room-card.reveal .room-info p,
.room-card.reveal .room-bottom {
  opacity: 1;
  transform: translateY(0);
}

/* --- RESPONSIVE UNTUK TABLET & HP (DI BAWAH 768px) --- */
@media (max-width: 768px) {
  .rooms {
    padding: 40px 20px; /* Sedikit lebih lebar agar tidak terlalu sesak */
  }

  .rooms .subtitle {
    font-size: 11px; /* Sedikit lebih besar dari 10px agar terbaca */
    margin-top: 0 !important; 
    margin-bottom: 5px;
    letter-spacing: 2px;
  }

  .rooms .section-title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .room-container {
    flex-direction: column;
    align-items: center;
    gap: 25px;
  }

  .room-card {
    width: 100%;
    /* Menghapus min-width agar tidak memaksa lebar di layar kecil */
    min-width: auto; 
  }

  .room-card img {
    height: 220px; /* Disesuaikan agar proporsi foto kamar tetap cantik di HP */
  }

  .room-info {
    padding: 15px;
  }

  .room-info h3 {
    font-size: 18px;
    margin-bottom: 8px;
  }

  .room-info p {
    font-size: 14px;
    text-align: center;
    line-height: 1.5;
  }

  .room-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
  }

  .btn-room {
    padding: 8px 16px;
    font-size: 12px;
  }

  /* Efek sentuh untuk HP agar interaktif */
  .btn-room:active {
    background: #1b5e20;
    transform: scale(0.95);
  }
}

/* --- RESPONSIVE UNTUK HP SANGAT KECIL (DI BAWAH 400px) --- */
@media (max-width: 400px) {
  .rooms .section-title {
    font-size: 24px;
  }

  .room-bottom {
    flex-direction: column; /* Menumpuk vertikal jika layar terlalu sempit */
    align-items: flex-start;
    gap: 10px;
  }
  
  .btn-room {
    width: 100%; /* Tombol jadi full width agar mudah diklik jempol */
    text-align: center;
  }
  
  .room-price {
    font-size: 16px;
    font-weight: bold;
  }
}


/*==========================================*/ 
/*       TAMPILAN FACILITIES (5)            */
/*==========================================*/
/*BASE (Desktop)*/
.facilities {
  padding: clamp(10px, 1.5vw, 20px) 24px;
  text-align: center;
  background: #f1f8e9;
  width: 100%;
  box-sizing: border-box;
}

.facilities .subtitle {
  display: block;
  color: #2e7d32;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  margin-bottom: 8px;
  opacity: 0;                          /* ← tambahkan */
  transform: translateY(20px);         /* ← tambahkan */
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;  /* ← tambahkan */
}

.facilities .subtitle.reveal {
  opacity: 1;
  transform: translateY(0);
}

.facilities h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  letter-spacing: 5px;
  color: #2c2c2a;
  margin-bottom: clamp(28px, 4vw, 50px);
  line-height: 1.2;
  opacity: 0;                          /* ← tambahkan */
  transform: translateY(30px);         /* ← tambahkan */
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;  /* ← tambahkan */
}

.facilities h2.reveal {
  opacity: 1;
  transform: translateY(0);
}

/* Grid */
.facilities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2vw, 30px);
  max-width: 1800px;
  margin: 0 auto;
}

/* Kartu */
.facility-card {
  background: #f9f5ef;
  padding: clamp(20px, 3vw, 40px) clamp(14px, 2vw, 20px);
  border-radius: 15px;
  border: 1px solid #eee;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(8px, 1.2vw, 15px);
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.8s cubic-bezier(0.22, 1, 0.36, 1),
              border-color 0.3s ease,
              box-shadow 0.3s ease;
}

.facility-card.reveal {
  opacity: 1;
  transform: translateY(0);
}

.facility-card:hover {
  border-color: #2e7d32;
  box-shadow: 0 10px 25px rgba(0,0,0,0.07);
  transform: translateY(-5px);
}

.facility-card img {
  width: clamp(32px, 4vw, 50px);
  height: clamp(32px, 4vw, 50px);
  object-fit: contain;
}

.facility-card h3 {
  font-family:'Outfit', sans-serif;
  font-size: clamp(13px, 1.4vw, 18px);
  font-weight: 500;
  color: #2c2c2a;
}

.facility-card p {
  font-size: clamp(11px, 1.1vw, 14px);
  color: #777;
  line-height: 1.6;
}

.facility-icon-wrapper {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: transparent;
  border: 1.5px solid #2e7d32;        /* ← tambahkan */
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.5s ease;
}

.facility-icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.facility-card:hover .facility-icon-wrapper,
.service-card:hover .facility-icon-wrapper {
  background: #2e7d32;
  transform: scale(1.1);
  animation: pulse-glow 2s ease-in-out infinite;
}

/* Ini yang bikin icon jadi putih saat hover */
.facility-card:hover .facility-icon-wrapper img,
.service-card:hover .facility-icon-wrapper img {
  filter: brightness(0) invert(1);
}

@keyframes pulse-glow {
  0%, 100% {
    box-shadow:
      0 0 20px rgba(5, 150, 105, 0.4),
      0 0 40px rgba(5, 150, 105, 0.2);
  }
  50% {
    box-shadow:
      0 0 30px rgba(5, 150, 105, 0.6),
      0 0 60px rgba(5, 150, 105, 0.4),
      0 0 90px rgba(5, 150, 105, 0.2);
  }
}

/* Tablet */
@media (max-width: 1024px) {
  .facilities-grid { grid-template-columns: repeat(2, 1fr); }
}

/* HP */
@media (max-width: 768px) {
  .facilities { padding: 36px 16px; }
  .facilities-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
}

/* HP kecil */
@media (max-width: 400px) {
  .facilities { padding: 28px 12px; }
  .facilities .subtitle { letter-spacing: 2px; }
  .facilities-grid { gap: 10px; }
  .facility-card { padding: 16px 12px; gap: 8px; border-radius: 10px; }
  .facility-card img { width: 30px; height: 30px; }
}

/* Super lebar */
@media (min-width: 1600px) {
  .facilities { padding: 80px 5%; }
}

/*=========================================*/ 
/*       TAMPILAN GUEST SERVICES (4)       */
/*========================================*/
.additional-services {
  padding: clamp(20px, 3vw, 40px) clamp(16px, 5vw, 60px);
  text-align: center;
  background: #f1f8e9;
  width: 100%;
  box-sizing: border-box;
}

/* SUBTITLE */
.additional-services .subtitle {
  display: block;
  color: #2e7d32;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  margin-bottom: 8px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.additional-services .subtitle.reveal {
  opacity: 1;
  transform: translateY(0);
}

/* SECTION TITLE */
.additional-services .section-title h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  margin-bottom: 8px;
  letter-spacing: 5px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.additional-services .section-title p {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(13px, 1.3vw, 15px);
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  transition-delay: 0.2s;
}

.additional-services .section-title h2.reveal {
  opacity: 1;
  transform: translateY(0);
}

.additional-services .section-title p.reveal {
  opacity: 0.7;
  transform: translateY(0);
}

/* CONTAINER — grid 3 kolom */
.services-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 3vw, 48px);
  margin: clamp(24px, 3vw, 40px) auto 0;
  max-width: 1100px;
}

/* BARIS BAWAH — 2 card di tengah */
.services-row-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  gap: clamp(16px, 3vw, 48px);
}

.services-row-bottom .service-card {
  width: calc(33.333% - 16px);
  max-width: 260px;
}

/* CARD SERVICE */
.service-card {
  padding: clamp(16px, 2vw, 24px) clamp(12px, 1.5vw, 20px);
  background: transparent;
  box-sizing: border-box;
  text-align: center;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease-out, transform 0.5s ease-out;
}

.service-card.reveal {
  opacity: 1;
  transform: translateY(0);
}

.service-card.reveal:hover {
  transform: translateY(-8px);
}

.service-card:nth-child(1) { transition-delay: 0.1s; }
.service-card:nth-child(2) { transition-delay: 0.2s; }
.service-card:nth-child(3) { transition-delay: 0.3s; }

.services-row-bottom .service-card:nth-child(1) { transition-delay: 0.4s; }
.services-row-bottom .service-card:nth-child(2) { transition-delay: 0.5s; }

/* ICON WRAPPER */
.service-card .facility-icon-wrapper {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(46, 125, 50, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.5s ease;
}

.service-card .facility-icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

/* HOVER ICON */
.service-card:hover .facility-icon-wrapper {
  background: #2e7d32;
  transform: scale(1.1);
  animation: pulse-glow 2s ease-in-out infinite;
}

.service-card:hover .facility-icon-wrapper img {
  filter: brightness(0) invert(1);
}

/* JUDUL */
.service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(18px, 2vw, 24px);
  margin-bottom: 10px;
  color: #2e7d32;
}

/* DESKRIPSI */
.service-card p {
  font-size: clamp(12px, 1.2vw, 14px);
  line-height: 1.7;
  color: #666;
}

/* GARIS HIJAU TIPIS + TOMBOL */
.services-cta {
  margin-top: clamp(24px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.services-divider {
  width: 100%;
  max-width: 600px;
  height: 1px;
  background: linear-gradient(to right, transparent, #2e7d32, transparent);
}

.btn-service {
  display: inline-block;
  padding: 12px 36px;
  border: 1.5px solid #2e7d32;
  border-radius: 40px;
  color: #2e7d32;
  background: transparent;
  text-decoration: none;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: clamp(12px, 1.1vw, 14px);
  letter-spacing: 1px;
  transition: 0.3s ease;
}

.btn-service:hover {
  background: #2e7d32;
  color: #f1f8e9;
}

/* BARIS SINGLE — 1 card di tengah */
.services-row-single {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
}

.services-row-single .service-card {
  width: calc(33.333% - 16px);
  max-width: 260px;
}


/* HP */
@media (max-width: 768px) {
  .additional-services {
    padding: 16px 12px;
  }

  .services-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 20px;
  }

  /* Card ke-3 (Private Transport) di tengah sendiri */
  .services-container > .service-card:nth-child(3) {
    grid-column: 1 / -1;
    max-width: 200px;
    margin: 0 auto;
  }

  /* Baris bawah 2 card sejajar */
  .services-row-bottom {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: nowrap;
  }

  .services-row-bottom .service-card {
    width: 46%;
    max-width: 200px;
    flex-shrink: 0;
  }

  .service-card h3 { font-size: 15px; }
  .service-card p { font-size: 11px; }
}

/* HP Kecil */
@media (max-width: 480px) {
  .services-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .services-container > .service-card:nth-child(3) {
    grid-column: 1 / -1;
    max-width: 180px;
    margin: 0 auto;
  }

  .services-row-bottom {
    gap: 12px;
  }

  .services-row-bottom .service-card {
    width: 46%;
    max-width: 180px;
  }
}

/* HP Sangat Kecil */
@media (max-width: 380px) {
  .services-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .services-container > .service-card:nth-child(3) {
    max-width: 160px;
  }

  .services-row-bottom {
    flex-direction: row;
    justify-content: center;
    gap: 10px;
  }

  .services-row-bottom .service-card {
    width: 46%;
    max-width: 160px;
  }
}
/*==========================================*/ 
/*            GALLERY  (6)                  */
/*==========================================*/
.gallery-section {
  padding: 20px 24px; 
  background: #f1f8e9;
  overflow: visible;
}

.gallery-title {
  text-align: center;
  margin-bottom: clamp(30px, 4vw, 50px);
}

.gallery-title span {
  display: block;
  font-size: 10px;
  letter-spacing: 5px;
  color: #2e7d32;
  margin-bottom: 10px;
}

.gallery-title h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  letter-spacing: 5px;
  margin: 0;
  color: #2c2c2a;
}

/* GRID FOTO */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(10px, 1.5vw, 18px);
  max-width: 100%px;
  margin: 0 auto;
}

.gallery-grid img {
  width: 100%;
  height: clamp(130px, 18vw, 280px);
  object-fit: cover;
  border-radius: 14px;
  cursor: pointer;
  transition: transform 0.4s ease;
  display: block;
}

.gallery-grid img:hover {
  transform: scale(1.03);
}

/* ================= LIGHTBOX ================= */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.92);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  padding: clamp(10px, 2vw, 20px);
  box-sizing: border-box;
}

.lightbox.show {
  display: flex;
}

.lightbox img {
  max-width: 100%;
  max-height: 88vh;
  width: auto;
  height: auto;
  border-radius: 14px;
  object-fit: contain;
}

.close {
  position: absolute;
  top: 18px;
  right: 20px;
  color: #fff;
  font-size: clamp(24px, 3vw, 34px);
  cursor: pointer;
  z-index: 10000;
  line-height: 1;
}

.prev,
.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-size: clamp(24px, 3.5vw, 42px);
  cursor: pointer;
  user-select: none;
  padding: 10px;
  z-index: 10000;
  line-height: 1;
}

.prev { left: 18px; }
.next { right: 18px; }

/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* HP */
@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .lightbox img {
    max-height: 74vh;
  }

  .prev { left: 8px; }
  .next { right: 8px; }
}
/*==========================================*/ 
/*       TAMPILAN CONTACT (7)               */
/*==========================================*/

.contact-section {
  padding: 20px 24px; 
  background: #f1f8e9;
}

.contact-wrapper {
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: clamp(20px, 3vw, 40px);
  align-items: start;
}

/* LEFT */
.contact-subtitle {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 5px;
  color: #2e7d32;
  margin-bottom: 10px;
  position: relative;
}

.contact-left h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  letter-spacing: 5px;
  margin-bottom: 10px;
  color: #2c2c2a;
  line-height: 1.1;
}

.contact-desc {
  font-size: clamp(12px, 1.2vw, 15px);
  line-height: 1.8;
  color: #555;
  max-width: 700px;
  margin-bottom: clamp(14px, 2vw, 24px);
}

/* CARD */
.contact-card {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.5vw, 20px);
  max-width: 450px; 
  background: #f9f5ef;
  border-radius: 15px;
  margin-bottom: clamp(45px, 1.2vw, 14px);
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.3s ease;
}

.contact-card.reveal {
  opacity: 1;
  transform: translateY(0);
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.contact-card.reveal:hover {
  transform: translateY(-4px);
}

.contact-icon {
  min-width: clamp(50px, 3vw, 60px);
  height: clamp(50px, 3vw, 60px);
  border-radius: 50%;
  background: #f9f5ef;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(16px, 1.8vw, 22px);
  flex-shrink: 0;
}

.contact-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.contact-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(13px, 1.2vw, 16px);
  margin: 0 0 3px;
  color: #2c2c2a;
}

.contact-info p {
  margin: 0;
  font-size: clamp(11px, 0.9vw, 13px);
  color: #555;
  line-height: 1.5;
}

/* RIGHT */
.contact-right {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: 0.3s;
}

.contact-right.reveal {
  opacity: 1;
  transform: translateY(0);
}

.contact-right iframe {
  width: 100%;
  height: clamp(250px, 35vw, 450px);
  border: 0;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.4s ease;
}

.contact-icon img {
  width: 25px;
  height: 25px;
  object-fit: contain;
}

.contact-card:hover .contact-icon {
  background: #2e7d32;
  transform: scale(1.1);
  animation: pulse-glow 2s ease-in-out infinite;
}

/* Kalau icon PNG warnanya gelap, tambahkan ini supaya jadi putih saat hover */
.contact-card:hover .contact-icon img {
  filter: brightness(0) invert(1);
}

/* ================= TABLET (max 1024px) ================= */
@media (max-width: 1024px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .contact-right iframe {
    height: 400px;
  }
}

/* ================= HP (max 768px) ================= */
@media (max-width: 768px) {
  .contact-section {
    padding: 20px 14px;
  }

  /* Teks FIND US, Location, deskripsi — rata tengah */
  .contact-subtitle,
  .contact-left h2,
  .contact-desc {
    text-align: center;
    max-width: 100%;
    display: block;
  }
 .contact-subtitle {
    font-size: 10px;
    letter-spacing: 5px;
    margin: 1px 0 1px;
  }
  .contact-left h2 {
    font-size: clamp(30px, 5vw, 32px);
    letter-spacing: 5px;
    margin: 10px 0 10px;
  }

  .contact-desc {
    font-size: 10px;
    line-height: 1.7;
    margin-bottom: 16px;
  }

  /* Kartu */
  .contact-card {
    padding: 10px 12px;
    gap: 10px;
    border-radius: 12px;
    margin-bottom: 8px;
    max-width: 100%;
  }

  .contact-icon {
    min-width: 34px;
    height: 34px;
    font-size: 15px;
  }

  .contact-info h3 {
    font-size: 12px;
  }

  .contact-info p {
    font-size: 11px;
  }

  /* Maps */
  .contact-right iframe {
    height: 250px;
    border-radius: 12px;
  }
}

/* ================= HP Kecil (max 480px) ================= */
@media (max-width: 480px) {
  .contact-section {
    padding: 22px;
  }

  .contact-left h2 {
    font-size: 30px;
  }

  .contact-right iframe {
    height: 200px;
  }
}

/*==========================================*/
/* TAMPILAN FOOTER                          */
/*==========================================*/

.footer {
  position: relative;
  width: 100%;
  background: url('images/galery3.jpg') center center/cover no-repeat;
  color: #fff;
  padding: clamp(50px, 5vw, 70px) clamp(30px, 6vw, 80px) clamp(15px, 2vw, 20px);
  clear: both;
  overflow: hidden;
  box-sizing: border-box;
}

/* Overlay gelap supaya teks tetap terbaca */
.footer-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  z-index: 0;
}

/* Semua konten footer harus di atas overlay */
.footer-container,
.footer-bottom {
  position: relative;
  z-index: 1;
}

/* Grid */
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr 1fr;
  gap: clamp(20px, 3vw, 40px);
  align-items: start;
}

/* Box */
.footer-box h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(22px, 2.5vw, 30px);
  margin-bottom: 22px;
  color: #2e7d32;
}

.footer-box h3::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background: #2e7d32;
  margin-top: 10px;
}

.footer-box p,
.footer-box a {
  color: #f9f5ef;
  font-size: clamp(14px, 1.5vw, 17px);
  line-height: 1.9;
  text-decoration: none;
}

.footer-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-box li {
  margin-bottom: 12px;
}

.footer-box a:hover {
  color: #2e7d32;
}

/* Social Icons */
.social-icons {
  display: flex;
  flex-direction: row;  /* sejajar horizontal */
  gap: 16px;
  align-items: center;
  margin-top: 4px;
}

.social-icon-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

.social-icon-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  filter: brightness(0) invert(1); /* putih */
  transition: filter 0.4s ease;
}

.social-icon-btn:hover {
  background: #2e7d32;
  transform: scale(1.1);
  animation: pulse-glow 2s ease-in-out infinite;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
}

.footer-brand h3 {
  margin-bottom: 0; /* override margin bawaan */
}

.footer-brand h3::after {
  display: block;
  width: 60px;
  height: 2px;
  background: #2e7d32;
  margin-top: 10px;
  content: "";
}

.footer-logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 50%;
}

/* Bottom */
.footer-bottom {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin-top: clamp(28px, 4vw, 45px);
  padding-top: 22px;
  text-align: center;
  color: #ccc;
  font-size: clamp(13px, 1.2vw, 15px);
  width: 100%;
}

/* Animasi reveal */
.footer-box,
.footer-bottom {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.footer-box.reveal,
.footer-bottom.reveal {
  opacity: 1;
  transform: translateY(0);
}

/* ======= RESPONSIVE ======= */
@media (max-width: 1024px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 24px;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 40px 24px 20px;
  }

  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 20px;
  }

  .footer-box h3 {
    font-size: 16px;
    margin-bottom: 14px;
  }

  .footer-box p,
  .footer-box a {
    font-size: 13px;
    line-height: 1.7;
  }

  .footer-box li {
    margin-bottom: 8px;
  }

  /* Kolom 1 span 2 kolom penuh di HP */
  .footer-box:first-child {
    grid-column: 1 / -1;
  }

  .footer-brand h3 {
    font-size: 18px;
  }

  .social-icon-btn {
    width: 40px;
    height: 40px;
  }

  .social-icon-img {
    width: 20px;
    height: 20px;
  }

  .footer-bottom {
    font-size: 12px;
    margin-top: 24px;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 36px 20px 16px;
  }

  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 16px;
  }
}

@media (max-width: 380px) {
  .footer-container {
    grid-template-columns: 1fr;
  }

  .footer-box:first-child {
    grid-column: 1;
  }
}

/* FLOATING WHATSAPP */
.float-wa-wrapper {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.float-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #25d366;
  border-radius: 50px;
  width: 56px;
  height: 56px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  text-decoration: none;
}

.float-wa svg {
  display: block;
  flex-shrink: 0;
  min-width: 28px;
  min-height: 28px;
}

.float-wa-label {
  display: none; /* sembunyikan dulu */
}

.float-wa:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

.float-wa:hover .float-wa-label {
  opacity: 1;
}

/* POPUP */
.float-wa-popup {
  background: #fff;
  border-radius: 16px;
  width: 280px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  overflow: hidden;
  display: none;
  animation: popupFade 0.3s ease;
}

.float-wa-popup.show {
  display: block;
}

@keyframes popupFade {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.float-wa-popup-header {
  background: #25d366;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.float-wa-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #1da851;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.float-wa-name {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  margin: 0;
}

.float-wa-status {
  color: rgba(255,255,255,0.8);
  font-size: 11px;
  margin: 0;
}

.float-wa-close {
  margin-left: auto;
  color: #fff;
  cursor: pointer;
  font-size: 16px;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.float-wa-close:hover {
  opacity: 1;
}

.float-wa-body {
  padding: 16px;
  background: #f0f4f8;
}

.float-wa-body p {
  background: #fff;
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 13px;
  color: #333;
  margin: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  display: inline-block;
}

.float-wa-btn {
  display: block;
  background: #25d366;
  color: #fff;
  text-align: center;
  padding: 12px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s;
}

.float-wa-btn:hover {
  background: #1da851;
}