/* SERVICE CAROUSEL */

.service-carousel .service-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 360px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.service-image,
.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-text {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.85),
        rgba(0,0,0,0.3)
    );
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    text-align: center;
}

.service-text h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

.service-text p {
    font-size: 15px;
    margin-bottom: 15px;
}

/* AFSPRAAK SECTIE */

.bg-appointment {
    background: url('/frontend/img/appointment-bg.jpg') center/cover no-repeat;
}

.appointment-overlay {
    background: rgba(0,0,0,0.65);
    border-radius: 20px;
    padding: 50px 30px;
}