/* ==========================================
   RECORDED COURSE BOOKING STYLE
========================================== */

.appoinment-booking-area {
    margin-top: -80px;
    padding-bottom: 50px;
}

.appoinment-booking-area .single-booking-area {
    padding: 40px;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0px 10px 40px 0px rgba(0, 0, 0, 0.08);
    position: relative;
    border: 1px solid #f0f0f0;
}

/* ==========================================
   FORM INPUTS
========================================== */

.appoinment-booking-area .form-control {
    padding: 10px 15px;
    font-size: 14px;
    font-weight: 400;
    border-radius: 8px;
    border: 1px solid #e1e1e1;
    height: 45px !important;
    transition: all 0.3s ease;
}

.appoinment-booking-area .form-control:focus {
    border-color: var(--theamColor);
    box-shadow: 0 0 0 3px var(--theamColorRgba);
    outline: none;
}

.appoinment-booking-area label {
    font-weight: 600;
    margin-bottom: 8px !important;
    color: #444;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ==========================================
   COURSE SUMMARY BOX
========================================== */

.course-summary-box {
    border: 1px solid #f0f0f0;
    background: #fcfcfc;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 25px;
}

.course-summary-box h5 {
    color: var(--theamColor);
    font-weight: 700;
}

/* ==========================================
   ORDER SUMMARY
========================================== */

.order-summary-box {
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
}

.order-summary-box h5 {
    background: #f8f9fa;
    color: #333;
    padding: 15px 20px;
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    border-bottom: 1px solid #eee;
}

.order-summary-content {
    padding: 20px;
}

.order-summary-content hr {
    margin: 15px 0;
    border-color: #eee;
}

/* ==========================================
   QR IMAGE
========================================== */

.qr-image {
    max-width: 180px;
    border: 1px solid #eee;
    padding: 15px;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

/* ==========================================
   WIZARD FIX & STYLING
========================================== */

.wizard>.content>.body {
    float: none;
    position: unset;
    width: auto;
    height: auto;
    padding: 20px 0;
}

.wizard>.content {
    background: none !important;
    display: block;
    margin: auto;
    min-height: auto;
    overflow: visible;
    width: auto;
}

.wizard>.steps {
    margin-bottom: 30px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.wizard>.steps ul {
    border: none;
    display: flex;
    justify-content: center;
}

.wizard>.steps li {
    width: auto;
    margin: 0 10px;
}

.wizard>.steps a,
.wizard>.steps a:hover,
.wizard>.steps a:active {
    background: #f4f4f4;
    color: #666;
    border-radius: 30px;
    padding: 8px 25px;
    font-weight: 600;
}

.wizard>.steps .current a {
    background: var(--theamColor) !important;
    color: #fff !important;
    box-shadow: 0 4px 12px var(--theamColorRgba);
}

.wizard>.steps .done a {
    background: #eaffef !important;
    color: #28a745 !important;
}

.wizard>.actions {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.wizard>.actions ul {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
}

.wizard>.actions li {
    float: none;
}

.wizard>.actions a {
    background: var(--theamColor);
    color: #fff;
    border-radius: 8px;
    padding: 10px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
}

.wizard>.actions a[href="#previous"] {
    background: #f4f4f4;
    color: #666;
}

.wizard>.actions a:hover {
    background: var(--theamHoverColor);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.wizard>.actions a[href="#previous"]:hover {
    background: #e9e9e9;
    color: #333;
}

/* ==========================================
   SUCCESS MESSAGE
========================================== */

.color-success {
    color: #28a745;
    font-size: 20px;
    font-weight: 600;
}

.banner-area .position-relative h1 {
    font-size: 3rem;
    font-weight: 800;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.overlay-bg {
    background: rgba(0, 0, 0, 0.4);
}

/* ==========================================
   MOBILE FIX
========================================== */

@media only screen and (max-width: 768px) {
    .appoinment-booking-area {
        margin-top: -30px;
    }

    .appoinment-booking-area .single-booking-area {
        padding: 20px;
    }

    .qr-image {
        max-width: 100%;
        margin-bottom: 20px;
    }

    .wizard>.steps ul {
        flex-direction: column;
        align-items: center;
    }

    .wizard>.steps li {
        width: 100%;
        margin-bottom: 10px;
    }

    .wizard>.actions ul {
        flex-direction: column-reverse;
    }

    .wizard>.actions ul li a {
        display: block;
        text-align: center;
    }
}