html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

/* General Body and Font Styles */
body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  color: #333;
  line-height: 1.6;
}

/* Container helper */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Global Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Navbar Styles */
.navbar {
  background-color: #fff;
  padding: 10px 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  height: 70px;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  padding: 0 20px;
}

.navbar-left {
  display: flex;
  align-items: center;
}

.logo {
  height: 50px;
  margin-right: 30px;
}

/* Nav Menu */
.nav-menu ul {
  list-style: none;
  display: flex;
  padding: 0;
  margin: 0;
}

.nav-menu ul li {
  position: relative; /* Important for dropdown positioning */
  margin-right: 25px;
}

.nav-menu ul li a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  font-size: 15px;
  transition: color 0.3s ease;
}

.nav-menu ul li a:hover {
  color: #ff1f1f;
}

/* Hubungi Kami Button */
.btn-hubungi-kami {
  background-color: #28a745;
  color: #fff;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.btn-hubungi-kami:hover {
  background-color: #218838;
}

/* Navbar Right */
.navbar-right {
  display: flex;
  align-items: center;
}

/* Dropdown Container */
.dropdown {
  position: relative;
}

/* Sembunyikan dropdown secara default */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%; /* ← Ganti dari 100% jadi lebih naik */
  left: 0;
  background-color: #ffffff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  min-width: 170px;
  z-index: 999;
  border-radius: 4px;
  padding: 10px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* Tampilkan dropdown hanya saat hover */
.dropdown:hover > .dropdown-menu {
  display: block;
  opacity: 1;
  pointer-events: auto;
}

.dropdown-menu li a {
  display: block;
  padding: 10px 15px; /* membesarkan list drpodown plan dari sebelumnya */
  color: #333;
  font-size: 16px; /* Sebelumnya 14px */
  font-weight: 600; /* Sedikit lebih tebal */
  text-decoration: none;
  transition: background-color 0.3s ease;
}

/*mobile navbar*/
@media (max-width: 768px) {
  .nav-menu ul {
    flex-direction: column;
    background-color: #fff;
    position: absolute;
    top: calc(100% - 1px); /* Naik 8px dari posisi default */
    left: 0;
    width: 100%;
    display: none;
  }

  .nav-menu.active ul {
    display: flex;
  }

  .nav-menu ul li {
    margin: 3px 0;
    text-align: center;
  }

  .navbar-right {
    display: none; /* opsional sembunyikan tombol Hubungi Kami */
  }

  .hamburger {
    display: block;
    font-size: 28px;
    cursor: pointer;
    color: #333;
  }
}

@media (max-width: 768px) {
  .dropdown:hover > .dropdown-menu {
    display: none; /* Nonaktifkan hover di mobile */
  }

  .dropdown.open > .dropdown-menu {
    display: block;
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 768px) {
  /* Nonaktifkan hover di mobile */
  .dropdown:hover > .dropdown-menu {
    display: none;
  }

  .dropdown.open > .dropdown-menu {
    display: block;
    opacity: 1;
    pointer-events: auto;
  }

  /* Dropdown style di mobile */
  .dropdown-menu {
    position: static;
    box-shadow: none;
    background-color: #f9f9f9;
    padding: 0;
    margin-top: 8px;
    border-radius: 5px;
  }

  /* JUDUL MENU (semua menu utama) */
  .nav-menu ul,
  .nav-menu ul li,
  .nav-menu ul li a {
    text-align: left;
    padding-left: 8px;
  }

  /* LIST DROPDOWN (khusus Jadwal Umroh & Paket Umroh) */
  .dropdown-menu li a {
    text-align: left;
    padding: 9px 18px;
    padding-left: 70px; /* Ini yang menggeser dropdown lebih jauh */
    border-bottom: 1px solid #eee;
    color: #333;
    font-size: 15px;
  }
}

/* Hero Section Styles */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  color: #fff;
  overflow: hidden;
  padding-top: 28px;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("https://alhijazindwisata.com/img/kloter-1.jpg");
  background-size: cover;
  background-position: center;
  filter: brightness(60%);
  z-index: -2;
}

.hero-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(1px);
  z-index: -1;
}

.hero-content {
  z-index: 1;
  max-width: 800px;
  padding: 20px;
  text-align: left;
  margin-left: 5%;
}

.hero-title {
  font-size: 2.9em;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 40px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
  display: flex;
  justify-content: flex-start;
  gap: 20px;
}

.btn {
  text-decoration: none;
  padding: 15px 30px;
  border-radius: 5px;
  font-weight: 600;
  transition: background-color 0.3s ease, color 0.3s ease,
    border-color 0.3s ease;
  min-width: 100px;
  display: inline-block;
}

.btn-primary {
  background-color: #e74c3c;
  color: #fff;
  border: 2px solid #e74c3c;
}

.btn-primary:hover {
  background-color: #c0392b;
  border-color: #c0392b;
}

