/* Booking Section Styles */
.booking-section {
    max-width: 800px;
    margin: 24px auto;
    padding: 40px 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid #ccc;
    position: relative;
    overflow: hidden;
    z-index: 1;
    
  }
  
  .booking-header {
    text-align: center;
    margin-bottom: 30px;
  }
  
  .booking-header h2 {
    font-size: 28px;
    color: #333;
  }
  
  /* Form Styling */
  .booking-form .form-group {
    margin-bottom: 20px;
  }
  
  .booking-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
  }
  
  .booking-form input,
  .booking-form select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
    box-sizing: border-box;
    background-color: #fff;
  }
  
  /* Traveler details group */
  .traveler-details {
    display: flex;
    gap: 20px;
  }
  
  .traveler-details > div {
    flex: 1;
  }
  
  /* Buttons */
  .form-buttons {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-top: 30px;
  }
  
  .btn-primary,
  .btn-secondary {
    flex: 1;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .btn-primary {
    background-color: #1e90ff;
    color: white;
  }
  
  .btn-primary:hover {
    background-color: #0d70d0;
  }
  
  .btn-secondary {
    background-color: #ccc;
    color: #333;
  }
  
  .btn-secondary:hover {
    background-color: #bbb;
  }
  