/* style.css */

/* Google Fonts - Poppins (Pastikan ini ada di sini atau di HTML) */
/* Jika Anda ingin menjaga preconnect di HTML, hapus dari sini */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap");

body {
  font-family: "Poppins", sans-serif;
  background-color: #f8f9fa; /* Warna latar belakang umum */
}

.hero-section {
  background-image: url("../img/header.png");
  background-size: cover;
  background-position: center;
  color: #fff;
  text-align: center;
  padding: 100px 0;
  position: relative;
  /* Overlay gelap seperti di gambar */
  background-blend-mode: multiply;
  background-color: rgb(109 7 7);
}
.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/header.png"); /* Path yang benar */
  background-size: cover;
  background-position: center;
  z-index: -1; /* Pastikan di belakang konten */
}
.hero-section .logo {
  margin-bottom: 20px;
}
.hero-section .logo img {
  max-width: 150px; /* Sesuaikan ukuran logo */
}
.hero-section h1 {
  font-size: 3.5rem;
  font-weight: bold;
  margin-bottom: 15px;
  color: #ffffff; /* Warna teks putih */
}
.hero-section p {
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #ffffff; /* Warna teks putih */
}
.btn-daftar {
  background-color: #ffffff; /* Warna kuning Bootstrap */
  color: #6b0909;
  font-weight: bold;
  padding: 12px 30px;
  border-radius: 25px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}
.btn-daftar:hover {
  background-color: #e0a800; /* Warna kuning lebih gelap saat hover */
  color: #000;
}
.footer-logos {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}
.footer-logos img {
  max-height: 80px; /* Sesuaikan ukuran logo-logo di bawah */
}

/* --- New Section CSS --- */
.legalitas-program-section {
  padding: 60px 0;
  background-color: #fff; /* Latar belakang putih untuk bagian ini */
}
.card-legalitas {
  border: 1px solid #ddd;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.card-legalitas .card-header {
  background-color: #f0f0f0;
  padding: 15px;
  font-weight: 600;
  font-size: 1.2rem;
  text-align: center;
}
.card-legalitas .card-header img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 10px; /* Tengahkan gambar header */
}
.legalitas-item {
  display: flex;
  align-items: center;
  padding: 10px 15px;
  border-bottom: 1px dashed #eee;
}
.legalitas-item:last-child {
  border-bottom: none;
}
.legalitas-item .icon {
  width: 30px;
  height: 30px;
  background-color: #dc3545; /* Merah untuk ikon */
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 15px;
  flex-shrink: 0;
}
.legalitas-item .icon img {
  width: 18px; /* Ukuran ikon dalam lingkaran */
  height: 18px;
  filter: brightness(0) invert(1); /* Membuat ikon putih jika aslinya hitam */
}
.legalitas-item .text-content {
  flex-grow: 1;
}
.legalitas-item .label {
  font-weight: 600;
  color: #333;
  font-size: 0.95rem;
  display: block; /* Pastikan label di baris sendiri jika perlu */
}
.legalitas-item .value {
  font-size: 0.9rem;
  color: #555;
}

.program-section h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #333;
}
.program-section p {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 15px;
}
.program-section ul {
  list-style: none; /* Hilangkan bullet default */
  padding-left: 0;
}
.program-section ul li {
  position: relative;
  padding-left: 25px; /* Ruang untuk ikon custom */
  margin-bottom: 10px;
  font-size: 1.05rem;
  color: #333;
}
.program-section ul li::before {
  content: "•"; /* Ikon centang Unicode */
  position: absolute;
  left: 0;
  color: #28a745; /* Warna hijau */
  font-size: 0.9em;
  top: 0px; /* Sesuaikan posisi vertikal */
}
.program-section .btn-daftar-program {
  background-color: #dc3545; /* Warna merah untuk tombol ini */
  color: #fff;
  font-weight: bold;
  padding: 12px 30px;
  border-radius: 25px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}
.program-section .btn-daftar-program:hover {
  background-color: #c82333; /* Warna merah lebih gelap saat hover */
  color: #fff;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .legalitas-item {
    flex-direction: column; /* Stack items vertically on smaller screens */
    align-items: flex-start;
  }
  .legalitas-item .icon {
    margin-bottom: 10px;
  }
}
/* style.css (Tambahkan kode ini di bagian paling bawah file) */