.btn-secondary {
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.btn-secondary:hover {
  background-color: #fff;
  color: #333;
  border-color: #fff;
}

/*hero section mobile*/
@media (max-width: 768px) {
  .hero-title {
    font-size: 1.6em; /* Lebih kecil untuk mobile */
  }

  .hero-subtitle {
    font-size: 13px;
  }

  .btn {
    font-size: 14px;
    padding: 12px 24px;
  }
}

@media (max-width: 768px) {
  .btn {
    padding: 8px 16px;
    font-size: 13px;
  }
}

@media (max-width: 383px) {
  .btn {
    font-size: 11px;
    padding: 6px 10px;
    margin-right: 19px;
    min-width: auto;
    white-space: nowrap; /* cegah teks pecah baris */
    flex-shrink: 1; /* biar tombol boleh mengecil */
  }

  .hero-buttons {
    flex-wrap: nowrap; /* pastikan tetap satu baris */
    gap: 8px;
    justify-content: space-between;
  }
}

/* About Section */
.about-section {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 60px 40px;
  /* max-width: 1200px; */ /* Dihapus untuk membuat body full-width */
  margin: auto;
  gap: 40px;
  margin-bottom: -3px;
  background-color: #ffffff; /* Pastikan ini mencakup seluruh lebar */
}

.about-text {
  flex: 1;
}

.about-text h2 {
  font-size: 3em;
  margin-bottom: 10px;
  color: #111;
  line-height: 1.2;
  margin-top: -16px;
}

.ppi-labels {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.ppi-label {
  border: 2px solid #e60000;
  color: #e60000;
  border-radius: 12px;
  padding: 3px 5px;
  font-size: 10px;
  display: inline-block;
  margin-bottom: -13px;
  margin-top: -2px;
  transition: background-color 0.3s ease, color 0.3s ease;
  cursor: pointer;
}

.ppi-label:hover {
  background-color: #e60000;
  color: #fff;
}

.about-text p {
  color: #444;
  line-height: 1.6;
  margin-bottom: 18px;
}

.stats {
  display: flex;
  gap: 30px;
  margin: 10px 0 30px;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.stat .number {
  font-size: 2.1em;
  color: #e60000;
  font-weight: bold;
  gap: 90px;
  margin-top: -10px;
  margin-bottom: 3px;
  margin-right: 40px;
}

.stat .label {
  font-size: 0.9em;
  color: #555;
  margin-top: -15px;
  margin-bottom: 15px;
}

.about-image {
  flex: 1;
  text-align: center;
}

.about-image img {
  /* --- UBAH SUMBER GAMBAR DI SINI --- */
  content: url("https://alhijazindonesia.com/wp-content/uploads/2023/09/penghargaan.png");
  /* ---------------------------------- */
  width: 100%;
  max-width: 500px;
  border-radius: 10px;
  object-fit: cover;
}

.btn-tentang {
  display: inline-block;
  padding: 10px 20px;
  background-color: #e60000;
  color: white;
  text-decoration: none;
  font-weight: bold;
  border-radius: 8px;
  transition: background-color 0.3s ease;
  margin-top: -900px;
  margin-left: -8px;
}

.btn-tentang:hover {
  background-color: #b30000;
}

/*mobile info section*/
@media (max-width: 768px) {
  .about-section {
    flex-direction: column;
    padding: 40px 20px;
    text-align: center;
  }

  .about-text {
    width: 100%;
  }

  .about-text h2 {
    text-align: center;
  }

  .about-text p {
    text-align: justify; /* Justify paragraf */
  }

  .stats {
    flex-wrap: nowrap; /* Agar 1 baris */
    overflow-x: auto; /* Bisa digeser ke kanan jika sempit */
    justify-content: flex-start;
    padding-bottom: 10px;
  }

  .stat {
    min-width: 150px; /* Jaga ukuran agar tetap terbaca */
    align-items: center;
    flex: 0 0 auto;
  }

  .about-image {
    text-align: center;
  }

  .btn-tentang {
    margin-top: 20px;
  }
}

@media (max-width: 768px) {
  .btn-tentang {
    margin-top: -5px; /* Geser lebih dekat ke atas */
  }
}

@media (max-width: 768px) {
  /* Stat Number: 20+, 150.000+, 50+ */
  .stats .stat:nth-child(1) .number {
    margin-left: -40px; /* ubah sesuai kebutuhan */
    padding-left: 50px;
    margin-top: -5px;
  }

  .stats .stat:nth-child(2) .number {
    margin-left: 0px;
    margin-top: -5px;
  }

  .stats .stat:nth-child(3) .number {
    margin-left: 10px;
    margin-top: -5px;
    padding-right: -5000px;
  }

  /* Stat Label: Tahun Pengalaman, Jamaah Terlayani, Pembimbing Profesional */
  .stats .stat:nth-child(1) .label {
    margin-left: -20px;
    margin-top: -10px;
    padding-left: 30px;
  }

  .stats .stat:nth-child(2) .label {
    margin-left: -30px;
    margin-top: -10px;
  }

  .stats .stat:nth-child(3) .label {
    margin-left: 15px;
    margin-top: -10px;
  }
}

.stat .label {
  background: none;
  background-color: transparent;
}

.stat {
  min-width: 150px;
  text-align: left; /* RATa KIRI */
  white-space: nowrap; /* Cegah teks pindah ke baris baru */
}

.stat .label {
  font-size: 14px;
  color: #555;
  white-space: nowrap;
  font-weight: bold; /* <- tambahkan ini */
}

/* Stat pertama: 20+ */
.stats .stat:nth-child(1) .number {
  margin-left: -84px; /* Geser ke kanan */
  margin-top: -5px; /* Geser ke atas */
}

/* Stat kedua: 150.000+ */
.stats .stat:nth-child(2) .number {
  margin-left: -7px;
  margin-top: -5px;
}

/* Stat ketiga: 50+ */
.stats .stat:nth-child(3) .number {
  margin-left: -52px;
  margin-top: -5px;
}

/* Stat 1 - Tahun Pengalaman */
.stats .stat:nth-child(1) .label {
  margin-left: -45px; /* Geser ke kanan */
  margin-top: -20px; /* Geser ke atas */
}

/* Stat 2 - Jamaah Terlayani */
.stats .stat:nth-child(2) .label {
  margin-left: -71px;
  margin-top: -20px;
}

/* Stat 3 - Pembimbing Profesional */
.stats .stat:nth-child(3) .label {
  margin-left: 24px;
  margin-top: -20px;
}

/*khusus dekstop about*/
@media (min-width: 769px) {
  .stats {
    flex-wrap: nowrap;
    justify-content: space-between;
  }

  .stat {
    flex: 1;
    align-items: center; /* opsional: agar rata tengah */
    text-align: center;
  }
}

@media (max-width: 768px) {
  /* Geser nomor 50+ ke kiri di mobile */
  .stats .stat:nth-child(3) .number {
    margin-left: -122px !important;
  }

  /* Geser keterangan "Pembimbing Profesional" ke kiri di mobile */
  .stats .stat:nth-child(3) .label {
    margin-left: -88px !important;
  }

  .stats .stat:nth-child(2) .label {
    margin-left: -68px !important;
  }
}

@media (max-width: 768px) {
  .ppi-labels {
    justify-content: center;
    text-align: center;
    gap: 20px; /* ← Tambahkan ini */
    flex-wrap: wrap; /* pastikan ada ini */
    margin-bottom: 32px;
  }
}

/* ========================================================= */
/* Gaya Umum (Berlaku untuk semua ukuran layar jika tidak ditimpa) */
/* ========================================================= */

.umroh-cards-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  background: #f9f9f9;
  padding: 20px; /* Padding default, bisa ditimpa di desktop */
  gap: 20px; /* Gap default, bisa ditimpa di desktop */
}

/*light box*/

.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
}

/* ========================================================= */
/* Tampilan Mobile (Max-width: 767px) */
/* ========================================================= */
.umroh-cards-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  background: #f9f9f9;
}

