/* ==============================
   DR SPIN BOOKING (Bootstrap Safe)
============================== */

.drspin-booking {
    min-height: 90vh;
    padding: 100px 20px;
    background: radial-gradient(circle at 30% 20%, #8f7bff, #5b5bff 40%, #2d2d60 60%);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* GLASS MAIN CONTAINER */

.main-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(20px);
    padding: 80px 70px;
    border-radius: 28px;
    width: 10%;
    max-width: 900px;
    text-align: center;
    color: #fff;
    box-shadow: 0 40px 100px rgba(0,0,0,0.25);
}

/* TITLE */

.booking-title {
    font-size: 38px;
    font-weight: 600;
    margin-bottom: 30px;
}

/* OPTION CARDS */

.option-card {
    background: rgba(255,255,255,0.15);
    border-radius: 20px;
    padding: 60px 20px;
    transition: 0.35s ease;
    border: 1px solid rgba(255,255,255,0.25);
    cursor: pointer;
}

.option-card:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-6px);
}

.option-card h5 {
    font-size: 22px;
    font-weight: 600;
    color: #fff;
}

/* FORM */

.form-area {
    max-width: 500px;
    margin: 50px auto 0;
}

.form-control {
    background: rgba(255,255,255,0.9);
    border-radius: 12px;
    border: none;
    padding: 14px 16px;
}

.btn-continue {
    background: #ffffff;
    color: #5b5bff;
    border-radius: 12px;
    padding: 14px 30px;
    border: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.btn-continue:hover {
    background: #eaeaff;
}

/* ===== SUCCESS MODAL ===== */

.success-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 15, 30, 0.75);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: 0.3s ease;
    z-index: 9999;
}

.success-overlay.show {
    opacity: 1;
    pointer-events: all;
}

.success-modal {
    background: #ffffff;
    padding: 60px 50px;
    border-radius: 20px;
    max-width: 420px;
    width: 90%;
    text-align: center;
    box-shadow: 0 40px 80px rgba(0,0,0,0.25);
    animation: popIn 0.35s ease;
}

.success-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg,#6a5cff,#8f7bff);
    color: #fff;
    font-size: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.success-modal h3 {
    margin-bottom: 15px;
}

.success-modal button {
    margin-top: 25px;
    padding: 12px 30px;
    border-radius: 10px;
    border: none;
    background: #6a5cff;
    color: #fff;
    transition: 0.3s ease;
}

.success-modal button:hover {
    background: #5846ff;
}

@keyframes popIn {
    from { transform: scale(0.85); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* ANIMATION */

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

/* RESPONSIVE */

@media (max-width: 768px) {
    .drspin-booking .booking-title {
        font-size: 32px;
    }

    .drspin-booking .inner-box {
        padding: 35px;
    }
}

.stepper-modern {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 60px;
}

.step {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin: 0 15px;
}

.step.active {
    background: #ffffff;
    color: #5b5bff;
}

.step-line {
    height: 2px;
    width: 60px;
    background: rgba(255,255,255,0.4);
}

.dr-stepper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 60px auto 70px;
    max-width: 1100px;
}

.dr-step {
    text-align: center;
    position: relative;
    z-index: 2;
}

.dr-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #f3f3f7;
    border: 3px solid #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 600;
    color: #9c9c9c;
    transition: all 0.3s ease;
}

.stepper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 60px auto;
    max-width: 900px;
    position: relative;
    font-family: 'Inter', sans-serif;
}

/* STEP BLOCK */
.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* CIRCLE */
.circle {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #e9e9ef;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 20px;
    color: #7a7a8c;
    box-shadow:
        inset 4px 4px 10px rgba(0,0,0,0.06),
        inset -4px -4px 10px rgba(255,255,255,0.9);
    transition: all 0.3s ease;
}

/* ACTIVE STEP */
.step.active .circle {
    background: linear-gradient(135deg, #7b4dff, #5a2ed6);
    color: white;
    box-shadow:
        0 0 0 6px rgba(123,77,255,0.15),
        0 8px 20px rgba(90,46,214,0.4);
}

/* COMPLETED STEP */
.step.completed .circle {
    background: linear-gradient(135deg, #7b4dff, #5a2ed6);
    color: white;
}

/* LABEL */
.label {
    margin-top: 12px;
    font-size: 14px;
    color: #7a7a8c;
    text-align: center;
    width: 100px;
}

.step.active .label {
    color: #5a2ed6;
    font-weight: 600;
}

/* CONNECTOR LINE */
.connector {
    flex: 1;
    height: 4px;
    background: #e0e0ea;
    margin: 0 10px;
    border-radius: 10px;
    position: relative;
    top: -20px;
}

/* COMPLETED CONNECTOR */
.connector.completed {
    background: linear-gradient(90deg, #7b4dff, #5a2ed6);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .label {
        font-size: 12px;
        width: 70px;
    }

    .circle {
        width: 46px;
        height: 46px;
        font-size: 16px;
    }
}