/* --- Paket Umroh Section CSS --- */
.paket-umroh-section {
  background-image: url("../img/header.png");
  background-size: cover;
  background-position: center;
  padding: 80px 0;
  background-color: #000000; /* Latar belakang abu-abu muda untuk section ini */
  text-align: center;
}
.paket-umroh-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 50px;
  color: #333;
}
.paket-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15); /* Lebih tebal dari kartu legalitas */
  overflow: hidden;
  height: 100%; /* Pastikan semua kartu memiliki tinggi yang sama */
  display: flex;
  flex-direction: column;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.paket-card:hover {
  transform: translateY(-10px); /* Efek melayang saat hover */
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}
.paket-card .card-image {
  width: 100%;
  /* height: 200px; */ /* Tinggi gambar di kartu */
  overflow: hidden;
  position: relative;
  /* padding: 5px; */
}
.paket-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Pastikan gambar mengisi area tanpa terdistorsi */
}
.paket-card .card-image .badge-tahun {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: #dc3545; /* Merah */
  color: #fff;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 0.9rem;
  font-weight: 600;
}
.paket-card .card-image .pui-no {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 0.8rem;
}
.paket-card .card-header-umroh {
  background-color: #f8f9fa; /* Warna latar belakang header kartu */
  padding: 15px 20px;
  text-align: center;
}
.paket-card .card-header-umroh .logo-mwr {
  max-width: 80px; /* Ukuran logo MWR di header kartu */
  margin-bottom: 5px;
}
.paket-card .card-header-umroh h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 0;
}
.paket-card .card-header-umroh .flight-direct {
  font-size: 0.9rem;
  color: #666;
  margin-top: 5px;
}
.paket-card .card-header-umroh .flight-direct img {
  height: 1.2em;
  vertical-align: middle;
  margin-right: 5px;
}
.paket-card .card-body-umroh {
  padding: 20px;
  flex-grow: 1; /* Agar body kartu mengisi sisa ruang */
  display: flex;
  flex-direction: column;
}
.paket-card .card-body-umroh .harga-wrapper {
  background-color: #e9ecef; /* Warna latar belakang harga */
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 20px;
  display: flex;
  justify-content: center; /* Untuk menengahkan harga */
  align-items: center;
  flex-wrap: wrap; /* Untuk harga ganda (9/12 hari) */
}
.paket-card .card-body-umroh .harga-utama {
  font-size: 2.2rem;
  font-weight: 700;
  color: #dc3545; /* Merah untuk harga */
  margin-bottom: 5px;
  line-height: 1;
}
.paket-card .card-body-umroh .harga-secondary {
  font-size: 1.4rem;
  font-weight: 600;
  color: #495057; /* Abu-abu gelap */
  text-decoration: line-through; /* Coret untuk harga lama */
  margin-left: 10px;
}
.paket-card .card-body-umroh .harga-info {
  font-size: 0.9rem;
  color: #666;
  display: block;
  width: 100%; /* Agar info harga di baris baru */
  margin-top: 5px;
}

/* Specific styling for 9 Hari / 12 Hari price layout */
.paket-card.reguler .harga-wrapper,
.paket-card.maulid .harga-wrapper {
  flex-direction: column;
  gap: 10px;
}
.paket-card .detail-list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
  text-align: left; /* Teks detail rata kiri */
  flex-grow: 1; /* Agar list mengisi ruang */
}
.paket-card .detail-list li {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 8px;
  position: relative;
  padding-left: 20px;
}
.paket-card .detail-list li::before {
  content: "\2022"; /* Bullet point custom */
  position: absolute;
  left: 0;
  color: #dc3545; /* Warna merah untuk bullet */
  font-weight: bold;
  font-size: 1.2em;
  line-height: 1;
}
.paket-card .detail-list .highlight {
  font-weight: 600;
  color: #333;
}
.paket-card .keberangkatan-info {
  background-color: #f0f0f0;
  padding: 10px 15px;
  border-radius: 5px;
  font-size: 0.85rem;
  color: #555;
  text-align: left;
  margin-bottom: 20px;
  line-height: 1.4;
}
.paket-card .contact-buttons {
  display: flex;
  justify-content: space-around;
  gap: 10px;
  margin-bottom: 20px;
}
.paket-card .contact-buttons a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 10px;
  border-radius: 5px;
  text-decoration: none;
  color: #fff;
  font-size: 0.9rem;
  flex-grow: 1;
}
.paket-card .contact-buttons .btn-wa {
  background-color: #25d366; /* Hijau WhatsApp */
}
.paket-card .contact-buttons .btn-fb {
  background-color: #3b5998; /* Biru Facebook */
}
.paket-card .contact-buttons .btn-ig {
  background-color: #c13584; /* Ungu Instagram */
}
.paket-card .contact-buttons a img {
  height: 1.2em;
  margin-right: 5px;
  filter: brightness(0) invert(1); /* Untuk ikon putih */
}

.paket-card .footer-bottom-info {
  font-size: 0.8rem;
  color: #888;
  border-top: 1px solid #eee;
  padding-top: 10px;
  margin-top: auto; /* Dorong ke bagian bawah kartu */
}

