/* Wizard Specific Styles */
:root {
    --primary-color: #5A69E6;
    --primary-dark: #4552b8;
    --secondary-color: #F0F8FF;
    --text-color: #2C3E50;
    --text-light: #7F8C8D;
    --white: #ffffff;
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 15px 35px rgba(90, 105, 230, 0.15);
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Nunito', sans-serif;
}

body {
    font-family: var(--font-body);
    background-color: var(--secondary-color);
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    color: var(--text-color);
}

.wizard-container {
    background-color: var(--white);
    width: 100%;
    max-width: 600px;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    padding: 40px;
    position: relative;
    overflow: hidden;
    margin: 20px;
}

/* Header */
.wizard-header {
    text-align: center;
    margin-bottom: 30px;
}

.wizard-header h2 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin-bottom: 10px;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background-color: #e0e0e0;
    border-radius: 3px;
    margin-top: 20px;
    position: relative;
}

.progress-fill {
    height: 100%;
    background-color: var(--primary-color);
    border-radius: 3px;
    width: 0%;
    transition: width 0.4s ease;
}

/* Steps */
.step {
    display: none;
    animation: fadeIn 0.5s ease;
}

.step.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.step-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
}

/* Options Grid */
.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 15px;
}

.option-card {
    background: var(--white);
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.option-card:hover {
    border-color: var(--primary-color);
    background-color: var(--secondary-color);
}

.option-card.selected {
    border-color: var(--primary-color);
    background-color: var(--primary-color);
    color: var(--white);
}

.option-card i {
    font-size: 2rem;
    margin-bottom: 10px;
    display: block;
}

/* Form Inputs */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    outline: none;
}

textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

/* Navigation Buttons */
.wizard-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}

.btn {
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    border: none;
    transition: all 0.3s ease;
}

.btn-prev {
    background-color: #f0f0f0;
    color: var(--text-light);
}

.btn-prev:hover {
    background-color: #e0e0e0;
}

.btn-next {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-next:hover {
    background-color: var(--primary-dark);
    box-shadow: 0 4px 15px rgba(90, 105, 230, 0.3);
}

.hidden {
    visibility: hidden;
}