html, body {
  height: 100%;          /* penting */
  margin: 0;
  overflow-x: hidden;
}

.main-content {
    flex: 1;
}

body {
  font-family: Ropa Sans, sans-serif;
  background: linear-gradient(135deg, #fcfdff, #f6f9fd);
  color: #333;
}

/* HEADER */
header {
  padding: 20px;
  position: static;
  top: 25px;
  z-index: 2000;
}

/* ==============================
   NAVIGATION / MENU
============================== */
nav {
  width: 100%;
  background: transparent;
  padding: 15px 0;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;   /* MENU DI TENGAH */
  gap: 40px;
  margin: 0;
  padding: 0;
}

nav ul li {
  position: relative;
}

nav ul li a {
  text-decoration: none;
  color: #333;
  font-size: 20px;
  font-weight: 500;
}

.dropdown-content {
  display: none;
  position: absolute;
  min-width: 170px; /* atau 100% kalau mau ikut Services */
  background: white;
  list-style: none;
  padding: 10px 0;
  margin: 0;
  border-radius: 6px;
  box-shadow: 0 3px 3px rgba(0,0,0,0.5);
  z-index: 5000;   /* pastikan selalu muncul di atas hero */
}

.dropdown-content a {
  font-size: 18px;
  padding: 10px 15px;
  display: block;
}

.dropdown-content li {
  margin-bottom: 6px;
}

.dropdown.show .dropdown-content {
  display: block;
}

/* Hamburger menu hidden on desktop */
.hamburger {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

/* HERO */
.hero-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
  border-radius: 10px;
}

.hero-wrapper {
  padding: 0 25px;
  padding-top: 15px;
}

.hero-image {
  position: relative;
  margin-bottom: 10px;
  z-index: 1;  /* jangan sampai menimpa dropdown */

  min-height: 450px;
  height: auto;
  overflow: hidden;
  margin-top: -30px;
}

.hero-image img.active {
  display: block;  /* TAMPILKAN YANG AKTIF */
}

.hero-text {
  position: absolute;
  top: 47%;
  left: 27%;
  transform: translate( -50%, -50%);
  color: white;
  text-shadow: 0 2px 8px rgba(0,0,0,1);
}

.hero-box h2 {
  text-align: center;
  width: 100%;
  color: #000;
  font-size: 20px;
}

.hero-box {
  position: absolute;
  top: 50%;
  right: 80px;
  transform: translateY(-50%);
  background-color: #FFFFF0;
  padding: 20px;
  border-radius: 10px;
  width: 250px;
  height: 260px;
  border: 3px solid #FFFFFF;
  box-shadow: 0 5px 5px rgba(0,0,0,0.6);
}

.hero-box input {
  width: 100%;
  box-sizing: border-box;
}

.hero-box select,
.hero-box input,
.hero-box button {
  width: 100%;
  margin-bottom: 10px;
  padding: 8px;
  border-radius: 5px;
  border: 1px solid #ccc;
  font-size: 20px;   /* Silakan ubah angkanya */
  font-family: Ropa Sans, sans-serif;
}

.hero-box button {
  background: #2E8B57;
  color: white;
  transition: transform 0.2s, background-color 0.2s;
}

.hero-box button:hover {
  transform: translateY(-2px);      /* efek naik sedikit saat hover */
  background-color: #28a428;        /* hijau sedikit lebih gelap */
}

/* PAGE LAYOUT FOR SERVICE PAGES */
.service-layout {
  display: flex;
  align-items: flex-start;
  padding: 15px 20px;
  gap: 30px;
  margin-bottom: 60px;
}

.service-layout img {
  width: 550px;
  height: 385px;
  border: 2px solid #0000;
  object-fit: cover;
  border-radius: 10px;
  margin-right: 20px;
  margin-left: 65px;
  box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.6);
}

.service-layout h1 {
  margin-top: 0;  /* agar tidak turun */
  font-size: 50px;
}

.italic-text {
  font-style: italic;
  margin-top: -30px;
  font-size: 22px;
}