/* Additional info at the bottom of the section */
.additional-info {
  margin-top: 5px;
  text-align: left;
  padding: 12px;
}
.additional-info h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 15px;
}
.additional-info ul {
  list-style: none;
  padding-left: 0;
}
.additional-info ul li {
  font-size: 1rem;
  color: #555;
  margin-bottom: 3px;
  position: relative;
  padding-left: 20px;
}
.additional-info ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #007bff; /* Warna biru untuk bullet */
  font-weight: bold;
  font-size: 1.2em;
  line-height: 1;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
  .paket-umroh-section h2 {
    font-size: 2rem;
    margin-bottom: 30px;
  }
  .paket-card {
    margin-bottom: 30px; /* Jarak antar kartu di mobile/tablet */
  }
}
@media (max-width: 767.98px) {
  .paket-umroh-section {
    padding: 40px 0;
  }
  .paket-card .card-image {
    /* height: 180px; */
  }
  .paket-card .card-header-umroh h3 {
    font-size: 1.5rem;
  }
  .paket-card .card-body-umroh .harga-utama {
    font-size: 1.8rem;
  }
  .paket-card .card-body-umroh .harga-secondary {
    font-size: 1.1rem;
  }
  .paket-card .contact-buttons {
    flex-direction: column;
  }
  .paket-card .contact-buttons a {
    width: 100%;
  }
}
/* style.css (Tambahkan kode ini di bagian paling bawah file) */

/* --- Paket Haji Section CSS --- */
.paket-haji-section {
  background-image: url("../img/header.png");
  background-size: cover;
  background-position: center;
  padding: 30px 0;
  background-color: #464748; /* Latar belakang abu-abu yang sedikit berbeda dari Umroh */
  text-align: center;
}
.paket-haji-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 50px;
  color: #333;
}
.paket-haji-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.paket-haji-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}
.paket-haji-card .card-image-haji {
  width: 100%;
  /* height: 220px; */ /* Tinggi gambar di kartu haji */
  overflow: hidden;
  position: relative;
}
.paket-haji-card .card-image-haji img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.paket-haji-card .card-image-haji .badge-haji-ppu {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 0.8rem;
  font-weight: 600;
}
.paket-haji-card .card-header-haji {
  background-color: #dc3545; /* Merah untuk header haji */
  color: #fff;
  padding: 15px 20px;
  text-align: center;
  position: relative;
  z-index: 2; /* Agar tidak tertindih oleh gambar */
}
.paket-haji-card .card-header-haji .logo-mwr {
  max-width: 80px;
  margin-bottom: 5px;
}
.paket-haji-card .card-header-haji h3 {
  font-size: 2.2rem; /* Ukuran teks 'HAJI KHUSUS' */
  font-weight: 700;
  color: #fff;
  margin-bottom: 0;
}
.paket-haji-card .card-header-haji .price-overlay {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.7);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 1.5rem;
  font-weight: bold;
}
.paket-haji-card .card-header-haji .price-overlay span {
  color: #ffc107; /* Kuning untuk angka harga */
}
.paket-haji-card.haji-furoda .card-header-haji {
  background-color: #6c757d; /* Abu-abu untuk Haji Furoda */
}
.paket-haji-card.haji-furoda .card-header-haji h3 {
  font-size: 2rem; /* Sesuaikan ukuran font untuk Haji Furoda */
}

.paket-haji-card .card-body-haji {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

/* Tabs like layout for Fasilitas, Pendaftaran, Pembatalan */
.haji-tabs {
  display: flex;
  border-bottom: 1px solid #ddd;
  margin-bottom: 15px;
}
.haji-tabs .tab-button {
  flex: 1;
  padding: 10px 0;
  text-align: center;
  cursor: pointer;
  font-weight: 600;
  color: #666;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}
.haji-tabs .tab-button.active {
  color: #dc3545;
  border-bottom-color: #dc3545;
}
.haji-tabs .tab-button:hover {
  color: #dc3545;
}
.haji-tabs-content {
  margin-bottom: 20px;
  flex-grow: 1; /* Agar konten mengisi ruang */
  text-align: left;
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}
.haji-tabs-content ul {
  list-style: none;
  padding-left: 0;
}
.haji-tabs-content ul li {
  margin-bottom: 5px;
  position: relative;
  padding-left: 20px;
}
.haji-tabs-content ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #dc3545;
  font-weight: bold;
  font-size: 1.2em;
  line-height: 1;
}
.haji-tabs-content strong {
  color: #333;
}

/* Info boxes like "HARGA TIDAK TERMASUK", "INFO PENDAFTARAN" */
.info-box {
  background-color: #f8f9fa;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 10px 15px;
  margin-bottom: 15px;
  text-align: left;
}
.info-box h5 {
  font-size: 1rem;
  font-weight: 700;
  color: #dc3545; /* Merah untuk judul info box */
  margin-bottom: 8px;
}
.info-box ul {
  list-style: none;
  padding-left: 0;
  font-size: 0.9rem;
  color: #555;
}
.info-box ul li {
  margin-bottom: 3px;
}
.info-box ul li::before {
  content: "•";
  margin-right: 5px;
  color: #dc3545;
}

/* Styles for Haji Furoda specific layout */
.haji-furoda .haji-tabs {
  display: none; /* Haji Furoda tidak punya tabs */
}
.haji-furoda .haji-tabs-content {
  display: block; /* Pastikan kontennya terlihat */
}

/* Haji Furoda Specific Sections */
.haji-furoda-detail {
  text-align: left;
  margin-bottom: 20px;
}
.haji-furoda-detail h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 10px;
}
.haji-furoda-detail ul {
  list-style: none;
  padding-left: 0;
  font-size: 0.95rem;
  color: #555;
}
.haji-furoda-detail ul li {
  margin-bottom: 5px;
  position: relative;
  padding-left: 20px;
}
.haji-furoda-detail ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #6c757d; /* Abu-abu untuk bullet Furoda */
  font-weight: bold;
  font-size: 1.2em;
  line-height: 1;
}
.haji-furoda-detail .highlight-text {
  background-color: #ffc107; /* Kuning untuk teks highlight */
  padding: 3px 8px;
  border-radius: 5px;
  font-weight: 600;
  color: #333;
  display: inline-block;
  margin-top: 10px;
}
.haji-furoda-detail .note-text {
  font-size: 0.85rem;
  color: #888;
  margin-top: 15px;
}

