/* === СТРАНИЦА УСЛУГИ === */

.service-hero {
    background: var(--white);
    padding: 60px 0;
}

.service-hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr; 
    gap: 60px;
    align-items: start;
}

/* Контент слева */
.service-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.page-header-title {
    margin-bottom: 0 !important; 
}

.service-subtitle {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary);
    margin: 0;
    line-height: 1.4;
}

.service-description {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--dark);
    margin: 0;
}

/* Блок "Что входит в услугу" */
.service-included-block h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 16px;
    margin-top: 10px;
}

.service-included-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    counter-reset: item-counter; 
}

.service-included-list li {
    font-size: 1rem;
    color: var(--dark);
    line-height: 1.5;
    padding-left: 48px;
    position: relative;
    counter-increment: item-counter; 
}

/* Цифры в кругах */
.service-included-list li::before {
    content: counter(item-counter); 
    position: absolute;
    left: 0;
    top: 0;
    color: var(--white);
    background: var(--primary);
    width: 28px; 
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
}

/* Кнопка (как на главной, но синяя с белым текстом) */
.service-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    background: var(--primary);
    color: var(--white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow);
    margin-top: 10px;
    width: fit-content;
}

.service-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Фото справа */
.service-image-wrapper {
    border-radius: 16px;
    overflow: hidden;
    background: var(--light);
    box-shadow: var(--shadow-lg);
    min-height: 400px;
}

.service-image-wrapper img {
    width: 100%;
    height: 100%;
    min-height: 400px;
    object-fit: cover;
    display: block;
}

.no-image {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 400px;
    color: var(--gray);
    font-size: 1.2rem;
}


@media (max-width: 900px) {
    .service-hero-grid {
        grid-template-columns: 1fr; 
        gap: 40px;
    }

    .service-image-wrapper {
        order: -1; 
        min-height: 250px;
    }

    .service-image-wrapper img {
        min-height: 250px;
    }

    .service-btn {
        width: 100%;
    }
}