.service-details .price {
  font-size: 30px;        /* ukuran harga */
  font-weight: bold;
  margin: 0 0 10px 0;     /* jarak bawah 10px sebelum Price includes */
  color: #2E8B57;
}

.service-details .price-includes-title {
  font-size: 22px;        /* ukuran "Price includes:" */
  font-weight: 600;
  margin: 0 0 5px 0;      /* jarak bawah 5px sebelum daftar */
}

.service-details .price-includes-list {
  font-size: 22px;        /* ukuran daftar isi */
  margin: 0;
  padding-left: 20px;     /* indent daftar */
}

.service-details .price-includes-list li {
  margin-bottom: 5px;     /* jarak antar item list */
  font-size: 20px;
}

.bus-options {
  display: flex;             /* membuat tombol sejajar horizontal */
  justify-content: center;   /* tombol berada di tengah halaman */
  gap: 20px;                 /* jarak antar tombol */
  margin-top: 20px;          /* jarak dari service-layout */
}

.bus-options .bus-btn {
  background-color: #FA8072;
  color: white;
  font-family: Ropa Sans, sans-serif;
  font-size: 20px;
  padding: 12px 25px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.2s, background-color 0.2s;
}

.bus-options .bus-btn:hover {
  transform: translateY(-2px);      /* efek naik sedikit saat hover */
  background-color: #28a428;        /* hijau sedikit lebih gelap */
}

.bus-btn.active {
  background-color: #2E8B57;
}

/* DREAM VACATION */
.dream-grid {
  width: auto;
  height: auto;
  min-height: 0;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 10px;          /* ← perbaikan utama */
  margin-bottom: 10px;
}

.grid-item {
  flex: 1;                
  background: transparent;
  text-align: center;
  padding: 10px 10px;
  border-radius: 8px;
  transition: transform 0.3s;
  display: flex;
  flex-direction: column;   /* agar tombol dan teks vertikal */
  justify-content: flex-end;
  align-items: center;
}

.grid-item h3 {
    font-size: 22px;
    margin-bottom: 5px; /* atau 0 jika mau sangat mepet */
}

.grid-img {
  display: block;
  margin: 0 auto; /* rata tengah, jarak bawah 15px */
  max-width: 75%;       /* bisa disesuaikan */
  height: auto;          /* tetap proporsional */
  border-radius: 10px;
  border: 2px solid #0000;
  box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.6);
}

/* Tombol */
.details-btn-dream {
  padding: 0 15px;       /* hanya horizontal */
  height: 30px;          /* sesuaikan dengan font-size */
  align-content: center;
  line-height: 30px;     /* sama dengan tinggi tombol → vertical center */
  text-decoration: none;
  border: none;
  letter-spacing: 1px;
  margin-top: 5px; /* pastikan tombol tidak punya jarak tambahan */
  border-radius: 6px;
  background-color: #2E8B57; /* hijau */
  color: white;              /* teks putih */
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.2s;
}

.details-btn-dream:hover {
  transform: translateY(-2px);
}

/* ============================
   TOUR PAGE (AMAN DARI BENTROK)
============================= */
.tour-page {
  max-width: 1200px;
  margin: -35px auto;
  font-family: Ropa Sans, sans-serif;
}

.tour-grid {
  margin-bottom: 50px;
}

  .tour-page h1 {
    color: #2E8B57;
  }

/* Grid 3 kolom */
.tour-page .tour-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}


/* Card item */
.tour-page .tour-item {
  display: flex;
  flex-direction: column;
  background: #fffff0;
  padding: 15px;
  border-radius: 10px;
  border: 2px solid white;
  box-shadow: 0 4px 4px rgba(0,0,0,0.5);
}

/* Gambar */
.tour-page .tour-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  order: 0; 
}

.tour-page .tour-title { order: 1; }
.tour-page .tour-price { order: 2; }
.tour-page .tour-desc  { order: 3; }
.tour-page .tour-note  { order: 4; }   /* note di atas tombol */
.tour-page .tour-buttons { 
  order: 5;
  margin-top: auto;
}

