/* --- Import Font Profesional dari Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* --- Palet Warna & Variabel Desain yang Disempurnakan --- */
:root {
    --bg-color: #FDFCF9; /* Warna latar sedikit off-white agar kartu lebih menonjol */
    --card-bg-color: #FFFFFF;
    --text-color: #3D405B; /* Warna teks lebih lembut (biru tua keabu-abuan) */
    --primary-accent-color: #8D826A; /* Aksen warna beige yang lebih kalem */
    --primary-gradient: linear-gradient(90deg, #A0937D 0%, #8D826A 100%);
    --hover-accent-color: #79715B;
    --border-color: #EFEAE2;
    --shadow-color: rgba(0, 0, 0, 0.08);
    --transition-speed: 0.3s;
}

/* --- Reset Global & Style Dasar --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.7;
}
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Animasi & Efek Transisi --- */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.animated-section {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

/* --- Header & Navigasi --- */
.header {
    background: var(--primary-gradient);
    padding: 1rem 0;
    box-shadow: 0 4px 15px var(--shadow-color);
    position: sticky;
    top: 0;
    z-index: 100;
    width: 100%;
}
.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo-area {
    display: flex;
    align-items: center;
    margin-left: -100px;
    margin-right: 100px;
}
.logo-area img {
    height: 45px;
    margin-right: 20px;
    filter: drop-shadow(0 2px 3px rgba(0,0,0,0.2));
    transform: scale(2.2);
}
.site-title {
    font-size: 1.6em;
    font-weight: 600;
    color: white;
}

.nav-menu ul {
    list-style: none;
    display: flex;
    flex-direction: row;
    margin-left: auto; /* Ini yang mendorong menu ke kanan */
}
.nav-menu li { margin-left: 25px; }
.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding-bottom: 5px;
    position: relative;
    transition: color var(--transition-speed) ease;
}
.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: white;
    transition: width var(--transition-speed) ease-out;
}

.nav-menu a:hover { color: #f0eada; }
.nav-menu a:hover::after { width: 100%; }

.nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: white;
    transition: width var(--transition-speed) ease-out;
}
.nav a:hover { color: #f0eada; }
.nav a:hover::after { width: 100%; }

/* --- Banner --- */
.banner-container {
    padding: 25px 0;
    animation: fadeIn 1s ease-out;
}
.banner-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 25px var(--shadow-color);
}

/* --- Subjudul dengan Ikon Berlingkaran --- */
.subheadings-section {
    display: flex;
    justify-content: space-around;
    text-align: center;
    padding: 20px 0;
    margin: 0 auto 30px auto;
    flex-wrap: wrap;
    gap: 20px;
}
.subheading-item .icon-wrapper {
    background-color: var(--card-bg-color);
    border: 2px solid var(--border-color);
    border-radius: 50%;
    width: 70px;
    height: 70px;
    margin: 0 auto 15px auto;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2em;
    color: var(--primary-accent-color);
    transition: all var(--transition-speed) ease;
}
.subheading-item:hover .icon-wrapper {
    background-color: var(--primary-accent-color);
    color: white;
    transform: scale(1.1);
}
.subheading-item h3 {
    font-size: 1.2em;
    font-weight: 600;
}

/* --- Kartu Tautan Utama --- */
.link-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}
.link-card {
    display: block;
    background-color: var(--card-bg-color);
    padding: 30px;
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-color);
    box-shadow: 0 5px 15px var(--shadow-color);
    border: 1px solid var(--border-color);
    transition: all var(--transition-speed) ease;
}
.link-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px var(--shadow-color);
    border-color: var(--primary-accent-color);
}
.link-card i {
    font-size: 2.5em;
    color: var(--primary-accent-color);
    margin-bottom: 15px;
}
.link-card h3 {
    font-size: 1.5em;
    font-weight: 600;
}

/* --- Konten Tambahan --- */
.additional-content {
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin-top: 50px;
}

