/* Property Wizard Styling */

:root {
    --wizard-primary: #1572e8;
    --wizard-secondary: #6861ce;
    --wizard-success: #31ce36;
    --wizard-bg: rgba(255, 255, 255, 0.8);
    --wizard-glass-border: rgba(255, 255, 255, 0.3);
    --wizard-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
}

.wizard-container {
    background: var(--wizard-bg);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid var(--wizard-glass-border);
    border-radius: 15px;
    padding: 30px;
    box-shadow: var(--wizard-shadow);
    margin-bottom: 30px;
}

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

.wizard-progress::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 40px;
    right: 40px;
    height: 3px;
    background: #e0e0e0;
    transform: translateY(-50%);
    z-index: 1;
}

.wizard-progress .progress-line {
    position: absolute;
    top: 50%;
    left: 40px;
    height: 3px;
    background: var(--wizard-primary);
    transform: translateY(-50%);
    z-index: 2;
    transition: width 0.4s ease;
    width: 0%;
}

.progress-step {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 40px;
}

.step-icon {
    width: 40px;
    height: 40px;
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #999;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.progress-step.active .step-icon {
    border-color: var(--wizard-primary);
    color: var(--wizard-primary);
    box-shadow: 0 0 15px rgba(21, 114, 232, 0.4);
}

.progress-step.completed .step-icon {
    background: var(--wizard-success);
    border-color: var(--wizard-success);
    color: #fff;
}

.step-label {
    position: absolute;
    top: 45px;
    white-space: nowrap;
    font-size: 13px;
    font-weight: 600;
    color: #999;
    transition: color 0.3s ease;
}

.progress-step.active .step-label {
    color: var(--wizard-primary);
}

.progress-step.completed .step-label {
    color: var(--wizard-success);
}

/* Step Content */
.wizard-step {
    display: none;
    animation: fadeIn 0.5s ease;
}

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

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

/* Form Styling Enhancements */
.wizard-step h4 {
    color: #333;
    font-weight: 700;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.form-group label {
    font-weight: 600;
    color: #555;
    margin-bottom: 8px;
}

.form-control:focus {
    border-color: var(--wizard-primary);
    box-shadow: 0 0 0 0.2rem rgba(21, 114, 232, 0.1);
}

/* Buttons */
.wizard-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.btn-wizard {
    padding: 10px 25px;
    border-radius: 8px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-next {
    background-color: var(--wizard-primary);
    color: #fff;
}

.btn-next:hover {
    background-color: #1263d2;
    transform: translateX(3px);
}

.btn-prev {
    background-color: #f8f9fa;
    color: #666;
    border: 1px solid #ddd;
}

.btn-prev:hover {
    background-color: #e9ecef;
    transform: translateX(-3px);
}

/* Custom Checkboxes for Step 2 */
.category-card {
    border: 2px solid #eee;
    border-radius: 12px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    height: 100%;
}

.category-card:hover {
    border-color: var(--wizard-primary);
    background: rgba(21, 114, 232, 0.05);
}

.category-card.selected {
    border-color: var(--wizard-primary);
    background: rgba(21, 114, 232, 0.1);
    box-shadow: 0 4px 15px rgba(21, 114, 232, 0.1);
}

.category-card i {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #666;
}

.category-card.selected i {
    color: var(--wizard-primary);
}

.category-card h6 {
    margin-bottom: 0;
    font-weight: bold;
}
