/* Wizard Specific Styles */

.wizard-progress {
    position: relative;
}

.wizard-steps {
    position: relative;
    z-index: 2;
}

.step-item {
    text-align: center;
    width: 25%;
    position: relative;
}

.step-item span {
    width: 35px;
    height: 35px;
    line-height: 35px;
    display: inline-block;
    background: #e9ecef;
    border-radius: 50%;
    font-weight: bold;
    color: #6c757d;
    margin-bottom: 5px;
    transition: all 0.3s ease;
    border: 2px solid #dee2e6;
}

.step-item p {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 0;
    color: #6c757d;
    text-transform: uppercase;
}

.step-item.active span {
    background: #28a745;
    color: #fff;
    border-color: #28a745;
}

.step-item.active p {
    color: #212529;
}

.step-item.completed span {
    background: #28a745;
    color: #fff;
    border-color: #28a745;
}

/* Profile Cards Styling */
.profile-card {
    cursor: pointer;
    transition: all 0.3s ease;
    background: #fff;
    border: 2px solid #e9ecef !important;
}

.profile-card:hover {
    border-color: #28a745 !important;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.profile-card input[type="radio"]:checked+.icon+h5,
.profile-card input[type="radio"]:checked~h5,
.profile-card input[type="radio"]:checked~.icon i {
    color: #28a745 !important;
}

.profile-card.selected {
    border-color: #28a745 !important;
    background-color: rgba(40, 167, 69, 0.05);
}

/* Form Styles */
.form-control:focus {
    border-color: #28a745;
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.section-title {
    color: #28a745;
    font-weight: 700;
}

/* Animations */
.step-content {
    animation: fadeIn 0.5s ease;
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Leaflet Map Correction */
#map {
    border: 1px solid #dee2e6;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.05);
}

/* Responsive */
@media (max-width: 768px) {
    .wizard-container {
        padding: 20px !important;
    }

    .step-item p {
        font-size: 10px;
    }
}