/* ==============================================
   TRAINING PAGES REDESIGN 2025 - PROFESSIONAL MODERN STYLES
   Add this to style.css or link separately
   ============================================== */

/* ==============================================
   1. ENHANCED SHADOW SYSTEM (Material Design 3)
   ============================================== */
:root {
    /* Modern Shadow Elevations */
    --shadow-2dp: 0 1px 2px rgba(0, 0, 0, 0.04), 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-4dp: 0 2px 4px rgba(0, 0, 0, 0.05), 0 2px 6px rgba(0, 0, 0, 0.06);
    --shadow-8dp: 0 4px 8px rgba(0, 0, 0, 0.06), 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-16dp: 0 8px 16px rgba(0, 0, 0, 0.08), 0 8px 20px rgba(0, 0, 0, 0.10);
    --shadow-24dp: 0 12px 24px rgba(0, 0, 0, 0.10), 0 12px 28px rgba(0, 0, 0, 0.12);

    /* Gradient Enhancements */
    --gradient-purple-rich: linear-gradient(135deg, #0A2370 0%, #071A50 100%);
    --gradient-orange-rich: linear-gradient(135deg, #FF5722 0%, #FF7043 100%);
    --gradient-mixed: linear-gradient(135deg, #071A50 0%, #FF5722 100%);
    --gradient-mixed-reverse: linear-gradient(135deg, #FF5722 0%, #071A50 100%);
}

/* ==============================================
   2. TRUST STATS BAR (Social Proof)
   ============================================== */
.trust-stats-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    padding: 32px 24px;
    margin: 40px 0 60px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.98) 100%);
    border-radius: 16px;
    box-shadow: var(--shadow-8dp);
    border: 1px solid rgba(7, 26, 80, 0.08);
}

.trust-stat {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--donkergrijs);
}

.trust-icon {
    color: var(--oranje);
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .trust-stats-bar {
        flex-direction: column;
        gap: 24px;
        padding: 24px 20px;
        margin: 32px 0 40px;
    }

    .trust-stat {
        font-size: 0.9rem;
    }
}

/* ==============================================
   3. FEATURED TRAINING CARD (Hero Card)
   ============================================== */
.training-featured-wrapper {
    margin: 0 0 60px;
}

.training-card-featured {
    position: relative;
    background: linear-gradient(135deg, rgba(255, 247, 240, 0.8) 0%, rgba(255, 255, 255, 1) 100%);
    border: 2px solid rgba(255, 87, 34, 0.2);
    box-shadow: var(--shadow-16dp);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: visible;
}

.training-card-featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-orange-rich);
}

.training-card-featured:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-24dp);
    border-color: rgba(255, 87, 34, 0.4);
}

/* Training Card Icon Header - HIDDEN */
.training-card-icon-header {
    display: none;
}

/* ==============================================
   4. STANDARD & EXTERNAL TRAINING CARDS
   ============================================== */
.card-grid-two-col {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.training-card-standard {
    position: relative;
    border-left: 4px solid var(--oranje);
    background: white;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.training-card-standard:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-16dp);
    border-left-color: var(--oranje-light);
}

.training-card-external {
    position: relative;
    background: linear-gradient(135deg, #fafbfc 0%, #ffffff 100%);
    border: 2px dashed rgba(7, 26, 80, 0.2);
    box-shadow: var(--shadow-4dp);
}

.training-card-external:hover {
    border-style: solid;
    border-color: rgba(7, 26, 80, 0.3);
    box-shadow: var(--shadow-8dp);
}

/* External Badge */
.external-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(7, 26, 80, 0.08);
    color: var(--paars);
    padding: 4px 12px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 6px;
    border: 1px solid rgba(7, 26, 80, 0.15);
}

/* External CTA Button */
.training-cta-external {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--paars) 0%, var(--lichtpaars) 100%);
}

.training-cta-external svg {
    transition: transform 0.3s ease;
}

.training-cta-external:hover svg {
    transform: translateX(3px) translateY(-3px);
}