.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  cursor: zoom-out;
}

.lightbox-content {
  max-width: 90%;
  max-height: 90%;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
  border-radius: 10px;
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 40px;
  color: white;
  font-weight: bold;
  cursor: pointer;
  z-index: 10000;
}

.paket-umroh-section {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 40px;
  justify-content: center;
  background: #f9f9f9;
}

.judul-section h2 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.judul-section p {
  font-size: 1.1rem;
}

.umroh-section {
  background-color: #f9f9f9; /* Sama seperti kartu dan judul */
  padding: 2rem;
  border-radius: 12px;
  overflow: hidden; /* Ini penting untuk menghindari garis/residu */
}

.judul-section {
  background-color: inherit; /* Agar mengikuti warna parent */

  border-radius: 12px 12px 0 0;
  margin-bottom: -5px;
  text-align: center;
  box-shadow: none;
  border: none;
}

@media (max-width: 767px) {
  .umroh-cards-wrapper {
    flex-direction: column;
    padding: 20px 0;
    gap: 0;
  }

  .umroh-card-container {
    padding: 0 16px;
    margin-bottom: 20px;
  }

  .umroh-card-horizontal {
    display: flex;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    margin: 0 auto;
    max-width: 600px;
    font-family: "Arial", sans-serif;
    transition: transform 0.3s ease;
  }

  .umroh-card-horizontal:hover {
    transform: translateY(-5px);
  }

  .umroh-image-horizontal {
    width: 40%;
    object-fit: cover;
    height: auto;
  }

  .umroh-content-horizontal {
    padding: 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .umroh-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
  }

  .tanggal {
    font-size: 27px;
    font-weight: bold;
    color: #333;
    padding-top: 0; /* Dihapus padding-top negatif */
    margin-bottom: -8px; /* Dihapus margin-bottom negatif */
  }

  .nama-paket {
    font-size: 12px;
    color: #666;
    margin-top: 0; /* Dihapus margin-top negatif */
    padding-left: -6px;
  }

  .harga {
    text-align: right;
  }

  .harga small {
    font-size: 10px;
    color: #999;
    margin-top: 0; /* Dihapus margin-top negatif */
    margin-bottom: -88px; /* Dihapus margin-bottom negatif */
    padding-bottom: 0;
  }

  .harga strong {
    font-size: 19px;
    margin-top: -3px;
    color: #e74c3c;
    font-weight: bold;
  }

  .umroh-labels {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 10px;
  }

  .label {
    background-color: #eee;
    padding: 3px 8px;
    font-size: 12px;
    border-radius: 20px;
    display: inline-block;
    max-width: 100%;
    white-space: nowrap;
  }

  .label.green {
    background-color: #d7f8e9;
    color: #2ecc71;
  }

  .label.blue {
    background-color: #d0e8ff;
    color: #007bff;
  }

  .umroh-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .hotel-info {
    font-size: 10px;
    color: #777;
    margin-bottom: 0; /* Dihapus margin-bottom negatif */
  }

  .stars {
    font-size: 14px;
    color: #f39c12;
  }

  .status {
    background-color: #28a745;
    color: #fff;
    font-size: 12px;
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: bold;
  }
}

