.booking-contact-wrapper .book {
  background-color: #F5F9F5; /* Soft mint green tint */
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: background-color 0.4s ease, transform 0.4s ease;
}

.booking-contact-wrapper .book:hover {
  background-color: #E8F2E8;
  transform: scale(1.02);
}

.booking-contact-wrapper #booking-form h2 {
  font-size: 1.8rem;
  color: #3c5d3c;
  margin-bottom: 1rem;
}

.booking-contact-wrapper #booking-form input,
.booking-contact-wrapper #booking-form select,
.booking-contact-wrapper #booking-form textarea {
  border: 1px solid #bbb;
  background-color: #fff;
  border-radius: 8px;
  transition: box-shadow 0.3s ease;
}








/*
#booking-form input[type="date"]::-webkit-calendar-picker-indicator {
  position: absolute;
  right: 12px;
  color: #3c5d3c;
  cursor: pointer;
  opacity: 1;
}
*/





.booking-contact-wrapper #booking-form input:focus,
.booking-contact-wrapper #booking-form select:focus,
.booking-contact-wrapper #booking-form textarea:focus {
  box-shadow: 0 0 0 3px rgba(60, 93, 60, 0.2);
}

.booking-contact-wrapper #booking-form button {
  background-color: #3c5d3c;
  color: #fff;
  transition: background-color 0.3s ease;
}

.booking-contact-wrapper #booking-form button:hover {
  background-color: #2d472d;
}


#booking-form {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

#booking-form.visible {
  opacity: 1;
  transform: translateY(0);
}





/*
#booking-form input[type="date"] {
  width: 100%;
  font-size: 1rem;
  padding: 12px;
  box-sizing: border-box;
  appearance: none;
  -webkit-appearance: none;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 8px;
  position: relative;
}
*/


/*
@media (max-width: 480px) {
  #booking-form input,
  #booking-form select,
  #booking-form textarea {
    font-size: 15px;
    padding: 12px 10px;
  }

  #booking-form {
    padding: 30px 20px;
  }

  #booking-form button {
    font-size: 15px;
    padding: 12px;
  }
}*/



