.booking-progress {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding: 0 10px;
  }
  
  .progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
  }
  
  .step-number {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #f0f0f0;
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-bottom: 8px;
    transition: all 0.3s ease;
  }
  
  .progress-step.active .step-number {
    background-color: #f7b731;
    color: white;
  }
  
  .progress-step.completed .step-number {
    background-color: #4caf50;
    color: white;
  }
  
  .step-label {
    font-size: 14px;
    color: #999;
    transition: all 0.3s ease;
  }
  
  .progress-step.active .step-label {
    color: #333;
    font-weight: 500;
  }
  
  .progress-connector {
    flex-grow: 1;
    height: 3px;
    background-color: #f0f0f0;
    position: relative;
    margin: 0 10px;
    top: -18px;
    z-index: 0;
  }
  
  .progress-step.active + .progress-connector {
    background-color: #f6891f;
  }
  
  .selection-indicator {
    position: absolute;
    top: 10px;
    right: 10px;
    color: #4caf50;
    font-size: 24px;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.3s ease;
  }
  
  .transportation-card.selected .selection-indicator {
    opacity: 1;
    transform: scale(1);
  }
  
  .transportation-card {
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid transparent;
  }
  
  .transportation-card:hover,
  .transportation-card.hovering {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  }
  
  .transportation-card.selected {
    border-color: #f6891f;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  }
  
  .size-presets {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
  }
  
  .preset-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f0f0f0;
    border: none;
    color: #333;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
  }
  
  .preset-btn:hover {
    background-color: #e0e0e0;
  }
  
  .selected-day {
    color: #f6891f;
    font-weight: normal;
    font-size: 14px;
  }
  
  .highlight-section {
    animation: highlight-pulse 2s ease-in-out;
  }
  
  @keyframes highlight-pulse {
    0% { box-shadow: 0 0 0 0 rgba(246, 137, 31, 0.4); }
    50% { box-shadow: 0 0 0 20px rgba(246, 137, 31, 0.2); }
    100% { box-shadow: 0 0 0 0 rgba(246, 137, 31, 0); }
  }
  
  /* Mobile Responsive Adjustments */
  @media (max-width: 768px) {
    .booking-progress {
      overflow-x: auto;
      padding-bottom: 15px;
      justify-content: flex-start;
    }
    
    .progress-step {
      min-width: 80px;
    }
  }
  .highlight-section {
    animation: highlight-pulse 2s ease-in-out;
  }
  
  @keyframes highlight-pulse {
    0% { box-shadow: 0 0 0 0 rgba(246, 137, 31, 0.4); }
    50% { box-shadow: 0 0 0 20px rgba(246, 137, 31, 0.2); }
    100% { box-shadow: 0 0 0 0 rgba(246, 137, 31, 0); }
  }
  /* For completed steps */
.progress-step.completed .step-number {
    background-color: #4caf50; /* Green */
    color: white;
  }
  
  /* Add a checkmark icon to completed steps */
  .progress-step.completed .step-number::after {
    content: '✓';
    font-weight: bold;
  }
  
  /* Style the connector between a completed step and the next step */
  .progress-step.completed + .progress-connector {
    background-color: #4caf50; /* Green */
  }
  .booking-step[data-step="3"] {
    /* Make sure the step is visible when shown */
    display: block;
    opacity: 1;
  }
  
  .details-form {
    /* Make sure the form is visible */
    display: block;
    opacity: 1;
  }
  
  .form-row {
    /* Ensure proper display of form rows */
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 15px;
  }
  
  .form-group {
    /* Style form groups */
    flex: 1;
    min-width: 250px;
    margin-right: 15px;
    margin-bottom: 15px;
  }
  
  .form-group label {
    display: block;
    margin-bottom: 5px;
  }
  
  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
  }

  /* 
   Add this CSS to your page to support the loading overlay
   and other visual fixes for the booking system 
*/

/* Loading overlay for booking system */
.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  color: white;
  font-size: 18px;
}

.loading-spinner {
  width: 50px;
  height: 50px;
  border: 5px solid #f3f3f3;
  border-top: 5px solid #3498db;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 20px;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Styling for booking widget in loading state */
.booking-widget.is-loading {
  opacity: 0.7;
  pointer-events: none;
}

/* Error styling for form fields */
.form-group input.error,
.form-group textarea.error {
  border-color: #e74c3c;
  box-shadow: 0 0 0 1px #e74c3c;
}

.error-message {
  color: #e74c3c;
  font-size: 12px;
  margin-top: 5px;
  display: none;
}

/* Payment error message */
.payment-error {
  color: #e74c3c;
  padding: 10px;
  background-color: #fceae9;
  border-radius: 4px;
  margin: 10px 0;
  text-align: center;
}

/* Make PayPal button container maintain height to prevent layout shifts */
#paypal-button-container {
  min-height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Ensure activity cards handle selected state properly */
.activity-card.has-participants {
  border-color: #3498db;
  background-color: rgba(52, 152, 219, 0.05);
}

/* Fix accommodation cards selected state */
.accommodation-card.selected {
  border-color: #3498db;
  background-color: rgba(52, 152, 219, 0.05);
}

/* Fix meal cards selected state */
.meal-card.has-participants {
  border-color: #3498db;
  background-color: rgba(52, 152, 219, 0.05);
}
.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  color: white;
}

.loading-spinner {
  width: 50px;
  height: 50px;
  border: 5px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: white;
  animation: spin 1s linear infinite;
  margin-bottom: 20px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Share/Save Button Styles */
.share-btn.saved, .save-btn.saved {
  background-color: #4CAF50;
  border-color: #4CAF50;
}

.share-btn.saved:hover, .save-btn.saved:hover {
  background-color: #45a049;
}

.toast-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
}

.toast {
  background: rgba(0,0,0,0.85);
  color: white;
  padding: 15px 25px;
  border-radius: 4px;
  margin-top: 10px;
  animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
  from { transform: translateX(100%); }
  to { transform: translateX(0); }
}