.service-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header p {
    margin: 0;
    color: #0D4884;
    font-size: 14px;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
}

/* Garis kiri-kanan teks */
.section-header p::before,
.section-header p::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 50px;
    height: 1px;
    background-color: #0D4884;
}

.section-header p::before {
    left: -60px;
}

.section-header p::after {
    right: -60px;
}

.section-header h2 {
    font-size: 36px;
    color: #0D4884;
    margin-top: 5px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 30px;
}

.service-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.service-card img {
    width: 100%;
    height: 380px;
    object-fit: cover;
}

.service-card-content {
    background-color: #0D4884;
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-card-content h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 500;
}

.arrow-link {
    color: white;
    font-size: 20px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.arrow-link:hover {
    transform: translateX(5px);
}

.details-list {
    display: grid;
    grid-template-columns: repeat(2, auto); /* 2 kolom */
    justify-content: center; 
    column-gap: 15px;
    row-gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 350px; /* supaya tetap rapi */
}

.details-list li {
    font-size: 15px;
    font-weight: 400;
    white-space: nowrap;
    color: #333;
    display: flex;
    align-items: center;
    gap: 6px;
}

.details-list li::after {
    content: "|";
    color: #555;
}

/* Hilangkan garis untuk item 2 dan 4 (akhir tiap baris) */
.details-list li:nth-child(2)::after,
.details-list li:nth-child(4)::after {
    content: "";
}





/* ================================ */
/* ======== RESPONSIVE CSS ======== */
/* ================================ */
@media (max-width: 992px) {
    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .service-grid {
        grid-template-columns: 1fr;
    }

    /* Supaya tombol tetap bagus di mobile */
    .menu-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
}
