/*==============================
Page services
==============================*/
.services-list {

    /* Service Grid Card */
    .service-item {
        border: 1px solid var(--gray-cus-200);
        border-radius: 24px;
        padding: 40px;
        transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        height: 100%;
        background: var(--white);
    }

    .service-item:hover {
        transform: translateY(-12px);
        box-shadow: var(--box-shadow);
        border-color: var(--secondary-color);
    }

    .icon-wrapper {
        width: 64px;
        height: 64px;
        background: var(--light-color);
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 24px;
        transition: 0.3s;
    }

    .service-item:hover .icon-wrapper {
        background: var(--primary-color);
        color: var(--white);
    }

    .icon-wrapper i {
        font-size: 1.75rem;
        color: var(--primary-color);
    }

    .service-item:hover .icon-wrapper i {
        color: var(--white);
    }

    .service-tag {
        font-size: 0.75rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-weight: 700;
        color: var(--secondary-color);
        margin-bottom: 12px;
        display: block;
    }
}

/* services list page 2 */
.services-list2 {

    /* Modern Split Service Item */
    .split-service-card {
        display: flex;
        background: var(--white);
        min-height: 450px;
        margin-bottom: 40px;
        border-radius: 40px;
        overflow: hidden;
        box-shadow: 0 15px 35px rgba(var(--dark-color-rgb), 0.03);
        transition: var(--tr-smooth);
    }

    .split-service-card:nth-child(even) {
        flex-direction: row-reverse;
    }

    .split-image {
        width: 50%;
        position: relative;
        overflow: hidden;
    }

    .split-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: var(--tr-smooth);
    }

    .split-content {
        width: 50%;
        padding: 60px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        position: relative;
    }

    /* Glassmorphism Badge */
    .glass-badge {
        display: inline-block;
        padding: 8px 20px;
        background: rgba(var(--secondary-color-rgb), 0.1);
        backdrop-filter: blur(5px);
        border-radius: 100px;
        color: var(--secondary-color);
        font-weight: 700;
        font-size: 12px;
        letter-spacing: 1px;
        margin-bottom: 20px;
        border: 1px solid rgba(var(--secondary-color-rgb), 0.2);
    }

    .split-service-card:hover .split-image img {
        transform: scale(1.1);
    }

    .split-service-card:hover {
        box-shadow: 0 30px 60px rgba(var(--primary-color-rgb), 0.1);
    }

    /* Feature List Modern */
    .feature-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        margin-top: 30px;
    }

    .feature-mini-item {
        display: flex;
        align-items: center;
        gap: 12px;
        font-size: 14px;
        color: var(--dark-color);
        font-weight: 500;
    }

    .feature-mini-item i {
        color: var(--secondary-color);
        font-size: 18px;
    }

    @media (max-width: 992px) {

        .split-service-card,
        .split-service-card:nth-child(even) {
            flex-direction: column;
        }

        .split-image,
        .split-content {
            width: 100%;
        }

        .split-content {
            padding: 40px;
        }
    }
}

/* Glassmorphism Section */
.stat-box {
    background: rgba(var(--light-color-rgb), 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(var(--light-color-rgb), 0.3);
    border-radius: 20px;
    padding: 30px;
}

/* Service Detail Bento */
.service-detail-bento {
    .bento-wrapper {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: auto auto;
        gap: 24px;
    }

    .bento-card {
        background: var(--light-color);
        border-radius: var(--border-radius-lg);
        padding: 32px;
        transition: all 0.3s ease;
    }

    .bento-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 40px rgba(var(--primary-color-rgb), 0.08);
    }

    .bento-main {
        grid-column: span 3;
        grid-row: span 2;
        padding: 0;
        overflow: hidden;
        position: relative;
    }

    .bento-main img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .bento-main-content {
        position: absolute;
        bottom: 0;
        left: 0;
        padding: 50px;
        background: linear-gradient(0deg, rgba(var(--dark-color-fixed-rgb), 0.8) 0%, transparent 100%);
        color: var(--white-fixed);
        width: 100%;
    }

    .bento-stat {
        grid-column: span 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        border: 1px solid var(--secondary-color);
        background: var(--white);
    }

    .bento-stat h3 {
        font-size: 3rem;
        color: var(--primary-color);
        margin-bottom: 0;
    }

    @media (max-width: 991px) {
        .bento-wrapper {
            grid-template-columns: 1fr;
        }

        .bento-main {
            grid-column: span 1;
            height: 400px;
        }
    }
}

