/* Reset dan pengaturan dasar */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
}

body {
  font-family: "Roboto", sans-serif;
  margin: 0;
  padding: 0;
}
/*-----------------------------------*\
    #Navbar
\*-----------------------------------*/
/*-----------------------------------*\
    #Navbar
\*-----------------------------------*/
/*-----------------------------------*\
    #Navbar
\*-----------------------------------*/
/* Styling navbar */
.navbar {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  background-color: #f2f2f2;
  padding: 10px 20px;
  position: relative;
}
.login {
  background: goldenrod;
  border-radius: 10px;
  font-weight: bold;
  border: 1px solid red;
}

.navbar .logo img {
  width: 200px;
  height: auto;
}
.navbar .menu {
  display: flex;
  list-style: none;
  margin-left: 20px;
}

.navbar .menu li {
  margin-left: 20px;
}

.navbar .menu a {
  color: rgb(0, 0, 0);
  text-decoration: none;
  font-size: 18px;
  padding: 10px;
}

.navbar .menu a:hover {
  background-color: #656565;
  border-radius: 5px;
}

/* Styling tombol menu */
.menu-toggle {
  display: none;
  background-color: #ffffff;
  color: black;
  font-size: 22px;
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 5px;
  position: fixed;
  top: 3px;
  right: 3px;
  z-index: 1000;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.menu-toggle:hover {
  background-color: white;
  transform: scale(1.1);
}

/* Garis pemisah antar menu */
.navbar .menu li:not(:last-child) a::after {
  content: "|";
  margin-left: 10px;
  color: black;
}

/* Dropdown menu */
.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #ffffff;
  min-width: 200px;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  border-radius: 5px;
}
.dropbtn span {
  font-size: small;
}
.dropdown-content a {
  color: white;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {
  background-color: white;
}

/* Menampilkan submenu */
.dropdown-content.show {
  display: block;
}

/* Responsif untuk layar kecil */
@media (max-width: 768px) {
  .navbar {
    justify-content: center;
  }

  .navbar .menu {
    display: none;
    position: fixed;
    top: 60px;
    right: 20px;
    background-color: #ffffff;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    height: auto;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    font-size: 18px;
    line-height: 1.8;
    transition: all 0.3s ease;
    z-index: 1000;
  }

  .navbar .menu.active {
    display: flex;
  }

  .navbar .menu li {
    margin-left: 0;
    margin-bottom: 15px;
  }

  .navbar .menu a {
    padding: 15px 40px;
    width: 100%;
    text-align: left;
    font-size: 18px;
  }

  /* Menghilangkan garis pemisah pada layar kecil */
  .navbar .menu li:not(:last-child) a::after {
    content: none;
  }

  .menu-toggle {
    display: block;
  }
}

/*-----------------------------------*\
    #hero jannah firdaus
\*-----------------------------------*/
/*-----------------------------------*\
    #hero jannah firdaus
\*-----------------------------------*/
/*-----------------------------------*\
    #hero jannah firdaus
\*-----------------------------------*/
.homepage {
  width: 100%;
  position: relative;
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.5)),
    url("backgrond/madinah-payung.jpeg");
  background-position: center 65%;
  background-size: cover;
}

.homepage::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.2);
}

.content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0.1rem;
}

h1 {
  font-size: 3.5vw; /* Ukuran font lebih kecil dengan unit vw */
  font-weight: 700;
  color: #ffd700; /* Ubah warna gold yang lebih cerah saat dihover */
  font-family: "Roboto Slab", serif;
  letter-spacing: 1px;
  padding: 20px;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 223, 0, 0.7); /* Bayangan lebih terang dengan efek gold */
}

/* Media Query untuk ukuran layar lebih kecil */
@media screen and (max-width: 768px) {
  h1 {
    font-size: 5vw; /* Ukuran teks lebih besar pada layar kecil */
  }
}

@media screen and (max-width: 480px) {
  h1 {
    font-size: 6vw; /* Ukuran teks lebih besar lagi untuk layar ponsel */
    padding-top: 10px;
    padding-bottom: 10px;
    padding-right: 0;
    padding-left: 0;
  }
}

