/* --- LAYANAN WISATA PAGE SPECIFIC STYLES --- */

/* Page Header Section */
.page-header-section {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("images/layanan-header-bg.jpg") no-repeat center center/cover; /* Ganti URL gambar background */
  color: var(--white);
  padding: 100px 0 80px; /* Adjust padding for spacing below navbar */
  text-align: center; /* Tetap center untuk judul utama halaman */
  margin-top: 80px; /* Space from sticky navbar */
}

@media (max-width: 768px) {
  .page-header-section {
    padding: 80px 0 60px;
    margin-top: 70px; /* Adjust for smaller navbar */
  }
}

.page-header-section h1 {
  font-size: 3.5rem;
  margin-bottom: 15px;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.page-header-section p {
  font-size: 1.2rem;
  opacity: 0.9;
}

/* Services Content Section - Main display of cards */
.services-content-section {
  padding: 80px 0;
  background-color: var(--white);
  text-align: center; /* Tetap center untuk judul section dan subtitle */
}

.service-cards-list-split {
  display: flex;
  gap: 30px;
  justify-content: space-between;
  margin-top: 40px;
}

.service-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.service-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px 10px 0 0;
}
.service-card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  background-color: #fff;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .service-cards-list-split {
    flex-direction: column;
  }
}

.services-content-section .service-card .card-body {
  padding: 25px;
  flex-grow: 1; /* Allow content to grow and push button to bottom */
  display: flex;
  flex-direction: column;
}

.services-content-section .service-card h3 {
  font-size: 1.8rem;
  color: var(--dark-green);
  margin-bottom: 15px;
  text-align: left; /* UBAH: Judul kartu rata kiri */
}

.services-content-section .service-card p {
  font-size: 1.05rem;
  color: var(--text-color);
  margin-bottom: 15px;
  line-height: 1.6;
  text-align: left; /* UBAH: Deskripsi rata kiri */
}

.services-content-section .service-card .price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--blue);
  margin-top: auto; /* Push price to bottom before button */
  margin-bottom: 20px;
  text-align: left; /* UBAH: Harga rata kiri */
}

/* WhatsApp Button for Service Cards */
.services-content-section .btn-wa-pesan {
  display: flex;
  align-items: center;
  justify-content: center; /* Tetap center untuk teks dan ikon dalam tombol */
  background-color: #25d366;
  color: var(--white);
  border: 2px solid #25d366;
  padding: 12px 20px;
  border-radius: 5px;
  font-weight: 600;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  width: 100%;
}

.services-content-section .btn-wa-pesan i {
  margin-right: 10px;
  font-size: 1.2rem;
}

.services-content-section .btn-wa-pesan:hover {
  background-color: #1da851;
  border-color: #1da851;
}

/* New: Styles for the feature list */
.service-card .features-list {
  list-style: none; /* Remove default bullet points */
  padding: 0;
  margin-bottom: 20px; /* Space below the list */
}

.service-card .features-list li {
  display: flex; /* Use flexbox for icon and text alignment */
  align-items: center;
  margin-bottom: 8px; /* Space between list items */
  color: var(--text-color);
  font-size: 1em;
}

.service-card .features-list li i {
  color: var(--dark-green); /* Color for the check icon */
  margin-right: 10px; /* Space between icon and text */
  font-size: 1.1em;
}

/* Responsive adjustments for services page */
@media (max-width: 768px) {
  .page-header-section h1 {
    font-size: 2.5rem;
  }

  .page-header-section p {
    font-size: 1rem;
  }

  .services-content-section .service-cards-list {
    grid-template-columns: 1fr;
  }

  .services-content-section .service-card {
    max-width: 450px;
    margin: 0 auto;
  }

  .services-content-section .service-card h3 {
    font-size: 1.6rem;
  }

  .services-content-section .service-card p {
    font-size: 0.95rem;
  }
}
