body {
  font-family: 'Poppins', sans-serif;
  background: #0f2b1c;
  margin: 0;
  padding: 0;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

/* ===== Container utama ===== */
.booking-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 40px 20px;
  box-sizing: border-box;
}

/* ===== Logo ===== */
.booking-left img {
  width: 180px;
  height: auto;
  margin-bottom: 35px;
  filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.3));
}

/* ===== Card Form ===== */
.booking-right {
  background: #1b3528;
  border-radius: 20px;
  padding: 60px 50px;
  width: 100%;
  max-width: 600px;
  min-height: 700px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.4);
  animation: fadeIn 0.8s ease;
}

.booking-right h2 {
  text-align: center;
  font-family: 'Rye', cursive;
  color: #f4e1b3;
  margin-bottom: 40px;
  font-size: 26px;
  letter-spacing: 1px;
}

/* ===== Form ===== */
form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

input, select {
  width: 100%;
  padding: 16px;
  border-radius: 10px;
  border: none;
  font-size: 16px;
  background-color: #f8f8f8;
  color: #333;
  box-sizing: border-box;
}

input:focus, select:focus {
  outline: none;
  box-shadow: 0 0 8px rgba(212, 180, 131, 0.7);
}

/* ===== Tombol ===== */
.book-btn {
  background: #d4b483;
  color: #1b3528;
  font-weight: bold;
  border: none;
  padding: 16px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 17px;
  transition: all 0.3s ease;
}

.book-btn:hover {
  background: #e6c891;
  transform: scale(1.05);
}

/* ===== Info Harga ===== */
.price-box {
  background: rgba(255, 255, 255, 0.1);
  padding: 15px;
  border-radius: 10px;
  text-align: center;
  font-size: 18px;
  color: #f4e1b3;
  display: none;
}

/* ===== Alert ===== */
.success, .errors {
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 25px;
  font-size: 15px;
}

.success {
  background: #d7ffd9;
  color: #154a25;
  border-left: 6px solid #28a745;
}

.errors {
  background: #ffd7d7;
  color: #6e1515;
  border-left: 6px solid #b71c1c;
}

.cancel-btn {
  display: inline-block;
  text-align: center;
  padding: 10px 16px;
  background: #c0392b;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 10px;
  transition: 0.2s ease-in-out;
}

.cancel-btn:hover {
  background: #e74c3c;
}


/* ===== Animasi ===== */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(25px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== Responsif Tablet ===== */
@media (max-width: 1024px) {
  .booking-right {
    max-width: 85%;
    padding: 55px 40px;
    min-height: 750px;
  }
  .booking-left img {
    width: 150px;
  }
}

/* ===== Responsif HP ===== */
@media (max-width: 768px) {
  body {
    padding: 30px 0;
  }

  .booking-right {
    max-width: 90%;
    padding: 45px 25px;
    min-height: 720px;
  }

  .booking-right h2 {
    font-size: 22px;
  }

  .booking-left img {
    width: 130px;
    margin-bottom: 25px;
  }

  input, select {
    font-size: 15px;
    padding: 13px;
  }

  .book-btn {
    font-size: 15.5px;
    padding: 14px;
  }
}

/* ===== Responsif HP kecil ===== */
@media (max-width: 480px) {
  body {
    padding: 20px 0;
  }

  .booking-right {
    max-width: 95%;
    padding: 40px 20px;
    border-radius: 15px;
    min-height: 720px;
  }

  .booking-left img {
    width: 110px;
    margin-bottom: 20px;
  }

  .booking-right h2 {
    font-size: 20px;
  }

  input, select {
    font-size: 14.5px;
    padding: 12px;
  }

  .book-btn {
    font-size: 14.5px;
    padding: 12px;
  }

  .price-box {
    font-size: 16px;
  }
}