@media (max-width: 768px) {
    .card-grid-two-col {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .training-card-standard:hover {
        transform: none;
    }
}

/* ==============================================
   5. BENEFIT ICONS (SVG - Replaces Checkmarks)
   ============================================== */
/* Hide benefit icons */
.training-benefits-icons .benefit-icon {
    display: none;
}

.benefit-icon-svg {
    display: none;
}

/* Adjust benefit content layout when icons are hidden */
.training-benefits-icons li {
    display: block;
}

.training-benefits-icons .benefit-content {
    margin-left: 0;
    padding-left: 0;
}

/* ==============================================
   6. ENHANCED BENEFIT CARDS (Detail Pages)
   ============================================== */
.benefit-card-enhanced {
    position: relative;
    padding: 36px 32px;
    overflow: hidden;
}

.benefit-card-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--gradient-orange-rich);
    transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.benefit-card-enhanced:hover::before {
    height: 100%;
}

.benefit-card-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 87, 34, 0.08) 0%, rgba(7, 26, 80, 0.08) 100%);
    border-radius: 16px;
    border: 2px solid rgba(255, 87, 34, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.benefit-card-icon svg {
    color: var(--oranje);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.benefit-card-enhanced:hover .benefit-card-icon {
    background: linear-gradient(135deg, rgba(255, 87, 34, 0.15) 0%, rgba(7, 26, 80, 0.12) 100%);
    border-color: rgba(255, 87, 34, 0.3);
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.benefit-card-enhanced:hover .benefit-card-icon svg {
    color: var(--paars);
    transform: scale(1.15);
}

.benefit-card-enhanced h3 {
    margin-top: 0;
    margin-bottom: 14px;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--donkergrijs);
    transition: color 0.3s ease;
}

.benefit-card-enhanced:hover h3 {
    color: var(--oranje);
}

.benefit-card-enhanced p {
    color: var(--tekstgrijs);
    font-size: 1rem;
    line-height: 1.65;
    margin-bottom: 0;
}

/* Staggered animation for benefit cards */
.benefit-card-enhanced:nth-child(1) {
    transition-delay: 0ms;
}

.benefit-card-enhanced:nth-child(2) {
    transition-delay: 50ms;
}

.benefit-card-enhanced:nth-child(3) {
    transition-delay: 100ms;
}

.benefit-card-enhanced:nth-child(4) {
    transition-delay: 150ms;
}

.benefit-card-enhanced:nth-child(5) {
    transition-delay: 200ms;
}

.benefit-card-enhanced:nth-child(6) {
    transition-delay: 250ms;
}

@media (max-width: 768px) {
    .benefit-card-enhanced {
        padding: 28px 24px;
    }

    .benefit-card-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 16px;
    }

    .benefit-card-enhanced:hover .benefit-card-icon {
        transform: scale(1.05);
    }
}

/* ==============================================
   7. ENHANCED TRAINING BADGES
   ============================================== */
.training-badge {
    position: relative;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
}

.training-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.training-card:hover .training-badge::before {
    left: 100%;
}

.training-badge.badge-purple {
    background: var(--gradient-purple-rich);
    box-shadow: 0 3px 10px rgba(7, 26, 80, 0.25);
}

/* ==============================================
   8. ENHANCED TRAINING META BOX
   ============================================== */
.training-meta-box {
    background: linear-gradient(135deg, #fafbfc 0%, #ffffff 100%);
    border: 1px solid var(--border-gray);
    border-radius: 14px;
    padding: 28px;
    margin-top: 32px;
    margin-bottom: 24px;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.04);
}

.meta-item {
    display: contents;
}

.meta-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--oranje);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.meta-value {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--donkergrijs);
    margin-bottom: 8px;
}

/* ==============================================
   9. IMPROVED TYPOGRAPHY & SPACING
   ============================================== */

.training-intro {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--tekstgrijs);
    margin-bottom: 32px;
    margin-top: 24px;
}

.training-card-header {
    margin-bottom: 24px;
}

.training-card-header h3 {
    font-size: 1.65rem;
    line-height: 1.25;
    font-weight: 800;
    letter-spacing: -0.01em;
    margin-top: 16px;
}

