/* service pricing section start */

.service-pricing-row {
    row-gap: 28px;
}

.service-pricing-row .col-4 {
    display: flex;
}

.service-price-card {
    width: 100%;
    min-height: 405px;
    padding: 27px 21px 29px;
    display: flex;
    background: #ffffff;
    border-radius: 0 0 14px 14px;
    box-shadow:
        0 3px 2px rgba(0, 0, 0, 0.16),
        0 10px 20px rgba(0, 0, 0, 0.05);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.service-price-card:hover {
    transform: translateY(-5px);
    box-shadow:
        0 4px 3px rgba(0, 0, 0, 0.16),
        0 15px 28px rgba(0, 0, 0, 0.08);
}

.service-price-card-content {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.service-price-card h3 {
    color: #191D23;
    font-size: 22px;
    font-weight: 500;
    line-height: 100%;
}

.service-price-description {
    color: #64748B;
}

.service-price-wrap {
    min-height: 58px;
    margin-bottom: 22px;
    display: flex;
    align-items: baseline;
    gap: 9px;
}

.service-price-starting {
    align-items: center;
    gap: 12px;
}

.service-price {
    color: #191D23;
    font-size: 56px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: -1.5px;
}

.service-price-unit,
.service-price-label {
    color: #64748B;
    font-size: 16px;
    font-weight: 300;
}

.service-price-list {
    margin: auto 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    list-style: none;
}

.service-price-list li {
    position: relative;
    min-height: 27px;
    padding-left: 41px;
    display: flex;
    align-items: center;
    color: #191D23;
    font-weight: 500;
}

.service-price-list li::before {
    content: "✓";
    position: absolute;
    top: 50%;
    left: 0;
    width: 27px;
    height: 27px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-50%);
    background: #E8EDFB;
    border-radius: 50%;
    color: #1D4ED8;
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
}

.service-price-card-content .secondary-btn {
    padding: 8px;
    margin-bottom: 30px;
}

/* service pricing section end */

@media (max-width: 1199px) {

    .service-price-card {
        padding: 25px 18px 27px;
    }

    .service-price {
        font-size: 45px;
    }

    .service-price-card h3 {
        font-size: 18px;
    }

}

@media (max-width: 991px) {

    .service-pricing-row .col-4 {
        width: 50%;
    }

    .service-price-card {
        min-height: 390px;
    }

}

@media (max-width: 767px) {

    .service-pricing-row {
        row-gap: 22px;
    }

    .service-pricing-row .col-4 {
        width: 100%;
    }

    .service-price-card {
        min-height: auto;
        padding: 26px 20px 28px;
    }

    .service-price-description {
        min-height: auto;
        margin-bottom: 20px;
    }

    .service-price-wrap {
        min-height: auto;
        margin-bottom: 21px;
    }

    .service-price {
        font-size: 44px;
    }

    .service-price-btn {
        margin-bottom: 27px;
    }

}