:root {
    --wizard-bg: rgba(11, 12, 21, 0.85);
    /* Synced with --bg-color */
    --glass-border: rgba(255, 255, 255, 0.1);
    --active-color: #3b82f6;
    /* Synced with --accent-color */
    --secondary-color: #8b5cf6;
    /* Synced with --secondary-accent */
    --completed-color: #10b981;
    /* Premium Emerald */
    --text-muted: #94a3b8;
    /* Synced with --text-secondary */
    --dark-deep: #0b0c15;
    --card-bg-hex: #161b22;
    --card-bg: rgba(22, 27, 34, 0.6);
    --gradient-primary: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    --accent-glow: rgba(59, 130, 246, 0.4);
}

.bg-dark-deep {
    background-color: var(--dark-deep);
}

.bg-card {
    background-color: var(--card-bg) !important;
}

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.booking-wizard {
    max-width: 1400px;
    margin: 40px auto;
    padding: 20px;
}

.glass-card {
    background: var(--wizard-bg);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid var(--glass-border);
    border-radius: 28px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.6);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(59, 130, 246, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.wizard-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
    position: relative;
    padding: 0 10px;
}

.wizard-steps::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 50px;
    right: 50px;
    height: 2px;
    background: rgba(255, 255, 255, 0.05);
    z-index: 0;
}

.wizard-step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #161b22;
    border: 2px solid rgba(255, 255, 255, 0.1);
    color: #94a3b8;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 12px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.wizard-step.active .step-circle {
    border-color: var(--active-color);
    background: var(--gradient-primary);
    color: #fff;
    transform: scale(1.15);
    box-shadow: 0 0 25px var(--accent-glow);
}

.wizard-step.completed .step-circle {
    border-color: var(--completed-color);
    background: var(--completed-color);
    color: #fff;
}

.step-label {
    font-size: 0.75rem;
    color: #94a3b8;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.wizard-step.active .step-label {
    color: #fff;
}

.step-content {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
    z-index: 1;
    position: relative;
}

.step-content.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* Service Card AI Style */
.service-card {
    background-color: var(--card-bg-hex);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 24px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--active-color);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4), 0 0 15px var(--accent-glow);
}

.service-card.selected {
    border-color: var(--active-color);
    background: rgba(59, 130, 246, 0.08) !important;
    box-shadow: inset 0 0 20px rgba(59, 130, 246, 0.1);
}

.service-card.selected::after {
    content: '✓';
    position: absolute;
    top: 15px;
    right: 15px;
    width: 24px;
    height: 24px;
    background: var(--gradient-primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    box-shadow: 0 0 10px var(--accent-glow);
}

/* Time Slots AI Style */
.time-slot {
    padding: 15px;
    background: rgba(22, 27, 34, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
    font-weight: 600;
    color: #e2e8f0;
}

.time-slot:hover:not(.unavailable) {
    border-color: var(--active-color);
    color: var(--active-color);
    background: rgba(59, 130, 246, 0.05);
}

.time-slot.selected {
    background: var(--gradient-primary);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 0 15px var(--accent-glow);
}

/* Date Selector AI Style */
.date-card {
    padding: 12px 18px;
    background: rgba(22, 27, 34, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
    min-width: 90px;
    color: #fff;
}

.date-card:hover {
    border-color: var(--active-color);
    background: rgba(59, 130, 246, 0.05);
}

.date-card.selected {
    background: var(--gradient-primary);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 0 15px var(--accent-glow);
}

.date-card .date-day {
    display: block;
    font-size: 0.75rem;
    opacity: 0.9;
    text-transform: uppercase;
    font-weight: 700;
}

.date-card .date-num {
    display: block;
    font-size: 1.25rem;
    font-weight: 800;
}

.date-card .date-month {
    display: block;
    font-size: 0.7rem;
    opacity: 1;
}

/* Staff Card AI Style */
.staff-card {
    background-color: var(--card-bg-hex);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s;
    margin-bottom: 20px;
    height: 100%;
}

.staff-card:hover {
    border-color: var(--active-color);
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.staff-card.selected {
    border-color: var(--active-color);
    background: rgba(59, 130, 246, 0.08) !important;
}

.booking-summary {
    border-radius: 22px;
    padding: 30px;
}

.nav-btns {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.btn-primary {
    background: var(--gradient-primary);
    border: none;
    box-shadow: 0 4px 15px var(--accent-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--accent-glow);
}

.form-control,
.form-select {
    background-color: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #fff !important;
    padding: 14px 18px;
    border-radius: 14px;
}

.form-select option {
    background-color: #161b22;
    color: #fff;
}

.form-control:focus,
.form-select:focus {
    background-color: rgba(255, 255, 255, 0.08) !important;
    box-shadow: 0 0 15px var(--accent-glow);
    border-color: var(--active-color) !important;
}