/* === NAGŁÓWEK === */
.srv-header {
    max-width: 1200px;
    margin: 30px auto 24px auto;
    padding: 0 20px;
}

.srv-header h1 {
    font-size: 1.9rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 8px 0;
}

.srv-header p {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
}

/* === 3 KARTY === */
.srv-cards-row {
    max-width: 1200px;
    margin: 0 auto 24px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.srv-card {
    background: #f8f8f8;
    border-radius: 25px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.srv-card-icon {
    width: 48px;
    height: 48px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e8e8e8;
}

.srv-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 4px 0 0 0;
}

.srv-card > p {
    font-size: 0.875rem;
    color: #666;
    margin: 0;
    flex: 1;
}

.srv-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.2s;
    width: fit-content;
    margin-top: 4px;
}

.srv-btn:hover {
    opacity: 0.85;
    text-decoration: none;
}

.srv-btn-gradient {
    background: #333;
    color: white;
}

.srv-btn-outline {
    background: white;
    color: #333;
    border: 1.5px solid #ddd;
}

/* === 2 KOLUMNY === */
.srv-two-col {
    max-width: 1200px;
    margin: 0 auto 24px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.srv-steps-box,
.srv-info-box {
    background: #f8f8f8;
    border-radius: 25px;
    padding: 28px 28px;
}

.srv-steps-box h2,
.srv-info-box h2 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 20px 0;
}

/* Kroki */
.srv-step {
    display: flex;
    gap: 14px;
    margin-bottom: 18px;
    align-items: flex-start;
}

.srv-step:last-child {
    margin-bottom: 0;
}

.srv-step-num {
    width: 28px;
    height: 28px;
    background: #333;
    color: white;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Kontakt pod krokami */
.srv-steps-divider {
    border: none;
    border-top: 2px solid white;
    margin: 20px -28px 16px -28px;
}

.srv-contact-row {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.srv-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.875rem;
    color: #333;
}

.srv-contact-item a {
    color: #1a1a2e;
    font-weight: 600;
    text-decoration: none;
}

.srv-contact-item a:hover {
    text-decoration: underline;
}

.srv-contact-icon {
    width: 32px;
    height: 32px;
    background: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid #e8e8e8;
}

.srv-step strong {
    display: block;
    font-size: 0.9rem;
    color: #1a1a2e;
    margin-bottom: 3px;
}

.srv-step p {
    font-size: 0.8rem;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* Info items */
.srv-info-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    background: white;
    border-radius: 14px;
    padding: 14px 16px;
    margin-bottom: 10px;
}

.srv-info-item:last-child {
    margin-bottom: 0;
}

.srv-info-icon {
    width: 32px;
    height: 32px;
    background: #f8f8f8;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.srv-info-item strong {
    display: block;
    font-size: 0.875rem;
    color: #1a1a2e;
    margin-bottom: 3px;
}

.srv-info-item p {
    font-size: 0.8rem;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* === USZANUJ NASZ CZAS === */
.respect-time-section {
    max-width: 1200px;
    margin: 0 auto 50px auto;
    padding: 0 20px;
}

.respect-time-container {
    background-color: #f8f8f8;
    border-radius: 25px;
    padding: 28px 32px;
    text-align: center;
}

.respect-time-container h3 {
    color: #333;
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 12px;
}

.respect-time-container p {
    color: #555;
    font-size: 0.9rem;
    line-height: 1.65;
    margin: 0;
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
    .srv-cards-row {
        grid-template-columns: 1fr 1fr;
    }

    .srv-two-col {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .srv-cards-row {
        grid-template-columns: 1fr;
        padding: 0 15px;
    }

    .srv-two-col {
        padding: 0 15px;
    }

    .srv-header,
    .respect-time-section {
        padding: 0 15px;
    }

    .srv-header h1 {
        font-size: 1.5rem;
    }

    .respect-time-container {
        text-align: left;
    }
}

.product-item:hover .product-title a {
    color: inherit;
    text-decoration: underline;
}