/* Split Details */
.service-detail-row {
    .detail-wrapper {
        display: flex;
        align-items: center;
        gap: 80px;
    }

    .detail-content {
        flex: 1;
    }

    .detail-visual {
        flex: 1;
        position: relative;
    }

    .image-stack {
        position: relative;
    }

    .image-stack-main {
        width: 85%;
        border-radius: var(--border-radius-lg);
        box-shadow: 20px 20px 0 var(--light-color);
    }

    .image-stack-sub {
        position: absolute;
        bottom: -30px;
        right: 0;
        width: 45%;
        border-radius: var(--border-radius);
        border: 8px solid var(--white);
        box-shadow: 0 10px 30px rgba(var(--dark-color-rgb), 0.1);
    }

    @media (max-width: 991px) {
        .detail-wrapper {
            flex-direction: column;
            gap: 40px;
        }
    }
}

/* Professional Timeline */
.service-detail-protocol {
    .protocal-wrapper {
        background: var(--dark-color);
        border-radius: var(--border-radius-lg);
        color: var(--white);
        padding: 80px;
    }

    .protocol-card {
        background: rgba(var(--white-rgb) 0.05);
        border: 1px solid rgba(var(--white-rgb), 0.1);
        border-radius: var(--br-lg);
        padding: 40px;
        height: 100%;
        transition: 0.3s;
    }

    .protocol-card:hover {
        background: rgba(var(--white-rgb), 0.08);
        border-color: var(--secondary-color);
    }

    .protocol-num {
        font-family: var(--font-head);
        font-size: 4rem;
        line-height: 1;
        opacity: 0.2;
        margin-bottom: 20px;
        display: block;
    }

    @media (max-width: 991px) {
        .protocal-wrapper {
            padding: 40px 20px;
        }
    }
}

/* Specifications Table */
.specs-table {
    border-radius: var(--br-lg);
    overflow: hidden;
    border: 1px solid var(--gray-cus-100);

    .spec-item {
        display: grid;
        grid-template-columns: 1fr 2fr;
        border-bottom: 1px solid var(--gray-cus-100);
    }

    .spec-item:last-child {
        border-bottom: none;
    }

    .spec-label {
        background: var(--light-color);
        padding: 25px 40px;
        font-weight: 700;
        color: var(--primary-color);
    }

    .spec-value {
        padding: 25px 40px;
        background: var(--white);
    }
}

/* Service Detail2 Hero */
.service-detail2-hero {
    padding: 100px 0 60px;
    background: linear-gradient(180deg, var(--light-color) 0%, var(--white) 100%);

    .img-main-wrapper {
        position: relative;
        border-radius: var(--border-radius-lg);
        overflow: hidden;
        box-shadow: var(--box-shadow-lg);
    }
}

/* Service Detail2 Hero */
.service-detail2-content {
    .glass-card {
        background: rgba(var(--white-rgb), 0.8);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(var(--white-rgb), 0.3);
        border-radius: var(--border-radius);
        padding: 30px;
    }

    /* Medical Steps Timeline */
    .step-item {
        position: relative;
        padding-left: 50px;
        margin-bottom: 40px;
    }

    .step-number {
        position: absolute;
        left: 0;
        top: 0;
        width: 35px;
        height: 35px;
        background: var(--primary-color);
        color: var(--white);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: bold;
        z-index: 1;
    }

    .step-item::before {
        content: '';
        position: absolute;
        left: 17px;
        top: 35px;
        width: 2px;
        height: calc(100% + 10px);
        background: var(--light-color);
    }

    .step-item:last-child::before {
        display: none;
    }

    /* Sticky Sidebar Appointment */
    .sticky-appointment {
        position: sticky;
        top: 100px;
        background: var(--gray-cus-200);
        padding: 40px;
        border-radius: 24px;
    }
}