/* --- Judul Seksi --- */
.section-title {
    font-size: 2.2em;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-gradient);
    border-radius: 2px;
}

/* --- Alur Permohonan (dengan Garis Penghubung) --- */
.process-steps {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    position: relative;
}
.step-item {
    background-color: var(--card-bg-color);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    flex-basis: 180px;
    flex-grow: 1;
    border: 1px solid var(--border-color);
    box-shadow: 0 5px 15px var(--shadow-color);
    position: relative;
    transition: all var(--transition-speed) ease;
}
.step-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-accent-color);
}
.step-item .step-icon {
    font-size: 2.5em;
    color: var(--primary-accent-color);
    margin-bottom: 15px;
}
.step-item h3 {
    font-size: 1.1em;
    font-weight: 600;
    margin-bottom: 10px;
}
.step-item p {
    font-size: 0.9em;
    line-height: 1.6;
}
@media (min-width: 768px) {
    .step-item:not(:last-child)::after { /* Garis penghubung untuk desktop */
        content: '';
        position: absolute;
        top: 35%;
        right: -30px;
        width: 30px;
        height: 2px;
        background-image: linear-gradient(to right, #ccc 50%, transparent 50%);
        background-size: 10px 2px;
        background-repeat: repeat-x;
        z-index: -1;
    }
}


/* --- FAQ --- */
.faq-section { max-width: 800px; margin: 0 auto; }
.faq-item {
    background: var(--card-bg-color);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    margin-bottom: 10px;
    box-shadow: 0 5px 15px var(--shadow-color);
    transition: all var(--transition-speed) ease;
}
.faq-item:hover {
    border-color: var(--primary-accent-color);
}
.faq-item summary {
    font-size: 1.1em;
    font-weight: 600;
    padding: 20px;
    cursor: pointer;
    list-style: none;
    position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+';
    font-size: 1.6em;
    font-weight: 300;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%) rotate(0deg);
    transition: transform var(--transition-speed) ease;
}
.faq-item[open] { border-color: var(--primary-accent-color); }
.faq-item[open] summary { color: var(--primary-accent-color); }
.faq-item[open] summary::after {
    transform: translateY(-50%) rotate(45deg);
}
.faq-item p {
    padding: 0 20px 20px 20px;
    line-height: 1.8;
    color: #5c6181;
}

/* --- Akses Cepat --- */
.quick-link-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    background-color: var(--card-bg-color);
    color: var(--text-color);
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: 500;
    transition: all var(--transition-speed) ease;
    box-shadow: 0 5px 15px var(--shadow-color);
}
.quick-link-btn:hover {
    background: var(--primary-gradient);
    color: white;
    transform: scale(1.03);
    box-shadow: 0 8px 20px var(--shadow-color);
}
.quick-link-btn i { font-size: 1.2em; width: 20px; text-align: center; }

/* --- Seksi Anti Korupsi --- */
.anti-corruption-section {
    background-color: var(--card-bg-color);
    border-top: 5px solid #c0392b;
    padding: 40px 20px;
    text-align: center;
    margin: 60px auto 0 auto;
    border-radius: 12px;
    box-shadow: 0 5px 20px var(--shadow-color);
}
.anti-corruption-section h2 {
    font-size: 2em;
    font-weight: 700;
    color: #c0392b;
    margin-bottom: 10px;
}
.anti-corruption-section p { font-size: 1.1em; max-width: 700px; margin: 0 auto; }

/* --- Footer --- */
.footer {
    background: var(--text-color);
    color: #e0e0e0;
    text-align: center;
    padding: 25px 0;
    margin-top: 60px;
}
.footer p { font-weight: 300; }

/* --- Penyesuaian Responsif --- */
@media (max-width: 768px) {
    .site-title { font-size: 1.3em; }
    .nav { width: 100%; margin-top: 15px; }
    .nav ul { justify-content: space-around; }
    .nav li { margin: 0; }
}
@media (max-width: 600px) {
    .header .container { flex-direction: row; }
    .nav ul { flex-direction: column; align-items: center; }
    .nav li { margin: 10px 0; }
}