/* Judul tur */
.tour-page .tour-title {
  font-size: 20px;
  font-weight: bold;
  margin-top: 12px;
  text-align: left;
}

/* Harga */
.tour-page .tour-price {
  font-size: 20px;
  color: #2E8B57;
  margin: 5px 0 15px; /* angka terakhir adalah jarak ke deskripsi */
  font-weight: bold;
  text-align: left;
}

/* Deskripsi */
.tour-page .tour-desc {
  font-size: 18px;
  color: #333;
  text-align: left;
  line-height: 1.4;
}

/* Note italic */
.tour-page .tour-note {
  font-size: 13px;
  color: #FF0000;
  font-style: italic;
  margin-top: 12px;
  text-align: center;
}

/* Wrapper tombol */
.tour-page .tour-buttons {
  margin-top: auto;   /* inilah kuncinya */
  display: flex;
  justify-content: center;
  gap: 12px;
  padding-top: 7px;  /* beri jarak dari teks */
}

/* Tombol More Details – tetap memakai style asli */
.tour-page .details-btn {
  display: inline-flex;
  width: 92px;
  justify-content: center;
  text-align: center;
  background: #2E8B57;
  color: white;
  padding: 10px 12px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 17px;
  transition: background-color 0.3s, transform 0.2s;
  margin: 0;
}

/* Hover effect sama juga */
.tour-page .details-btn:hover,
.tour-page .booking-btn:hover {
  transform: translateY(-2px);
}

/* Overlay */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* Kotak popup */
.popup-box {
  background: linear-gradient(135deg, #fcfdff, #f6f9fd);
  width: 100%;
  width: 450px;
  padding: 20px;
  border-radius: 10px;
  font-family: Ropa Sans, sans-serif;
  animation: fadeIn 0.25s ease;
}

.popup-box h3 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 28px;
}

.popup-box .price-line {
  margin: 3px 0;
  color: #28a428;
  font-size: 20px;
}

.popup-box .price-row {
  display: flex;
  align-items: center;
  justify-content: space-between; /* agar harga di kiri, tombol di kanan */
  margin: -5px 0; /* jarak antar baris harga */
  gap: 10px; /* opsional, jarak antara harga dan tombol */
}

.popup-box .booking-btn {
  display: inline-flex;
  justify-content: center;
  text-align: center;
  background: #FF0000; /* merah maroon terang */
  color: white;
  text-decoration: none; /* hilangkan garis bawah */
  transition: background-color 0.3s, transform 0.2s;
  margin: 0;
 
  margin-top: 5px;
  width: 100%;
  padding: 10px 0;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 17px;
}

.popup-box .booking-btn:hover {
  transform: translateY(-2px);
}

.popup-box h4 {
  margin-bottom: 4px; /* jarak antara h4 dan ul */
  margin-top: 20px;
  font-size: 20px;
}

.popup-box ul {
  padding-left: 18px;
  margin-top: 0;
  font-size: 18px;
}

.price-note {
  font-size: 15px;
  color: #000;
  margin: 10px auto 0;
}

/* Tombol close */
.close-btn {
  margin-top: 10px;
  width: 100%;
  background: #2E8B57;
  font-family: Ropa sans, Sans-Serif;
  color: white;
  padding: 10px 0;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 17px;
  transition: background-color 0.3s, transform 0.2s;
}

.close-btn:hover {
  transform: translateY(-2px);
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.92); }
  to { opacity: 1; transform: scale(1); }
}

.tour-header {
  display: flex;
  align-items: center;       /* Vertikal sejajar */
  justify-content: center;   /* H1 tetap di tengah horizontal */
  position: relative;
}

/* Tombol bundar */
.nav-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border: 2px solid #333;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  flex-shrink: 0;          /* Jangan mengecil */
  margin: 0 20px;          /* Jarak horizontal dari h1 */
}

/* SVG panah */
.nav-btn svg {
  width: 24px;
  height: 24px;
  stroke: #333;
  transition: stroke 0.3s;
}

