/* ═══════════════════════════════════════════════════════════════
   AutoLogic — Cyber Service Booking & Workshop Experience CSS
   ═══════════════════════════════════════════════════════════════ */

/* ─── Wizard Progress Stepper ────────────────────────────────── */
.cyber-wizard-stepper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cyber-wizard-stepper::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 40px;
    right: 40px;
    height: 3px;
    background: #e2e8f0;
    z-index: 1;
}

.cyber-step-node {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    background: transparent;
    border: none;
}

.step-node-bubble {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid #cbd5e1;
    color: #64748b;
    font-weight: 800;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.cyber-step-node.active .step-node-bubble {
    background: #2563eb;
    border-color: #2563eb;
    color: #ffffff;
    box-shadow: 0 0 15px rgba(37, 99, 235, 0.4);
}

.cyber-step-node.completed .step-node-bubble {
    background: #10b981;
    border-color: #10b981;
    color: #ffffff;
}

.step-node-label {
    font-size: 0.78rem;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    transition: color 0.2s ease;
}

.cyber-step-node.active .step-node-label {
    color: #2563eb;
}

/* ─── Wizard Card Container ──────────────────────────────────── */
.cyber-wizard-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px -5px rgba(15, 23, 42, 0.06);
    max-width: 860px;
    margin: 0 auto;
}

/* ─── Location & Mode Selector ───────────────────────────────── */
.service-mode-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.service-mode-card {
    border: 2px solid #e2e8f0;
    background: #ffffff;
    border-radius: 16px;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.25s ease;
    text-align: left;
    position: relative;
}

.service-mode-card:hover {
    border-color: #93c5fd;
    background: #f8fafc;
}

.service-mode-card.selected {
    border-color: #2563eb;
    background: #eff6ff;
    box-shadow: 0 8px 20px -4px rgba(37, 99, 235, 0.15);
}

.mode-icon-box {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #f1f5f9;
    color: #2563eb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    transition: all 0.2s ease;
}

.service-mode-card.selected .mode-icon-box {
    background: #2563eb;
    color: #ffffff;
}

.service-mode-card h4 {
    font-size: 1.05rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 0.35rem;
}

.service-mode-card p {
    font-size: 0.82rem;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}

/* ─── Time Slot Capsules ─────────────────────────────────────── */
.slot-capsules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 0.75rem;
}

.slot-capsule {
    padding: 0.75rem 0.5rem;
    text-align: center;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    background: #f8fafc;
    font-size: 0.85rem;
    font-weight: 700;
    color: #334155;
    cursor: pointer;
    transition: all 0.2s ease;
}

.slot-capsule:hover {
    border-color: #2563eb;
    background: #ffffff;
}

.slot-capsule.selected {
    border-color: #2563eb;
    background: #2563eb;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

/* ─── Wizard Footer Controls ─────────────────────────────────── */
.wizard-footer-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #f1f5f9;
}

.btn-wizard-prev {
    padding: 0.85rem 1.75rem;
    border: 1.5px solid #cbd5e1;
    border-radius: 12px;
    background: #ffffff;
    color: #334155;
    font-size: 0.92rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-wizard-prev:hover {
    background: #f1f5f9;
    color: #0f172a;
}

.btn-wizard-next {
    padding: 0.85rem 2.25rem;
    background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 100%);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.35);
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-wizard-next:hover {
    background: linear-gradient(135deg, #1e40af 0%, #1d4ed8 100%);
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(37, 99, 235, 0.45);
}

@media (max-width: 640px) {
    .cyber-wizard-card { padding: 1.5rem; }
    .service-mode-grid { grid-template-columns: 1fr; }
    .cyber-wizard-stepper::before { left: 25px; right: 25px; }
}
