.wizard-body {
    background: linear-gradient(135deg, #f0f7f4 0%, #e8f4f8 50%, #f5f0e8 100%);
    min-height: 100vh;
    margin: 0;
    padding: 20px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.wizard-container {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.wizard-header {
    background: linear-gradient(135deg, #2c5282 0%, #3182ce 100%);
    color: white;
    text-align: center;
    padding: 30px 20px;
}

.wizard-header .logo {
    max-width: 150px;
    margin-bottom: 15px;
}

.wizard-header h1 {
    margin: 0;
    font-size: 1.75rem;
    font-weight: 700;
    background: linear-gradient(90deg, #7a9a3c 0%, #99b951 50%, #b8d468 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.wizard-header .slogan {
    margin: 8px 0 0;
    font-size: 1.1rem;
    font-weight: 600;
    font-style: italic;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.wizard-header .tagline {
    margin: 10px 0 0;
    opacity: 0.85;
    font-size: 0.9rem;
}

.wizard-landing {
    padding: 40px 30px;
}

.landing-welcome {
    text-align: center;
    margin-bottom: 30px;
}

.landing-welcome h2 {
    color: #2d3748;
    font-size: 1.5rem;
    margin: 0 0 10px;
}

.landing-welcome p {
    color: #718096;
    font-size: 1rem;
    margin: 0;
}

.pathway-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.pathway-btn {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 25px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    background: white;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: left;
}

.pathway-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.pathway-btn .pathway-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pathway-btn .pathway-icon svg {
    width: 32px;
    height: 32px;
    stroke-width: 1.5;
    fill: none;
    stroke: currentColor;
}

.volunteer-btn:hover { border-color: #38a169; }
.volunteer-btn .pathway-icon { background: #f0fff4; color: #38a169; }

.professional-btn:hover { border-color: #3182ce; }
.professional-btn .pathway-icon { background: #ebf8ff; color: #3182ce; }

.donation-btn:hover { border-color: #d69e2e; }
.donation-btn .pathway-icon { background: #fffaf0; color: #d69e2e; }

.custom-btn:hover { border-color: #718096; }
.custom-btn .pathway-icon { background: #f7fafc; color: #718096; }

.pathway-text h3 {
    margin: 0 0 5px;
    font-size: 1.1rem;
    color: #2d3748;
}

.pathway-text p {
    margin: 0;
    font-size: 0.9rem;
    color: #718096;
}

.wizard-flow {
    padding: 30px;
}

.progress-container {
    margin-bottom: 30px;
}

.progress-bar {
    height: 6px;
    background: #e2e8f0;
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 20px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #38a169, #48bb78);
    border-radius: 3px;
    transition: width 0.3s ease;
}

.progress-steps {
    display: flex;
    justify-content: space-between;
    overflow-x: auto;
    padding: 5px 0;
}

.step-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 60px;
}

.step-dot {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #e2e8f0;
    color: #a0aec0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.2s;
}

.step-indicator.active .step-dot {
    background: #3182ce;
    color: white;
}

.step-indicator.completed .step-dot {
    background: #38a169;
    color: white;
}

.step-label {
    margin-top: 6px;
    font-size: 0.7rem;
    color: #a0aec0;
    text-align: center;
}

.step-indicator.active .step-label {
    color: #3182ce;
    font-weight: 500;
}

.step-indicator.completed .step-label {
    color: #38a169;
}

.step-content {
    min-height: 300px;
}

.step-welcome {
    text-align: center;
    margin-bottom: 30px;
}

.step-welcome h2 {
    color: #2d3748;
    font-size: 1.4rem;
    margin: 0 0 10px;
}

.step-welcome p {
    color: #718096;
    margin: 0;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #4a5568;
}

.form-group .required {
    color: #e53e3e;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="number"],
.form-group input[type="date"],
.form-group input[type="time"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.2s;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3182ce;
    box-shadow: 0 0 0 3px rgba(49, 130, 206, 0.1);
}

.form-group .readonly-field {
    background: #f7fafc;
    color: #718096;
}

.form-hint {
    display: block;
    margin-top: 6px;
    font-size: 0.85rem;
    color: #a0aec0;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.category-options,
.verifier-options,
.receipt-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.category-option,
.verifier-option,
.receipt-option {
    display: flex;
    align-items: flex-start;
    padding: 15px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s;
}

.category-option:hover,
.verifier-option:hover,
.receipt-option:hover {
    border-color: #cbd5e0;
    background: #f7fafc;
}

.category-option.selected,
.verifier-option.selected,
.receipt-option.selected {
    border-color: #3182ce;
    background: #ebf8ff;
}

.category-option input,
.verifier-option input,
.receipt-option input {
    margin-right: 12px;
    margin-top: 3px;
}

.option-content {
    flex: 1;
}

.option-title {
    display: block;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 2px;
}

.option-desc {
    display: block;
    font-size: 0.85rem;
    color: #718096;
}

.hours-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    background: #f0fff4;
    border-radius: 10px;
    margin-bottom: 20px;
}

.hours-label {
    font-weight: 500;
    color: #2d3748;
}

.hours-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #38a169;
}

.rate-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 15px;
    background: #f7fafc;
    border-radius: 8px;
    margin-top: 20px;
}

.rate-badge {
    font-size: 0.85rem;
    font-weight: 500;
    color: #4a5568;
}

.rate-value {
    font-weight: 600;
    color: #3182ce;
}

.summary-step {
    padding-bottom: 20px;
}

.summary-sections {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.summary-section {
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    overflow: hidden;
}

.summary-section.editable {
    cursor: pointer;
    transition: all 0.2s;
}

.summary-section.editable:hover {
    border-color: #3182ce;
    box-shadow: 0 2px 8px rgba(49, 130, 206, 0.1);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background: #f7fafc;
}

.section-header h3 {
    margin: 0;
    font-size: 0.95rem;
    color: #2d3748;
}

.edit-icon {
    font-size: 0.8rem;
    color: #3182ce;
    font-weight: 500;
}

.section-content {
    padding: 12px 15px;
}

.section-content p {
    margin: 5px 0;
    font-size: 0.9rem;
    color: #4a5568;
}

.summary-total {
    background: linear-gradient(135deg, #38a169 0%, #48bb78 100%);
    color: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    margin-top: 10px;
}

.total-label {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 5px;
}

.total-value {
    font-size: 2rem;
    font-weight: 700;
}

.total-breakdown {
    font-size: 0.8rem;
    opacity: 0.85;
    margin-top: 8px;
}

.certification-text {
    background: #fffaf0;
    border: 1px solid #ed8936;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
}

.certification-text p {
    margin: 0;
    font-size: 0.9rem;
    color: #744210;
}

.signature-container {
    margin-bottom: 20px;
}

.signature-container label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
    color: #4a5568;
}

.signature-pad {
    width: 100%;
    height: 200px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    background: white;
    touch-action: none;
    cursor: crosshair;
}

.clear-signature-btn {
    margin-top: 10px;
    padding: 8px 16px;
    background: #e53e3e;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background 0.2s;
}

.clear-signature-btn:hover {
    background: #c53030;
}

.email-section {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
}

.wizard-navigation {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
}

.nav-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.back-btn {
    background: #f7fafc;
    color: #4a5568;
}

.back-btn:hover {
    background: #edf2f7;
}

.next-btn {
    background: #3182ce;
    color: white;
    margin-left: auto;
}

.next-btn:hover {
    background: #2c5282;
}

.submit-btn {
    background: linear-gradient(135deg, #38a169 0%, #48bb78 100%);
    color: white;
    margin-left: auto;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #2f855a 0%, #38a169 100%);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.start-over-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    margin-top: 24px;
    padding: 14px 20px;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    border: 2px solid #cbd5e0;
    border-radius: 10px;
    color: #4a5568;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.start-over-btn:hover {
    background: linear-gradient(135deg, #edf2f7 0%, #e2e8f0 100%);
    border-color: #a0aec0;
    color: #2d3748;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.start-over-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.address-container {
    position: relative;
}

#addressSuggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #e2e8f0;
    border-top: none;
    border-radius: 0 0 8px 8px;
    max-height: 200px;
    overflow-y: auto;
    z-index: 100;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

#addressSuggestions .suggestion-item {
    padding: 12px 15px;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.9rem;
}

#addressSuggestions .suggestion-item:hover {
    background: #f7fafc;
}

#addressSuggestions .suggestion-item:last-child {
    border-bottom: none;
}

@media (max-width: 600px) {
    .wizard-body {
        padding: 10px;
    }
    
    .wizard-container {
        border-radius: 12px;
    }
    
    .wizard-header {
        padding: 20px 15px;
    }
    
    .wizard-header h1 {
        font-size: 1.4rem;
    }
    
    .wizard-landing,
    .wizard-flow {
        padding: 20px 15px;
    }
    
    .pathway-btn {
        padding: 15px;
        gap: 15px;
    }
    
    .pathway-btn .pathway-icon {
        width: 50px;
        height: 50px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .progress-steps {
        gap: 5px;
    }
    
    .step-indicator {
        min-width: 45px;
    }
    
    .step-label {
        font-size: 0.6rem;
    }
    
    .wizard-navigation {
        flex-wrap: wrap;
    }
    
    .nav-btn {
        padding: 10px 18px;
        font-size: 0.9rem;
    }
}

select.placeholder-selected {
    color: #a0aec0;
}

select.placeholder-selected option {
    color: #2d3748;
}

select.placeholder-selected option:disabled {
    color: #a0aec0;
}