/* Teks utama */
.counter {
  font-size: 1.8em;
  font-weight: bold;
  color: #0a3d62; /* biru tua */
  font-family: Arial, sans-serif;
  background: linear-gradient(
    90deg,
    #c0c0c0,
    #e0e0e0,
    #c0c0c0
  ); /* gradiasi silver */
  padding: 10px 20px;
  border-radius: 8px;
  display: inline-block;
  margin: 10px;
}
.h1-top {
  font-size: 1.5rem;
  font-weight: bold;
  color: white;
  margin-top: 1rem;
}
.whatsapp-button {
  display: inline-flex;
  margin: 0.5em;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  font-size: clamp(14px, 2vw, 18px);
  font-weight: 600;
  font-size: 1.4em;
  color: #ffffff;
  background: #25d366; /* Solid WhatsApp green background */
  border: 2px solid #25d366;
  border-radius: 14px;
  box-shadow: 0 4px 10px rgba(37, 211, 102, 0.6);
  cursor: pointer;
  transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
  min-height: 44px;
  user-select: none;
  text-decoration: none;
}
.whatsapp-button:focus-visible {
  outline: 3px solid #ffffff;
  outline-offset: 3px;
  box-shadow: 0 0 12px 4px #ffffff;
}
.whatsapp-button:hover {
  background: #1ebe57;
  box-shadow: 0 6px 18px rgba(30, 190, 87, 0.8);
  transform: translateY(-2px);
}
.whatsapp-icon {
  font-size: 24px;
  color: #ffffff;
  user-select: none;
}
@media (hover: none) {
  .whatsapp-button:hover {
    background: #209c4a;
    box-shadow: 0 4px 12px rgba(32, 156, 74, 0.7);
    transform: none;
  }
}
@media (max-width: 480px) {
  .h1-top {
    font-size: 1.2rem;
    font-weight: bold;
    color: white;
    margin-top: 1rem;
  }
  .highlighted-text {
    font-size: 1rem;
    font-weight: bold;
    color: white;
    margin-top: 1rem;
  }
}

/* Img slider*/

.slider-container {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: auto;
  overflow: hidden;
  border-radius: 8px;
  border: 5px solid white;
}

.slider {
  display: flex;
}

.slide {
  min-width: 100%;
}

.slide img {
  width: 100%;
  height: auto;
  display: block;
}

button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.3);
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  z-index: 10;
}

button:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.prev {
  left: 1px;
}

.next {
  right: 1px;
}
/*-----------------------------------*\
    #about
\*-----------------------------------*/
/*-----------------------------------*\
    #about
\*-----------------------------------*/
/*-----------------------------------*\
    #about
\*-----------------------------------*/
.about {
  padding: 2rem 5px;
  width: 100%;
  background-size: cover;
}

.about-content {
  text-align: center;
  margin-bottom: 40px;
}

.about-content h2 {
  font-size: 2rem;
  color: #111;
  max-width: 900px;
  margin: 0 auto;
}

.isi-about {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  padding-right: 5px;
  padding-left: 5px;
}