/* Contact buttons at the bottom */
.haji-contact-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}
.haji-contact-buttons a {
  display: flex;
  align-items: center;
  padding: 10px 20px;
  border-radius: 25px; /* Lebih bulat */
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}
.haji-contact-buttons .btn-wa {
  background-color: #25d366;
}
.haji-contact-buttons .btn-wa:hover {
  background-color: #1dae54;
}
.haji-contact-buttons .btn-daftar {
  background-color: #dc3545; /* Merah untuk Daftar */
}
.haji-contact-buttons .btn-daftar:hover {
  background-color: #c82333;
}
.haji-contact-buttons a img {
  height: 1.5em;
  margin-right: 8px;
  filter: brightness(0) invert(1);
}

/* Additional info at the bottom of the section */
.additional-haji-info {
  margin-top: 0px;
  text-align: left;
  padding: 18px;
}
.additional-haji-info h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 15px;
}
.additional-haji-info ul {
  list-style: none;
  padding-left: 0;
}
.additional-haji-info ul li {
  font-size: 1rem;
  color: #555;
  margin-bottom: 3px;
  position: relative;
  padding-left: 20px;
}
.additional-haji-info ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #007bff;
  font-weight: bold;
  font-size: 1.2em;
  line-height: 1;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
  .paket-haji-section h2 {
    font-size: 2rem;
    margin-bottom: 30px;
  }
  .paket-haji-card {
    margin-bottom: 30px;
  }
  .paket-haji-card .card-header-haji h3 {
    font-size: 1.8rem;
  }
  .paket-haji-card .card-header-haji .price-overlay {
    font-size: 1.2rem;
    padding: 3px 10px;
  }
}
@media (max-width: 767.98px) {
  .paket-haji-section {
    padding: 40px 0;
  }
  .paket-haji-card .card-image-haji {
    /* height: 180px; */
  }
  .paket-haji-card .haji-contact-buttons {
    flex-direction: column;
  }
  .haji-tabs .tab-button {
    font-size: 0.9rem;
  }
}
/* style.css (Tambahkan kode ini di bagian paling bawah file) */

/* --- Angsuran Haji Section CSS --- */
.angsuran-haji-section {
  padding: 50px 0;
  background-color: #ffffff; /* Latar belakang putih */
  text-align: center;
}
.angsuran-haji-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 50px;
  color: #333;
}
.angsuran-haji-section .top-heading {
  color: #008000; /* Hijau */
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.4;
}
.angsuran-haji-section .top-subheading {
  color: #dc3545; /* Merah */
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 13px;
}

.angsuran-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.angsuran-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}
.angsuran-card .card-header-angsuran {
  background-color: #dc3545; /* Merah untuk header kartu kiri */
  color: #fff;
  padding: 15px 20px;
  text-align: center;
  position: relative;
  z-index: 2;
}
.angsuran-card .card-header-angsuran .logo-mwr {
  max-width: 80px;
  margin-bottom: 5px;
}
.angsuran-card .card-header-angsuran h3 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0;
}
.angsuran-card .card-header-angsuran .pui-pih-no {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 5px;
}
.angsuran-card .card-header-angsuran .hanya-text {
  font-size: 1.5rem;
  font-weight: 600;
  margin-top: 10px;
}
.angsuran-card .card-header-angsuran .acc-logo {
  position: absolute;
  top: 10px;
  right: 10px;
  max-width: 40px;
}
.angsuran-card .card-body-angsuran {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center; /* Untuk menengahkan konten */
}
.angsuran-card .card-body-angsuran .program-heading {
  font-size: 1.2rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 15px;
}
.angsuran-card .card-body-angsuran .payment-info {
  font-size: 1.8rem;
  font-weight: 700;
  color: #dc3545;
  margin-bottom: 15px;
}
.angsuran-card .card-body-angsuran .payment-info span {
  font-size: 2.5rem;
  color: #ffc107; /* Kuning untuk angka */
}
.angsuran-card .card-body-angsuran .no-guarantee {
  background-color: #008000; /* Hijau untuk background 'Tanpa Jaminan' */
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: 600;
  margin-bottom: 20px;
}
.angsuran-card .card-body-angsuran .motivation-text {
  font-size: 1rem;
  color: #555;
  margin-bottom: 20px;
}
.angsuran-card .card-body-angsuran .social-links {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: auto; /* Dorong ke bawah */
}
.angsuran-card .card-body-angsuran .social-links a {
  color: #dc3545;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
}
.angsuran-card .card-body-angsuran .social-links a img {
  height: 1.2em;
  margin-right: 5px;
}
.angsuran-card .card-body-angsuran .main-image {
  max-width: 100%;
  height: auto;
  margin-top: 20px; /* Jarak antara teks dan gambar */
}