@media (min-width: 768px) {
  .umroh-cards-wrapper {
    padding: 40px;
    gap: 20px;
    flex-direction: row;
  }

  .umroh-card-container {
    width: 260px;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 400px;
    margin: 0;
    padding: 0;
  }

  .umroh-card-horizontal {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: none;
    margin: 0;
    background: none;
    box-shadow: none;
    border-radius: 0;
    overflow: visible;
  }

  .umroh-card-container:hover {
    transform: translateY(-5px);
  }
  /* Ini seharusnya tidak ada jika hover di container */
  .umroh-card-horizontal:hover {
    transform: none;
  }

  .umroh-image-horizontal {
    width: 100%;
    object-fit: cover;
    min-height: 371px;
    max-height: 371px;
    height: auto;
  }

  .umroh-content-horizontal {
    padding: 15px;
    margin-top: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
  }

  .umroh-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    flex-wrap: nowrap;
  }

  .umroh-header > div:first-child {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  /*khusus tampilan dekstop, ykni harga dan tgl maybe*/

  @media (min-width: 768px) {
    .tanggal {
      font-size: 23px; /* atau nilai sesuai yang kamu inginkan */
      margin-bottom: -8px;
    }
  }

  @media (min-width: 768px) {
    .nama-paket {
      font-size: 13px; /* atau nilai sesuai yang kamu inginkan */
    }
  }

  @media (min-width: 768px) {
    .harga strong {
      margin-top: -30px; /* atau nilai sesuai yang kamu inginkan */
      margin-bottom: 0;
    }
  }

  .harga {
    font-size: 14px;
    text-align: right;
    color: #e74c3c;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }

  .harga small {
    font-size: 12px;
    color: #999;
    margin-top: 0;
    margin-bottom: 2px;
  }

  .harga strong {
    font-size: 20px;
    color: #e74c3c;
  }

  .umroh-labels {
    display: flex;
    gap: 5px;
    margin-bottom: 10px;
    flex-wrap: wrap;
  }

  .label {
    background-color: #eee;
    padding: 5px 10px;
    font-size: 12px;
    border-radius: 20px;
  }

  .label.blue {
    background-color: #dceaff;
    color: #1e73be;
  }

  .label.green {
    background-color: #d7f8e9;
    color: #2ecc71;
  }

  .umroh-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
  }

  .hotel-info {
    font-size: 13px;
    color: #555;
    margin-bottom: 2px;
  }

  .stars {
    font-size: 16px;
    color: #f39c12;
  }

  .status {
    display: block;
    background-color: #28a745;
    color: white;
    text-align: center;
    padding: 10px;
    border-radius: 25px;
    font-weight: bold;
    text-decoration: none;
    min-width: 90px;
    box-sizing: border-box;
  }
}

