.services-hero {
    background: linear-gradient(135deg, var(--primary) 0%, #1e40af 100%);
    color: white;
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}

.services-hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.services-hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.15;
}

.services-hero-subtitle {
    font-size: 1.15rem;
    opacity: 0.9;
    margin-bottom: 28px;
    line-height: 1.6;
}

.services-hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.services-intro {
    padding: 40px 0 0;
}

.services-intro .entry-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
    max-width: 800px;
}

.srv-section {
    padding: 60px 0 80px;
}

.srv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.srv-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s;
    color: var(--text);
    text-decoration: none;
    display: block;
}

.srv-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: var(--primary);
    color: var(--text);
}

.srv-icon {
    width: 64px;
    height: 64px;
    background: var(--primary-light);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--primary);
}

.srv-card h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
}

.srv-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 16px;
    line-height: 1.6;
}

.srv-link {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
}

.srv-why {
    padding: 80px 0;
    background: var(--bg-alt);
}

.srv-why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.srv-why-content h2 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.srv-why-content > p {
    color: var(--text-light);
    margin-bottom: 24px;
    font-size: 1.05rem;
    line-height: 1.7;
}

.srv-features {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 0;
}

.srv-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    color: var(--text);
}

.srv-features li svg {
    flex-shrink: 0;
    color: var(--secondary);
}

.srv-why-image {
    position: relative;
}

.srv-why-image img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    min-height: 400px;
    background: var(--bg-alt);
    object-fit: cover;
}

.srv-stats {
    display: flex;
    gap: 12px;
    margin-top: -40px;
    padding: 0 20px;
}

.srv-stat {
    background: white;
    border-radius: var(--radius);
    padding: 20px 16px;
    box-shadow: var(--shadow-md);
    text-align: center;
    flex: 1;
}

.srv-stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
}

.srv-stat-label {
    font-size: 0.8rem;
    color: var(--text-light);
}

.srv-cta {
    padding: 60px 0;
}

.srv-cta-box {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius);
    padding: 60px;
    text-align: center;
    color: white;
}

.srv-cta-box h2 {
    font-size: 2rem;
    margin-bottom: 12px;
}

.srv-cta-box p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 32px;
}

.srv-cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 1024px) {
    .services-hero-title {
        font-size: 2.2rem;
    }

    .srv-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .srv-why-grid {
        gap: 40px;
    }

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

@media (max-width: 768px) {
    .services-hero {
        padding: 40px 0;
    }

    .services-hero-title {
        font-size: 1.8rem;
    }

    .services-hero-subtitle {
        font-size: 1rem;
    }

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

    .srv-why-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .srv-why-image {
        order: -1;
    }

    .srv-cta-box {
        padding: 40px 24px;
    }

    .srv-cta-box h2 {
        font-size: 1.5rem;
    }

    .services-hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .srv-stats {
        flex-wrap: wrap;
    }
}

