/* ============================================
   WIZARD QUOTE - STYLES
   ============================================ */

/* Wizard Progress Styles */
.wizard-progress {
    margin-bottom: 30px;
}

.progress-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    gap: 10px;
}

.progress-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0.5;
    transition: all 0.3s ease;
    cursor: pointer;
}

.progress-step.active {
    opacity: 1;
}

.progress-step.completed {
    opacity: 1;
}

.progress-step.disabled {
    cursor: not-allowed;
    opacity: 0.5;
}

.progress-step:hover:not(.disabled) .step-number {
    transform: scale(1.08);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #e0e0e0;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-bottom: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.step-number .step-num,
.step-number .step-check {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    transition: opacity 0.3s ease;
}

.step-number .step-check {
    width: 24px;
    height: 24px;
}

.step-number .step-check.hidden {
    display: none;
}

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

.progress-step.completed .step-number {
    background-color: #b3d336;
    color: white;
}

.progress-step.completed .step-num {
    display: none;
}

.progress-step.completed .step-check {
    display: flex !important;
}

.step-label {
    font-size: 12px;
    text-align: center;
    color: #666;
    font-weight: 500;
}

.progress-step.active .step-label {
    color: var(--primary-color);
    font-weight: 600;
}

.progress-step.completed .step-label {
    color: #b3d336;
}

.progress-bar {
    height: 4px;
    background-color: #e0e0e0;
    border-radius: 2px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background-color: var(--primary-color);
    width: 25%;
    transition: width 0.3s ease;
}

/* Wizard Step Styles */
.wizard-step {
    animation: fadeIn 0.3s ease-in-out;
}

.wizard-step.hidden {
    display: none;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.modal-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    min-height: 200px;
}

.modal-loading .spinner-icon-lg {
    animation: spin 1s linear infinite;
}

.wizard-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    align-items: center;
    margin-top: 20px;
}

.wizard-actions .btn {
    min-width: 120px;
}

.wizard-actions .btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* ============================================
   PRICE BLUR STYLES
   ============================================ */

/* Blur effect for hidden prices */
.price-blurred {
    filter: blur(8px);
    user-select: none;
    pointer-events: none;
    transition: filter 0.3s ease;
}

/* Reveal prices banner */
.reveal-prices-banner {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: linear-gradient(135deg, #f0f7ff 0%, #e8f4fd 100%);
    border: 1px solid #b3d7f5;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
}

.reveal-banner-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background-color: #007bff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.reveal-banner-icon svg {
    width: 24px;
    height: 24px;
}

.reveal-banner-content {
    flex: 1;
}

.reveal-banner-title {
    font-size: 1rem;
    font-weight: 600;
    color: #007bff;
    margin: 0 0 6px 0;
}

.reveal-banner-text {
    font-size: 0.9rem;
    color: #555;
    margin: 0;
    line-height: 1.5;
}