@media (max-width: 768px) {
  .hide-on-mobile {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .harga small {
    display: inline-block; /* Penting agar margin bisa berfungsi */
    margin-top: 10px;
    margin-bottom: -10px; /* Ganti angka sesuai kebutuhan */
  }

  .harga strong {
    display: inline-block; /* Penting agar margin bisa berfungsi */
    margin-top: -29px; /* Ganti angka sesuai kebutuhan */
  }
}

/*sembunyikan kartu dekstop*/
@media (max-width: 767px) {
  .umroh-card-container:nth-of-type(n + 7) {
    display: none;
  }
}

/*sembunyikan humberger menu di dekstop*/
.hamburger {
  display: none; /* Default: sembunyikan di desktop */
}

@media (max-width: 768px) {
  .hamburger {
    display: block; /* Tampilkan hanya di mobile */
  }
}

/* Why Choose Us Section */
.why-choose-us-section {
  padding: 80px 0;
  background-color: #fef7f7; /* Body warna penuh */
  color: #000000;
  margin-bottom: 1px;
  text-align: center;
}

.why-choose-us-section .section-title {
  font-size: 1.9em;
  color: hsl(0, 0%, 0%);
  margin-bottom: 15px;
  margin-top: -50px;
}

/* Sembunyikan <br> di desktop, tampilkan di mobile */
.mobile-only {
  display: none;
}

@media (max-width: 768px) {
  .mobile-only {
    display: inline;
  }
}

.why-choose-us-section .section-description {
  font-size: 1.1em;
  color: #515151;
  max-width: 800px;
  margin: 0 auto 50px auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
  max-width: 1100px;
  margin: 0 auto;
}

.feature-item {
  background-color: #ffffff;
  padding: 25px 30px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.feature-item .icon-wrapper {
  background-color: #fbe6e6;
  color: #e74c3c;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 15px auto;
  flex-shrink: 0;
}

/* Styling for Material Symbols inside icon-wrapper */
.feature-item .icon-wrapper .material-symbols-outlined {
  font-size: 1.4em;
}

/* Container for title and paragraph */
.feature-item .text-content {
  flex-grow: 1;
  width: 100%;
}

.feature-item h3 {
  font-size: 1.1em;
  font-weight: 600;
  color: #333;
  margin-top: 0;
  margin-bottom: 5px;
}

.feature-item p {
  font-size: 0.85em;
  color: #555;
  line-height: 1.4;
  margin-top: 0;
}

/*why choose us*/
@media (max-width: 768px) {
  .feature-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .icon-title-wrapper {
    display: flex;
    align-items: flex-start; /* Penting agar icon sejajar baris pertama h3 */
    gap: 10px;
    margin-bottom: 8px;
    width: 100%;
  }

  .icon-wrapper {
    width: 36px;
    height: 36px;
    background-color: #fbe6e6;
    color: #e74c3c;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    margin-top: 2px; /* Tambahan kecil agar lebih pas secara visual */
  }

  .icon-wrapper .material-symbols-outlined {
    font-size: 1.4em;
  }

  .icon-title-wrapper h3 {
    font-size: 1em;
    font-weight: 600;
    color: #333;
    margin: 0;
    line-height: 1.4;
    flex: 1; /* Biarkan teks wrap dan dorong ke kanan */
  }

  .feature-item p {
    font-size: 0.9em;
    color: #555;
    line-height: 1.5;
    margin-top: 5px;
  }
}

@media (max-width: 768px) {
  .icon-title-wrapper h3 {
    margin-top: 13px; /* Geser lebih dekat ke icon */
    margin-bottom: 1px; /* Jarak ke paragraf */
    padding-bottom: -100px;
    font-size: 1em;
    line-height: 1.4;
    font-weight: 600;
  }

  .feature-item p {
    margin-top: -10px; /* Kalau ingin rapat ke h3 */
    margin-bottom: 12px; /* Atur jarak ke bawah */
    font-size: 0.9em;
    line-height: 1.5;
    color: #555;
  }
}

/* Info Section */
.alhijazindowisata-info-section {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 60px 40px;
  gap: 40px;
  width: fit-content;
  background-color: #ffffff;
  font-family: Arial, Calibri;
}

.alhijazindowisata-visual-container {
  flex: 1;
  max-width: 50%;
}

.alhijazindowisata-visual-container img {
  width: 50%;
  margin-top: -40px;
  margin-bottom: -40px;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  display: block;
  margin-left: auto;
}

.alhijazindowisata-description-content {
  flex: 1;
  text-align: left;
}

.alhijazindowisata-description-content h2 {
  font-size: 20px;
  color: #111;
  margin-bottom: 20px;
  font-weight: bold;
}

.alhijazindowisata-description-content p {
  font-size: 1em;
  color: #444;
  line-height: 1.6;
}

.alhijazindowisata-description-content strong {
  font-weight: bold;
  color: #e60000;
}

@media (max-width: 768px) {
  .alhijazindowisata-info-section {
    flex-direction: column;
    padding: 30px 20px;
    align-items: center;
    text-align: center;
  }

  .alhijazindowisata-visual-container {
    max-width: 100%;
  }

  .alhijazindowisata-visual-container img {
    width: 100%;
    margin: 0 auto 20px auto;
  }

  .alhijazindowisata-description-content {
    max-width: 100%;
    padding: 0;
    text-align: center;
  }

  .alhijazindowisata-description-content h2 {
    font-size: 1.4em;
  }

  .alhijazindowisata-description-content p {
    font-size: 0.95em;
  }

  /* Geser judul ke atas untuk yang panjang agar tidak dorong paragraf */
}

@media (max-width: 375px) {
  .features-grid .feature-item:nth-child(2) .icon-title-wrapper h3 {
    margin-top: 9px; /* default */
  }

  .features-grid .feature-item:nth-child(4) .icon-title-wrapper h3 {
    margin-top: 2px; /* default */
  }

  .features-grid .feature-item:nth-child(5) .icon-title-wrapper h3 {
    margin-top: 2px; /* lebih naik */
  }

  .features-grid .feature-item:nth-child(6) .icon-title-wrapper h3 {
    margin-top: 0px; /* sangat naik */
  }

  .features-grid .feature-item:nth-child(7) .icon-title-wrapper h3 {
    margin-top: 9px; /* sangat naik */
  }

  .features-grid .feature-item:nth-child(9) .icon-title-wrapper h3 {
    margin-top: 0px;
  }
}

.mobile-br {
  display: none;
}

@media screen and (max-width: 767px) {
  .mobile-br {
    display: block;
  }
}

/*hubungi cs info section*/
.btn-hubungi-cs {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  background-color: #28a745; /* Hijau */
  color: white;
  text-decoration: none;
  font-weight: bold;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}

.btn-hubungi-cs:hover {
  background-color: #218838;
}

/* Poster scroll manual */
.poster-scroll-container {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 10px;
  scroll-snap-type: x mandatory;
}

.poster-scroll-container img {
  height: auto;
  max-height: 480px;
  width: auto;
  border-radius: 10px;
  scroll-snap-align: start;
  display: block;
}

.poster-scroll-container {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  width: 100%;
  max-width: 480px; /* atau sesuai yang kamu mau */
  border-radius: 10px;
}

.poster-scroll-container img {
  flex: 0 0 100%;
  max-height: 480px;
  width: 100%;
  object-fit: contain;
  border-radius: 10px;
  scroll-snap-align: start;
}

.poster-slider-wrapper {
  position: relative;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 10px;
}

.poster-slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.poster-slider img {
  width: 100%;
  flex-shrink: 0;
  object-fit: contain;
  border-radius: 10px;
  max-height: 480px;
}

/* Tombol Navigasi */
.poster-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none; /* Hapus background */
  border: none; /* Hapus border */
  color: black; /* Ubah warna ikon jadi hitam */
  font-size: 2rem;
  cursor: pointer;
  z-index: 10;
  padding: 0 12px; /* Sedikit padding horizontal */
  user-select: none;
}

.poster-nav:hover {
  color: #444; /* Warna saat hover */
}

.poster-nav.prev {
  left: 10px;
}

.poster-nav.next {
  right: 10px;
}

.poster-indicators {
  text-align: center;
  margin-top: 10px;
}

.poster-indicators .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 5px;
  background-color: #ccc;
  border-radius: 50%;
  transition: background-color 0.3s ease;
}