/* Hover efek */
.nav-btn:hover {
  background-color: #2E8B57;
  border-color: #ffff;
  color: white;
}
.nav-btn:hover svg {
  stroke: #fff;
}

/* Judul */
.tour-header h1 {
  font-size: 45px;
  line-height: 50px;  /* Kunci: samakan tinggi line dengan tombol */
  margin: 30px;
  text-align: center;
}

/* Pastikan tombol kiri/kanan tetap di posisi yang benar */
.back-btn {
  order: -1;
}

.next-btn {
  order: 1;
}

.nav-btn:disabled {
  opacity: 0.5;
  cursor: default;
}

.nav-btn:disabled svg {
  stroke: #aaa;
}

/* =============== MOBILE VERSION =============== */
@media (max-width: 768px) {
  body {
    background: #FFFFF;
  }
  header {
    padding: 5px;              /* perkecil tinggi header */
    background: #FFFFF;
    margin-top: -10px;
  }

  /* Hamburger */
  .hamburger {
    display: block;
    font-size: 26px;
    margin-left: 15px;
    cursor: pointer;
    z-index: 3000;
  }

  /* Reset pengaruh desktop */
  nav ul {
    gap: 0 !important;
  }

  /* Box menu */
  .nav-links {
    position: absolute;
    top: 48px;
    left: 37px;

    width: 180px;
    background: #fff;

    border: 1px solid #ccc;
    border-radius: 8px;
    box-shadow: 0 3px 3px rgba(0,0,0,0.5);

    display: none;
    flex-direction: column;

    padding: 15px 0;      /* 🔑 sangat kecil */
    margin: 0;
    list-style: none;
    z-index: 2000;
  }

  .nav-links.show {
    display: flex;
  }

  /* Item menu */
  .nav-links li {
    margin: 0 !important;
    padding: 0 !important;
    line-height: normal !important;
  }

  /* Link */
  .nav-links li a {
    display: block;
    padding: 8px 12px;   /* 🔑 KUNCI RAPAT */
    font-size: 18px;
    line-height: 1.1;    /* 🔑 */
    margin: 0 !important;
  }

  /* Hover */
  .nav-links li a:hover {
    background: #f3f3f3;
  }

  /* ===== DROPDOWN ===== */
  .dropdown-content {
    position: absolute;
    top: 0;
    left: 103%;

    min-width: 120px;
    background: #fff;

    border: 1px solid #ccc;
    border-radius: 6px;
    box-shadow: 0 3px 3px rgba(0,0,0,0.5);

    padding: 2px 0;
    margin: 0;
    list-style: none;
    display: none;
    z-index: 3000;
  }

  .dropdown.show > .dropdown-content {
    display: block;
  }

  /* Isi dropdown */
  .dropdown-content li {
    margin: 0 !important;
    padding: 0 !important;
  }

  .dropdown-content li a {
    padding: 6px 12px;   /* 🔑 rapat */
    font-size: 18px;
    line-height: 1.1;
  }

/* Bungkus hero */
.hero-image {
  padding: 0 !important;
  position: relative !important;
  text-align: center!important;          /* pastikan konten center */

  height: auto !important; /* BOLEH MEMANJANG */
  overflow: visible !important;
  margin-top: -10px;
}

/* Gambar */
.hero-image img {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
}

.hero-image::before {
  content: "";
  display: block;
  background-image: url('images/home/homehp.webp');
  background-size: cover;
  background-position: center;
  
  width: 93% !important;
  height: 450px !important;
  object-fit: cover !important;
  object-position: center !important;
  max-height: none !important;
  border-radius: 10px !important;
  box-shadow: 0 4px 4px rgba(0,0,0,0.5);
  margin: 0 auto !important;   /* INI YANG MEMBUAT GAMBAR BENAR-BENAR DI TENGAH */
  z-index: 1;
}

  /* Text di atas gambar → dipaksa ke posisi aman */
  .hero-text {
    position: absolute !important;
    top: 20px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    text-align: center !important;
    width: 100% !important;
  }

  .hero-text h1 {
    display: none !important;
  }

  /* BOX FILTER DIPAKSA TURUN KE BAWAH */
  .hero-box {
    display: flex;
    flex-direction: column;      /* agar konten tetap tersusun vertikal */
    justify-content: center;     /* center secara vertikal */
    align-items: center;         /* center secara horizontal */
    
    position: relative !important; /* kunci utama */
    transform: none !important;
    top: auto !important;
    right: auto !important;
    width: 80% !important;
    margin: 20px auto 0 !important;       /* center */
    height: auto !important;
    padding: 15px !important;
    border: 2px solid #FFFFFF !important;
    box-shadow: 0 4px 4px rgba(0,0,0,0.5);
    
    z-index: 2;

    object-position: center !important;
  }

  .hero-box h2 {
    text-align: center !important;
    margin: 2px 0 10px 0 !important;
    font-size: 20px !important;
  }

  .hero-box input,
  .hero-box select,
  .hero-box button {
    font-size: 16px !important;
    padding: 12px !important;
    border: 1px solid #b5b5b5 !important;               /* form field lebih tegas */
  }
  
  .hero-box input,
  .hero-box select {
    background: #ffffff !important;
    border: 1px solid #ccc;
    color: #333;
  }

  /* Layout utama menjadi vertikal */
  .service-layout {
    flex-direction: column !important;
    align-items: center;
    padding: 5px 15px;
    gap: 15px;
    margin-bottom: 0 !important;
  }

  /* Gambar penuh */
  .service-layout img {
    width: 100% !important;
    height: auto !important;
    border-radius: 10px;
    
    display: block;        /* penting → hilangkan sifat inline */
    margin-left: 45px;     /* center */
    margin-right: 45px;    /* center */
  }

  /* service-content full width */
  .service-content {
    width: 100% !important;
  }

  /* Title dan subtitle lebih kecil */
  .service-content h1 {
    font-size: 25px !important;
    text-align: center;
    margin: 0 auto 15px auto;
  }
  .italic-text {
    font-size: 16px !important;
    text-align: center;
    margin: -10px auto 25px auto;
  }

  /* Price box lebih rapat */
  .price {
    font-size: 30px !important;
    color: #2E8B57 !important;
  }
  .price-includes-title {
     font-size: 16px !important;
  }
  .price-includes-list li {
    font-size: 16px !important;
  }
  
  .price-container {
     display: flex; 
     position: relative;
  }
  
  .booking-btn {
     margin-top: 0;
     padding: 6px 14px !important;
     height: 16px !important;
     background-color: #FF0000;
     color: white;
     text-decoration: none;
     border-radius: 5px;
     font-size: 15px !important;
     font-weight: bold;
  }

  /* Tombol bus jadi full width */
  .bus-options {
    display: grid !important;
    grid-template-columns: 1fr 1fr;   /* 2 kolom */
    gap: 10px;
    width: 100% !important;
    margin-top: 20px;
  }
  .bus-btn {
    width: 100% !important;
    font-size: 16px !important;
    padding: 12px;
    background-color: #FA8072 !important;
  }
  
  .bus-btn.active {
     background-color: #2E8B57 !important; /* hijau lebih gelap */
  }

  /* Rapikan spacing */
  .service-content {
    padding-bottom: 5px;
  }
  
  .dream-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 kolom tetap */
    gap: 10px; /* jarak antar item horizontal dan vertikal */
    padding-bottom: 10px;
    height: 650px;
    margin-top: -15px !important;
  }

  .grid-item {
    padding: 10px 10px; /* sesuaikan ukuran item */
  }
  
  .grid-item h3 {
    font-size: 20px !important;
    margin-bottom: 5px; /* atau 0 jika mau sangat mepet */
  }

  .grid-img {
    display: block;
    max-width: 100%;       /* bisa disesuaikan */
    height: auto;          /* tetap proporsional */
    border: 2px solid #0000;
    box-shadow: 0 3px 3px rgba(0,0,0,0.5);
  }

