.srv-section {
    background: #ffffff;
    padding: 2.5rem 0 0;
}

/* Dvojsloupcový layout: text vlevo, foto vpravo */
.srv-body,
.srv-inner {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 2rem;
    align-items: start;
    max-width: 960px;
    margin: 0 auto;
    padding: 0 0.5rem;
}

/* Nadpis */
.srv-heading {
    font-size: clamp(1.2rem, 1.9vw, 1.5rem);
    font-weight: 800;
    color: #1e293b;
    margin: 0 0 0.5rem;
    line-height: 1.2;
    white-space: nowrap; /* jen na desktopu, viz media query níže */
}

.srv-heading strong {
    color: #1e40af;
    font-weight: 800;
}

/* Podnadpis */
.srv-lead {
    color: #64748b;
    font-size: 0.9375rem;
    font-weight: 500;
    margin: 0 0 1rem;
    line-height: 1.5;
}

/* Label "NAŠE SLUŽBY" */
.srv-label {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: #2563eb;
    text-transform: uppercase;
    margin: 0 0 0.75rem;
}

/* Seznam služeb */
.srv-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.srv-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 0.625rem;
    font-size: 0.9rem;
    line-height: 1.4;
    color: #334155;
    font-weight: 500;
}

/* Check ikona */
.srv-check {
    width: 18px;
    height: 18px;
    min-width: 18px;
    margin-top: 1px;
    border-radius: 50%;
    background: #16a34a;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    flex-shrink: 0;
}

/* Fotka vozidla */
.srv-photo {
    width: 100%;
    aspect-ratio: 1 / 1.05;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(30, 64, 175, 0.1);
}

/* CTA pruh */
.srv-cta {
    margin-top: 2rem;
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 60%, #2563eb 100%);
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    border-radius: 16px 16px 0 0;
}

.srv-cta-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #ffffff;
}

.srv-cta-title {
    font-size: clamp(1rem, 2.2vw, 1.3rem);
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 4px;
    line-height: 1.2;
}

.srv-cta-title strong {
    color: #93c5fd;
    font-weight: 800;
}

.srv-cta-subtitle {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.875rem;
    margin: 0;
    font-weight: 500;
}

@media (max-width: 680px) {
    .srv-body,
    .srv-inner {
        grid-template-columns: 1fr;
    }

    .srv-heading {
        white-space: normal;
    }

    .srv-photo {
        aspect-ratio: 16 / 9;
        order: -1;
    }

    .srv-cta {
        flex-direction: column;
        text-align: center;
        border-radius: 12px 12px 0 0;
        padding: 1.25rem 1rem;
        gap: 0.875rem;
    }
}