.poster-indicators .dot.active {
  background-color: #111;
}

@media (max-width: 768px) {
  .poster-nav.prev {
    left: -12px; /* geser ke kiri */
  }

  .poster-nav.next {
    right: -12px; /* geser ke kanan */
  }
}

/*video embed*/

/* ===== SECTION: VIDEO WRAPPER ===== */
.video-section {
  padding: 40px;
  background-color: #ffffff;
}

/* Header */
.video-header {
  text-align: left;
  margin-bottom: 100px;
  max-width: 894px;
  margin: 0 auto 20px auto;
  padding: 0 20px;
}

.video-header h2 {
  font-size: 24px;
  color: #333;
  margin-bottom: 44px;
  margin-top: -9px;
}

.video-header p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-top: -49px;
  margin-bottom: -10px;
}

/* Video Wrapper Layout */
.video-wrapper {
  display: flex;
  flex-direction: row;
  gap: 20px;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #ddd;
  overflow: hidden;

  width: 90%;
  max-width: 894px;
  min-height: 388px;
  margin: 0 auto;
}

/* ===== VIDEO PLAYER ===== */
.video-player {
  flex: 1;
  padding: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: auto;
  overflow: hidden;
}

/* Rasio 16:9 untuk iframe */
.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  border: none;
}

/* ===== VIDEO LIST ===== */
.video-list {
  flex: 0 0 30%;
  background: #f8f8f8;
  border-right: 1px solid #eee;
  min-width: 200px;

  max-height: 385px;
  overflow-y: auto;
  position: relative;

  scrollbar-width: thin;
  scrollbar-color: #ccc #f1f1f1;
}

/* Scrollbar Webkit */
.video-list::-webkit-scrollbar {
  width: 8px;
}
.video-list::-webkit-scrollbar-track {
  background: #f1f1f1;
}
.video-list::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 4px;
}
.video-list::-webkit-scrollbar-thumb:hover {
  background: #999;
}

