/* Help Intent Audio Button Styles */
/* Help Intent Audio Button Styles - Prominent */
.help-audio-btn {
    width: 72px;
    height: 72px;
    border: none;
    border-radius: 50%;
    background: radial-gradient(circle, #FFE3C2 60%, #FFF6EB 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 32px 0 rgba(255,140,0,0.18), 0 1.5px 8px 0 rgba(255,140,0,0.10);
    cursor: pointer;
    transition: box-shadow 0.2s, background 0.2s;
    padding: 0;
    margin: 0 8px;
    position: relative;
}
.help-audio-btn.prominent {
    width: 88px;
    height: 88px;
    background: radial-gradient(circle, #FFE3C2 70%, #FFF6EB 100%);
    box-shadow: 0 10px 40px 0 rgba(255,140,0,0.22), 0 2px 12px 0 rgba(255,140,0,0.13);
}
.help-audio-btn:active, .help-audio-btn:focus {
    box-shadow: 0 12px 48px rgba(255,140,0,0.28);
    background: #FFE3C2;
}
.help-audio-mic {
    display: block;
    width: 38px;
    height: 38px;
    background: none;
    mask: url('data:image/svg+xml;utf8,<svg width="38" height="38" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><rect width="24" height="24" fill="none"/><path d="M12 16c1.66 0 3-1.34 3-3V7c0-1.66-1.34-3-3-3s-3 1.34-3 3v6c0 1.66 1.34 3 3 3zm5-3c0 2.76-2.24 5-5 5s-5-2.24-5-5H5c0 3.07 2.13 5.64 5 6.32V21h2v-1.68c2.87-.68 5-3.25 5-6.32h-2z" fill="orange"/></svg>') center/contain no-repeat;
    -webkit-mask: url('data:image/svg+xml;utf8,<svg width="38" height="38" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><rect width="24" height="24" fill="none"/><path d="M12 16c1.66 0 3-1.34 3-3V7c0-1.66-1.34-3-3-3s-3 1.34-3 3v6c0 1.66 1.34 3 3 3zm5-3c0 2.76-2.24 5-5 5s-5-2.24-5-5H5c0 3.07 2.13 5.64 5 6.32V21h2v-1.68c2.87-.68 5-3.25 5-6.32h-2z" fill="orange"/></svg>') center/contain no-repeat;
    background-color: #FF9800;
}
.help-type-link {
    color: #FF9800;
    font-weight: 600;
    font-size: 16px;
    text-decoration: underline;
    cursor: pointer;
    margin-left: 8px;
    margin-right: 8px;
    background: none;
    border: none;
    outline: none;
    padding: 0;
    transition: color 0.2s;
}
.help-type-link:hover {
    color: #FF8C00;
}
.help-type-textarea {
    min-width: 0;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
}
@media (max-width: 600px) {
    .wizard-footer {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1001;
        background: #222;
        padding: 0 0 16px 0;
        border-radius: 0;
        box-shadow: 0 -2px 16px rgba(0,0,0,0.15);
        display: flex;
        flex-direction: column;
        gap: 0;
    }
    .wizard-btn-primary {
        margin: 12px 10px 0 10px;
        font-size: 18px;
        border-radius: 16px;
        min-height: 48px;
        font-weight: 700;
        box-shadow: 0 2px 8px rgba(255,140,0,0.10);
    }
    .wizard-btn-secondary {
        margin: 0 10px;
        min-height: 44px;
        font-size: 16px;
        border-radius: 12px;
    }
    .wizard-modal-container {
        padding-bottom: 80px !important;
        max-width: 100vw;
        border-radius: 0;
    }
}
/* Jambvant - Profile Wizard Styles */

.wizard-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.wizard-modal-overlay.active {
    display: flex;
}

.wizard-modal-container {
    background-color: var(--bg-white);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    width: 520px;
    max-width: 95%;
    max-height: 90vh;
    position: relative;
    animation: wizardModalSlideIn 0.4s ease;
    overflow: hidden;
}

@keyframes wizardModalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(-30px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.wizard-header {
    padding: 24px;
    background: linear-gradient(135deg, #FF8C00 0%, #FFB347 100%);
    color: white;
    text-align: center;
    position: relative;
}

.wizard-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    font-size: 24px;
    color: white;
    cursor: pointer;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.wizard-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.wizard-title {
    margin: 0;
    font-size: 24px;
    font-weight: 600;
}

.wizard-subtitle {
    margin: 8px 0 0 0;
    font-size: 14px;
    opacity: 0.9;
}

.wizard-progress {
    display: flex;
    justify-content: space-between;
    padding: 24px;
    background-color: var(--bg-light);
}

.wizard-progress-step {
    flex: 1;
    text-align: center;
    position: relative;
}

.wizard-progress-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 50%;
    width: 100%;
    height: 2px;
    background-color: var(--border-color);
    z-index: 0;
}

.wizard-progress-step.completed::after {
    background-color: #FF8C00;
}

.wizard-progress-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--bg-white);
    border: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 8px;
    font-weight: 600;
    color: var(--text-gray);
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.wizard-progress-step.active .wizard-progress-circle {
    background-color: #FF8C00;
    border-color: #FF8C00;
    color: white;
    transform: scale(1.1);
}

.wizard-progress-step.completed .wizard-progress-circle {
    background-color: #FFD700;
    border-color: #FFD700;
    color: white;
}

.wizard-progress-label {
    font-size: 12px;
    color: var(--text-gray);
    font-weight: 500;
}

.wizard-progress-step.active .wizard-progress-label {
    color: var(--text-dark);
    font-weight: 600;
}

.wizard-body {
    padding: 32px;
    max-height: 450px;
    overflow-y: auto;
}

.wizard-step {
    display: none;
}

.wizard-step.active {
    display: block;
    animation: wizardStepFadeIn 0.3s ease;
}

@keyframes wizardStepFadeIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.wizard-step h3 {
    margin: 0 0 8px 0;
    font-size: 20px;
    color: var(--text-dark);
}

.wizard-step-description {
    margin: 0 0 24px 0;
    font-size: 14px;
    color: var(--text-gray);
}

.wizard-footer {
    padding: 20px 32px;
    background-color: var(--bg-light);
    display: flex;
    justify-content: space-between;
    gap: 12px;
}

.wizard-btn {
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
}

.wizard-btn-secondary {
    background-color: var(--bg-white);
    color: var(--text-dark);
    border: 1px solid var(--border-color);
}

.wizard-btn-secondary:hover:not(:disabled) {
    background-color: var(--bg-light);
}

.wizard-btn-primary {
    background: linear-gradient(135deg, #FF8C00 0%, #FFB347 100%);
    color: white;
    flex: 1;
}

.wizard-btn-primary:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 140, 0, 0.4);
}

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

.wizard-skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 10px;
    margin-top: 16px;
}