/* --- Penyesuaian Responsif & Hamburger Menu --- */

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%; /* Sembunyikan menu di luar layar */
        top: 0;
        flex-direction: column;
        background-color: var(--text-color);
        width: 70%;
        height: 100vh;
        text-align: center;
        transition: left 0.4s ease-out;
        box-shadow: 5px 0 15px rgba(0,0,0,0.2);
        z-index: 101; /* Pastikan di atas header */
    }

    .nav-menu.active {
        left: 0; /* Tampilkan menu saat aktif */
    }

    .nav-menu ul {
        flex-direction: column;
        padding-top: 5rem;
    }

    .nav-menu li {
        margin: 1.5rem 0;
    }

    .nav-menu a {
        font-size: 1.2rem;
    }

    .hamburger {
        display: block;
        cursor: pointer;
        z-index: 102; /* Pastikan di atas segalanya */
    }

    .bar {
        display: block;
        width: 25px;
        height: 3px;
        margin: 5px auto;
        -webkit-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
        background-color: white;
    }

    /* Animasi hamburger menjadi 'X' */
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

     /* Sembunyikan garis penghubung alur proses di mobile */
    .step-item:not(:last-child)::after {
        display: none;
    }
}

/* ====================================================== */
/* ==   STYLE UNTUK HALAMAN INOVASI PELAYANAN   == */
/* ====================================================== */

/* Hero Section (Pengganti Banner) */
.page-hero {
    background: var(--bg-color);
    text-align: center;
    padding: 60px 20px;
}

.page-hero-title {
    font-size: 2.8em;
    font-weight: 700;
    color: var(--text-color);
    line-height: 1.2;
}

.page-hero-subtitle {
    font-size: 1.1em;
    max-width: 700px;
    margin: 15px auto 0 auto;
    color: #5c6181;
}

/* Kontainer untuk Fitur Inovasi */
.feature-container {
    padding: 40px 20px;
}

.feature-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 80px;
}

.feature-item.reverse {
    direction: rtl; /* Trik untuk membalik urutan kolom */
}

.feature-item.reverse > * {
    direction: ltr; /* Mengembalikan arah teks normal untuk konten di dalamnya */
}

.feature-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature-image img:hover {
    transform: scale(1.03);
}

.feature-icon {
    font-size: 2em;
    color: var(--primary-accent-color);
    margin-bottom: 15px;
    display: inline-block;
}

.feature-text h3 {
    font-size: 2em;
    font-weight: 600;
    margin-bottom: 15px;
}

.feature-text p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.feature-text ul {
    list-style: none;
    padding: 0;
}

.feature-text ul li {
    margin-bottom: 10px;
    font-weight: 500;
}

.feature-text ul li i {
    color: #27ae60; /* Warna hijau untuk ikon centang */
    margin-right: 10px;
}

/* Call to Action Section */
.cta-section {
    background: var(--text-color);
    color: white;
    padding: 60px 20px;
    text-align: center;
    margin-top: 40px;
}

.cta-section h2 {
    font-size: 2.2em;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-section p {
    max-width: 600px;
    margin: 0 auto 30px auto;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1em;
    transition: all 0.3s ease;
}

.cta-btn.primary {
    background: white;
    color: var(--text-color);
    background: #8D826A;
}
.cta-btn.primary:hover {
    background: #f0f0f0;
    transform: translateY(-3px);
}

.cta-btn.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}
.cta-btn.secondary:hover {
    background: white;
    color: var(--text-color);
    transform: translateY(-3px);
}


/* Penyesuaian Responsif untuk Halaman Inovasi */
@media (max-width: 768px) {
    .page-hero-title {
        font-size: 2.2em;
    }
    
    .feature-item {
        grid-template-columns: 1fr; /* Ubah jadi 1 kolom di mobile */
        gap: 30px;
        margin-bottom: 60px;
    }
    .feature-item.reverse {
        direction: ltr; /* Kembalikan ke normal di mobile */
    }
    .feature-text {
        text-align: center;
    }
    .feature-text ul {
        display: inline-block;
        text-align: left;
    }
}