/* Right Card: Angsuran Haji Khusus Details */
.angsuran-detail-card {
  background-color: #ffffe4; /* Latar belakang abu-abu muda untuk kartu kanan */
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center; /* Tengahkan konten vertikal */
}
.angsuran-detail-card h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 25px;
  text-align: center;
}
.angsuran-detail-card ul {
  list-style: none;
  padding-left: 0;
  text-align: left;
  margin-bottom: 30px;
}
.angsuran-detail-card ul li {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 15px;
  position: relative;
  padding-left: 30px;
}
.angsuran-detail-card ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #008000; /* Hijau untuk bullet */
  font-weight: bold;
  font-size: 1.5em;
  line-height: 1;
}
.angsuran-detail-card .btn-konsultasi {
  background-color: #008000; /* Hijau untuk tombol Konsultasi */
  color: #fff;
  font-weight: bold;
  padding: 12px 30px;
  border-radius: 25px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  display: inline-flex; /* Agar icon dan text sejajar */
  align-items: center;
  justify-content: center;
}
.angsuran-detail-card .btn-konsultasi:hover {
  background-color: #006400; /* Hijau lebih gelap saat hover */
  color: #fff;
}
.angsuran-detail-card .btn-konsultasi img {
  height: 1.5em;
  margin-right: 8px;
  filter: brightness(0) invert(1); /* Membuat ikon putih */
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
  .angsuran-haji-section .top-heading {
    font-size: 1.3rem;
  }
  .angsuran-haji-section .top-subheading {
    font-size: 1rem;
  }
  .angsuran-card {
    margin-bottom: 30px;
  }
  .angsuran-card .card-header-angsuran h3 {
    font-size: 1.8rem;
  }
  .angsuran-card .card-body-angsuran .payment-info {
    font-size: 1.5rem;
  }
  .angsuran-card .card-body-angsuran .payment-info span {
    font-size: 2rem;
  }
  .angsuran-detail-card {
    padding: 20px;
  }
  .angsuran-detail-card h3 {
    font-size: 1.5rem;
  }
  .angsuran-detail-card ul li {
    font-size: 1rem;
    margin-bottom: 10px;
  }
}
@media (max-width: 767.98px) {
  .angsuran-haji-section {
    padding: 40px 0;
  }
  .angsuran-haji-section .top-heading {
    font-size: 1.1rem;
  }
  .angsuran-haji-section .top-subheading {
    font-size: 0.9rem;
  }
  .angsuran-card .card-body-angsuran .main-image {
    max-width: 80%;
  }
}
/* style.css (Tambahkan kode ini di bagian paling bawah file) */

