/* Booking Form Styles */
.booking-form-container {
    max-width: 900px;
    margin: 30px auto 0;
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    padding: 5px;
    transform: translateY(0);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
  }
  
  .booking-form-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  }
  
  .booking-form {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    padding: 20px;
  }
  
  .form-group {
    flex: 1 1 200px;
    position: relative;
    padding: 5px 15px;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
  }
  
  .form-group:last-of-type {
    border-right: none;
  }
  
  .form-group label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #555;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
  }
  
  .form-group:focus-within label {
    color: #b68c5a; /* Match with hotel theme color */
  }
  
  .form-group input, 
  .form-group select {
    width: 100%;
    padding: 8px 0;
    border: none;
    background: transparent;
    font-size: 16px;
    color: #333;
    outline: none;
    font-family: inherit;
    transition: all 0.3s ease;
  }
  
  .form-group input:focus,
  .form-group select:focus {
    border-color: #b68c5a;
  }
  
  .search-btn {
    min-width: 120px;
    padding: 15px 20px;
    background: #b68c5a; /* Hotel theme color, adjust as needed */
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
  }
  
  .search-btn:hover {
    background: #a07947;
    transform: translateY(-2px);
  }
  
  .search-btn i {
    font-size: 18px;
  }
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
    .booking-form-container {
      margin: 20px 15px 0;
    }
    
    .booking-form {
      flex-direction: column;
      gap: 15px;
    }
    
    .form-group {
      flex: 1 1 100%;
      border-right: none;
      border-bottom: 1px solid rgba(0, 0, 0, 0.1);
      padding: 10px 0;
    }
    
    .form-group:last-of-type {
      border-bottom: none;
    }
    
    .search-btn {
      width: 100%;
      margin-top: 5px;
    }
  }
  
  /* Set minimum date to today for check-in and check-out */