.booking-section {
  background-color: #00303f;
  padding: 35px;
  max-width: 100%;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  text-align: center;
}

.booking-section h3 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #fff;
}

/* Form layout */
.booking-form {
  max-width: 100%;
  display: flex;
  flex-direction: column;
}

/* Dates row */
.booking-form .dates {
  display: flex;
  gap: 15px;
}

/* Individual field */
.booking-form .field {
  flex: 1;
  margin-bottom: 18px;
}

.booking-form label {
  display: block;
  margin-bottom: 0.8rem;
  color: #fff;
  font-weight: bold;
  font-size: large;
}

/* Inputs */
.booking-form input, select {
  width: 60%;
  padding: 12px 14px;
  border: 1px solid #dcdcdc;
  border-radius: 10px;
  font-size: 14px;
  background: #fff;
  transition: all 0.3s ease;
}

.booking-form input:focus {
  border-color: #1cc3b2;
  box-shadow: 0 0 0 3px rgba(43,111,78,0.15);
  outline: none;
}

/* Nights text */
.nights {
  margin-bottom: 0.8rem;
  font-size: large;
  font-weight: bold;
  color: #1cc3b2;
}

/* Button */
.booking-form button {
  padding: 14px;
  background: linear-gradient(135deg, #00303f, #1cc3b2);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 500;
  max-width: 80%;
  margin: 0 auto;
  display: block;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.booking-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(43,111,78,0.3);
}

/* Mobile responsiveness */
@media (max-width: 600px) {
  .booking-form .dates {
      flex-direction: column;
  }
}