/* --- Angsuran Umroh Section CSS --- */
.angsuran-umroh-section {
  padding: 0px 0;
  background-color: #ffffff; /* Latar belakang abu-abu muda, mirip section Umroh */
  text-align: center;
}
.angsuran-umroh-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 50px;
  color: #333;
}
.angsuran-umroh-card {
  /* background-color: #fff; */
  /* border-radius: 10px; */
  /* box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15); */
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  /* transition: transform 0.3s ease, box-shadow 0.3s ease; */
}
.angsuran-umroh-card .card-header-umroh-dulu {
  background-color: #dc3545; /* Merah untuk header kartu kiri */
  color: #fff;
  padding: 15px 20px;
  text-align: center;
  position: relative;
  z-index: 2;
}
.angsuran-umroh-card .card-header-umroh-dulu .logo-mwr {
  max-width: 80px;
  margin-bottom: 5px;
}
.angsuran-umroh-card .card-header-umroh-dulu .ppu-pihk-no {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 5px;
}
.angsuran-umroh-card .card-header-umroh-dulu h3 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0;
}
.angsuran-umroh-card .card-header-umroh-dulu .dp-info {
  font-size: 1.8rem;
  font-weight: 600;
  margin-top: 10px;
  color: #ffc107; /* Kuning untuk DP */
}
.angsuran-umroh-card .card-header-umroh-dulu .berangkat-langsung {
  font-size: 1.1rem;
  font-weight: 500;
  margin-top: 5px;
}
.angsuran-umroh-card .card-body-umroh-dulu {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center; /* Untuk menengahkan konten */
}
.angsuran-umroh-card .card-body-umroh-dulu .program-heading {
  font-size: 1.2rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 15px;
  text-align: center;
}
.angsuran-umroh-card .card-body-umroh-dulu .payment-info {
  font-size: 1.8rem;
  font-weight: 700;
  color: #dc3545;
  margin-bottom: 15px;
}
.angsuran-umroh-card .card-body-umroh-dulu .payment-info span {
  font-size: 2.5rem;
  color: #ffc107; /* Kuning untuk angka */
}
.angsuran-umroh-card .card-body-umroh-dulu .no-guarantee {
  background-color: #008000; /* Hijau untuk background 'Tanpa Jaminan' */
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: 600;
  margin-bottom: 20px;
}
.angsuran-umroh-card .card-body-umroh-dulu .motivation-text {
  font-size: 1rem;
  color: #555;
  margin-bottom: 20px;
}
.angsuran-umroh-card .card-body-umroh-dulu .main-image {
  max-width: 100%;
  height: auto;
  margin-top: 20px; /* Jarak antara teks dan gambar */
}
.angsuran-umroh-card .card-body-umroh-dulu .social-links {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: auto; /* Dorong ke bawah */
}
.angsuran-umroh-card .card-body-umroh-dulu .social-links a {
  color: #dc3545;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
}
.angsuran-umroh-card .card-body-umroh-dulu .social-links a img {
  height: 1.2em;
  margin-right: 5px;
}

/* Right Card: Angsuran Umroh Details */
.angsuran-umroh-detail-card {
  background-color: #f8f9fa; /* Latar belakang abu-abu muda untuk kartu kanan */
  /* border-radius: 10px; */
  /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
  padding: 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center; /* Tengahkan konten vertikal */
}
.angsuran-umroh-detail-card h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 25px;
  text-align: center;
}
.angsuran-umroh-detail-card ul {
  list-style: none;
  padding-left: 0;
  text-align: left;
  margin-bottom: 30px;
}
.angsuran-umroh-detail-card ul li {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 15px;
  position: relative;
  padding-left: 30px;
}
.angsuran-umroh-detail-card ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #008000; /* Hijau untuk bullet */
  font-weight: bold;
  font-size: 1.5em;
  line-height: 1;
}
.angsuran-umroh-detail-card .btn-konsultasi {
  background-color: #008000; /* Hijau untuk tombol Konsultasi */
  color: #fff;
  font-weight: bold;
  padding: 12px 30px;
  border-radius: 25px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  display: inline-flex; /* Agar icon dan text sejajar */
  align-items: center;
  justify-content: center;
}
.angsuran-umroh-detail-card .btn-konsultasi:hover {
  background-color: #006400; /* Hijau lebih gelap saat hover */
  color: #fff;
}
.angsuran-umroh-detail-card .btn-konsultasi img {
  height: 1.5em;
  margin-right: 8px;
  filter: brightness(0) invert(1); /* Membuat ikon putih */
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
  .angsuran-umroh-card {
    margin-bottom: 30px;
  }
  .angsuran-umroh-card .card-header-umroh-dulu h3 {
    font-size: 1.8rem;
  }
  .angsuran-umroh-card .card-header-umroh-dulu .dp-info {
    font-size: 1.5rem;
  }
  .angsuran-umroh-card .card-body-umroh-dulu .payment-info {
    font-size: 1.5rem;
  }
  .angsuran-umroh-card .card-body-umroh-dulu .payment-info span {
    font-size: 2rem;
  }
  .angsuran-umroh-detail-card {
    padding: 20px;
  }
  .angsuran-umroh-detail-card h3 {
    font-size: 1.5rem;
  }
  .angsuran-umroh-detail-card ul li {
    font-size: 1rem;
    margin-bottom: 10px;
  }
}
@media (max-width: 767.98px) {
  .angsuran-umroh-section {
    padding: 40px 0;
  }
  .angsuran-umroh-card .card-body-umroh-dulu .main-image {
    max-width: 80%;
  }
}
/* style.css (Tambahkan kode ini di bagian paling bawah file) */

/* --- Testimoni Section CSS --- */
.testimoni-section {
  padding: 60px 0;
  background-color: #fcfce7; /* Latar belakang abu-abu sangat muda */
  text-align: left; /* Text "Apa Kata Mereka" rata kiri */
}
.testimoni-section .section-title {
  font-size: 2.8rem; /* Ukuran font lebih besar untuk judul utama */
  font-weight: 700;
  color: #333;
  margin-bottom: 5px;
  line-height: 1.2;
}
.testimoni-section .section-subtitle {
  font-size: 1.8rem; /* Ukuran font lebih besar untuk sub judul */
  font-weight: 500;
  color: #555;
  margin-bottom: 50px;
}

