﻿/* الوضع الافتراضي (إنجليزي / LTR) */
.progressbar {
    counter-reset: step;
    display: flex;
    justify-content: space-between;
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    direction: ltr;
}

    .progressbar li {
        position: relative;
        flex: 1;
        text-align: center;
        font-weight: 500;
        color: #999;
    }

        .progressbar li::before {
            content: counter(step);
            counter-increment: step;
            width: 30px;
            height: 30px;
            border: 2px solid #999;
            display: block;
            margin: 0 auto 10px;
            border-radius: 50%;
            line-height: 26px;
            background: #fff;
        }

        .progressbar li.active {
            color: #000;
        }

            .progressbar li.active::before {
                border-color: #007bff;
                background: #007bff;
                color: #fff;
            }

        .progressbar li::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 2px;
            background: #999;
            top: 15px;
            left: -50%;
            z-index: -1;
        }

        .progressbar li:first-child::after {
            content: none;
        }

        .progressbar li.active + li::after {
            background: #007bff;
        }

/* -------- RTL Mode -------- */
body.RTL .progressbar {
    flex-direction: row-reverse;
}

    body.RTL .progressbar li::after {
        left: auto;
        right: -50%;
    }

.option-card {
    cursor: pointer;
    border: 2px solid #ddd;
    border-radius: 8px;
    transition: all 0.3s ease;
}

    .option-card:hover {
        border-color: #007bff;
        background: #f8f9fa;
    }

    .option-card.selected {
        border-color: #007bff;
        background: #e9f3ff;
    }


.service-card {
    cursor: pointer;
    border: 2px solid #ddd;
    border-radius: 8px;
    transition: all 0.3s ease;
}

    .service-card:hover {
        border-color: #007bff;
        background: #f8f9fa;
    }

    .service-card.selected {
        border-color: #007bff;
        background: #e9f3ff;
    }

.circle-bg {
    position: relative;
}

    .circle-bg .circle-color {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 5;
    }

        .circle-bg .circle-color.fixed {
            position: fixed;
            pointer-events: none;
            opacity: .5;
        }

    .circle-bg .gradient-circle {
        position: absolute;
        left: -250px;
        top: 250px;
        right: auto;
        bottom: auto;
        z-index: -1;
        width: 500px;
        height: 500px;
        border-radius: 70%;
        background-image: -webkit-linear-gradient(45deg, #059dff, #36c6f0);
        background-image: -o-linear-gradient(45deg, #059dff, #36c6f0);
        background-image: linear-gradient(45deg, #059dff, #36c6f0);
        opacity: .25;
        -webkit-filter: blur(100px);
        filter: blur(100px);
    }

        .circle-bg .gradient-circle.two {
            left: auto;
            top: -250px;
            right: -250px;
            bottom: auto;
            background-image: -webkit-linear-gradient(45deg, #fb5343, #6549d5);
            background-image: -o-linear-gradient(45deg, #fb5343, #6549d5);
            background-image: linear-gradient(45deg, #fb5343, #6549d5);
        }
