/**
 * Booking Form - Wizard Progress Styles
 * Contains: .wizard-progress, .wizard-progress-step, .wizard-stage, .wizard-actions
 */

.wizard-progress {
    display: none; /* Hidden on desktop */
    justify-content: space-between;
    margin-bottom: 2rem;
    counter-reset: wizard-step;
}

.wizard-progress-step {
    flex: 1;
    text-align: center;
    position: relative;
    font-size: 0.92rem;
    color: #94a3b8;
    font-weight: 600;
}

.wizard-progress-step::before {
    counter-increment: wizard-step;
    content: counter(wizard-step);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #e2e8f0;
    color: #475569;
    margin-bottom: 8px;
    font-weight: 700;
}

.wizard-progress-step::after {
    content: '';
    position: absolute;
    top: 16px;
    right: -50%;
    width: 100%;
    height: 2px;
    background: #e2e8f0;
    z-index: -1;
}

.wizard-progress-step:last-child::after {
    display: none;
}

.wizard-progress-step.active {
    color: #1f2937;
}

.wizard-progress-step.active::before {
    background: #006db2;
    color: #fff;
}

.wizard-progress-step.completed::before {
    content: '\2713';
    background: #22c55e;
    color: #fff;
}

.wizard-progress-step.completed::after {
    background: #22c55e;
}

.wizard-stage {
    margin-bottom: 2.5rem;
}

.wizard-actions {
    display: none;
    align-items: center;
    gap: 1rem;
    margin-top: 2.5rem;
}

.btn-secondary {
    padding: 0.85rem 1.75rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    background: #e2e8f0;
    color: #475569;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-secondary:hover {
    background: #cbd5f5;
}

.btn-next {
    padding: 0.85rem 1.75rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    background: #006db2;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.btn-next[disabled] {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn-next:not([disabled]):hover {
    transform: translateY(-1px);
}

/* Mobile wizard behavior */
@media (max-width: 768px) {
    .wizard-progress {
        display: flex;
    }

    .wizard-stage {
        display: none;
    }

    .wizard-stage.active {
        display: block;
    }

    .wizard-actions {
        display: flex;
    }

    .form-actions-desktop {
        display: none;
    }
}

@media (max-width: 900px) {
    .wizard-progress {
        display: flex;
    }

    .wizard-stage {
        display: none;
    }

    .wizard-stage.active {
        display: block;
    }

    .wizard-actions {
        display: flex;
    }

    .form-actions-desktop {
        display: none;
    }
}
