/* Diensten Pages Styles */

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--navy) 0%, #0a2445 100%);
    padding: 10rem 2rem 4rem;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-image: radial-gradient(rgba(107, 168, 168, 0.3) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.5;
}

.page-header-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.page-header h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--white);
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.page-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Content Section */
.dienst-content {
    padding: 5rem 2rem;
    background: var(--white);
}

.dienst-container {
    max-width: 900px;
    margin: 0 auto;
}

.dienst-intro {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--gray-700);
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--gray-200);
}

.dienst-section {
    margin-bottom: 3rem;
}

.dienst-section h2 {
    font-size: 1.75rem;
    color: var(--teal-medium);
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
}

.dienst-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray-700);
    margin-bottom: 1.5rem;
}

/* Steps Grid */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.step-card {
    background: var(--gray-50);
    padding: 2rem;
    border-radius: var(--radius-lg);
    position: relative;
    transition: all var(--transition-base);
}

.step-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--teal-medium), var(--teal-light));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.step-card h3 {
    color: var(--navy);
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.step-card p {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Voordelen List */
.voordelen-list {
    list-style: none;
    padding: 0;
    display: grid;
    gap: 1rem;
}

.voordelen-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: var(--gray-50);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--teal-medium);
    font-size: 1.05rem;
    color: var(--gray-700);
}

.voordelen-list li::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--teal-medium);
    border-radius: 50%;
    margin-top: 0.5rem;
    flex-shrink: 0;
}

/* Bullet Lists in Content */
.dienst-section ul:not(.voordelen-list) {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.dienst-section ul:not(.voordelen-list) li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.75rem;
    color: var(--gray-700);
    line-height: 1.7;
}

.dienst-section ul:not(.voordelen-list) li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6em;
    width: 8px;
    height: 8px;
    background: var(--teal-medium);
    border-radius: 50%;
}

/* CTA Section */
.dienst-cta {
    padding: 4rem 2rem;
    background: var(--gray-50);
}

.dienst-cta .cta-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: linear-gradient(135deg, var(--navy) 0%, #0a2445 100%);
    padding: 3rem;
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
}

.dienst-cta .cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-image: radial-gradient(rgba(107, 168, 168, 0.2) 1px, transparent 1px);
    background-size: 20px 20px;
}

.dienst-cta .cta-box h2 {
    color: var(--white);
    font-size: 1.75rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.dienst-cta .cta-box p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.dienst-cta .cta-box .btn {
    position: relative;
    z-index: 1;
}

/* Assessment specific styles */
.assessment-tests {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.assessment-card {
    background: var(--gray-50);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border-top: 4px solid var(--teal-medium);
}

.assessment-card h3 {
    color: var(--navy);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.assessment-card p {
    color: var(--gray-600);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.assessment-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.assessment-card ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--gray-600);
    font-size: 0.95rem;
}

.assessment-card ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 6px;
    height: 6px;
    background: var(--teal-medium);
    border-radius: 50%;
}

/* Responsive */
@media (max-width: 900px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .assessment-tests {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 8rem 1.5rem 3rem;
    }

    .dienst-content {
        padding: 3rem 1.5rem;
    }

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

    .dienst-cta .cta-box {
        padding: 2rem 1.5rem;
    }
}