.testimoni-carousel .carousel-inner {
  padding: 20px; /* Padding di sekitar carousel inner untuk memberi ruang pada shadow */
}

.testimoni-card-wrapper {
  background-color: #a40000; /* Latar belakang merah untuk kartu testimoni */
  border-radius: 20px; /* Sudut lebih melengkung */
  padding: 40px; /* Padding di dalam kartu */
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); /* Bayangan lebih kuat */
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
  text-align: center;
  min-height: 450px; /* Pastikan tinggi kartu konsisten */
  justify-content: center;
  margin: 0 auto; /* Tengah kartu di dalam wrapper */
  max-width: 800px; /* Batasi lebar kartu */
}

.testimoni-card-wrapper .profile-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid #fff; /* Border putih di sekitar gambar profil */
  margin-bottom: 25px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.testimoni-card-wrapper .testimoni-text {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 30px;
  font-style: italic; /* Teks miring */
}

.testimoni-card-wrapper .nama-testimoni {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 5px;
}
.testimoni-card-wrapper .jabatan-testimoni {
  font-size: 1rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
}

/* Carousel controls and indicators */
.testimoni-carousel .carousel-control-prev,
.testimoni-carousel .carousel-control-next {
  width: 5%; /* Lebar kontrol */
  opacity: 0.8;
}
.testimoni-carousel .carousel-control-prev-icon,
.testimoni-carousel .carousel-control-next-icon {
  width: 2rem;
  height: 2rem;
  background-color: #333; /* Warna ikon kontrol */
  border-radius: 50%;
  padding: 10px;
}

.testimoni-carousel .carousel-indicators [data-bs-target] {
  background-color: #dc3545; /* Warna indikator aktif */
  opacity: 0.6;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin: 0 5px;
}
.testimoni-carousel .carousel-indicators .active {
  opacity: 1;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
  .testimoni-section .section-title {
    font-size: 2.2rem;
  }
  .testimoni-section .section-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
  }
  .testimoni-card-wrapper {
    padding: 30px;
    min-height: 400px;
  }
  .testimoni-card-wrapper .testimoni-text {
    font-size: 1.1rem;
  }
  .testimoni-card-wrapper .nama-testimoni {
    font-size: 1.3rem;
  }
}
@media (max-width: 767.98px) {
  .testimoni-section {
    padding: 40px 0;
  }
  .testimoni-section .section-title {
    font-size: 1.8rem;
    text-align: center;
  }
  .testimoni-section .section-subtitle {
    font-size: 1.2rem;
    text-align: center;
  }
  .testimoni-card-wrapper {
    min-height: 380px;
  }
  .testimoni-carousel .carousel-control-prev,
  .testimoni-carousel .carousel-control-next {
    width: 10%;
  }
  .testimoni-carousel .carousel-indicators {
    margin-bottom: -10px; /* Adjust if indicators are too close to content */
  }
}
/* style.css (Tambahkan kode ini di bagian paling bawah file) */

/* --- Sekarang Giliran Anda Section CSS --- */
.cta-section {
  padding: 0; /* No padding at the top/bottom of the whole section */
  background-color: #333; /* Dark background for the whole section */
  color: #fff;
  text-align: center;
}
.cta-section .top-banner {
  background-color: #a40000; /* Merah untuk banner atas */
  padding: 20px 0;
  font-size: 2.5rem;
  font-weight: 700;
}
.cta-content {
  display: flex;
  flex-wrap: wrap; /* Wrap content for responsiveness */
  align-items: center; /* Align items vertically */
  justify-content: center; /* Center horizontally */
  padding: 50px 0;
  position: relative;
  overflow: hidden; /* Hide overflow from images */
}
.cta-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../img/header.png") no-repeat center center/cover; /* Gambar Ka'bah sebagai background */
  opacity: 0.1; /* Transparansi untuk background */
  z-index: 1;
}

.cta-text-side {
  position: relative;
  z-index: 2;
  padding: 20px;
  /* max-width: 40%; */ /* Menyesuaikan lebar agar pas */
  text-align: center; /* Rata kanan untuk teks ini */
}
.cta-text-side h3 {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
  margin-bottom: 20px;
}
.cta-images-side {
  position: relative;
  z-index: 2;
  padding: 20px;
  display: flex;
  align-items: flex-end; /* Posisikan gambar di bawah */
  justify-content: center;
  max-width: 30%; /* Menyesuaikan lebar agar pas */
}
.cta-images-side img {
  max-width: 100%;
  height: auto;
  display: block;
}
.cta-images-side .umroh-people-img {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%); /* Center the image */
  max-width: 250px; /* Ukuran gambar orang umroh */
  z-index: 3;
}

