/* CSS KHUSUS HALAMAN KEUANGAN */

/* Hero Section Keuangan (Nuansa Emerald/Hijau Zamrud Transparan) */

/* Pola geometris diamond kecil */

/* Global Section */

.keuangan-section {

    padding: 80px 0;

    background-color: #FAFAFA;

}

.keuangan-section.bg-white {

    background-color: var(--white);

}

.keuangan-section.bg-slate {

    background-color: #f8fafc;

}

.section-heading {

    text-align: center;

    margin-bottom: 48px;

}

.sec-title {

    font-size: 32px;

    font-weight: 800;

    color: var(--charcoal);

    margin-bottom: 16px;

}

.sec-desc {

    color: var(--slate);

    font-size: 16px;

    max-width: 650px;

    margin: 0 auto;

    line-height: 1.7;

}

/* Prinsip Pengelolaan Grid */

.prinsip-grid {

    display: grid;

    grid-template-columns: 1fr;

    gap: 30px;

    max-width: 1000px;

    margin: 0 auto;

}

@media (min-width: 768px) {

    .prinsip-grid {

        grid-template-columns: repeat(3, 1fr);

    }

}

.prinsip-card {

    background: var(--white);

    border-radius: 20px;

    padding: 40px 30px;

    text-align: center;

    box-shadow: 0 4px 15px rgba(0,0,0,0.03);

    border: 1px solid rgba(0,0,0,0.03);

    transition: transform 0.3s, box-shadow 0.3s;

}

.prinsip-card:hover {

    transform: translateY(-8px);

    box-shadow: 0 15px 30px rgba(0,0,0,0.06);

}

.prinsip-icon {

    width: 70px;

    height: 70px;

    background: #ecfdf5; /* emerald-50 */

    color: #059669; /* emerald-600 */

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    margin: 0 auto 20px;

}

.prinsip-title {

    font-size: 20px;

    font-weight: 800;

    color: var(--charcoal);

    margin-bottom: 12px;

}

.prinsip-text {

    font-size: 15px;

    color: var(--slate);

    line-height: 1.6;

}

/* Laporan Keuangan (Document List) */

.lpj-container {

    max-width: 900px;

    margin: 0 auto;

}

.lpj-item {

    background: var(--white);

    border-radius: 16px;

    padding: 24px;

    display: flex;

    flex-direction: column;

    gap: 20px;

    margin-bottom: 20px;

    box-shadow: 0 4px 10px rgba(0,0,0,0.03);

    border: 1px solid #e2e8f0;

    transition: all 0.3s;

}

@media (min-width: 640px) {

    .lpj-item {

        flex-direction: row;

        align-items: center;

        justify-content: space-between;

    }

}

.lpj-item:hover {

    border-color: #34d399; /* emerald-400 */

    box-shadow: 0 8px 20px rgba(5, 150, 105, 0.08);

}

.lpj-info {

    display: flex;

    align-items: center;

    gap: 20px;

}

.lpj-icon {

    width: 50px;

    height: 50px;

    background: #fee2e2; /* red-100 for PDF feel */

    color: #dc2626; /* red-600 */

    border-radius: 12px;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

}

.lpj-details h4 {

    font-size: 18px;

    font-weight: 700;

    color: var(--charcoal);

    margin-bottom: 4px;

}

.lpj-details p {

    font-size: 13px;

    color: var(--slate-light);

    display: flex;

    align-items: center;

    gap: 6px;

}

.lpj-btn {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    padding: 16px 24px;

    background: #f1f5f9;

    color: #334155;

    border-radius: 8px;

    font-weight: 600;

    font-size: 14px;

    text-decoration: none;

    transition: all 0.3s;

    white-space: nowrap;

}

.lpj-btn:hover {

    background: #059669;

    color: white;

}

/* Program Bantuan (PIP) / Info Box */

.bantuan-box {

    max-width: 900px;

    margin: 0 auto;

    background: linear-gradient(135deg, #059669 0%, #10b981 100%);

    border-radius: 24px;

    padding: 40px;

    color: white;

    display: flex;

    flex-direction: column;

    gap: 30px;

    box-shadow: 0 15px 30px rgba(5, 150, 105, 0.2);

}

@media (min-width: 768px) {

    .bantuan-box {

        flex-direction: row;

        align-items: center;

        padding: 50px;

    }

}

.bantuan-icon-large {

    width: 100px;

    height: 100px;

    background: rgba(255,255,255,0.2);

    border-radius: 24px;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

}

.bantuan-icon-large svg {

    width: 48px;

    height: 48px;

    color: white;

}

.bantuan-content {

    flex: 1;

}

.bantuan-content h3 {

    font-size: 26px;

    font-weight: 800;

    margin-bottom: 12px;

}

.bantuan-content p {

    font-size: 15.5px;

    line-height: 1.6;

    opacity: 0.9;

    margin-bottom: 20px;

}

.bantuan-features {

    display: flex;

    flex-wrap: wrap;

    gap: 16px;

}

.bantuan-features span {

    display: inline-flex;

    align-items: center;

    gap: 6px;

    background: rgba(255,255,255,0.15);

    padding: 8px 16px;

    border-radius: 9999px;

    font-size: 14px;

    font-weight: 600;

    backdrop-filter: blur(4px);

}