/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-thumb {
  background-color: #3b82f6;
  border-radius: 4px;
}

/* Utility */
.jannah-firdaus-line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  padding: 0;
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  text-decoration: none;
}
/* Navbar & Img Hero */
/* Navbar & Img Hero */
/* Navbar & Img Hero */
/* Navbar & Img Hero */
/* Navbar & Img Hero */
/* Navbar & Img Hero */
/* Navbar & Img Hero */
/* Navbar */
/* Header */
.header-info {
  display: flex;
  justify-content: space-between;
  align-items: flex-start; /* tetap di atas */
  padding: 20px 120px;
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  min-height: 90px; /* tinggi header */
  z-index: 999;
  max-width: 1300px;
  margin: 0 auto;
}

/* Logo */
.logo img {
  height: 65px;
  width: auto;
  margin-bottom: 10px;
  margin-top: -10px;
}

/* Kontak dan sosial horizontal */
.contact {
  display: flex;
  align-items: flex-start;
  gap: 50px; /* jarak antara WA dan sosial */
}

/* Nomor WhatsApp */
.phone-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  font-weight: bold;
  color: #333;
  text-decoration: none;
  transition: color 0.3s;
}
.phone i {
  color: #25d366;
  font-size: 1.2rem;
}
.phone:hover {
  color: #0077ff;
}
.phone-label {
  font-size: 0.85rem;
  color: #555;
  margin-top: 2px;
}

/* Media sosial */
.social-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.social a {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 1rem;
  color: #333;
  text-decoration: none;
  transition: color 0.3s;
}
.social a i {
  font-size: 1.2rem;
}
.social a:hover {
  color: #0077ff;
}
.social-label {
  font-size: 0.85rem;
  color: #555;
  margin-top: 2px;
}

/* Responsive mobile */
@media (max-width: 768px) {
  .header-info {
    justify-content: center;
    padding: 15px 20px;
    min-height: auto;
  }
  .contact {
    display: none; /* hilangkan kontak & sosial media */
  }
  .logo img {
    height: 70px;
  }
}

/* Navbar Desktop */
/* Navbar Desktop */
.navbar {
  background-color: rgb(0, 77, 71); /* Navy blue */
  position: sticky; /* lengket di atas */
  top: 0;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000; /* pastikan di atas hero */
  width: 95%; /* atur lebar navbar */
  max-width: 1300px; /* maksimal lebar */
  margin: -25px auto 0 auto; /* top negatif, horizontal center, bottom 0 */
}

/* Menu kiri desktop */
.navbar .menu {
  display: flex;
  gap: 20px;
}

.navbar .menu a {
  color: white;
  text-decoration: none;
  padding: 8px 12px;
  transition: background 0.3s;
}

.navbar .menu a:hover {
  background-color: #444;
  border-radius: 5px;
}

/* Tombol login desktop */
.login-btn-desktop {
  padding: 8px 15px;
  background-color: #f0a500;
  color: #111;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.3s;
}

.login-btn-desktop:hover {
  opacity: 0.8;
}

/* Sembunyikan tombol login di menu desktop */
.navbar .menu a.login-btn {
  display: none;
}

/* Tombol menu mobile */
.toggle-btn {
  display: none;
}

/* Mobile */
@media screen and (max-width: 768px) {
  /* Sembunyikan tombol login desktop */
  .login-btn-desktop {
    display: none;
  }

  /* Menu mobile */
  .navbar .menu {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100%;
    width: 100%;
    background-color: #1e1e1e;
    flex-direction: column;
    align-items: start;
    padding: 60px 20px;
    gap: 20px;
    transition: right 0.3s;
    z-index: 9999;
  }

  /* Tombol login di menu mobile */
  .navbar .menu a.login-btn {
    display: block;
    background-color: #f0a500;
    color: #111;
    border-radius: 5px;
    text-align: center;
    width: 100%;
    padding: 10px 0;
  }

  .navbar .menu.active {
    right: 0;
  }

  /* Tombol menu floating di pojok kanan atas */
  .toggle-btn {
    display: flex;
    position: fixed;
    top: -5px;
    right: 0px;
    background-color: #f0a500;
    color: #111;
    padding: 15px 13px 8px 13px;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
  }

  /* Hilangkan background navbar di mobile */
  .navbar {
    background: none;
    padding: 0;
  }
}