@media (min-width: 700px) {
  .isi-about {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 700px) {
  .isi-about {
    gap: 5px;
    padding: 0;
    margin: 0;
  }
}

.isi-sub {
  background: linear-gradient(to right, #b3831e 0%, #dbb93e 50%, #b3831e 100%);
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  padding: 5px;
  text-align: center;
  font-size: 1em;
}

/* Tambahan untuk membungkus gambar */
/* Container gambar */
.image-wrapper {
  width: 110px;
  height: 80px;
  margin: 0 auto 1rem;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    90deg,
    #f2f2f2,
    #ffff,
    #f5f5f5
  ); /* gradiasi silver */
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #ddd;
}

/* Gambar seragam */
.image-wrapper img {
  width: 100%;
  height: auto;
  object-fit: contain; /* menjaga rasio gambar */
  display: block;
}

/*-----------------------------------*\
    #produk
\*-----------------------------------*/
/*-----------------------------------*\
    #produk
\*-----------------------------------*/
/*-----------------------------------*\
    #produk
\*-----------------------------------*/
.umrah-container {
  max-width: 2000px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.umrah-card {
  background-color: white;
  border-radius: 12px;
  padding: 10px;
  margin-bottom: 1rem;
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.1);
  transition: transform 0.3s ease;
}

.umrah-card:hover {
  transform: translateY(-5px);
}

.umrah-badge {
  display: inline-block;
  background-color: #fff8e1;
  color: #d4af37;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  margin: 0;
}

.umrah-title {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0;
  position: relative;
  background: linear-gradient(to right, #d4af37, #f9d423);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin-bottom: 10px;
}
.umrah-desc {
  color: #666;
  font-size: 14px;
  margin-bottom: 15px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.umrah-btn {
  display: inline-block;
  background: linear-gradient(to right, #d4af37, #f9d423);
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
}

.umrah-btn:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
  .umrah-title {
    font-size: 28px;
  }

  .umrah-title::before,
  .umrah-title::after {
    font-size: 18px;
  }
}
:root {
  --primary: #f39c12;
  --secondary: #2ecc71;
  --accent: #e74c3c;
  --text: #2c3e50;
  --light-text: #7f8c8d;
  --bg-gradient: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
  --shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.produk {
  font-family: "Poppins", sans-serif;
  background: var(--bg-gradient);
  padding: 2rem 1rem;
  color: var(--text);
  line-height: 1.6;
}
.travel-cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}

.travel-card {
  background: white;
  border-radius: 16px;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
}

.card-image-container {
  height: auto;
  overflow: hidden;
}

.card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.travel-card:hover .card-image {
  transform: scale(1.05);
}

.card-content {
  padding: 1rem;
  flex: 1;
  position: relative;
}

.card-header {
  display: flex;
  flex-direction: column;
}

.badge-container {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 0.5rem;
}

.card-badge {
  padding: 0.35rem 0.75rem;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.badge-hemat {
  background: linear-gradient(135deg, #52c234 0%, #61b73a 100%);
  color: white;
}

.badge-best {
  background: linear-gradient(135deg, #ff416c 0%, #ff4b2b 100%);
  color: white;
}

.badge-vip {
  background: linear-gradient(135deg, #f39c12 0%, #f1c40f 100%);
  color: white;
}

.paket-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}

.card-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
}

.price-note {
  font-size: 0.875rem;
  color: var(--light-text);
  font-style: italic;
}

.card-divider {
  height: 1px;
  background: var(--light-text);
  opacity: 0.2;
  margin: 1rem 0;
  border: none;
}

.card-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.detail-item {
  display: flex;
  align-items: flex-start;
}

.detail-icon {
  flex-shrink: 0;
  font-size: 1rem;
  color: var(--primary);
  margin-right: 0.75rem;
}

.detail-content {
  flex: 1;
}
.star-rating {
  color: #f1c40f;
  font-size: 0.8rem;
  margin-top: 2px;
}
.detail-label {
  font-size: 0.875rem;
  color: var(--light-text);
  font-weight: 500;
}

.detail-value {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
}

.card-footer {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.location {
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  color: var(--light-text);
}

.location-icon {
  margin-right: 0.5rem;
  color: var(--primary);
}

.detail-button {
  padding: 0.5rem 1rem;
  background: #3498db;
  color: white;
  border-radius: 8px;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.detail-button:hover {
  background: #2980b9;
}

.button-icon {
  margin-right: 0.5rem;
}

@media (max-width: 768px) {
  .card-details {
    grid-template-columns: 1fr;
  }

  .travel-cards-container {
    grid-template-columns: 1fr;
  }
}

.date-toggle {
  color: var(--primary);
  font-size: 1rem;
  cursor: pointer;
  margin-top: 5px;
  display: inline-block;
}
.date-toggle i {
  transition: transform 0.3s ease;
}
.date-toggle.active i {
  transform: rotate(180deg);
}
.hidden-dates {
  display: none;
  margin-top: 5px;
}
/*-----------------------------------*\
    #tittle
\*-----------------------------------*/
.umroh-title-gold {
  font-size: 30px;
  font-weight: bold;
  text-align: center;
  color: #ffb600; /* gold color */
  background-color: #ffffff;
  padding: 25px 40px;
  margin: 20px auto;
  border: 2px solid #ffb600;
  border-radius: 12px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  max-width: 90%;
  box-sizing: border-box;
  transition: transform 0.3s ease;
}

.umroh-title-gold:hover {
  transform: scale(1.02);
}

/* Responsif untuk HP */
@media (max-width: 600px) {
  .umroh-title-gold {
    font-size: 20px;
    padding: 15px 20px;
  }
  .voucher {
    border-radius: 10px;
    padding: 0px;
    margin: 0px auto;
  }
}

/*-----------------------------------*\
    #voucher css
\*-----------------------------------*/
.voucher {
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);

  max-width: 1000px;
  margin: 30px auto;
  text-align: center;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
@media (max-width: 600px) {
  .voucher {
    border-radius: 0px;
    padding: 10px;
    margin: 0px auto;
  }
}

.voucher h3 {
  display: block;
  font-size: 1.4em;
  font-weight: 600;
  color: #222;
  margin-bottom: 20px;
  background: yellow;
  border-radius: 10px;
  padding: 5px;
}

.voucher-img {
  display: inline-block; /* Agar lebar border mengikuti ukuran gambar */
  border: 4px dashed red; /* Border putus-putus merah */
  border-radius: 10px;
  padding: 5px; /* Jarak antara gambar dan border */
  margin-bottom: 20px;
  text-align: center; /* Untuk memastikan gambar tetap rata tengah */
}

.voucher-img img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

.cta-button {
  display: inline-block;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: bold;
  color: #fff;
  background: #28a745; /* Warna hijau */
  border: none;
  border-radius: 8px;
  text-decoration: none;
  border: 2px solid white;
}
/*-----------------------------------*\
    #kenapa memeliki kami css
\*-----------------------------------*/
/*-----------------------------------*\
    #kenapa memeliki kami css
\*-----------------------------------*/
/*-----------------------------------*\
    #kenapa memeliki kami css
\*-----------------------------------*/
.jf-container {
  font-family: Arial, sans-serif;
  padding: 40px;

  color: #333;
  max-width: 1500px;
  margin: auto;
}

.jf-title {
  text-align: center;
  color: #006400;
  font-size: 29px;
  margin-bottom: 40px;
}

.jf-subtitle {
  color: #ffffff;
  font-size: x-large;
  margin-top: 30px;
  margin-bottom: 10px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Menambahkan bayangan teks untuk meningkatkan keterbacaan */
}

.jf-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
  background: linear-gradient(to right, #b3831e 0%, #dbb93e 50%, #b3831e 100%);
  padding: 3%;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.jf-left-column,
.jf-right-column {
  padding: 10px;
}

.jf-legalitas span {
  margin-right: 10px;
  font-size: 1em;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.jf-legalitas h3,
.jf-legalitas p {
  display: flex;
  align-items: center;
  margin: 8px 0;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  font-size: large;
}

.jf-profile {
  text-align: center;
}
.jf-profile img {
  background: linear-gradient(90deg, #0f2027, #203a43, #2c5364);
}
.jf-profile-img {
  width: 100%;
  max-width: 500px;
  border-radius: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.jf-profile-description {
  margin-top: 20px;
  font-size: large;
  line-height: 1.6;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Responsif untuk perangkat dengan lebar maksimal 768px (Mobile) */
@media (max-width: 768px) {
  .jf-container {
    margin: 0;
    padding-bottom: 10px;
    padding-top: 0px;
    padding-left: 0px;
    padding-right: 0;
  }

  .jf-grid {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .jf-left-column {
    order: 2;
  }

  .jf-right-column {
    order: 1;
  }

  .jf-title {
    font-size: 22px;
    padding-top: 20px;
  }

  .jf-subtitle {
    font-size: 20px;
  }

  .jf-profile-description {
    font-size: 17px;
  }
}
/*-----------------------------------*\
    #fasilitas jf 
\*-----------------------------------*/
/* Mengatur gaya untuk section */
.keunggulan {
  padding: 0;
  margin: 0;
  width: 100%;
  background-size: cover;
}

/* Mengatur gaya untuk judul utama */
.keunggulan .sub-fasilitaas {
  font-weight: bold;
  text-align: center;
  color: #333;
  background: linear-gradient(to right, #b3831e 0%, #dbb93e 50%, #b3831e 100%);
  padding: 10px;
}

/* Mengatur grid container untuk box-sub */
.box-containe-subr {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding: 20px;
  margin: 0;
}

/* Mengatur box-sub */
.box-sub {
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease;
  text-align: center; /* Memastikan teks di dalam box terpusat */
  background: linear-gradient(to bottom, #c0c0c0, #ffffff);
}

/* Mengatur gambar dalam box-sub */
.box-sub img {
  width: 35%;
  height: auto;
  margin: 0 auto;
  display: block;
  border: 3px solid #eee;
  border-radius: 10px;
  padding: 10px;
  background: linear-gradient(to right, #b3831e 0%, #dbb93e 50%, #b3831e 100%);
}

/* Gaya teks di dalam box-sub */
.teks-sub {
  padding: 10px;
}

/* Font untuk judul dalam box-sub */
.font-utama {
  font-size: 20px;
  font-weight: bold;
  color: #111;
  margin-bottom: 10px;
}

/* Font untuk deskripsi dalam box-sub */
.font-sub {
  font-size: 17px;
  color: #555;
}

/* Efek hover pada box-sub */
.box-sub:hover {
  transform: translateY(-5px);
}

/* Responsif untuk perangkat lebih kecil */
@media (min-width: 900px) {
  .box-containe-subr {
    grid-template-columns: repeat(4, 1fr);
  }
  .keunggulan .sub-fasilitaas {
    font-size: 30px;
  }
}

@media (max-width: 900px) {
  .box-containe-subr {
    grid-template-columns: repeat(3, 1fr);
  }
  .keunggulan .sub-fasilitaas {
    font-size: 28px;
  }
}

@media (max-width: 550px) {
  .box-containe-subr {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    padding-bottom: 20px;
    padding-top: 10px;
    padding-left: 5px;
    padding-right: 5px;
    margin: 0;
  }
  .keunggulan .sub-fasilitaas {
    font-size: 22px;
  }
}

/* Media query untuk tablet */
@media (min-width: 550px) {
  .box-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Media query untuk desktop */
@media (min-width: 900px) {
  .box-container {
    grid-template-columns: repeat(4, 1fr);
  }
}
.footer {
  background-color: #222;
  color: #fff;
  padding: 40px 20px 20px;
  font-family: Arial, sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.footer-section {
  flex: 1;
  min-width: 250px;
}

.footer-section h3 {
  color: #f5b021;
  margin-bottom: 10px;
  font-size: 18px;
  border-bottom: 1px solid #555;
  padding-bottom: 5px;
}

.footer-section p {
  font-size: 14px;
  line-height: 1.6;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid #444;
  padding-top: 15px;
  font-size: 13px;
  color: #aaa;
}
.footer-logo {
  width: 150px;
  align-items: center;
  margin: 0 auto;
}
.footer-section a {
  display: block;
  color: #fff;
  font-size: 18px;
  margin-bottom: 10px;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section a:hover {
  color: #f5b021;
}

.footer-section p {
  margin-bottom: 12px;
}
.footer-section a {
  margin-bottom: 12px;
}

.closeb {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: linear-gradient(to right, #b3831e 0%, #dbb93e 50%, #b3831e 100%);
  color: #fff;
  margin-top: -1px;
  padding: 1.3rem;
  display: flex;
  flex-wrap: wrap;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  margin-bottom: 25px;
}

.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;
}

.itinerary-button {
  background-color: #007bff;
}

.itinerary-button:hover {
  background-color: #0069d9;
}

/*-----------------------------------*\
    #patner css
\*-----------------------------------*/
/*-----------------------------------*\
    #patner css
\*-----------------------------------*/
/*-----------------------------------*\
    #patner css
\*-----------------------------------*/
.logo-slider {
  position: relative;
  width: 100vw;
  max-width: 1500px;
  overflow: hidden;
  border-radius: 12px;
  background: white;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
.slider-track {
  display: flex;
  transition: transform 0.5s ease;
  will-change: transform;
}
.icon-perusahaan {
  width: 150px;
  height: 80px;
  margin: 10px 5px;
  filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.1));
  flex-shrink: 0;
  background: #fff;
  border-radius: 8px;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.icon-perusahaan img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.gabung {
  background-image: url("backgrond/background-madinah.jpg");
  background-position: center 65%;
  background-size: cover;
  background-attachment: fixed; /* Ini membuat gambar background tetap */
  background-position: center;
}
.patner {
  margin: 0;
  position: relative;
  background-position: center;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  gap: 10px;
  padding: 30px 0;
}

/* Responsif */
@media (max-width: 768px) {
  .patner-teks {
    font-size: 1.5rem;
  }

  .patner-judul {
    padding: 30px 15px;
  }
}

@media (max-width: 480px) {
  .patner-teks {
    font-size: 1.25rem;
  }

  .patner-teks::after {
    width: 50%;
  }
}
.perlengkapan {
  max-width: 900px;
  margin: 10px auto;
  padding: 0px;
  border-radius: 12px;
  text-align: center;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.perlengkapan img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  transition: transform 0.3s ease;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.perlengkapan img:hover {
  transform: scale(1.03);
}