/* Sedikit Penyesuaian pada Animasi Scroll */
.animated-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.animated-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ====================================================== */
/* ==   STYLE UNTUK HALAMAN PROGRAM SOSIALISASI   == */
/* ====================================================== */

/* Misi & Tujuan Section */
.mission-section {
    padding: 60px 20px;
    background-color: var(--card-bg-color);
}
.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
    text-align: center;
}
.mission-item i {
    font-size: 3em;
    color: var(--primary-accent-color);
    margin-bottom: 20px;
}
.mission-item h3 {
    font-size: 1.5em;
    font-weight: 600;
    margin-bottom: 10px;
}

/* Galeri Program Section */
.program-showcase {
    padding: 80px 20px;
}
.program-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.program-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end; /* Mendorong konten ke bawah */
    min-height: 400px;
    padding: 25px;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    color: white;
    background-size: cover;
    background-position: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}
/* Efek Gradien Gelap di atas Gambar */
.program-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.85) 100%);
    transition: background 0.4s ease;
}
.program-card:hover::before {
    background: linear-gradient(180deg, rgba(0,0,0,0.2) 20%, rgba(0,0,0,0.9) 100%);
}
.program-card .card-content {
    position: relative; /* Agar berada di atas pseudo-element ::before */
    z-index: 1;
    transform: translateY(10px);
    transition: transform 0.4s ease;
}
.program-card:hover .card-content {
    transform: translateY(0);
}
.program-card h3 {
    font-size: 1.8em;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 5px;
}
.program-card p {
    font-size: 1em;
    font-weight: 300;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.4s ease;
}
.program-card:hover p {
    opacity: 0.9;
    max-height: 100px; /* Sesuaikan jika perlu */
}

/* Ajakan Kolaborasi Section */
.collaboration-cta {
    background-color: var(--bg-color);
    padding: 80px 20px;
    text-align: center;
    border-top: 1px solid var(--border-color);
}
.collaboration-cta i {
    font-size: 3.5em;
    color: var(--primary-accent-color);
    margin-bottom: 25px;
}
.collaboration-cta h2 {
    font-size: 2.2em;
    font-weight: 700;
    margin-bottom: 15px;
}
.collaboration-cta p {
    max-width: 600px;
    margin: 0 auto 30px auto;
}

/* ====================================================== */
/* == STYLE UNTUK HALAMAN KONTAK (DESAIN BARU TANPA PETA) == */
/* ====================================================== */

.contact-main-visual {
    padding: 80px 20px;
}

.contact-grid-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.contact-info-detailed h3 {
    font-size: 2.2em;
    font-weight: 600;
    margin-bottom: 10px;
}
.contact-info-detailed p {
    font-size: 1.1em;
    color: #5c6181;
    margin-bottom: 40px;
}

.info-card-visual {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
}
.info-card-visual i {
    font-size: 1.5em;
    color: var(--primary-accent-color);
    margin-top: 8px;
    width: 30px;
    text-align: center;
}
.info-card-visual h4 {
    font-size: 1.3em;
    font-weight: 600;
    margin-bottom: 5px;
}
.info-card-visual p {
    font-size: 1em;
    line-height: 1.7;
    margin: 0;
    color: var(--text-color);
}
.info-card-visual a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}
.info-card-visual a:hover {
    color: var(--primary-accent-color);
}