.hero {
  position: relative; /* penting supaya overlay bisa ditempel */
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1300px;
  margin: 0 auto;
  background-image: url("img/dokumentasi-jamaah-jannah-firdaus-travel.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden; /* biar overlay ikut terpotong rapi */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  margin-top: -30px;
  padding-top: 30px;
}

/* selaput biru kabut */
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(1, 121, 111, 0.8); /* biru transparan */
  z-index: 1;
}

/* pastikan isi konten hero muncul di atas overlay */
.hero > * {
  position: relative;
  z-index: 2;
}

.hero-left,
.hero-right {
  flex: 1;
}

.hero-left {
  padding: 40px;
}

.hero-left h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: #fff; /* putih agar kontras */
  text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.5); /* biar makin jelas */
}

.hero-left p {
  font-size: 1.35rem;
  margin-bottom: 25px;
  color: #fff; /* abu terang */
  line-height: 1.4;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
}

.hero-left .btn {
  display: inline-block;
  padding: 12px 25px;
  background-color: #b8860b; /* goldenrod gelap / dark goldenrod */
  color: #ffffff; /* teks putih */
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4); /* bikin teks lebih jelas */
  transition: background 0.3s ease;
}

.hero-right img {
  width: 100%;
  height: 100%;
  display: block; /* Hilangkan space bawah img */
  object-fit: cover; /* biar selalu pas */
  padding: 20px 20px 0px 20px;
}

/* Responsive */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
  }
  .hero-left {
    padding: 20px;
    text-align: center;
  }
  .hero-right img {
    padding: 15px 15px 0px 15px;
  }
  .hero {
    margin: 0 auto;
    padding-top: 0;
  }
}
/* About */
/* About */
/* About */
/* About */
/* About */

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");

/* ========= Root & Reset ========= */
:root {
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --green-50: #ecfdf5;
  --green-100: #d1fae5;
  --green-500: #22c55e;
  --green-600: #059669;
  --emerald-700: #065f46;
  --white: #fff;
  --black: #000;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 24px;
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07), 0 2px 4px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --container: 1200px;
}
/* ========= Utility classes (Tailwind-like) ========= */
.min-h-screen {
  min-height: 100vh;
}
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.px-6 {
  padding-left: 24px;
  padding-right: 24px;
}
.py-4 {
  padding-top: 16px;
  padding-bottom: 16px;
}
.py-16 {
  padding-top: 64px;
  padding-bottom: 64px;
}
.p-6 {
  padding: 24px;
}
.p-8 {
  padding: 32px;
}
.pt-8 {
  padding-top: 32px;
}
.mt-8 {
  margin-top: 32px;
}
.mb-2 {
  margin-bottom: 8px;
}
.mb-4 {
  margin-bottom: 16px;
}
.mb-6 {
  margin-bottom: 24px;
}
.mb-8 {
  margin-bottom: 32px;
}
.mb-12 {
  margin-bottom: 48px;
}
.gap-4 {
  gap: 16px;
}
.gap-8 {
  gap: 32px;
}
.w-full {
  width: 100%;
}
.w-10 {
  width: 40px;
}
.h-10 {
  height: 40px;
}
.w-12 {
  width: 48px;
}
.h-12 {
  height: 48px;
}
.w-16 {
  width: 64px;
}
.h-16 {
  height: 64px;
}
.h-64 {
  height: 16rem;
}
.rounded-full {
  border-radius: 9999px;
}
.rounded-lg {
  border-radius: var(--radius-lg);
}
.rounded-xl {
  border-radius: var(--radius-xl);
}
.rounded-2xl {
  border-radius: var(--radius-2xl);
}
.bg-white {
  background: var(--white);
}
.bg-gray-50 {
  background: var(--gray-50);
}
.bg-gray-800 {
  background: var(--gray-800);
}
.bg-green-600 {
  background: var(--green-600);
}
.bg-green-100 {
  background: var(--green-100);
}
.text-white {
  color: var(--white);
}
.text-green-600 {
  color: var(--green-600);
}
.text-green-800 {
  color: #065f46;
}
.text-green-100 {
  color: #d1fae5;
}
.text-gray-800 {
  color: var(--gray-800);
}
.text-gray-600 {
  color: var(--gray-600);
}
.text-gray-500 {
  color: var(--gray-500);
}
.text-gray-400 {
  color: #9ca3af;
}
.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}
.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}
.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}
.text-3xl {
  font-size: 1.875rem;
  line-height: 2.25rem;
}
.text-4xl {
  font-size: 2.25rem;
  line-height: 2.5rem;
}
.font-bold {
  font-weight: 700;
}
.font-semibold {
  font-weight: 600;
}
.font-medium {
  font-weight: 500;
}
.shadow-md {
  box-shadow: var(--shadow-md);
}
.shadow-lg {
  box-shadow: var(--shadow-lg);
}
.shadow-xl {
  box-shadow: var(--shadow-xl);
}
.flex {
  display: flex;
}
.grid {
  display: grid;
}
.items-center {
  align-items: center;
}
.items-start {
  align-items: flex-start;
}
.justify-between {
  justify-content: space-between;
}
.justify-center {
  justify-content: center;
}
.text-center {
  text-align: center;
}
.hidden {
  display: none;
}
.relative {
  position: relative;
}
.object-cover {
  object-fit: cover;
}
.border-2 {
  border-width: 2px;
  border-style: solid;
}
.border-white {
  border-color: #fff;
}
.border-t {
  border-top: 1px solid;
}
.border-gray-700 {
  border-color: #374151;
}
.transition {
  transition: all 0.3s ease;
}
.duration-300 {
} /* kept for compatibility */

