.booking-progress {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-bottom: 40px;
}

.booking-progress::before {
    content: "";
    position: absolute;
    top: 20px;
    left: 5%;
    right: 5%;
    height: 4px;
    background: #dee2e6;
    z-index: 0;
}

.progress-step {
    position: relative;
    z-index: 1;
    text-align: center;
    flex: 1;
}

.progress-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #dee2e6;
    color: #6c757d;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    font-weight: 600;
    transition: .3s;
}

.progress-step.active .progress-circle {
    background: #dc3545;
    color: #fff;
}

.progress-step.completed .progress-circle {
    background: #198754;
    color: #fff;
}

.progress-label {
    margin-top: 8px;
    font-size: .85rem;
}

.booking-step {
    display: none;
}

.booking-step.active {
    display: block;
}

.selection-card {

    border: 2px solid #dee2e6;

    border-radius: 12px;

    padding: 20px;

    cursor: pointer;

    transition: all .25s ease;

    height: 100%;

}
.selection-card:hover {

    border-color: #dc3545;

    box-shadow: 0 8px 20px rgba(220,53,69,.15);

    transform: translateY(-3px);

}

.selection-card.selected {

    border-color: #dc3545;

    background: #fff5f5;

}

.branch-icon {

    font-size: 2rem;

    color: #dc3545;

    margin-bottom: 15px;

}

/* ========================================
   REVIEW BOOKING
======================================== */

#step-7
{
    padding-bottom: 5px;
}


.review-heading
{
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}


.review-heading-icon
{
    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 14px;

    background: rgba(220, 53, 69, 0.10);
    color: #dc3545;

    font-size: 24px;

    flex-shrink: 0;
}


.review-eyebrow
{
    display: block;

    margin-bottom: 4px;

    color: #dc3545;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 1.5px;
}


.review-heading h4
{
    margin: 0 0 5px;

    font-size: 24px;
    font-weight: 700;
}


.review-heading p
{
    margin: 0;

    color: #6c757d;
    font-size: 14px;
}


/* Review Sections */

.review-section
{
    margin-bottom: 16px;

    padding: 0;

    border: 1px solid #e2e6ea;
    border-radius: 12px;

    background: #ffffff;

    overflow: hidden;
}


.review-section-title
{
    display: flex;
    align-items: center;
    gap: 9px;

    padding: 12px 18px;

    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;

    color: #2d3748;

    font-size: 14px;
    font-weight: 700;
}


.review-section-title i
{
    color: #dc3545;
    font-size: 16px;
}


/* Review Grid */

.review-grid
{
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));
}


.review-item
{
    min-height: 82px;

    padding: 16px 18px;

    border-right: 1px solid #edf0f2;
    border-bottom: 1px solid #edf0f2;
}


.review-item:nth-child(2n)
{
    border-right: none;
}


.review-item:nth-last-child(-n+2)
{
    border-bottom: none;
}


.review-label
{
    display: flex;
    align-items: center;
    gap: 7px;

    margin-bottom: 8px;

    color: #7b8794;

    font-size: 11px;
    font-weight: 600;

    text-transform: uppercase;
    letter-spacing: 0.4px;
}


.review-label i
{
    color: #dc3545;
    font-size: 14px;
}


.review-item strong
{
    display: block;

    color: #273444;

    font-size: 14px;
    font-weight: 600;

    line-height: 1.5;

    word-break: break-word;
}


.review-item-full
{
    grid-column: 1 / -1;
    border-right: none !important;
}


/* Time Highlight */

.review-time-item strong
{
    color: #dc3545;
}


/* Notes */

.review-notes-section
{
    margin-bottom: 16px;
}


.review-notes
{
    min-height: 64px;

    padding: 16px 18px;

    color: #4a5568;

    font-size: 14px;
    line-height: 1.6;

    white-space: pre-line;
}


.review-notes:empty::before
{
    content: "No additional notes provided.";

    color: #9aa5b1;
    font-style: italic;
}


/* Confirmation Notice */

.review-confirmation-note
{
    display: flex;
    align-items: flex-start;
    gap: 10px;

    padding: 13px 16px;

    border: 1px solid #f1d6d9;
    border-radius: 10px;

    background: #fff8f8;

    color: #6c4a4f;

    font-size: 13px;
    line-height: 1.5;
}


.review-confirmation-note i
{
    color: #dc3545;
    font-size: 17px;

    margin-top: 1px;

    flex-shrink: 0;
}


/* Responsive */

@media (max-width: 768px)
{
    .review-heading
    {
        align-items: flex-start;
    }


    .review-heading h4
    {
        font-size: 21px;
    }


    .review-grid
    {
        grid-template-columns: 1fr;
    }


    .review-item
    {
        border-right: none;
    }


    .review-item:nth-last-child(-n+2)
    {
        border-bottom: 1px solid #edf0f2;
    }


    .review-item:last-child
    {
        border-bottom: none;
    }
}