.wizard-segment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 16px;
    margin-top: 24px;
}

.wizard-segment-card {
    padding: 24px;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    background-color: var(--bg-white);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.wizard-segment-card:hover {
    border-color: #FF8C00;
    background-color: rgba(255, 140, 0, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 140, 0, 0.15);
}

.wizard-segment-card.selected {
    background-color: #FF8C00;
    color: white;
    border-color: #FF8C00;
    box-shadow: 0 4px 12px rgba(255, 140, 0, 0.3);
}

.wizard-segment-card.selected .wizard-segment-title,
.wizard-segment-card.selected .wizard-segment-desc {
    color: white;
}

.wizard-segment-icon {
    font-size: 48px;
    margin-bottom: 12px;
}

.wizard-segment-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.wizard-segment-desc {
    font-size: 12px;
    color: var(--text-gray);
    line-height: 1.4;
}

.wizard-skill-item {
    padding: 10px 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
    font-size: 14px;
    background-color: var(--bg-white);
}

.wizard-skill-item:hover {
    border-color: #FF8C00;
    background-color: rgba(255, 140, 0, 0.05);
}

.wizard-skill-item.selected {
    background-color: #FF8C00;
    color: white;
    border-color: #FF8C00;
}

.wizard-toggle-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    background-color: var(--bg-light);
    border-radius: 12px;
    margin-top: 16px;
}

.wizard-toggle-label {
    flex: 1;
}

.wizard-toggle-title {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.wizard-toggle-description {
    font-size: 13px;
    color: var(--text-gray);
}

.wizard-toggle-switch {
    position: relative;
    width: 52px;
    height: 28px;
    margin-left: 16px;
}

.wizard-toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.wizard-toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--border-color);
    transition: 0.3s;
    border-radius: 28px;
}

.wizard-toggle-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}

.wizard-toggle-switch input:checked + .wizard-toggle-slider {
    background-color: #FF8C00;
}

.wizard-toggle-switch input:checked + .wizard-toggle-slider:before {
    transform: translateX(24px);
}

.wizard-summary {
    background-color: var(--bg-light);
    border-radius: 12px;
    padding: 20px;
    margin-top: 16px;
}

.wizard-summary-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

.wizard-summary-item:last-child {
    border-bottom: none;
}

.wizard-summary-label {
    font-weight: 500;
    color: var(--text-gray);
}

.wizard-summary-value {
    font-weight: 600;
    color: var(--text-dark);
    text-align: right;
    max-width: 60%;
}

.wizard-skills-selected {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.wizard-skill-tag {
    padding: 6px 12px;
    background-color: #FF8C00;
    color: white;
    border-radius: 6px;
    font-size: 13px;
}