/* Tombol */
  .details-btn-dream {
    display: flex;
    align-items: center;   /* vertikal center */
    justify-content: center; /* horizontal center */
    padding: 5px 20px;
    border: none;
    text-decoration: none !important;
    border-radius: 6px;
    height: 20px;
    width: 30px;
    background-color: #2E8B57; /* hijau */
    color: white;              /* teks putih */
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 0; /* pastikan tombol tidak punya jarak tambahan */
  }

  /* Grid jadi 1 kolom */
  .tour-page .tour-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    justify-items: center;
    margin-bottom: 30px;
  }
  
  .tour-page h1 {
    margin-top: 30px;
    margin-bottom: 10px;
    color: #2E8B57;
  }

  /* Card item padding sedikit dikurangi */
  .tour-page .tour-item {
    padding: 12px;
    width: 85%;
  }

  /* Gambar mengecil sedikit */
  .tour-page .tour-item img {
    height: 160px;
  }

  /* Judul tur lebih kecil */
  .tour-page .tour-title {
    font-size: 20px;
  }

  /* Harga */
  .tour-page .tour-price {
    font-size: 20px;
  }

  /* Deskripsi */
  .tour-page .tour-desc {
    font-size: 16px;
  }

  /* Note */
  .tour-page .tour-note {
    font-size: 14px;
    font-weight: bold;
  }
  
  
  .nav-btn {
    border: 1px solid #333;
    width: 35px;
    height: 35px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0 -10px;          /* Jarak horizontal dari h1 */
    margin-top: 20px !important; 
  }

  .nav-btn svg {
    width: 35px;
    height: 35px;
  }

  /* Wrapper tombol tetap di bawah */
  .tour-page .tour-buttons {
    padding-top: 12px;
    gap: 10px;
  }

  /* Tombol sedikit lebih kecil untuk mobile */
  .tour-page .details-btn,
  .tour-page .booking-btn {
    width: 90px;
    padding: 9px 10px;
    font-size: 15px;
  }
  
   .tour-page .booking-btn {
     background-color: #FA8072 !important;
  }
  
  .popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.6);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
  }

