:root {
    --wizard-bg: rgba(255, 255, 255, 0.75);
    --glass-border: rgba(255, 255, 255, 0.4);
    --active-color: #d63384;
    /* Default pink fallback */
    --completed-color: #28a745;
    --text-muted: #6c757d;
}

.booking-wizard {
    max-width: 1000px;
    margin: 40px auto;
    padding: 20px;
}

.glass-card {
    background: var(--wizard-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.wizard-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
    position: relative;
    padding: 0 20px;
}

.wizard-steps::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 50px;
    right: 50px;
    height: 3px;
    background: #e9ecef;
    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: #fff;
    border: 3px solid #e9ecef;
    color: #adb5bd;
    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);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.wizard-step.active .step-circle {
    border-color: var(--active-color);
    background: var(--active-color);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(214, 51, 132, 0.3);
}

.wizard-step.completed .step-circle {
    border-color: var(--completed-color);
    background: var(--completed-color);
    color: white;
}

.step-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s;
}

.wizard-step.active .step-label {
    color: var(--active-color);
}

.step-content {
    display: none;
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.5s ease;
}

.step-content.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* Service Card Premium */
.service-card {
    background: #fff;
    border: 1px solid #f1f3f5;
    border-radius: 18px;
    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::after {
    content: '✓';
    position: absolute;
    top: 15px;
    right: 15px;
    width: 24px;
    height: 24px;
    background: var(--active-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border-color: var(--active-color);
}

.service-card.selected {
    border-color: var(--active-color);
    background: var(--secondary-color);
    border-width: 2px;
}

.service-card.selected::after {
    opacity: 1;
    transform: scale(1);
}

.service-price {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--active-color);
}

/* Time Slots Premium */
.time-slot {
    padding: 15px;
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
    font-weight: 600;
    color: #495057;
}

.time-slot:hover:not(.unavailable) {
    background: var(--secondary-color);
    border-color: var(--active-color);
    color: var(--active-color);
}

.time-slot.selected {
    background: var(--active-color);
    color: white;
    border-color: var(--active-color);
    box-shadow: 0 4px 12px rgba(214, 51, 132, 0.3);
}

/* Staff Card Premium */
.staff-card {
    background: #fff;
    border: 2px solid #f1f3f5;
    border-radius: 18px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s;
    margin-bottom: 20px;
    height: 100%;
}

.staff-card:hover {
    border-color: var(--active-color);
    background: var(--secondary-color);
}

.staff-card.selected {
    border-color: var(--active-color);
    background: var(--secondary-color);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.booking-summary {
    background: rgba(255, 255, 255, 0.6);
    border-radius: 18px;
    padding: 30px;
    border: 1px solid var(--glass-border);
}

.nav-btns {
    padding-top: 30px;
    border-top: 1px solid #eee;
}

#booking-result .alert {
    border-radius: 15px;
    padding: 20px;
}