/* Waarom Kassem Section - Styling */
.section-waarom {
    padding: 80px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.section-waarom .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-waarom .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-waarom .section-badge {
    display: inline-block;
    background: #e3f2fd;
    color: #008abc;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.section-waarom .section-title {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 15px 0;
    line-height: 1.2;
}

.section-waarom .section-subtitle {
    font-size: 18px;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.waarom-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.waarom-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 35px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e5e5;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.waarom-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #008abc 0%, #00a8e8 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.waarom-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 138, 188, 0.15);
    border-color: #008abc;
}

.waarom-card:hover::before {
    transform: scaleX(1);
}

.waarom-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #008abc 0%, #00a8e8 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 138, 188, 0.2);
}

.waarom-card:hover .waarom-icon {
    transform: scale(1.05) rotate(-5deg);
    box-shadow: 0 6px 20px rgba(0, 138, 188, 0.3);
}

.waarom-icon svg {
    width: 36px;
    height: 36px;
    color: #ffffff;
}

.waarom-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 15px 0;
    line-height: 1.4;
    min-height: 56px;
}

.waarom-card p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin: 0;
}

/* Speciale highlight voor bepaalde cards */
.waarom-card:nth-child(2) .waarom-icon {
    background: linear-gradient(135deg, #ffc107 0%, #ffb300 100%);
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.2);
}

.waarom-card:nth-child(2):hover .waarom-icon {
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.3);
}

.waarom-card:nth-child(2)::before {
    background: linear-gradient(90deg, #ffc107 0%, #ffb300 100%);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .waarom-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 968px) {
    .section-waarom {
        padding: 60px 0;
    }
    
    .section-waarom .section-title {
        font-size: 34px;
    }
    
    .section-waarom .section-subtitle {
        font-size: 16px;
    }
    
    .waarom-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .waarom-card h3 {
        min-height: auto;
    }
}

@media (max-width: 640px) {
    .section-waarom {
        padding: 50px 0;
    }
    
    .section-waarom .section-title {
        font-size: 28px;
    }
    
    .waarom-card {
        padding: 30px 25px;
    }
    
    .waarom-icon {
        width: 60px;
        height: 60px;
    }
    
    .waarom-icon svg {
        width: 32px;
        height: 32px;
    }
    
    .waarom-card h3 {
        font-size: 18px;
    }
    
    .waarom-card p {
        font-size: 15px;
    }
}
