/* css/onboarding.css - Onboarding Wizard styling */
body.onboarding-body {
    background-color: #05070c;
    color: #f1f5f9;
    font-family: 'Tajawal', sans-serif;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    direction: rtl;
    text-align: right;
}

.wizard-container {
    background: rgba(15, 23, 42, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    backdrop-filter: blur(16px);
    width: 100%;
    max-width: 650px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.4s ease;
}

/* Steps Indicator */
.wizard-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 35px;
    position: relative;
    padding: 0 10px;
}

.wizard-steps::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 20px;
    right: 20px;
    height: 2px;
    background: rgba(255, 255, 255, 0.05);
    z-index: 0;
}

.wizard-step-node {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #0f172a;
    border: 2px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    color: #94a3b8;
    z-index: 1;
    position: relative;
    transition: all 0.3s;
}

.wizard-step-node.active {
    background: #7c4dff;
    border-color: #7c4dff;
    color: #fff;
    box-shadow: 0 0 15px rgba(124, 77, 255, 0.4);
}

.wizard-step-node.completed {
    background: #00e676;
    border-color: #00e676;
    color: #000;
}

.step-label {
    position: absolute;
    top: 38px;
    font-size: 9px;
    color: #94a3b8;
    white-space: nowrap;
    transform: translateX(0);
}

/* Wizard Form Sheets */
.wizard-sheet {
    display: none;
    animation: slideIn 0.3s ease;
}

.wizard-sheet.active {
    display: block;
}

.wizard-title {
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
}

.wizard-subtitle {
    font-size: 12px;
    color: #94a3b8;
    margin-bottom: 25px;
    line-height: 1.5;
}

/* Input Fields styling */
.wizard-form-group {
    margin-bottom: 18px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.wizard-form-group label {
    font-size: 11px;
    color: #94a3b8;
}

.wizard-input {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 10px 14px;
    color: #fff;
    font-size: 13px;
    outline: none;
    transition: all 0.2s;
}

.wizard-input:focus {
    border-color: #7c4dff;
}

/* Wizard Actions Button */
.wizard-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 20px;
}

.wizard-btn {
    background: #7c4dff;
    color: #fff;
    border: 1px solid #7c4dff;
    padding: 10px 24px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.wizard-btn:hover {
    background: #6200ea;
    box-shadow: 0 0 12px rgba(124, 77, 255, 0.3);
}

.wizard-btn.prev {
    background: transparent;
    border-color: rgba(255,255,255,0.1);
    color: #94a3b8;
}

.wizard-btn.prev:hover {
    background: rgba(255,255,255,0.05);
    color: #fff;
}

/* Color selector boxes */
.color-swatch-box {
    display: flex;
    gap: 12px;
    margin-top: 6px;
}

.color-swatch {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: transform 0.2s;
}

.color-swatch:hover {
    transform: scale(1.1);
}

.color-swatch.selected {
    border-color: #fff;
    box-shadow: 0 0 10px rgba(255,255,255,0.3);
}

/* Industry Selector Grid Styles */
.industry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
    gap: 8px;
    margin-top: 10px;
    max-height: 240px;
    overflow-y: auto;
    padding: 6px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.industry-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    padding: 10px 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
}

.industry-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.industry-card.selected {
    background: rgba(124, 77, 255, 0.15);
    border-color: #7c4dff;
    box-shadow: 0 0 8px rgba(124, 77, 255, 0.3);
}

.industry-card i {
    font-size: 16px;
    color: #94a3b8;
    transition: color 0.2s ease;
}

.industry-card.selected i {
    color: #00e676;
}

.industry-card span {
    font-size: 10px;
    font-weight: 700;
    color: #f1f5f9;
}

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

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