body.page-services .professional-services-page {
    position: relative;
    overflow: hidden;
    padding: 80px 0 0;
    background: #ffffff;
}

body.page-services .professional-services-page::before {
    display: none;
}

body.page-services .professional-services-page > .auto-container {
    position: relative;
    z-index: 1;
}

body.page-services .services-page-header {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
    gap: 56px;
    align-items: center;
    margin: 0 auto 96px;
}

body.page-services .services-offer-copy {
    max-width: 640px;
}

body.page-services .professional-services-page .section-badge {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin: 0 0 20px;
    padding: 7px 12px;
    border-radius: 4px;
    background: #d70006;
    box-shadow: none;
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

body.page-services .services-page-header .section-title {
    margin: 0 0 26px;
    color: #232331;
    font-size: 46px;
    font-weight: 800;
    line-height: 1.14;
}

body.page-services .services-page-header .highlight-text {
    color: #d70006;
}

body.page-services .services-page-header .highlight-text::before,
body.page-services .services-page-header .highlight-text::after {
    display: none;
}

body.page-services .services-page-header .section-description {
    max-width: 620px;
    margin: 0 0 16px;
    color: #666666;
    font-size: 16px;
    line-height: 1.75;
    text-align: left;
}

body.page-services .services-offer-highlights {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

body.page-services .offer-highlight-card {
    display: flex;
    min-height: 150px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 26px;
    border: 1px solid #e5e5e7;
    border-radius: 8px;
    background: #f7f7f7;
    text-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

body.page-services .offer-highlight-card:hover {
    transform: translateY(-3px);
    border-color: rgba(215, 0, 6, 0.22);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

body.page-services .offer-highlight-card i {
    color: #d70006;
    font-size: 30px;
}

body.page-services .offer-highlight-card span {
    color: #232331;
    font-size: 17px;
    font-weight: 800;
    line-height: 1.3;
}

body.page-services .core-capabilities-header {
    margin: 0 auto 46px;
    text-align: center;
}

body.page-services .core-capabilities-header h2 {
    position: relative;
    display: inline-block;
    margin: 0;
    color: #232331;
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
}

body.page-services .core-capabilities-header h2::after {
    position: absolute;
    left: 50%;
    bottom: -18px;
    width: 80px;
    height: 3px;
    content: "";
    transform: translateX(-50%);
    background: #d70006;
}

body.page-services .professional-services-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: start;
    gap: 24px;
    margin: 0 0 88px;
}

body.page-services .pro-service-card,
body.page-services .pro-service-inner {
    min-width: 0;
}

body.page-services .pro-service-inner {
    height: 100%;
    overflow: hidden;
    border: 1px solid #e5e5e7;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: none;
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

body.page-services .pro-service-inner:hover {
    transform: translateY(-6px);
    border-color: rgba(215, 0, 6, 0.24);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

body.page-services .pro-service-image {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: #18181c;
}

body.page-services .pro-service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

body.page-services .pro-service-inner:hover .pro-service-image img {
    transform: scale(1.06);
}

body.page-services .image-overlay {
    position: absolute;
    inset: 0;
    display: block;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.12) 58%, rgba(0, 0, 0, 0.04));
    opacity: 1;
    pointer-events: none;
}

body.page-services .overlay-icon,
body.page-services .card-shine {
    display: none;
}

body.page-services .service-number-badge {
    position: absolute;
    left: 18px;
    bottom: 16px;
    top: auto;
    z-index: 2;
    display: inline-flex;
    width: auto;
    height: auto;
    min-width: 0;
    padding: 6px 10px;
    border-radius: 999px;
    background: #d70006;
    box-shadow: none;
    animation: none;
}

body.page-services .service-number-badge span {
    color: #ffffff;
    font-size: 10px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

body.page-services .pro-service-content {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 28px;
}

body.page-services .service-name {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 15px;
    color: #232331;
    font-size: 21px;
    font-weight: 800;
    line-height: 1.3;
}

body.page-services .service-name i {
    color: #d70006;
    font-size: 17px;
    line-height: 1;
}

body.page-services .pro-service-inner:hover .service-name {
    color: #232331;
}

body.page-services .service-description {
    margin: 0 0 22px;
    color: #666666;
    font-size: 14px;
    line-height: 1.65;
}

body.page-services .service-features-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 0 0 24px;
    padding: 0;
    border-radius: 0;
    background: transparent;
}

body.page-services .service-features-list .feature-item {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #666666;
    font-size: 13px;
    line-height: 1.45;
}

body.page-services .service-features-list .feature-item i {
    color: #d70006 !important;
    font-size: 13px;
}

body.page-services .service-details-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    margin-top: auto;
    padding: 12px 18px;
    border: 1px solid #d70006;
    border-radius: 4px;
    background: transparent;
    box-shadow: none;
    color: #d70006;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    line-height: 1;
    text-transform: uppercase;
}

body.page-services .service-details-btn::before {
    display: none;
}

body.page-services .service-details-btn:hover {
    transform: none;
    border-color: #d70006;
    background: #d70006;
    box-shadow: none;
    color: #ffffff;
}

body.page-services .service-details-btn i {
    display: none;
}

@media (max-width: 1399px) {
    body.page-services .professional-services-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 991px) {
    body.page-services .professional-services-page {
        padding: 64px 0 0;
    }

    body.page-services .services-page-header {
        grid-template-columns: 1fr;
        gap: 38px;
        margin-bottom: 76px;
    }

    body.page-services .services-offer-copy {
        max-width: 760px;
    }

    body.page-services .professional-services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px;
    }

}

@media (max-width: 767px) {
    body.page-services .services-page-header .section-title,
    body.page-services .core-capabilities-header h2 {
        font-size: 32px;
    }

    body.page-services .services-offer-highlights,
    body.page-services .professional-services-grid {
        grid-template-columns: 1fr;
    }

    body.page-services .offer-highlight-card {
        min-height: 132px;
    }

    body.page-services .pro-service-image {
        height: 210px;
    }

}