.contact-image-wrapper img {
    width: 100%;
    height: 100%;
    max-height: 500px; /* Batas tinggi maks gambar */
    object-fit: cover; /* Sangat penting agar gambar tidak penyok */
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

/* Section Formulir Terpisah */
.form-section {
    background-color: var(--card-bg-color);
    padding: 80px 20px;
}
.form-container {
    max-width: 800px; /* Batasi lebar form agar tidak terlalu panjang */
    margin: 0 auto;
}
.form-header-text {
    text-align: center;
    margin-bottom: 40px;
}
.form-header-text p {
    max-width: 600px;
    margin: 15px auto 0 auto;
}

.contact-form-standalone .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.contact-form-standalone .form-group {
    margin-bottom: 20px;
}
.contact-form-standalone label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}
.contact-form-standalone input, .contact-form-standalone textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--border-color);
    background-color: white; /* Pastikan background putih */
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 1em;
    transition: all 0.3s ease;
}
.contact-form-standalone input:focus, .contact-form-standalone textarea:focus {
    outline: none;
    border-color: var(--primary-accent-color);
    box-shadow: 0 0 0 4px rgba(141, 130, 106, 0.2);
}
.contact-form-standalone button.full-width {
    width: 100%;
    margin-top: 10px;
    border: none;
    cursor: pointer;
    background: #8D826A;
}

/* Styling Media Sosial (disamakan dengan sebelumnya, pastikan ada) */
.social-media-section {
    padding: 60px 20px;
    background-color: white;
}
.social-icons {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 30px;
}
.social-icons a {
    color: var(--text-color);
    font-size: 1.8em;
    transition: all 0.3s ease;
}
.social-icons a:hover {
    color: var(--primary-accent-color);
    transform: scale(1.2) translateY(-3px);
}

/* Responsif untuk Halaman Kontak Baru */
@media (max-width: 992px) {
    .contact-grid-visual {
        grid-template-columns: 1fr; /* Jadi 1 kolom */
        gap: 50px;
    }
    .contact-image-wrapper {
        order: -1; /* Pindahkan gambar ke atas di versi mobile */
    }
}
@media (max-width: 600px) {
    .contact-form-standalone .form-row {
        grid-template-columns: 1fr; /* Form juga jadi 1 kolom di mobile */
    }
}

/* ====================================================== */
/* ==      STYLE UNTUK HALAMAN INFORMASI & BERITA      == */
/* ====================================================== */

/* Bagian Berita & Pengumuman */
.news-feed-section {
    padding: 80px 20px;
}
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-areas: 
        "featured featured featured"
        "article1 article2 article3";
    gap: 25px;
}
.news-card {
    background-color: var(--card-bg-color);
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    color: var(--text-color);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}
.news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.1);
}
.news-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.news-card .card-content {
    padding: 20px;
}
.news-card .category-tag {
    display: inline-block;
    background-color: var(--primary-accent-color);
    color: white;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.75em;
    font-weight: 600;
    margin-bottom: 15px;
}
.news-card h3 { font-size: 1.5em; line-height: 1.3; font-weight: 600; }
.news-card h4 { font-size: 1.1em; line-height: 1.4; font-weight: 600; }

/* Style untuk Berita Utama */
.featured-article {
    grid-area: featured;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 0;
}
.featured-article img {
    height: 100%;
    max-height: 350px;
    border-radius: 12px 0 0 12px;
}
.featured-article .card-content {
    padding: 30px;
}

/* Bagian Biaya Layanan */
.fees-section {
    padding: 80px 20px;
    background-color: var(--card-bg-color);
}
.section-subtitle {
    text-align: center;
    max-width: 700px;
    margin: -25px auto 40px auto;
    color: #5c6181;
}
.fees-list {
    max-width: 800px;
    margin: 0 auto;
}
.fee-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px;
    border: 1px solid var(--border-color);
    background-color: white;
    border-radius: 12px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}