/* ==============================================
   10. ENHANCED HOVER STATES & MICRO-INTERACTIONS
   ============================================== */
.cta-button {
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.cta-button:hover::before {
    width: 300px;
    height: 300px;
}

.cta-button:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 12px 24px rgba(7, 26, 80, 0.25);
}

.cta-button:active {
    transform: translateY(0) scale(0.98);
}

/* ==============================================
   11. MOBILE RESPONSIVE ENHANCEMENTS
   ============================================== */
@media (max-width: 768px) {

    .section,
    .section-grijs,
    .section-wit {
        padding: 60px 0;
    }

    .training-card-icon-header {
        width: 64px;
        height: 64px;
        margin-bottom: 24px;
    }

    .training-card-featured .training-card-icon-header {
        width: 80px;
        height: 80px;
        margin-bottom: 28px;
    }

    .training-card-header h3 {
        font-size: 1.4rem;
    }

    .training-intro {
        margin-bottom: 24px;
        margin-top: 0;
    }

    .training-benefits li {
        gap: 14px;
        margin-bottom: 20px;
        padding-bottom: 20px;
    }

    .training-featured-wrapper {
        margin-bottom: 40px;
    }
}

/* ==============================================
   12. PRINT STYLES (Professional Bonus)
   ============================================== */
@media print {

    .trust-stats-bar,
    .external-badge {
        background: white !important;
        color: black !important;
        border: 1px solid black;
    }

    .training-card,
    .benefit-card {
        page-break-inside: avoid;
        box-shadow: none !important;
        border: 1px solid #ddd;
    }
}

/* ==============================================
   13. ACCESSIBILITY ENHANCEMENTS
   ============================================== */
.training-card:focus-within,
.benefit-card:focus-within {
    outline: 3px solid var(--oranje);
    outline-offset: 4px;
}