/* Kotak popup */
  .popup-box {
    background: #fff;
    width: 85%;
    max-width: 380px;
    padding: 20px;
    border-radius: 10px;
    font-family: Ropa Sans, sans-serif;
    animation: fadeIn 0.25s ease;
  }

  .popup-box h3 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: bold;
  }

  .popup-box h4 {
    margin-bottom: 4px; /* jarak antara h4 dan ul */
    font-size: 16px;
  }

  .popup-box ul {
    padding-left: 18px;
    margin-top: 0;
    font-size: 16px;
  }
  
  /* Biar baris harga tetap rapi */
  .popup-box .price-line {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    line-height: 1.3;
    order: 1;
    margin-top: 10px;
  }

  /* Grup tombol + - */
  .pax-control {
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
    margin-left: 70px !important;
    order: 2;
  }

  /* Angka pax */
  #paxLabel {
    font-size: 15px !important;
    min-width: 22px;
    text-align: center;
    line-height: 1.2;
  }

  /* Kecilkan tombol + dan - biar tidak loncat ke bawah */
  .pax-control button {
    padding: 0 5px !important;
    font-size: 12px !important;
    height: 22px !important;
    line-height: 20px !important;
  }

  /* Bikin price-note selalu turun ke bawah (rapi) */
  .popup-box .price-note {
    flex-basis: 100%;
    margin-top: -10px;
    font-size: 16px;
    order: 3;
  }
  
  .popup-box .booking-btn {
    margin: 8px auto 0;   /* auto kiri-kanan → center */
    display: block;        /* agar margin auto bekerja */
    align-content: center;
    width: 40%;
    height: 25px !important;
    font-size: 16px;
    
    font-family: Ropa sans, Sans-Serif;
    padding: 5px 0;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
   }

/* Tombol close */
  .close-btn {
    margin: 8px auto 0;   /* auto kiri-kanan → center */
    display: block;        /* agar margin auto bekerja */
    width: 50%;
    background: #2E8B57;
    font-family: Ropa sans, Sans-Serif;
    color: #fff;
    padding: 10px 0;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
  }
}