.fee-item:hover {
    border-color: var(--primary-accent-color);
    transform: scale(1.02);
}
.fee-description h4 { font-size: 1.2em; font-weight: 600; }
.fee-description p { font-size: 0.9em; color: #5c6181; margin: 0; }
.fee-price {
    font-size: 1.5em;
    font-weight: 700;
    color: var(--primary-accent-color);
    white-space: nowrap;
    padding-left: 20px;
}

/* Bagian Info Duo (Publikasi & Dasar Hukum) */
.info-duo-section {
    padding: 80px 20px;
}
.info-duo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}
.downloads-section h3, .legal-basis-section h3 { font-size: 1.8em; margin-bottom: 10px; font-weight: 600;}
.downloads-section p, .legal-basis-section p { color: #5c6181; margin-bottom: 25px; }
.downloads-list, .legal-list { list-style: none; padding: 0; }
.downloads-list a {
    display: flex;
    align-items: center;
    padding: 15px;
    background-color: var(--card-bg-color);
    border-radius: 8px;
    margin-bottom: 10px;
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: all 0.3s ease;
}
.downloads-list a:hover { background-color: #e8e2d4; }
.downloads-list i { font-size: 1.2em; margin-right: 15px; color: var(--primary-accent-color); }
.downloads-list span { margin-left: auto; font-weight: 600; color: var(--primary-accent-color); }
.legal-list li { margin-bottom: 15px; }
.legal-list a { color: var(--text-color); text-decoration: none; font-weight: 500; border-bottom: 2px solid transparent; transition: all 0.3s ease;}
.legal-list a:hover { border-bottom-color: var(--primary-accent-color); }

/* Responsif untuk Halaman Informasi */
@media (max-width: 992px) {
    .news-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-areas: 
            "featured featured"
            "article1 article2"
            "article3 article3";
    }
    .featured-article {
        grid-template-columns: 1fr;
    }
    .featured-article img { border-radius: 12px 12px 0 0; }
    .info-duo-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
    .news-grid {
        grid-template-columns: 1fr;
        grid-template-areas: "featured" "article1" "article2" "article3";
    }
}

/* ====================================================== */
/* ==   STYLE UNTUK HALAMAN CEK STATUS PERMOHONAN   == */
/* ====================================================== */

.status-check-section {
    padding: 60px 20px;
}
.status-form-wrapper {
    max-width: 650px;
    margin: 0 auto;
    background: var(--card-bg-color);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
.status-form-wrapper label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 1.1em;
}
.input-group {
    display: flex;
    gap: 10px;
}
.input-group input {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 1.1em;
    transition: all 0.3s ease;
}
.input-group input:focus {
    outline: none;
    border-color: var(--primary-accent-color);
    box-shadow: 0 0 0 4px rgba(141, 130, 106, 0.2);
}
.input-group button {
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    padding: 0 25px;
    border: none;
    background: var(--primary-gradient);
    color: white;
    border-radius: 8px;
    font-size: 1em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}
.input-group button:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

/* Area Hasil & Loader */
#resultArea {
    max-width: 800px;
    margin: 40px auto 0 auto;
}
.loader-wrapper { text-align: center; }
.loader {
    width: 50px;
    height: 50px;
    border: 5px solid var(--border-color);
    border-top-color: var(--primary-accent-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 15px auto;
}
.loader-wrapper p { font-weight: 500; color: #5c6181; }
.hidden { display: none; }
@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Kartu Hasil */
.status-result-card {
    background: var(--card-bg-color);
    border-radius: 12px;
    border-left: 8px solid;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    overflow: hidden;
}
.status-result-card .result-header {
    padding: 25px;
    border-bottom: 1px solid var(--border-color);
}
.status-result-card .result-header h3 { font-size: 1.8em; margin-bottom: 5px; }
.status-result-card .result-header p { margin: 0; color: #5c6181;}
.status-result-card .result-body { padding: 25px; }
.status-result-card .result-body p { margin: 0 0 25px 0; line-height: 1.7; font-size: 1.1em;}

/* Warna Status */
.status-sukses { border-color: #27ae60; }
.status-sukses .result-header h3 { color: #27ae60; }
.status-proses { border-color: #f39c12; }
.status-proses .result-header h3 { color: #f39c12; }
.status-gagal { border-color: #c0392b; }
.status-gagal .result-header h3 { color: #c0392b; }

/* Progress Tracker */
#progressTracker {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.progress-step {
    text-align: center;
    position: relative;
    width: 20%;
}
.step-circle {
    width: 30px;
    height: 30px;
    line-height: 30px;
    border-radius: 50%;
    background-color: #e0e0e0;
    color: #9e9e9e;
    font-weight: 600;
    margin: 0 auto 10px auto;
    transition: all 0.4s ease;
}
.step-label { font-size: 0.8em; font-weight: 500; color: #757575;}
.progress-line {
    width: 100%;
    height: 4px;
    background-color: #e0e0e0;
    position: relative;
    top: 13px;
    transition: background-color 0.4s ease;
}
/* Style untuk step yang aktif/selesai */
.progress-step.active .step-circle,
.progress-step.completed .step-circle {
    background-color: var(--primary-accent-color);
    color: white;
}
.progress-step.completed + .progress-line {
    background-color: var(--primary-accent-color);
}
.progress-step.active .step-label {
    font-weight: 700;
    color: var(--text-color);
}

/* Responsif */
@media (max-width: 600px) {
    .input-group { flex-direction: column; }
    #progressTracker { display: none; } /* Sembunyikan progress tracker di mobile agar tidak berantakan */
}

/* ====================================================== */
/* ==      STYLE UNTUK HALAMAN UNDUH FORMULIR      == */
/* ====================================================== */

.form-download-section {
    padding: 60px 20px;
}

.form-category {
    margin-bottom: 60px;
}

.form-category .section-title {
    text-align: left; /* Judul dibuat rata kiri */
    font-size: 2em;
}
.form-category .section-title::after {
    left: 0; /* Garis bawah judul rata kiri */
    transform: translateX(0);
}

.form-list {
    margin-top: 30px;
}

.form-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background-color: var(--card-bg-color);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
}

.form-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    border-color: var(--primary-accent-color);
}

.form-icon i {
    font-size: 3em;
    color: #e74c3c; /* Warna ikon PDF */
}

.form-details {
    flex-grow: 1; /* Membuat bagian ini mengisi ruang kosong */
}
.form-details h4 {
    font-size: 1.3em;
    font-weight: 600;
    margin: 0 0 5px 0;
}
.form-details p {
    font-size: 0.9em;
    color: #5c6181;
    margin: 0;
}
.form-metadata {
    display: inline-block;
    margin-top: 8px;
    font-size: 0.8em;
    font-weight: 500;
    color: #7f8c8d;
    background-color: #ecf0f1;
    padding: 3px 8px;
    border-radius: 15px;
}

.form-download-btn {
    padding: 12px 25px;
    background: var(--primary-gradient);
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    white-space: nowrap;
    transition: all 0.3s ease;
}
.form-download-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

/* Bagian Petunjuk Penting */
.instructions-section {
    padding: 60px 20px;
    background-color: var(--card-bg-color);
}
.instruction-box {
    display: flex;
    gap: 25px;
    align-items: flex-start;
    max-width: 900px;
    margin: 0 auto;
    background-color: white;
    padding: 30px;
    border-radius: 12px;
    border-left: 8px solid #3498db; /* Aksen biru untuk info */
}
.instruction-box i {
    font-size: 2.5em;
    color: #3498db;
    margin-top: 5px;
}
.instruction-box h3 {
    font-size: 1.5em;
    margin: 0 0 15px 0;
}
.instruction-box ul {
    list-style-type: none;
    padding-left: 0;
    margin: 0;
}
.instruction-box li {
    margin-bottom: 10px;
    line-height: 1.6;
}
.instruction-box li::before {
    content: '✓';
    color: #3498db;
    font-weight: bold;
    margin-right: 10px;
}

/* Responsif */
@media (max-width: 600px) {
    .form-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    .form-download-btn {
        margin-top: 10px;
        width: 100%;
        text-align: center;
    }
}