/* Luxury Booking Form Styles */

/* Form Container */
.booking-form {
  background: rgba(255, 255, 255, 0.95) !important;
  border-radius: 15px !important;
  padding: 30px 35px !important;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2) !important;
  border: 1px solid rgba(220, 220, 220, 0.3);
  backdrop-filter: blur(10px);
}

/* Form Title */
.booking-form h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 25px;
  color: #333;
  text-align: center;
  position: relative;
  padding-bottom: 15px;
}

.booking-form h3:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 50px;
  height: 3px;
  background: #007bff;
  border-radius: 2px;
}

/* Labels */
.booking-form label {
  font-size: 14px;
  font-weight: 500;
  color: #555;
  margin-bottom: 8px;
  display: block;
}

/* Select Inputs */
.booking-form select.form-select {
  height: 48px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 0 15px;
  font-size: 15px;
  color: #333;
  background-color: #f9f9f9;
  transition: all 0.3s;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23dfa974' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
}

.booking-form select.form-select:focus {
  border-color: #007bff;
  box-shadow: 0 0 0 3px rgba(223, 169, 116, 0.15);
  background-color: #fff;
}

/* Text Inputs */
.booking-form input.form-control,
.booking-form input.datepicker {
  height: 48px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 0 15px;
  font-size: 15px;
  color: #333;
  background-color: #f9f9f9;
  transition: all 0.3s;
}

.booking-form input.form-control:focus,
.booking-form input.datepicker:focus {
  border-color: #2d79de;
  box-shadow: 0 0 0 3px rgba(31, 231, 221, 0.15);
  background-color: #fff;
}

/* Disabled Inputs */
.booking-form input:disabled {
  background-color: #f5f5f5;
  color: #777;
  cursor: not-allowed;
}

/* Guest Counter Inputs */
.booking-form .input-group {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.booking-form .input-group .form-control {
  border-radius: 0;
  border-left: none;
  border-right: none;
  text-align: center;
  height: 48px;
}

.booking-form .input-group .btn {
      background: #f5f5f5;
    color: #555;
    border: 1px solid #e0e0e0;
    height: 32px;
    width: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.2s;
    border-radius: 50%;
    margin: 0 4px;
}

.booking-form .input-group .btn:hover {
  color: black;
}

/* Counter Width */
.booking-form .fixed-width {
  min-width: 40px;
  max-width: 60px;
}

/* Submit Button */
.booking-form .btn-primary {
  height: 54px;
  background-color: #007bff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: white;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(223, 169, 116, 0.3);
}

.booking-form .btn-primary:hover {
  background-color: #007bff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(223, 169, 116, 0.4);
}

.booking-form .btn-primary:active {
  transform: translateY(0);
}

/* Room Container */
.booking-form .room-container {
  margin-bottom: 20px;
}

/* Room Price Container */
.booking-form .room-price-container {
  margin-top: 15px;
}

/* Date Selection Row */
.booking-form .datepicker {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23dfa974' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2' ry='2'%3E%3C/rect%3E%3Cline x1='16' y1='2' x2='16' y2='6'%3E%3C/line%3E%3Cline x1='8' y1='2' x2='8' y2='6'%3E%3C/line%3E%3Cline x1='3' y1='10' x2='21' y2='10'%3E%3C/line%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .booking-form {
    padding: 25px !important;
    margin-top: 30px;
  }
}

@media (max-width: 767px) {
  .booking-form {
    padding: 20px !important;
  }
  
  .booking-form h3 {
    font-size: 20px;
  }
}

/* Animation for hover effect */
.booking-form:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25) !important;
}