/* Wizard Specific Styles */

:root {
    --wizard-bg: #f8fafc;
    --wizard-slate: #1e293b;
    --wizard-text: #475569;
    --wizard-input-bg: #e2e8f0;
    --wizard-primary: #3b82f6; /* bright blue */
    --wizard-primary-hover: #2563eb;
    --wizard-tip-bg: #eff6ff;
    --wizard-tip-icon: #3b82f6;
}

body.wizard-body {
    background-color: var(--wizard-bg);
    color: var(--wizard-slate);
    font-family: 'Inter', sans-serif;
}

.wizard-header {
    background-color: transparent;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    font-weight: 600;
}

.wizard-header a {
    color: var(--wizard-slate);
    text-decoration: none;
}

.step-indicator {
    font-size: 0.7rem;
    font-weight: 700;
    color: #64748b;
    letter-spacing: 1px;
}

.step-percentage {
    font-weight: 800;
    color: var(--wizard-slate);
    font-size: 1rem;
}

.progress-track {
    background-color: #e2e8f0;
    height: 6px;
    border-radius: 10px;
    margin-top: 0.5rem;
    overflow: hidden;
}

.progress-fill {
    background-color: var(--wizard-slate);
    height: 100%;
    border-radius: 10px;
}

.section-title {
    font-weight: 700;
    font-size: 1rem;
    color: var(--wizard-slate);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.form-label {
    font-size: 0.65rem;
    font-weight: 700;
    color: #475569;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.4rem;
}

.form-control.wizard-input {
    background-color: var(--wizard-input-bg);
    border: none;
    border-radius: 8px;
    padding: 0.8rem 1rem;
    font-size: 0.9rem;
    color: var(--wizard-slate);
    font-weight: 500;
}

.form-control.wizard-input:focus {
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
    outline: none;
}

.upload-box {
    background-color: var(--wizard-input-bg);
    border: 2px dashed #cbd5e1;
    border-radius: 12px;
    width: 100px;
    height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #64748b;
    cursor: pointer;
    transition: all 0.2s;
}

.upload-box:hover {
    border-color: #94a3b8;
    background-color: #e2e8f0;
}

.upload-box i {
    font-size: 1.5rem;
    margin-bottom: 0.2rem;
}

.upload-box span {
    font-size: 0.6rem;
    font-weight: 600;
}

.preview-card {
    background-color: #fff;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 10px 25px -5px rgba(0,0,0,0.05);
    margin-top: 2.5rem;
    text-align: center;
}

.preview-icon-wrapper {
    width: 50px;
    height: 50px;
    background-color: #e0e7ff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1rem;
    color: #4f46e5;
    font-size: 1.2rem;
}

.preview-title {
    font-weight: 700;
    font-size: 1rem;
    color: var(--wizard-slate);
    margin-bottom: 0.5rem;
}

.preview-text {
    font-size: 0.8rem;
    color: #64748b;
    line-height: 1.5;
}

.skeleton-line {
    height: 8px;
    background-color: #e2e8f0;
    border-radius: 4px;
    margin-bottom: 0.5rem;
}

.professional-tip {
    background-color: var(--wizard-tip-bg);
    border-radius: 12px;
    padding: 1.2rem;
    margin-top: 1.5rem;
    display: flex;
    gap: 1rem;
}

.professional-tip i {
    color: var(--wizard-tip-icon);
    font-size: 1.2rem;
}

.professional-tip h6 {
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--wizard-slate);
    margin-bottom: 0.3rem;
}

.professional-tip p {
    font-size: 0.75rem;
    color: #475569;
    margin-bottom: 0;
    line-height: 1.5;
}

.wizard-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #f1f5f9;
    z-index: 1000;
    box-shadow: 0 -10px 15px -3px rgba(0,0,0,0.02);
}

.btn-wizard-prev {
    color: #94a3b8;
    font-weight: 700;
    font-size: 0.85rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-wizard-next {
    background-color: var(--wizard-primary);
    color: #fff;
    border: none;
    border-radius: 50rem;
    padding: 0.8rem 2rem;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(59, 130, 246, 0.3);
    text-decoration: none;
}

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