/* Booking Progress */
.booking-progress {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 2rem 0;
    position: relative;
}

.booking-progress::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: #e9ecef;
    z-index: 1;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    background: #fff;
    padding: 0 1rem;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.progress-step.active .step-number {
    background: var(--bs-primary);
    color: #fff;
}

.step-text {
    font-size: 0.875rem;
    color: #6c757d;
}

.progress-step.active .step-text {
    color: var(--bs-primary);
    font-weight: bold;
}

/* Booking Steps */
.booking-step {
    display: none;
    animation: fadeIn 0.3s ease;
}

.booking-step.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Tour Cards */
.tour-card {
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: 2px solid transparent;
}

.tour-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.tour-card.selected {
    border-color: var(--bs-primary);
}

.tour-card img {
    height: 200px;
    object-fit: cover;
}

.tour-categories {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tour-categories button {
    white-space: nowrap;
}

/* Guest Count */
.guest-count {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.guest-count button {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

#guestCount {
    min-width: 2rem;
    text-align: center;
    font-weight: bold;
}

/* Payment Methods */
.payment-methods .nav-tabs {
    border-bottom: 2px solid #dee2e6;
}

.payment-methods .nav-link {
    border: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    padding: 1rem 1.5rem;
    color: #6c757d;
    font-weight: 500;
}

.payment-methods .nav-link.active {
    color: var(--bs-primary);
    border-bottom-color: var(--bs-primary);
}

.payment-form {
    display: none;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 0.5rem;
}

.payment-form.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

/* Form Styling */
.form-label {
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-control:focus {
    border-color: var(--bs-primary);
    box-shadow: 0 0 0 0.2rem rgba(var(--bs-primary-rgb), 0.25);
}

/* Booking Details Card */
.booking-details {
    background: #f8f9fa;
    border: none;
    border-radius: 0.5rem;
}

.booking-details .card-body {
    padding: 1.5rem;
}

/* Success Modal */
.modal-content {
    border: none;
    border-radius: 1rem;
}

.modal-header {
    border-bottom: none;
    padding: 1.5rem;
}

.modal-body {
    padding: 0 1.5rem 1.5rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .booking-progress {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .booking-progress::before {
        display: none;
    }
    
    .progress-step {
        flex-direction: row;
        gap: 1rem;
        width: 100%;
        padding: 0.5rem;
        border: 1px solid #e9ecef;
        border-radius: 0.5rem;
    }
    
    .step-number {
        margin-bottom: 0;
    }
    
    .tour-categories {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 1rem;
        -webkit-overflow-scrolling: touch;
    }
    
    .tour-categories::-webkit-scrollbar {
        height: 4px;
    }
    
    .tour-categories::-webkit-scrollbar-thumb {
        background: #ccc;
        border-radius: 4px;
    }
} 