/* ============================================
   Page 82: Další služby
   ============================================ */

:root {
    --ps-primary: #f59e0b;
    --ps-secondary: #d97706;
    --ps-dark: #0f172a;
    --ps-text: #1e293b;
    --ps-text-muted: #64748b;
    --ps-light: #f0fdf4;
    --ps-border: #e5e7eb;
    --ps-white: #ffffff;
}

/* ============================================
   Hero Section
   ============================================ */

.ps-hero {
    background: #ffffff;
    padding: 4rem 2rem 3rem;
}

.ps-hero .container {
    max-width: 1400px;
    margin: 0 auto;
}

.ps-hero__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.ps-hero__text {
    max-width: 680px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: transparent;
    border: 2px solid var(--ps-primary);
    border-radius: 20px;
    color: var(--ps-primary);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.section-tag i {
    font-size: 1rem;
}

.ps-hero__title {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 20px 0;
    color: var(--ps-dark);
}

.ps-hero__subtitle {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--ps-text-muted);
    margin: 0;
}

.ps-hero__features {
    margin-top: 1.5rem;
    display: grid;
    gap: 0.75rem;
}

.ps-feature {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--ps-text);
    font-weight: 500;
}

.ps-feature i {
    color: var(--ps-primary);
}

.ps-hero__images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.ps-hero__image {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--ps-border);
}

.ps-hero__image img {
    width: 100%;
    height: 100%;
    min-height: 260px;
    object-fit: cover;
    display: block;
}

.ps-hero__image--2 {
    transform: translateY(1.25rem);
}

@media (max-width: 768px) {
    .ps-hero {
        padding: 3rem 1.5rem 2rem;
    }
    
    .ps-hero__content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .ps-hero__title {
        font-size: 1.75rem;
    }
    
    .ps-hero__subtitle {
        font-size: 0.95rem;
    }

    .ps-hero__images {
        grid-template-columns: 1fr;
    }

    .ps-hero__image--2 {
        transform: none;
    }
}

/* ============================================
   Services Section
   ============================================ */

.ps-services-section {
    width: 100%;
    padding: 4rem 2rem;
    background: #f8fafc;
}

.ps-services-section .container {
    max-width: 1400px;
    margin: 0 auto;
}

/* ============================================
   Service Blocks
   ============================================ */

.ps-service-block {
    margin-bottom: 1.5rem;
    padding: 40px;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid var(--ps-border);
    animation: ps-enter 0.6s ease-out forwards;
    opacity: 0;
}

.ps-service-block:nth-child(1) {
    animation-delay: 0.1s;
}

.ps-service-block:nth-child(2) {
    animation-delay: 0.2s;
}

.ps-service-block:nth-child(3) {
    animation-delay: 0.3s;
}

.ps-service-block:nth-child(4) {
    animation-delay: 0.4s;
}

@keyframes ps-enter {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ps-service-block:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(23, 94, 230, 0.08);
}

.ps-service-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--ps-border);
}

.ps-service-header i {
    font-size: 2rem;
    color: var(--ps-primary);
}

.ps-service-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--ps-text);
    margin: 0;
}

.ps-service-content {
    padding: 20px 0;
}

.ps-text-content p {
    margin: 0;
    color: var(--ps-text);
    line-height: 1.8;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .ps-service-block {
        padding: 25px;
    }
    
    .ps-service-header h2 {
        font-size: 1.25rem;
    }
}

/* ============================================
   Accessibility
   ============================================ */

@media (prefers-reduced-motion: reduce) {
    .ps-service-block {
        animation: none;
        opacity: 1;
    }
}