/* List Style */
.video-list h3 {
  font-size: 1.2em;
  color: #333;
  position: sticky;
  top: 0;
  background-color: #f8f8f8;
  z-index: 2;
  padding: 15px;
  margin-bottom: 0;
  border-bottom: 1px solid #eee;
}

.video-list ul {
  list-style: none;
  padding: 15px 15px 0 15px;
  margin: 0;
}

.video-list li {
  margin-bottom: 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid #eee;
}
.video-list li:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.video-list a {
  text-decoration: none;
  color: #2b6eb5;
  font-weight: 500;
  display: block;
  padding: 5px 0;
  transition: color 0.2s ease;
}

.video-list a:hover {
  text-decoration: underline;
  color: #0056b3;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .video-section {
    padding: 30px 0;
  }

  .video-header {
    max-width: 95%;
    padding: 0 15px;
  }

  .video-header h2 {
    font-size: 1.8em;
  }

  .video-header p {
    font-size: 0.9em;
  }

  .video-wrapper {
    flex-direction: column;
    width: 95%;
    max-width: none;
    min-height: auto;
  }

  .video-player {
    order: 1;
    padding: 10px;
  }

  .video-container {
    padding-bottom: 56.25%;
    height: 0;
  }

  .video-list {
    order: 2;
    flex: 0 0 auto;
    max-height: 250px;
    border-right: none;
    border-top: 1px solid #eee;
  }
}

.video-thumbnail {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  border-radius: 10px;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 64px;
  height: 64px;
  background: url("https://img.icons8.com/ios-filled/100/ffffff/play--v1.png")
    no-repeat center center;
  background-size: 100% 100%;
  transform: translate(-50%, -50%);
  opacity: 0.85;
}

/* Responsif */
@media (min-width: 768px) {
  #alhijaz-section-container .alhijaz-intro-section {
    flex-direction: row; /* Side-by-side for desktop */
    align-items: flex-start; /* Align items to the top */
  }
}

.partner-section {
  text-align: center;
  padding: 60px 20px;
  background-color: #fff;
}

.partner-header h2 {
  font-size: 24px;
  color: #990000;
  margin-bottom: 40px;
  border-top: 2px solid #990000;
  display: inline-block;
  padding-top: 10px;
}

.partner-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}

.partner-logos img {
  max-width: 180px;
  height: auto;
  transition: transform 0.3s ease;
}

.partner-logos img:hover {
  transform: scale(1.05);
}

.partner-section {
  padding: 60px 20px;
  background-color: #fff;
  margin-top: -41px;
}

.partner-header h2 {
  text-align: center;
  font-size: 24px;
  color: #990000;
  margin-bottom: 23px;
  margin-top: -20px;
  border-top: 2px solid #990000;
  display: inline-block;
  padding-top: 10px;
}