.manager-card-container {
  position: relative;
  z-index: 2;
  margin-top: -80px; /* Tarik kartu ke atas, menumpuk dengan bagian atas */
  margin-bottom: 50px;
}
.manager-card {
  background-color: #a40000; /* Merah untuk kartu manager */
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  padding: 20px;
  max-width: 72%; /* Batasi lebar kartu */
  margin: 0 auto; /* Tengah kartu */
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.manager-card .profile-photo {
  width: 400px;
  height: 400px;
  border-radius: 3%;
  object-fit: cover;
  border: 5px solid #fff;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
.manager-card h4 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 5px;
}
.manager-card .position {
  font-size: 1.2rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 20px;
}
.manager-card .contact-info {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 20px;
}
.manager-card .contact-info strong {
  display: block;
  font-size: 1.3rem;
  margin-bottom: 5px;
}
.manager-card .btn-konsultasi {
  background-color: #008000; /* Hijau untuk tombol Konsultasi */
  color: #fff;
  font-weight: bold;
  padding: 12px 30px;
  border-radius: 25px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.manager-card .btn-konsultasi:hover {
  background-color: #006400;
  color: #fff;
}
.manager-card .btn-konsultasi img {
  height: 1.5em;
  margin-right: 8px;
  filter: brightness(0) invert(1);
}

.copyright-footer {
  padding: 20px 0;
  background-color: #222; /* Darker footer background */
  font-size: 0.9rem;
  color: #bbb;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
  .cta-section .top-banner {
    font-size: 2rem;
  }
  .cta-content {
    flex-direction: column;
    padding: 30px 0;
  }
  .cta-text-side,
  .cta-images-side {
    max-width: 90%;
    text-align: center;
    padding: 15px;
  }
  .cta-images-side .umroh-people-img {
    position: static; /* Remove absolute positioning */
    transform: none;
    margin-top: 20px;
  }
  .manager-card-container {
    margin-top: 30px; /* Adjust margin for smaller screens */
  }
  .manager-card h4 {
    font-size: 1.8rem;
  }
  .manager-card .position {
    font-size: 1.1rem;
  }
  .manager-card .contact-info {
    font-size: 1rem;
  }
  .manager-card .contact-info strong {
    font-size: 1.2rem;
  }
}
@media (max-width: 767.98px) {
  .cta-section .top-banner {
    font-size: 1.5rem;
  }
  .cta-text-side h3 {
    font-size: 1.8rem;
  }
  .cta-images-side .umroh-people-img {
    max-width: 200px;
  }
  .manager-card {
    padding: 20px;
  }
  .manager-card .profile-photo {
    width: 120px;
    height: 120px;
  }
}
.back-to-top {
  display: none; /* Hidden by default */
  position: fixed; /* Fixed position */
  bottom: 20px; /* 20px from the bottom */
  right: 30px; /* 30px from the right */
  z-index: 99; /* Ensure it's above other content */
  border: none; /* Remove borders */
  outline: none; /* Remove outline */
  background-color: #a50100; /* Your brand color or a suitable color */
  color: white; /* Text color */
  cursor: pointer; /* Add a mouse pointer on hover */
  padding: 15px; /* Some padding */
  border-radius: 10px; /* Rounded corners */
  font-size: 18px; /* Increase font size */
  text-decoration: none; /* Remove underline from link */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Subtle shadow */
  transition:
    background-color 0.3s,
    transform 0.3s; /* Smooth transitions */
}

.back-to-top:hover {
  background-color: #e0a800; /* Darker shade on hover */
  transform: translateY(-3px); /* Slightly move up on hover */
}

/* --- Pengurus Section CSS --- */
.pengurus-section {
  padding: 60px 0;
  background-color: #fff;
  text-align: center;
}
.pengurus-section .section-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 5px;
  line-height: 1.2;
}
.pengurus-section .section-subtitle {
  font-size: 1.8rem;
  font-weight: 500;
  color: #555;
  margin-bottom: 50px;
}
.pengurus-card {
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.pengurus-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}
.pengurus-card .card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
}
.pengurus-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pengurus-card .card-body {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.pengurus-card .nama {
  font-size: 1.3rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 5px;
}
.pengurus-card .jabatan {
  font-size: 1rem;
  color: #dc3545;
  font-weight: 600;
  margin-bottom: 10px;
}
.pengurus-card .deskripsi {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.5;
  text-align: left;
}

@media (max-width: 991.98px) {
  .pengurus-section .section-title {
    font-size: 2.2rem;
  }
  .pengurus-section .section-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
  }
}
@media (max-width: 767.98px) {
  .pengurus-section {
    padding: 40px 0;
  }
  .pengurus-section .section-title {
    font-size: 1.8rem;
    text-align: center;
  }
  .pengurus-section .section-subtitle {
    font-size: 1.2rem;
    text-align: center;
  }
}
