/* css/components/Home/Services.css */
.home-services-section {
    padding: 4rem 0;
    background-color: var(--koeleman-background);
}
@media (min-width: 768px) {
    .home-services-section {
        padding: 6rem 0;
    }
}
.home-services-section .section-header {
    text-align: center;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}
.home-services-section .section-title {
    font-size: 2.25rem;
    color: var(--koeleman-blue);
}
@media (min-width: 768px) { .home-services-section .section-title { font-size: 2.5rem; } }

.home-services-section .section-subtitle {
    margin-top: 1rem;
    font-size: 1.125rem;
    color: var(--text-primary);
}
.services-grid {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}
@media (min-width: 768px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

.service-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.service-card {
    background-color: var(--koeleman-white);
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 1px 3px 0 rgba(0,0,0,0.1), 0 1px 2px -1px rgba(0,0,0,0.1);
    transition: box-shadow 0.3s ease-in-out;
    height: 100%;
    display: flex; /* Toegevoegd voor interne flexbox layout */
    flex-direction: column; /* Stapelt elementen verticaal */
}
.service-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
}
.service-title {
    font-size: 1.5rem;
    color: var(--koeleman-blue);
}
.service-description {
    margin-top: 0.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    flex-grow: 1; /* Laat beschrijving groeien om lijst naar beneden te duwen */
}
.service-list {
    list-style: none;
    padding-left: 0;
    margin: 0; /* Verwijder standaard browser marge */
    /* --- Zorg dat de lijst zichtbaar is --- */
    opacity: 1;
    visibility: visible;
    display: block; /* Zorg ervoor dat het block-level is */
}
.service-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    /* --- Zorg dat de list items zichtbaar zijn --- */
    color: var(--text-primary); /* Gebruik standaard tekstkleur */
    font-size: 0.875rem; /* Kleinere font-size */
    opacity: 1;
    visibility: visible;
    display: block; /* Zorg ervoor dat het block-level is */
}
.service-list li::before {
    content: '»';
    position: absolute;
    left: 0;
    color: var(--koeleman-gold);
    font-weight: bold;
    /* --- Zorg dat het pseudo-element zichtbaar is --- */
    opacity: 1;
    visibility: visible;
    display: inline; /* Zorg ervoor dat het inline is */
}
.service-card-highlight-wrapper {
    grid-column: span 1;
}
@media (min-width: 768px) {
    .service-card-highlight-wrapper {
        grid-column: span 2 / span 2;
    }
}
@media (min-width: 1024px) {
    .service-card-highlight-wrapper {
        grid-column: span 3 / span 3;
    }
}

.service-card-highlight {
    background-color: var(--koeleman-blue);
    color: var(--koeleman-white);
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 1px 3px 0 rgba(0,0,0,0.1), 0 1px 2px -1px rgba(0,0,0,0.1);
    transition: box-shadow 0.3s ease-in-out;
    height: 100%;
}
.service-card-highlight:hover {
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
}
.service-title-highlight {
    font-size: 1.5rem;
    color: var(--koeleman-white);
}
.service-description-highlight {
    margin-top: 0.5rem;
    margin-bottom: 1rem;
    color: #d1d5db; /* gray-300 */
}
.service-link-highlight {
    display: inline-block;
    margin-top: 0.5rem;
    font-weight: 700;
    color: var(--koeleman-white);
    border-bottom: 1px solid var(--koeleman-gold);
    text-decoration: none;
    transition: color 0.2s ease-in-out;
}
.service-link-highlight:hover {
    color: var(--koeleman-gold);
}
