:root {
    --brand-red: #cc0000;
    --gray-light: #f4f4f4;
    --gray-border: #ddd;
    --text-color: #333;
}

.muskrover-form-wizard {
    max-width: 800px;
    margin: 20px auto;
    padding: 30px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    font-family: 'Inter', sans-serif;
}

/* Progress Bar */
.wizard-progress {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    position: relative;
    padding: 0 10px;
}

.wizard-progress::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    height: 2px;
    background: #eee;
    z-index: 1;
}

.progress-step {
    position: relative;
    z-index: 2;
    text-align: center;
    flex: 1;
}

.step-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #eee;
    line-height: 36px;
    margin: 0 auto 10px;
    font-weight: bold;
    color: #999;
    transition: all 0.3s ease;
}

.progress-step.active .step-circle {
    border-color: var(--brand-red);
    color: var(--brand-red);
    box-shadow: 0 0 10px rgba(204, 0, 0, 0.2);
}

.progress-step.completed .step-circle {
    background: var(--brand-red);
    border-color: var(--brand-red);
    color: #fff;
}

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

/* Form Steps */
.form-step {
    display: none;
    animation: fadeIn 0.5s ease;
}

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

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

.step-header {
    margin-bottom: 25px;
    border-bottom: 2px solid var(--gray-light);
    padding-bottom: 10px;
}

.step-title {
    font-size: 22px;
    color: var(--text-color);
    margin: 0;
}

/* Form Inputs */
.form-field {
    margin-bottom: 20px;
}

.form-field label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #444;
}

.input-with-icon {
    position: relative;
}

.input-with-icon i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
}

.form-field input, .form-field textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #eee;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.form-field input:focus {
    border-color: var(--brand-red);
    outline: none;
}

/* Navigation Buttons */
.wizard-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.btn-nav {
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-prev {
    background: #f1f1f1;
    color: #666;
}

.btn-prev:hover {
    background: #e5e5e5;
}

.btn-next, .btn-submit {
    background: var(--brand-red);
    color: #fff;
}

.btn-next:hover, .btn-submit:hover {
    background: #b30000;
    box-shadow: 0 5px 15px rgba(204, 0, 0, 0.3);
}

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

/* Review Step */
.review-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.review-label {
    font-weight: bold;
    color: #666;
}

/* Mobile Responsiveness */
@media (max-width: 600px) {
    .muskrover-form-wizard {
        padding: 20px;
    }
    .step-label {
        display: none;
    }
    .wizard-progress::before {
        top: 20px;
    }
}