/* Spacing between children (space-x / space-y) */
.space-x-2 > * + * {
  margin-left: 8px;
}
.space-x-3 > * + * {
  margin-left: 12px;
}
.space-x-4 > * + * {
  margin-left: 16px;
}
.space-x-6 > * + * {
  margin-left: 24px;
}
.space-y-4 > * + * {
  margin-top: 16px;
}

/* Grid columns at breakpoints */
@media (min-width: 640px) {
  .sm\:flex-row {
    flex-direction: row;
  }
}
@media (min-width: 768px) {
  .md\:flex {
    display: flex;
  }
  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .md\:text-5xl {
    font-size: 3rem;
    line-height: 1;
  }
}
@media (min-width: 1024px) {
  .lg\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* Gradients (utility-style) */
.bg-gradient-to-r {
  background-image: linear-gradient(
    to right,
    var(--from, #000),
    var(--to, #111)
  );
  background-size: 100% 100%;
}
.from-green-500 {
  --from: var(--green-500);
}
.from-green-50 {
  --from: var(--green-50);
}
.from-green-600 {
  --from: var(--green-600);
}
.to-emerald-700 {
  --to: var(--emerald-700);
}
.to-emerald-100 {
  --to: #a7f3d0;
}

/* Custom components */
.hero-pattern {
  background: linear-gradient(
    135deg,
    rgba(16, 185, 129, 0.1) 0%,
    rgba(5, 150, 105, 0.2) 100%
  );
}
.gradient-text {
  background: linear-gradient(135deg, #059669 0%, #065f46 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.floating-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.floating-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}
.icon-circle {
  transition: all 0.3s ease;
}
.floating-card:hover .icon-circle {
  transform: scale(1.1);
  background: linear-gradient(135deg, #059669 0%, #065f46 100%);
  color: #fff;
}
.badge-glow {
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(5, 150, 105, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(5, 150, 105, 0);
  }
}
.stats-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #059669;
}
/* Buttons */
.btn {
  padding: 0.75rem 2rem;
  border-radius: 9999px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-white {
  background: #fff;
  color: var(--green-600);
}
.btn-white:hover {
  background: #f3f4f6;
}
.btn-ghost {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
}
.btn-ghost:hover {
  background: #fff;
  color: var(--green-600);
}
/* Image styles */
img {
  display: block;
  max-width: 100%;
  height: auto;
}
/* Produk */
/* Produk */
/* Produk */
/* Produk */
/* Produk */
/* Container max width */
.jannah-firdaus-max-w-7xl {
  max-width: 80rem; /* 1280px */
  margin-left: auto;
  margin-right: auto;
  padding: 1.5rem 1.5rem 1.5rem;
  background-color: #f0f4f3;
}

/* Header */
.produk {
  margin-bottom: 2rem;
  text-align: center;
}
.produk h2,
.produk h1 {
  font-size: 2rem; /* dari 2.5rem jadi 2rem */
  font-weight: 800; /* extrabold */
  color: #00897b; /* blue-700 */
  letter-spacing: -0.025em;
  user-select: none;
}
.produk p {
  margin-top: 0.75rem;
  font-size: 1.125rem; /* lg */
  color: #333; /* blue-600 */
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

/* Section */
.jannah-firdaus-paket {
  margin-bottom: 2rem;
}

/* Section heading flex */
.jannah-firdaus-paket h2 {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 1.75rem; /* dari 2.25rem jadi 1.75rem */
  font-weight: 600;
  margin-bottom: 2rem;
  user-select: none;
  text-align: center;
}
@media (min-width: 768px) {
  .jannah-firdaus-paket h2 {
    flex-direction: row;
    align-items: center;
    text-align: left;
  }
}

/* Badge */
/* Badge */
.jannah-firdaus-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background: linear-gradient(
    to right,
    #26a69a,
    #78cbc3
  ); /* gradasi tosca hijau */
  color: white;
  text-transform: capitalize;
  user-select: none;
  font-weight: 600;
}

/* Horizontal line */
.jannah-firdaus-divider {
  flex-grow: 1;
  border-top: 2px solid #93c5fd; /* blue-300 */
  display: none;
}
@media (min-width: 768px) {
  .jannah-firdaus-divider {
    display: block;
  }
}
/* Grid responsif untuk tiap kategori */
.jannah-firdaus-grid {
  display: flex; /* pakai flexbox */
  flex-wrap: wrap; /* item turun ke bawah */
  gap: 1.5rem; /* jarak antar kartu */
  justify-content: center; /* konten di tengah */
  padding-bottom: 1rem; /* spasi bawah */
}

/* Style kartu biar rapi */
.jannah-firdaus-card {
  background: #ffffff;
  border-radius: 10px;
  padding: 1rem;
  width: 220px; /* lebar tetap agar grid rapi */
  text-align: center; /* isi konten rata tengah */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease;
}

.jannah-firdaus-card:hover {
  transform: translateY(-5px);
}

/* Hilangkan scrollbar */
.jannah-firdaus-grid::-webkit-scrollbar {
  display: none;
}

/* Kartu agar bisa snap */
.jannah-firdaus-article {
  flex: 0 0 auto; /* jangan mengecil, tetap lebar */
  width: 350px; /* atur lebar kartu */
  scroll-snap-align: start; /* snap tiap item */
  background: #ffff;
  border-radius: 8px;
}

/* Image container */
.jannah-firdaus-img-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-top-left-radius: 1.5rem;
  border-top-right-radius: 1.5rem;
  overflow: hidden;
  flex-shrink: 0;
}
.jannah-firdaus-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Card content */
.jannah-firdaus-content {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

/* Title */
.jannah-firdaus-h3 {
  font-size: 1.25rem; /* dari 1.5rem jadi 1.25rem */
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: black; /* blue-800 */
  line-height: 1.2;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

/* Info list */
.jannah-firdaus-info-list {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.875rem; /* text-sm */
  color: #374151; /* gray-700 */
}
.jannah-firdaus-info-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.jannah-firdaus-info-row i {
  width: 1.25rem; /* w-5 */
  color: #00897b; /* blue-600 */
  flex-shrink: 0;
}
.jannah-firdaus-info-label {
  font-weight: 600;
}

/* Stars warna gold bersih tanpa shadow */
.jannah-firdaus-stars {
  margin-left: auto;
  color: #ffd700; /* gold */
  display: flex;
  gap: 0.125rem;
}
.jannah-firdaus-stars i {
  color: #ffd700 !important;
}

.jannah-firdaus-dates {
  display: flex;
  flex-wrap: wrap;
  gap: 0.1rem; /* jarak antar badge kecil */
  margin-top: 0.25rem;
  color: black;
}

.jannah-firdaus-date-badge {
  background-color: transparent; /* hilangkan background */
  color: #000;
  padding: 0;
  user-select: none;
  font-size: 1rem;
  position: relative;
}

/* Tambahkan koma setelah setiap badge kecuali terakhir */
.jannah-firdaus-date-badge::after {
  content: ",";
  margin-left: 2px; /* jarak koma dari teks */
  color: #4b5563; /* warna koma */
}

.jannah-firdaus-date-badge:last-child::after {
  content: "";
}

/* Price */
/* Harga Quad */
.jannah-firdaus-price {
  font-size: 1.5rem;
  font-weight: bold;
  color: #e63946;
  margin-bottom: 5px;
}

.jannah-firdaus-price span {
  font-size: 0.9rem;
  color: #555;
  font-weight: normal;
  margin-left: 4px;
}

/* Harga tambahan sejajar tapi label di atas harga */
.jannah-firdaus-additional-prices {
  display: flex;
  gap: 5px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.jannah-firdaus-additional-prices div {
  background: #f8f9fa;
  padding: 5px 8px;
  border-radius: 8px;
  border: 1px solid #eee;
  font-size: 0.95rem;
  flex: 1;
  text-align: center;
  display: flex;
  flex-direction: column; /* label di atas harga */
  align-items: center;
  transition: background 0.3s ease;
}

.jannah-firdaus-additional-prices div:hover {
  background: #f1f1f1;
}

.jannah-firdaus-additional-prices strong {
  color: #1d3557;
  margin-bottom: 0;
}

/* Mobile tetap sama format */
@media (max-width: 600px) {
  .jannah-firdaus-additional-prices {
    flex-direction: row;
  }
}
.jannah-firdaus-price-label {
  display: inline-block;
  color: #333;
  font-size: 0.85rem;
  margin-top: 5px;
}

/* Button */

.jannah-firdaus-btn-detail {
  display: inline-block;
  background: linear-gradient(135deg, #20c997, #00897b);
  color: white;
  text-decoration: none;
  padding: 0.6rem 1rem;
  border-radius: 0.6rem;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 500;
  transition: background 0.3s ease;
  margin-top: auto;
}
.jannah-firdaus-btn-detail:hover {
  background: linear-gradient(135deg, #00897b, #20c997);
}
.jannah-firdaus-dates {
  background: #e0f7f4;
  border: 1px solid #b2dfdb;
  border-radius: 0.8rem;
  padding: 0.5rem;
  font-size: 0.9rem;
  margin-bottom: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem; /* jarak antar bulan */
}

.jannah-firdaus-dates .tanggal-bulan {
  display: flex;
  flex-direction: column; /* strong di atas */
  gap: 0.3rem;
}

.jannah-firdaus-dates .tanggal-bulan strong {
  color: #00796b;
  font-weight: 600;
}

.jannah-firdaus-dates .tanggal-group span {
  display: inline-block;
  background: #b2dfdb;
  color: #004d40;
  padding: 0.25rem 0.5rem;
  border-radius: 0.4rem;
  font-weight: 500;
  font-size: 0.85rem;
}

/* Responsif kecil */
@media (max-width: 768px) {
  .produk h2 {
    font-size: 1.6rem;
  }
  .jannah-firdaus-paket h2 {
    font-size: 1.5rem;
  }
  .jannah-firdaus-h3 {
    font-size: 1.1rem;
  }
  .jannah-firdaus-price {
    font-size: 1.1rem;
  }
}
/* Struktur label + bintang */
.hotel-info-header {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-weight: 600;
  color: black;
  margin-bottom: -0.5rem;
}
.hotel-info-header i.fa-hotel {
  color: #00897b;
  font-size: 1.1rem;
  flex-shrink: 0;
  line-height: 1;
  position: relative;
  margin-right: 0.25rem;
  top: 5px; /* turunkan sedikit agar sejajar teks */
}
.hotel-info-header .stars {
  margin-left: 0.25rem; /* rapat dengan teks */
  color: #fbbf24;
  display: flex;
  gap: 0.125rem;
}
/* Nama hotel di bawah */
.hotel-info-name {
  padding-left: 1.7rem; /* sejajar teks, bukan ikon */
  margin-bottom: 0;
  color: #374151;
}

/*Fasilitas*/
/*Fasilitas*/
/*Fasilitas*/
/*Fasilitas*/

.jannah-firdaus-fasilitas {
  position: relative; /* penting agar ::before posisinya relatif */
  font-family: "Segoe UI", sans-serif;
  margin: 0;
  padding: 0;
  color: #333;
  background: url("img/dokumentasi-jamaah-jannah-firdaus-travel.webp")
    center/cover no-repeat;
  z-index: 1; /* agar konten di atas overlay */
}

/* Overlay putih transparan di atas background */
.jannah-firdaus-fasilitas::before {
  content: "";
  position: absolute; /* absolute agar mengikuti induk */
  inset: 0;
  background: rgba(255, 255, 255, 0.85);
  z-index: -1; /* di bawah konten tapi di atas background */
}

.fasilitas {
  max-width: 1300px;
  margin: auto;
  padding: 30px 15px;
}

/* Styling untuk h1 dengan class */
.jft-h1 {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 30px;
  color: #059669;
  font-weight: bold;
}

.jft-fasilitas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 15px;
}

.jft-fasilitas-item {
  backdrop-filter: blur(1px); /* efek blur kaca */
  -webkit-backdrop-filter: blur(1px);
  border: 1px solid rgba(255, 255, 255, 0.3); /* border tipis kaca */
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.jft-icon {
  font-size: 36px;
  margin-bottom: 10px;
  color: #059669;
}

/* Styling untuk h3 dengan class */
.jft-h3 {
  font-size: 1.1rem;
  color: #059669;
  margin-bottom: 8px;
}

/* Styling untuk p dengan class */
.jft-p {
  font-size: 0.9rem;
  color: #444;
  line-height: 1.5;
}

/* Mobile: 2 kolom */
@media (max-width: 600px) {
  .jft-fasilitas-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
  }
  .fasilitas {
    padding: 10px 5px;
  }
  .jft-h1 {
    font-size: 1.4rem;
    margin-bottom: 20px;
  }
  .jft-icon {
    font-size: 30px;
  }
  .jft-h3 {
    font-size: 1rem;
  }
  .jft-p {
    font-size: 0.85rem;
  }
}
/*Kenapa Jannah Firdaus Travel*/
/*Kenapa Jannah Firdaus Travel*/
/*Kenapa Jannah Firdaus Travel*/
/*Kenapa Jannah Firdaus Travel*/
/*Kenapa Jannah Firdaus Travel*/
/*Kenapa Jannah Firdaus Travel*/
/*Kenapa Jannah Firdaus Travel*/

.jannah-firdaus-travel-umroh-container {
  max-width: 1300px;
  margin: 40px auto 60px;
  padding: 0 20px;
}

.jannah-firdaus-travel-umroh-top-section {
  display: flex;
  gap: 40px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.jannah-firdaus-travel-umroh-column {
  background: white;
  padding: 30px 40px;
  border-radius: 12px;
  box-shadow: 0 10px 15px rgba(0, 71, 171, 0.07),
    0 4px 6px rgba(0, 71, 171, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.jannah-firdaus-travel-umroh-left-column {
  flex: 1 1 45%;
}

.jannah-firdaus-travel-umroh-right-column {
  flex: 1 1 45%;
  margin-bottom: 0;
  /* Hapus background dan padding agar mirip konten kiri tapi tanpa latar */
  background: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

/* Judul bagian kiri */
.jannah-firdaus-travel-umroh-left-column h2 {
  font-size: 2.5rem;
  color: #059669; /* biru gelap */
  margin-bottom: 16px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.jannah-firdaus-travel-umroh-left-column p {
  font-size: 1.15rem;
  margin-bottom: 28px;
  color: #333; /* biru abu gelap */
}
.jannah-firdaus-travel-umroh-cta-button {
  display: inline-block;
  font-weight: 700;
  text-transform: uppercase;
  background: linear-gradient(135deg, #00897b, #20c997);
  color: white;
  padding: 16px 32px;
  border-radius: 50px;
  box-shadow: 0 6px 10px rgba(59, 130, 246, 0.4);
  cursor: pointer;
  user-select: none;
  width: fit-content;
  align-self: flex-start;
  letter-spacing: 0.07em;
}
/* Desain kanan & bawah sama style */
.jannah-firdaus-travel-umroh-card {
  background: white;
  border-left: 6px solid #059669;
  padding: 24px 28px;
  margin-bottom: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.12);
  color: #059669;
  display: flex;
  flex-direction: column;
}
.jannah-firdaus-travel-umroh-card h3 {
  margin: 0 0 14px 0;
  font-size: 1.25rem; /* kecilkan dari 1.5rem */
  font-weight: 700;
  letter-spacing: 0.03em;
  display: flex;
  align-items: center;
  gap: 12px;
}
.jannah-firdaus-travel-umroh-card h3 i {
  color: #059669;
  font-size: 1.4rem; /* kecilkan dari 1.6rem */
  min-width: 26px;
  text-align: center;
}
.jannah-firdaus-travel-umroh-card p {
  margin: 0;
  color: #222;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 500;
}

/* Bottom section jadi grid 3 kolom */
.jannah-firdaus-travel-umroh-bottom-section {
  max-width: 1300px;
  margin: 0 auto 60px;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* Responsive */
@media (max-width: 1000px) {
  .jannah-firdaus-travel-umroh-top-section {
    flex-direction: column;
  }
  .jannah-firdaus-travel-umroh-left-column,
  .jannah-firdaus-travel-umroh-right-column {
    flex-basis: 100%;
    margin-bottom: 30px;
  }
  .jannah-firdaus-travel-umroh-right-column {
    margin-bottom: 0;
  }
  .jannah-firdaus-travel-umroh-bottom-section {
    grid-template-columns: repeat(1, 1fr);
    margin-top: -3rem;
  }
}

@media (max-width: 650px) {
  .jannah-firdaus-travel-umroh-bottom-section {
    grid-template-columns: 1fr;
    margin-top: -3rem;
    gap: 0px;
  }

  .jannah-firdaus-travel-umroh-column {
    background: none;
    padding: 0;
    border-radius: 0px;
    box-shadow: none;
  }
  .jannah-firdaus-travel-umroh-left-column h2 {
    font-size: 2rem;
  }
}

/*Testimoni*/
/*Testimoni*/
/*Testimoni*/
/*Testimoni*/
/*Testimoni*/
.jf-root {
  font-family: "Poppins", sans-serif;
  display: flex;
  flex-direction: column;
  height: 100vh;
  background: #f9fafb;
  color: #333;
}

.jf-header {
  background: #008b8b;
  color: #ffd54f;
  text-align: center;
  padding: 18px 10px;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 1px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.jf-main {
  flex: 1;
  display: flex;
  overflow: hidden;
}

.jf-sidebar {
  width: 320px;
  background: #008b8b;
  color: #fff;
  padding: 25px;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  box-shadow: 3px 0 15px rgba(0, 0, 0, 0.2);
}

.jf-video-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.jf-video-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  transition: all 0.3s ease;
}

.jf-video-list li:hover {
  background: rgba(255, 213, 79, 0.3);
  transform: translateX(6px);
}

.jf-video-list img {
  width: 100px;
  height: 65px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}

.jf-video-info {
  display: flex;
  flex-direction: column;
}

.jf-video-info span {
  font-size: 0.95rem;
  font-weight: 600;
}

.jf-video-info small {
  font-size: 0.75rem;
  color: #ccc;
}

.jf-content {
  flex: 1;
  padding: 35px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(to bottom right, #e0f2f1, #f9fafb);
  overflow-y: auto;
}

.jf-video-container {
  width: 100%;
  max-width: 1000px;
  aspect-ratio: 16/9;
  background: #000;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.jf-video-iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.jf-video-title {
  margin-top: 18px;
  font-size: 1.5rem;
  font-weight: bold;
  color: #00695c;
  text-align: center;
}

.jf-video-subtitle {
  margin-top: 8px;
  font-size: 1rem;
  color: #444;
  text-align: center;
  max-width: 750px;
}

@media (max-width: 768px) {
  .jf-main {
    flex-direction: column;
  }

  .jf-sidebar {
    width: 100%;
    flex-direction: row;
    overflow-x: auto;
    box-shadow: none;
  }

  .jf-video-list {
    flex-direction: row;
  }

  .jf-video-list li {
    flex-direction: column;
    width: 160px;
    align-items: flex-start;
  }

  .jf-video-list img {
    width: 100%;
    height: 90px;
  }
  .jf-content {
    padding: 10px;
  }
}
/* Container utama unik */
.jffqklx9h2m1container {
  font-family: Arial, sans-serif;
  background: #f9f5ee;
  color: #333;
  line-height: 1.6;
  padding: 20px;
}

.jffqklx9h2m1container h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #056676; /* hijau tosca */
}

.jffqklx9h2m1accordion {
  max-width: 800px;
  margin: 0 auto;
}

.jffqklx9h2m1accordionitem {
  background: #fff;
  margin-bottom: 12px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.jffqklx9h2m1accordionheader {
  padding: 15px 20px;
  cursor: pointer;
  font-weight: bold;
  background: linear-gradient(90deg, #5dd5c8, #4ca2af);
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s ease;
}

.jffqklx9h2m1accordionheader:hover {
  background: linear-gradient(90deg, #4ca2af, #348f9c);
}

.jffqklx9h2m1arrow {
  transition: transform 0.3s ease;
  font-size: 18px;
}

.jffqklx9h2m1accordionitemactive .jffqklx9h2m1arrow {
  transform: rotate(90deg);
}

.jffqklx9h2m1accordioncontent {
  display: none;
  padding: 20px;
  background: #fdfdfc; /* putih-creamy */
  animation: jffqklx9h2m1fadeIn 0.3s ease-in-out;
}

.jffqklx9h2m1accordioncontent img {
  max-width: 100%;
  margin: 10px 0;
  border-radius: 6px;
}

.jffqklx9h2m1accordionitemactive .jffqklx9h2m1accordioncontent {
  display: block;
}

@keyframes jffqklx9h2m1fadeIn {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* List FAQ */
.jffqklx9h2m1faqlist {
  counter-reset: faq-counter;
  list-style: none;
  padding-left: 0;
}

.jffqklx9h2m1faqlist li {
  counter-increment: faq-counter;
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
}

/* Nomor di kiri */
.jffqklx9h2m1faqlist li::before {
  content: counter(faq-counter) ".";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: bold;
  color: #222; /* tosca */
  font-size: 1.1rem;
}

/* Responsif mobile */
@media (max-width: 480px) {
  .jffqklx9h2m1faqlist li {
    padding-left: 20px;
  }

  .jffqklx9h2m1faqlist li::before {
    font-size: 1rem;
  }
}

footer {
  background: #008b8b;
  color: #f1f1f1;
  padding: 60px 20px 40px;
  position: relative;
  overflow: hidden;
}

.footer-container {
  max-width: 1300px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  color: #f1f1f1;
}

.footer-column {
  flex: 1 1 280px;
  min-width: 280px;
}

.footer-column h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  font-weight: 700;
  color: #ffeb3b;
}

.footer-column h3 {
  font-size: 1.3rem;
  margin-bottom: 18px;
  font-weight: 600;
  color: #ffeb3b;
}

.footer-column p {
  line-height: 1.7;
  font-size: 1rem;
  opacity: 0.85;
  margin-bottom: 15px;
  color: #f1f1f1;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
  color: #f1f1f1;
}

.footer-column ul li {
  margin-bottom: 12px;
}

.footer-column ul li a {
  color: #f1f1f1;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  font-size: 1rem;
}

.footer-column ul li a:hover {
  color: #ffeb3b;
  text-decoration: underline;
}

.social-icons {
  margin-top: 12px;
  display: flex;
  gap: 18px;
}

.social-icons a {
  color: #f1f1f1;
  font-size: 1.8rem;
  transition: color 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  padding: 0;
  text-decoration: none; /* Pastikan tidak ada underline */
}

.social-icons a:hover {
  color: #ffeb3b;
  transform: scale(1.2);
}

hr {
  border: none;
  border-top: 1.5px solid rgba(255, 255, 255, 0.2);
  margin: 50px auto 20px;
  max-width: 1300px;
}

.copyright {
  text-align: center;
  font-size: 0.95rem;
  color: #f1f1f1;
  letter-spacing: 0.05em;
  user-select: none;
  font-weight: 400;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 30px;
  }
  .footer-column {
    min-width: 100%;
  }
  .jannah-firdaus-max-w-7xl {
    padding: 10px;
    margin: 0;
  }
}
/* Tombol WhatsApp Mengapung */
.contact-widget {
  position: fixed;
  bottom: 1px;
  right: 1px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: flex-end; /* Tetapkan ke kanan */
}

.contact-widget a {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: flex-end; /* Pastikan isi <a> ke kanan */
}

.gambar-container {
  position: relative;
  width: 200px; /* atur sesuai ukuran gambar kamu */
}

.gambar-svg {
  width: 100%;
  height: auto;
  display: block;
}

.area-klik-bawah {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  z-index: 2;
  display: block;
  /* opsional untuk lihat area klik saat uji coba */
  /* background-color: rgba(255, 0, 0, 0.2); */
}

@media (max-width: 480px) {
  .gambar-container {
    position: relative;
    width: 180px; /* atur sesuai ukuran gambar kamu */
  }
}
/* Prev/Next buttons */
button.custom-nav-button {
  position: absolute;
  top: 60%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.8);
  border: none;
  color: #121212;
  font-size: 15px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  cursor: pointer;
  user-select: none;
  box-shadow: 0 5px 15px rgba(253, 255, 254, 0.7);
  transition: background-color 0.3s ease;
  z-index: 20;
}
button#custom-prev-btn {
  left: 0px;
}
button#custom-next-btn {
  right: 0px;
}
.button-container {
  display: flex;
  gap: 20px;
  max-width: 600px;
  margin: 0 auto;
  padding: 0px;
}

.button {
  flex: 1;
  text-align: center;
  padding: 15px 10px;
  border-radius: 10px;
  font-weight: bold;
  text-decoration: none;
  color: white;
  transition: background-color 0.3s ease;
}

.wa-button {
  background-color: #25d366;
}

.wa-button:hover {
  background-color: #1ebe59;
}
