/* ================================== */
/* GAYA UNTUK HALAMAN PROGRAM         */
/* ================================== */

/* CATATAN: Aturan .page-banner sudah dipindahkan ke style.css */

/* TEKS OUTRO */
.layanan-outro {
    text-align: center;
    padding: 60px 0;
    background-color: #f8f9fa;
}
.layanan-outro p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
}

/* BAGIAN UTAMA YANG DIRAPIKAN */
.layanan-main {
    padding: 60px 0;
}

.layanan-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

/* DESAIN KARTU PROGRAM */
.layanan-card {
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.layanan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 51, 102, 0.1);
    border-color: var(--accent-color);
}
.program-focus {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.focus-title {
    text-align: center;
    margin-bottom: 50px;
}

.focus-title h2 {
    font-size: 2.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.title-accent-line {
    width: 80px;
    height: 4px;
    background-color: var(--accent-color, #0056b3);
    margin: 0 auto;
    border-radius: 2px;
}

.focus-content {
    max-width: 850px;
    margin: 0 auto;
}

.focus-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    text-align: justify;
    margin-bottom: 1.5em;
}

.focus-content p:last-child {
    margin-bottom: 0;
}
.program-list-section {
    padding: 80px 0;
    width: 100%;
}

.program-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    gap: 40px;
    align-items: center;
}

.program-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.program-column ul li {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    line-height: 1.5;
    padding: 10px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.program-column ul li i {
    color: var(--accent-color, #0056b3);
    margin-right: 15px;
    font-size: 1.2rem;
}

.program-column-center img {
    width: 100%;
    aspect-ratio: 16 / 9; /* <-- TAMBAHKAN BARIS INI */
    object-fit: cover;    /* <-- Properti ini penting untuk menjaga gambar tidak penyok */
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    max-height: 450px;
    transition: opacity 0.4s ease;
}

.program-column ul li:hover {
    background-color: #e9ecef;
    transform: translateX(5px);
}

.program-column ul li.active {
    background-color: var(--accent-color, #0056b3);
    color: white;
    font-weight: 600;
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0, 86, 179, 0.25);
}

.program-column ul li.active i {
    color: white;
}

/* ======== GAYA BARU UNTUK LAYANAN HEADER & INTRO ======== */
.layanan-header {
    padding-top: 80px;
    text-align: center;
}

.layanan-header h2 {
    font-size: 2.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.layanan-intro {
    padding-top: 20px;
    text-align: center;
}

.layanan-intro p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
}
/* ========================================================= */


/* PENYESUAIAN RESPONSIVE */
@media (max-width: 992px) {
    .program-grid {
        grid-template-columns: 1fr 1fr;
    }
    .program-column-center {
        grid-column: 1 / -1;
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .program-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .program-column-center {
        margin-bottom: 40px;
    }
    .program-column-right ul {
        margin-top: 20px;
    }
}