/* Homepage Service Icons Updates to match Diensten page */

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

/* Service Card */
.service-card {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
    padding: 25px;
    display: flex;
    flex-direction: column;
}

/* Service Card Content Alignment */
.service-card .service-icon {
    flex-shrink: 0;
}


.service-card .service-preview {
    flex-grow: 1;
    display: flex;
    align-items: flex-start;
    min-height: 5rem;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background-color: var(--accent-dark);
    border-radius: 4px 0 0 4px;
}

/* Service Icon */
.service-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: white;
    color: var(--accent-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Service Title */
.service-card h3 {
    margin-top: 0;
    margin-bottom: 15px;
    color: var(--accent-dark);
    font-size: 1.2rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
    min-height: 3rem;
    display: flex;
    align-items: flex-start;
}

.service-card h3:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 2px;
    background-color: var(--accent-dark);
    border-radius: 2px;
}

/* Service List Preview */
.service-list-preview {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-list-preview li {
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
}

.list-icon {
    color: var(--accent-dark);
    margin-right: 10px;
    font-size: 0.9rem;
    margin-top: 0.3rem;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 576px) {
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}