/* Partner logo biasa: tidak bergerak */
.partner-logos {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.partner-logos img {
  height: 80px;
  transition: transform 0.3s ease;
}

.partner-logos img:hover {
  transform: scale(1.05);
}

/* Khusus Corporate Customer: Scroll kiri otomatis */
.corporate-scroll-wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.corporate-logos {
  display: flex;
  gap: 40px;
  animation: scrollLeft 60s linear infinite;
  width: max-content;
}

.corporate-logos img {
  height: 80px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.corporate-logos img:hover {
  transform: scale(1.05);
}

.partner-logos img {
  max-width: 120px;
  height: auto;
  margin: 10px;
  display: inline-block;
}

/* Khusus Corporate Customer: Scroll kiri otomatis */
.corporate-scroll-wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.corporate-logos {
  display: flex;
  gap: 40px;
  animation: scrollLeft 60s linear infinite;
  width: max-content;
}

.corporate-logos img {
  height: 80px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.corporate-logos img:hover {
  transform: scale(1.05);
}

@keyframes scrollLeft {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}

.footer {
  background-color: #0b1a38;
  color: #ffffff;
  font-family: "Poppins", sans-serif;
  padding: 40px 0 10px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  gap: 30px;
}

.footer-col {
  flex: 1 1 250px;
  min-width: 200px;
}

.footer-logo img {
  max-width: 120px;
  margin-bottom: 10px;
}

.footer-company-info p {
  font-size: 0.95em;
  line-height: 1.8;
  color: #ddd;
}

.footer-title {
  font-size: 1.1em;
  font-weight: 600;
  margin-bottom: 20px;
  color: #ffffff;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
  font-size: 0.95em;
  display: flex;
  align-items: flex-start;
  color: #ccc;
}

.footer-col ul li span.material-symbols-outlined {
  margin-right: 10px;
  color: #0f83ff;
  font-size: 1.2em;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-col a {
  text-decoration: none;
  color: #ccc;
  transition: color 0.3s;
}

.footer-col a:hover {
  color: #0f83ff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  padding-top: 20px;
  font-size: 0.9em;
  color: #aaa;
  margin-top: 30px;
}

.footer-image-right {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  padding-top: 30px;
}

.footer-side-image {
  max-width: 190px;
  height: auto;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.footer-side-image:hover {
  transform: scale(1.03);
}

@media (min-width: 1024px) {
  .footer-col.quick-links {
    transform: translateX(50px); /* geser ke kiri 40px */
  }
}

@media (min-width: 1024px) {
  .footer-col.footer-company-info {
    padding-top: 4px; /* Tinggikan seluruh kolom */
  }

  .footer-logo {
    margin-bottom: -39px;
    margin-left: -5px;
    padding-left: -20px;
    margin-top: -19px; /* Atur jarak antara logo dan deskripsi */
  }

  .footer-company-info p {
    margin-top: 10px; /* Tambahan spasi atas teks deskripsi */
    font-size: 1em; /* Optional: sesuaikan ukuran */
  }
}

@media (max-width: 768px) {
  .footer-side-image {
    margin-top: -328px; /* Atur sesuai kebutuhan */
    margin-right: 20px;
  }
}

/*tentang-kami.html page*/

.company-section {
  padding: 50px 20px;
  background-color: #fff;
}

.company-container {
  max-width: 1200px;
  margin: 80px auto 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.company-text {
  flex: 1 1 100%;
  min-width: 300px;
}

.company-text h2 {
  font-size: 2rem;
  font-weight: 600;
  color: #111;
  margin-bottom: 20px;
}

.company-text p {
  font-size: 15px;
  color: #444;
  line-height: 1.7;
}

.bold {
  color: #000;
  font-weight: bold;
}

/* Responsif */
@media (max-width: 768px) {
  .company-section {
    padding: 40px 15px;
  }

  .company-text h2 {
    font-size: 1.4rem;
    line-height: 1.4;
  }

  .company-text p {
    font-size: 14px;
  }
}

.certificate-section {
  padding: 50px 20px;
  background-color: #f9f9f9;
  font-family: "Poppins", sans-serif;
}

.partner-header h2 {
  text-align: center;
  font-size: 24px;
  margin-bottom: 30px;
  color: #111;
}

.certificate-slider-wrapper {
  overflow-x: auto;
}

.certificate-slider {
  display: flex;
  gap: 20px;
  scroll-snap-type: x mandatory;
  overflow-x: auto;
  padding-bottom: 10px;
}

.certificate-card {
  flex: 0 0 280px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 20px;
  scroll-snap-align: start;
}

.certificate-card img {
  width: 100%;
  border-radius: 6px;
  margin-bottom: 10px;
}

.certificate-card h3 {
  font-size: 18px;
  margin-bottom: 5px;
  color: #0b1a38;
}

.certificate-card .subheading {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
  color: #555;
}

.certificate-card .description {
  font-size: 13px;
  color: #666;
  line-height: 1.5;
}

@media (min-width: 768px) {
  .certificate-slider-wrapper {
    display: flex;
    justify-content: center;
  }

  .certificate-slider {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* Tengah horizontal di desktop */
    gap: 20px;
  }

  .certificate-card {
    text-align: center;
    max-width: 280px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .certificate-card {
    flex: 0 0 80%;
    margin-right: 10px;
  }

  .partner-header h2 {
    font-size: 20px;
  }
}

.partner-header,
.certificate-card {
  text-align: center;
}

/* Area Sticky navbar mobile (khusus mobile) */

.bottom-navbar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: transparent; /* background dipindah ke ::before */
  border-top: none;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 5px 0;
  z-index: 9999;
  box-shadow: none; /* bayangan juga dipindah ke ::before */
}

/* Background dinaikkan tanpa mempengaruhi icon */
.bottom-navbar::before {
  content: "";
  position: absolute;
  top: -6px; /* naikkan background */
  left: 0;
  right: 0;
  height: calc(100% + 10px); /* tinggi bertambah 10px */
  background: #ffffff;
  border-top: 1px solid #ddd;
  box-shadow: 0 -1px 5px rgba(0, 0, 0, 0.1);
  z-index: -1; /* agar tetap di belakang isi navbar */

  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}

.bottom-navbar .nav-item {
  flex: 1;
  text-align: center;
  font-size: 12px;
  color: #333;
  text-decoration: none;

  display: flex;
  flex-direction: column; /* buat vertikal */
  align-items: center;
  justify-content: center;
}

.bottom-navbar .nav-item img {
  width: 24px;
  height: 24px;
  margin-bottom: 4px;
}

/* Icon WhatsApp yang besar di tengah */
.whatsapp-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  display: block;
}

.bottom-navbar .whatsapp-icon-big img {
  width: 80px;
  height: 80px;
  margin-top: -40px;
}

/* Hanya tampil di mobile */
@media (min-width: 769px) {
  .bottom-navbar {
    display: none;
  }
}
