/* BOOKING FORM STYLES */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #f0f2f5;
  color: #333;
}

/* --- Booking Section --- */
.booking {
  padding: 60px 20px;
  background: #fff;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  max-width: 600px;
  margin: 50px auto;
  border-radius: 12px;

  /* Animation on load */
  opacity: 0;
  transform: translateY(50px);
  animation: fadeSlideUp 1s ease-out forwards;
}

@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.booking h2 {
  margin-bottom: 25px;
  font-size: 28px;
  color: #222;
}

.booking form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.booking input,
.booking button {
  padding: 14px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
  width: 100%;
}

.booking input:focus {
  outline: none;
  border-color: #ffcc00;
  box-shadow: 0 0 5px rgba(255, 204, 0, 0.6);
}

.booking button {
  background: #ffcc00;
  font-weight: bold;
  cursor: pointer;
  border: none;
  transition: background 0.3s;
}

.booking button:hover {
  background: #e6b800;
}

/* Message styles */
#formMessage {
  margin-top: 15px;
  font-size: 16px;
  font-weight: bold;
}
#formMessage.success {
  color: green;
}
#formMessage.error {
  color: red;
}

/* Keep all previous styles, add these: */

.booking select {
  padding: 14px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
  background: #fff;
  cursor: pointer;
  width: 100%;
  appearance: none; /* Removes default arrow */
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='10' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l6 6 6-6' stroke='%23666' stroke-width='2' fill='none' fill-rule='evenodd'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 14px;
}

.booking select:focus {
  border-color: #ffcc00;
  box-shadow: 0 0 5px rgba(255, 204, 0, 0.6);
}
#formMessage {
  margin-top: 15px;
  font-size: 16px;
  font-weight: bold;
  opacity: 1;
  transition: opacity 1s ease;
}
#formMessage.hide {
  opacity: 0;
}