.cta-button:focus-visible {
    outline: 3px solid var(--oranje);
    outline-offset: 4px;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .training-card:hover,
    .benefit-card:hover {
        transform: none !important;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {

    .training-card,
    .benefit-card {
        border: 2px solid currentColor;
    }

    .trust-stats-bar {
        border: 2px solid currentColor;
    }
}

/* ==============================================
   14. TEXT ALIGNMENT - PROFESSIONAL BODY TEXT LEFT-ALIGNED
   ============================================== */

/* General principle: Titles centered, body content left-aligned */

/* Card content should be left-aligned by default */
.card p,
.card-white-bg p,
.card-orange-bg p {
    text-align: left;
}

/* Detail content sections - left-aligned body text */
.detail-content p,
.detail-content ul,
.detail-content ol,
.detail-content blockquote {
    text-align: left;
}

/* Accordion content - left-aligned */
.accordion-content,
.accordion-content p,
.accordion-content ul {
    text-align: left;
}

/* SIA panels - left-aligned body text */
.sia-panel p,
.sia-panel ul {
    text-align: left;
}

/* Keep headings centered within cards */
.card h1,
.card h2,
.card h3,
.card-white-bg h1,
.card-white-bg h2,
.card-white-bg h3,
.card-orange-bg h1,
.card-orange-bg h2,
.card-orange-bg h3 {
    text-align: center;
}

/* Benefit cards - left-aligned text, centered icon and title */
.benefit-card-enhanced p {
    text-align: left;
}

.benefit-card-enhanced h3 {
    text-align: center;
}

/* Training result block - keep structure centered but text left */
.training-result-block>p {
    text-align: left;
}

/* Blockquotes (testimonials) - left-aligned */
blockquote,
.profile-quote {
    text-align: left;
}

/* Info facts in sidebar - left-aligned */
.info-fact,
.info-fact div {
    text-align: left;
}

/* SIA card subtitle - left-aligned */
.sia-subtitle {
    text-align: left;
}

/* Trainer descriptions - left-aligned */
.detail-content .card h3+p {
    text-align: left;
}

/* ==============================================
   15. PROFESSIONAL LIST STYLES (Replaces Generic Checkmarks)
   Differentiated by content type for better semantics
   ============================================== */

/* TARGET AUDIENCE LIST - Clean, inclusive design with left accent */
.target-audience-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
    text-align: left;
}

.target-audience-list li {
    position: relative;
    padding: 16px 20px 16px 24px;
    margin-bottom: 14px;
    background: linear-gradient(135deg, rgba(255, 87, 34, 0.02) 0%, rgba(255, 87, 34, 0.04) 100%);
    border-left: 4px solid var(--oranje);
    border-radius: 0 10px 10px 0;
    color: var(--tekstgrijs);
    font-size: 0.98rem;
    line-height: 1.65;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.target-audience-list li:hover {
    background: linear-gradient(135deg, rgba(255, 87, 34, 0.05) 0%, rgba(255, 87, 34, 0.08) 100%);
    border-left-width: 6px;
    padding-left: 22px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
    transform: translateX(4px);
}

/* Clean design without dot - just the accent bar for minimal, professional look */

/* METHODOLOGY/WORKING METHOD LIST - Minimalistic dots */
.methodology-list {
    list-style: none;
    padding: 0;
    margin: 16px 0 0 4px;
    position: relative;
    text-align: left;
}

/* Subtle connecting line */
.methodology-list::before {
    content: '';
    position: absolute;
    left: 7px;
    top: 10px;
    bottom: 10px;
    width: 1px;
    background: linear-gradient(180deg, rgba(255, 87, 34, 0.2) 0%, rgba(255, 87, 34, 0.08) 100%);
}

.methodology-list li {
    position: relative;
    padding: 6px 16px 6px 28px;
    margin-bottom: 8px;
    color: var(--tekstgrijs);
    font-size: 0.96rem;
    line-height: 1.65;
    transition: all 0.3s ease;
    border-left: 2px solid transparent;
}

/* Small minimalistic dots */
.methodology-list li::before {
    content: '';
    position: absolute;
    left: 5px;
    top: 13px;
    width: 6px;
    height: 6px;
    background: var(--oranje);
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 1;
}

.methodology-list li:hover {
    padding-left: 32px;
    border-left-color: rgba(255, 87, 34, 0.15);
    color: var(--donkergrijs);
}

.methodology-list li:hover::before {
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}

/* PROGRAM/CURRICULUM LIST - Minimalistic dots (matches methodology) */
.program-list {
    list-style: none;
    padding: 0;
    margin: 16px 0 0 4px;
    position: relative;
    text-align: left;
}

/* Subtle connecting line */
.program-list::before {
    content: '';
    position: absolute;
    left: 7px;
    top: 10px;
    bottom: 10px;
    width: 1px;
    background: linear-gradient(180deg, rgba(255, 87, 34, 0.2) 0%, rgba(255, 87, 34, 0.08) 100%);
}

.program-list li {
    position: relative;
    padding: 6px 16px 6px 28px;
    margin-bottom: 8px;
    color: var(--tekstgrijs);
    font-size: 0.96rem;
    line-height: 1.65;
    transition: all 0.3s ease;
    border-left: 2px solid transparent;
}

/* Small minimalistic dots */
.program-list li::before {
    content: '';
    position: absolute;
    left: 5px;
    top: 13px;
    width: 6px;
    height: 6px;
    background: var(--oranje);
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 1;
}

.program-list li:hover {
    padding-left: 32px;
    border-left-color: rgba(255, 87, 34, 0.15);
    color: var(--donkergrijs);
}

.program-list li:hover::before {
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
    .target-audience-list li {
        padding: 14px 16px 14px 20px;
        font-size: 0.95rem;
    }

    .target-audience-list li:hover {
        transform: translateX(2px);
        border-left-width: 4px;
        padding-left: 20px;
    }

    .methodology-list li {
        padding: 6px 16px 6px 28px;
        font-size: 0.95rem;
    }

    .methodology-list li::before {
        width: 6px;
        height: 6px;
        left: 5px;
    }

    .methodology-list li:hover {
        padding-left: 30px;
    }

    .program-list li {
        padding: 6px 16px 6px 28px;
        font-size: 0.95rem;
    }

    .program-list::before {
        left: 7px;
    }

    .program-list li::before {
        left: 5px;
        width: 6px;
        height: 6px;
    }

    .program-list li:hover {
        padding-left: 30px;
    }
}

/* ACCESSIBILITY - Ensure good contrast and focus states */
.target-audience-list li:focus-within,
.methodology-list li:focus-within,
.program-list li:focus-within {
    outline: 2px solid var(--oranje);
    outline-offset: 2px;
}

/* PRINT STYLES */
@media print {

    .target-audience-list li,
    .methodology-list li,
    .program-list li {
        page-break-inside: avoid;
        box-shadow: none !important;
        border: 1px solid #ddd !important;
    }

    .target-audience-list li::before,
    .methodology-list li::before,
    .program-list li::before {
        print-color-adjust: exact;
        -webkit-print-color-adjust: exact;
    }
}

/* ==============================================
   16. PROCESS FLOW SECTION (METHODEN PAGE)
   Professional diagram presentation with explanatory content
   ============================================== */

.process-flow-section {
    background: linear-gradient(180deg, #ffffff 0%, #fafbfc 50%, #ffffff 100%);
    padding: 80px 0 90px;
    position: relative;
    overflow: hidden;
}

/* Subtle background pattern */
.process-flow-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 20% 50%, rgba(7, 26, 80, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 87, 34, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.process-flow-container {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
}

/* Header Section */
.process-flow-header {
    text-align: center;
    margin-bottom: 48px;
}

.process-flow-header h2 {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.process-flow-intro {
    font-size: 1.15rem;
    line-height: 1.75;
    color: var(--tekstgrijs);
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

/* Image Wrapper - Professional presentation with subtle shadow */
.process-flow-image-wrapper {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 251, 252, 0.95) 100%);
    border-radius: 20px;
    padding: 40px;
    margin: 0 auto 56px;
    box-shadow: var(--shadow-16dp);
    border: 1px solid rgba(7, 26, 80, 0.08);
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Subtle top accent bar */
.process-flow-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: var(--gradient-mixed);
    border-radius: 0 0 4px 4px;
}

.process-flow-image-wrapper:hover {
    box-shadow: var(--shadow-24dp);
    transform: translateY(-4px);
}

.process-flow-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    /* Ensure image is crisp */
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

/* Explanation Section - Two column grid */
.process-flow-explanation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 0;
}

/* Single card centered layout - match image width */
.explanation-card-single {
    grid-column: 1 / -1;
    max-width: 100%;
    margin: 0 auto;
}

.explanation-card {
    background: white;
    border-radius: 16px;
    padding: 36px 32px;
    box-shadow: var(--shadow-8dp);
    border: 1px solid rgba(7, 26, 80, 0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Scroll-triggered reveal animation for explanation card */
.explanation-card.scroll-reveal {
    opacity: 0;
    transform: translateY(-150px);
    /* Start hidden under the image */
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.8s cubic-bezier(0.4, 0, 0.2, 1),
        box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.explanation-card.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
    /* Slide down to normal position */
}

.explanation-card:hover {
    box-shadow: var(--shadow-16dp);
    transform: translateY(-2px);
    border-color: rgba(7, 26, 80, 0.12);
}

/* Override hover transform when card is still animating in */
.explanation-card.scroll-reveal:not(.revealed):hover {
    transform: translateY(-150px);
}

.explanation-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 20px;
    text-align: left;
}

.explanation-card p {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--tekstgrijs);
    margin-bottom: 18px;
    text-align: left;
}

.explanation-card p:last-child {
    margin-bottom: 0;
}

.explanation-card strong {
    color: var(--donkergrijs);
    font-weight: 600;
}

/* Highlight card - special styling for "Waarom deze aanpak werkt" */
.explanation-highlight {
    background: linear-gradient(135deg, rgba(7, 26, 80, 0.02) 0%, rgba(255, 255, 255, 1) 100%);
    border-left: 4px solid var(--paars);
}

.explanation-highlight:hover {
    border-left-color: var(--oranje);
}

/* Responsive Design */
@media (max-width: 992px) {
    .process-flow-section {
        padding: 60px 0 70px;
    }

    .process-flow-header h2 {
        font-size: 1.9rem;
    }

    .process-flow-intro {
        font-size: 1.08rem;
    }

    .process-flow-explanation {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .process-flow-image-wrapper {
        padding: 32px;
    }
}

@media (max-width: 768px) {
    .process-flow-section {
        padding: 50px 0 60px;
    }

    .process-flow-header {
        margin-bottom: 36px;
    }

    .process-flow-header h2 {
        font-size: 1.65rem;
        line-height: 1.3;
    }

    .process-flow-intro {
        font-size: 1rem;
        line-height: 1.7;
    }

    .process-flow-image-wrapper {
        padding: 24px;
        margin-bottom: 40px;
        border-radius: 16px;
    }

    .process-flow-image-wrapper::before {
        width: 80px;
        height: 3px;
    }

    .process-flow-image-wrapper:hover {
        transform: none;
    }

    .explanation-card {
        padding: 28px 24px;
    }

    .explanation-card h3 {
        font-size: 1.3rem;
        margin-bottom: 16px;
    }

    .explanation-card p {
        font-size: 0.98rem;
        line-height: 1.7;
        margin-bottom: 16px;
    }

    /* Reduce animation distance on mobile for better UX */
    .explanation-card.scroll-reveal {
        transform: translateY(-100px);
        /* Slide down from under image on mobile */
    }
}

@media (max-width: 480px) {
    .process-flow-section {
        padding: 40px 0 50px;
    }

    .process-flow-header h2 {
        font-size: 1.45rem;
    }

    .process-flow-intro {
        font-size: 0.96rem;
    }

    .process-flow-image-wrapper {
        padding: 20px;
    }

    .explanation-card {
        padding: 24px 20px;
    }
}

/* Accessibility */
.process-flow-image-wrapper:focus-within {
    outline: 3px solid var(--oranje);
    outline-offset: 4px;
}

/* Respect reduced motion preference for scroll reveal animation */
@media (prefers-reduced-motion: reduce) {
    .explanation-card.scroll-reveal {
        opacity: 0.3;
        transform: none;
        transition: opacity 0.3s ease;
    }

    .explanation-card.scroll-reveal.revealed {
        opacity: 1;
        transform: none;
    }
}

/* Print Styles */
@media print {
    .process-flow-section {
        background: white !important;
        padding: 40px 0;
    }

    .process-flow-section::before {
        display: none;
    }

    .process-flow-image-wrapper {
        box-shadow: none !important;
        border: 2px solid #ddd;
        page-break-inside: avoid;
    }

    .explanation-card {
        box-shadow: none !important;
        border: 1px solid #ddd;
        page-break-inside: avoid;
    }

    .process-flow-explanation {
        gap: 20px;
    }
}

/* ==============================================
   17. TRAININGEN PAGE - CENTERED TEXT LAYOUT
   ============================================== */

/* Center all text content on trainingen.html page */
body .hero-content h1,
body .hero-content p {
    text-align: center;
}

/* Center training card text elements */
body .training-card h3,
body .training-card p,
body .training-intro,
body .training-card-header h3 {
    text-align: center;
}

/* Center training benefits list */
body .training-benefits {
    text-align: center;
}

body .training-benefits li {
    text-align: center;
}

body .training-benefits .benefit-content {
    text-align: center;
}

body .training-benefits .benefit-content p {
    text-align: center;
}

/* Center meta box content */
body .training-meta-box,
body .meta-item,
body .meta-label,
body .meta-value {
    text-align: center;
}

/* Center trust stats */
body .trust-stat {
    text-align: center;
}

body .trust-stat span {
    text-align: center;
}

/* Ensure icons/logos stay as they are (flex centering, not text-align) */
body .training-card-icon-header,
body .benefit-icon,
body .trust-icon,
body .nav-logo {
    text-align: initial;
}

/* Center section headings */
body .section-heading-center-orange {
    text-align: center;
}

/* Incompany section already centered, but ensure consistency */
body .incompany-content,
body .incompany-content h2,
body .incompany-content p,
body .incompany-intro,
body .incompany-benefit h4,
body .incompany-benefit p {
    text-align: center;
}