/* ======== Spacing supaya tidak ketutup header ======== */
.page-booking {
  padding-top: 25px; /* Atur sesuai tinggi header kamu */
  max-width: 1100px;
  margin: 0 auto;
  padding-bottom: 60px;
}


/* ======== Hero Title ======== */
.hero-booking {
  text-align: center;
  margin-bottom: 40px;
}

.hero-booking h1 {
  font-size: 32px;
  margin-bottom: 10px;
  font-weight: 700;
  
}

/* ======== Grid pilihan booking ======== */
.booking-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  padding: 0 20px;
}

/* ======== Card Style ======== */
.booking-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: transform .2s ease, box-shadow .2s ease;
  text-align: center;
  padding-bottom: 25px;
}

.booking-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

/* Gambar */
.booking-card img.booking-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

/* Judul */
.booking-card h2 {
  margin: 20px 0 10px;
  font-size: 22px;
  font-weight: 700;
}

/* Deskripsi */
.booking-card p {
  padding: 0 20px;
  font-size: 15px;
  color: #444;
  margin-bottom: 20px;
}

/* Tombol */
.btn-book {
  display: inline-block;
  background-color: #0071e3;
  color: white;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background .2s ease;
}

.btn-book:hover {
  background-color: #005bb5;
}
