﻿/* ======================================================================
   PartnerService – страница «Услуги» 
   ====================================================================== */

.ps-services-section {
    --ps-icon-bg: #6c757d;
    --ps-icon-bg-hover: #8d99a6;
    --ps-item-bg: rgba(255,255,255,.55);
    --ps-text: #343a40;
}

.ps-services-section {
    padding: 60px 0;
    background: transparent;
}

.ps-services-title {
    font-size: clamp(1.5rem,4vw,2.25rem);
    font-weight: 700;
    color: var(--ps-text);
}

.ps-service-item {
    width: 100%;
    height: 100%;
    background: var(--ps-item-bg);
    backdrop-filter: saturate(180%) blur(6px);
    border-radius: 12px;
    box-shadow: 0 2px 4px rgb(0 0 0 / .05);
    padding: 24px;
    transition: background-color .3s, box-shadow .3s, transform .3s;
    transform: translateY(0);
}

    .ps-service-item:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 24px rgb(0 0 0 / .10);
    }

.ps-service-icon {
    width: 108px;
    height: 108px;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color .3s, transform .3s;
}

.ps-service-item:hover .ps-service-icon {
    transform: scale(1.05);
}

.ps-service-icon img {
    max-width: 100%;
    height: auto;
}

.ps-service-name {
    font-size: 1.125rem;
    color: var(--ps-text);
}


@media (max-width:575.98px) {
    .ps-service-icon {
        width: 72px;
        height: 72px;
    }
}

body.page {
    background: linear-gradient(rgba(255,255,255,150), rgba(255,255,255,.0)), url("../img/wirtgen/banner.jpg") center/cover no-repeat fixed;
}

.single-service.py-6,
.section.pt-6 {
    padding-top: 4.5rem;
}

.section.pb-6 {
    padding-bottom: 4.5rem;
}

.service-item .icon {
    width: 64px;
    height: 64px;
    margin-right: 24px;
}

.service-item {
    transition: box-shadow .25s, transform .25s;
}

    .service-item:hover {
        box-shadow: 0 12px 24px rgb(0 0 0 / .08);
        transform: translateY(-4px);
    }

.ps-divider {
    width: 120px;
    height: 3px;
    margin: 0 auto 3rem;
    border-radius: 2px;
}

@media (max-width: 991.98px) {
    .single-service .container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

.hero.single-service .col-lg-10 {
    padding: 0 2rem;
}

.section.services .service-item {
    padding: 1.5rem 0.3rem;
}

@media (max-width: 767.98px) {
    .section.bg-light img.rounded-4 {
        margin-bottom: 1.5rem;
    }
}

.container-wide {
    padding-left: 2rem;
    padding-right: 2rem;
}

@media (min-width: 992px) {
    .col-lg-6 {
        width: 100%;
    }
}
