:root {
    --red: #C0392B;
    --red-deep: #922B21;
    --white: #FAFAFA;
    --cream: #F5F0E8;
    --dark: #1A1A1A;
    --mid: #4A4A4A;
    --light: #9A9A9A;
    --gold: #C9A84C;
    --gold-light: #E8D5A3;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--dark);
    color: var(--white);
    overflow-x: hidden;
}

/* ── NAV ── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem 4rem;
    background: rgba(26, 26, 26, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(201, 168, 76, 0.15);
    transition: all 0.3s ease;
}

.nav-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--gold);
    letter-spacing: 2px;
}

.nav-logo span {
    color: var(--white);
    font-weight: 400;
    font-size: 0.75rem;
    display: block;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-top: -4px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    color: rgba(250, 250, 250, 0.7);
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--gold);
}

/* ── HERO ── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: var(--dark);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 20% 50%, rgba(192, 57, 43, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(201, 168, 76, 0.08) 0%, transparent 50%);
}

.hero-lines {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-lines::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    border: 1px solid rgba(201, 168, 76, 0.08);
    border-radius: 50%;
}

.hero-lines::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    border: 1px solid rgba(192, 57, 43, 0.1);
    border-radius: 50%;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
    animation: fadeUp 1s ease forwards;
}

.hero-badge {
    display: inline-block;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-size: 0.7rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    padding: 0.4rem 1.5rem;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.2s forwards;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(4rem, 12vw, 9rem);
    font-weight: 900;
    line-height: 0.9;
    color: var(--white);
    opacity: 0;
    animation: fadeUp 0.8s ease 0.4s forwards;
}

.hero-title .accent {
    color: var(--gold);
}

.hero-subtitle {
    margin-top: 1.5rem;
    font-size: 1rem;
    color: rgba(250, 250, 250, 0.5);
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.6s forwards;
}

.hero-desc {
    max-width: 500px;
    margin: 2rem auto 0;
    font-size: 1rem;
    color: rgba(250, 250, 250, 0.6);
    line-height: 1.8;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.8s forwards;
}

.hero-cta {
    margin-top: 3rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.8s ease 1s forwards;
}

/* ══════════════════════════════════════════
   KAS 2.0 — Full Module Styles
   ══════════════════════════════════════════ */

/* ── Tab bar ── */
.kas2-tabs {
    display: flex;
    gap: 0;
    border: 1px solid rgba(201, 168, 76, 0.2);
    width: fit-content;
    margin-bottom: 2.5rem;
    overflow: hidden;
}

.kas2-tab {
    padding: 0.65rem 1.6rem;
    background: transparent;
    border: none;
    border-right: 1px solid rgba(201, 168, 76, 0.15);
    color: rgba(250, 250, 250, 0.4);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.22s;
    white-space: nowrap;
}

.kas2-tab:last-child {
    border-right: none;
}

.kas2-tab.active {
    background: var(--gold);
    color: #1A1A1A;
    font-weight: 700;
}

.kas2-tab:hover:not(.active) {
    color: var(--gold);
}

/* ── Panels ── */
.kas2-panel {
    display: none;
}

.kas2-panel.active {
    display: block;
}

/* ── REKAP ── */
.kas2-rekap-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
    margin-bottom: 2.5rem;
}

.kas2-card {
    border: 1px solid rgba(250, 250, 250, 0.07);
    padding: 1.6rem 1.8rem;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s;
}

.kas2-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
}

.kas2-card-saldo::before {
    background: var(--gold);
}

.kas2-card-nama::before {
    background: var(--gold);
}

.kas2-card-masuk::before {
    background: #2ecc71;
}

.kas2-card-keluar::before {
    background: #e74c3c;
}

.kas2-card-lbl {
    font-size: 0.6rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(250, 250, 250, 0.3);
    margin-bottom: 0.7rem;
}

.kas2-card-val {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
}

.kas2-card-saldo .kas2-card-val,
.kas2-card-nama .kas2-card-val {
    color: var(--gold);
}

.kas2-card-masuk .kas2-card-val {
    color: #2ecc71;
}

.kas2-card-keluar .kas2-card-val {
    color: #e74c3c;
}

.kas2-card-sub {
    font-size: 0.7rem;
    color: rgba(250, 250, 250, 0.3);
    margin-top: 0.4rem;
}

/* Progress bar */
.kas2-progress-wrap {
    margin-bottom: 2.5rem;
    border: 1px solid rgba(250, 250, 250, 0.07);
    padding: 1.4rem 1.8rem;
}

.kas2-progress-label {
    display: flex;
    justify-content: space-between;
    font-size: 0.7rem;
    color: rgba(250, 250, 250, 0.4);
    letter-spacing: 1px;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
}

.kas2-progress-bar {
    background: rgba(250, 250, 250, 0.06);
    height: 6px;
    width: 100%;
    position: relative;
}

.kas2-progress-fill {
    height: 100%;
    background: linear-gradient(to right, #2ecc71, #e74c3c);
    transition: width 0.8s ease;
    min-width: 0;
}

/* ── KAS NAMA TABLE ── */
.kasn-scroll-wrap {
    overflow-x: auto;
    border: 1px solid rgba(250, 250, 250, 0.07);
}

.kasn-table {
    border-collapse: collapse;
    width: max-content;
    min-width: 100%;
    font-family: 'DM Sans', sans-serif;
}

.kasn-table thead tr:first-child th {
    background: #1e1e1e;
    color: var(--gold);
    font-size: 0.72rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 0.9rem 0.8rem 0.6rem;
    border-bottom: 1px solid rgba(201, 168, 76, 0.2);
    white-space: nowrap;
    text-align: center;
}

.kasn-table thead tr:first-child th span {
    display: block;
    font-size: 0.58rem;
    color: rgba(250, 250, 250, 0.35);
    font-weight: 400;
    letter-spacing: 1px;
    margin-top: 1px;
}

.kasn-th-no {
    width: 36px;
}

.kasn-th-nama {
    min-width: 110px;
    text-align: left !important;
}

.kasn-th-total {
    min-width: 100px;
}

.kasn-th-bulan.kasn-cur {
    background: rgba(201, 168, 76, 0.08) !important;
    color: #e8c96a !important;
}

.kasn-subhead td {
    background: #181818;
    font-size: 0.6rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-align: center;
    padding: 0.35rem 0.5rem;
    border-bottom: 1px solid rgba(250, 250, 250, 0.06);
    color: rgba(250, 250, 250, 0.3);
}

.kasn-lunas-head {
    color: rgba(46, 204, 113, 0.5) !important;
}

.kasn-subhead td.kasn-cur {
    background: rgba(201, 168, 76, 0.05) !important;
}

.kasn-row {
    transition: background 0.15s;
}

.kasn-row:nth-child(odd) td {
    background: #1c1c1c;
}

.kasn-row:nth-child(even) td {
    background: #191919;
}

.kasn-row:hover td {
    background: #222;
}

.kasn-no {
    text-align: center;
    font-size: 0.72rem;
    color: rgba(250, 250, 250, 0.25);
    padding: 0.7rem 0.5rem;
    border-right: 1px solid rgba(250, 250, 250, 0.04);
}

.kasn-nama {
    font-size: 0.85rem;
    font-weight: 500;
    color: #FAFAFA;
    padding: 0.7rem 1rem 0.7rem 0.8rem;
    border-right: 1px solid rgba(250, 250, 250, 0.05);
    white-space: nowrap;
}

.kasn-cell {
    text-align: center;
    padding: 0.6rem 0.4rem;
    border-right: 1px solid rgba(250, 250, 250, 0.04);
    cursor: default;
    min-width: 44px;
    transition: background 0.15s;
}

.kasn-cell-lunas {
    border-right: 1px solid rgba(250, 250, 250, 0.07);
}

.kasn-cell.kasn-cur {
    background: rgba(201, 168, 76, 0.04) !important;
}

.kasn-cell-lunas.kasn-cur {
    background: rgba(201, 168, 76, 0.04) !important;
}

.kasn-lunas-ok td.kasn-cell-lunas {
    background: rgba(46, 204, 113, 0.06) !important;
}

/* Admin clickable */
.kasn-cell[onclick] {
    cursor: pointer;
}

.kasn-cell[onclick]:hover {
    background: rgba(201, 168, 76, 0.1) !important;
}

.kasn-badge-lunas {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: rgba(46, 204, 113, 0.15);
    border: 1px solid rgba(46, 204, 113, 0.4);
    border-radius: 50%;
    color: #2ecc71;
    font-size: 0.65rem;
    font-weight: 700;
}

.kasn-cicil-val {
    font-size: 0.72rem;
    color: var(--gold);
    font-weight: 600;
}

.kasn-partial {
    color: #e8a54c !important;
}

.kasn-empty {
    color: rgba(250, 250, 250, 0.12);
    font-size: 0.65rem;
}

.kasn-total-cell {
    text-align: right;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--gold);
    padding: 0.7rem 1rem;
    white-space: nowrap;
}

.kasn-total-row td {
    background: #1e1a0e !important;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--gold);
    padding: 0.8rem 0.5rem;
    text-align: center;
    border-top: 1px solid rgba(201, 168, 76, 0.2);
}

.kasn-tot-l {
    color: #2ecc71 !important;
}

.kasn-grand-total {
    text-align: right !important;
    padding-right: 1rem !important;
    font-size: 0.82rem !important;
}

.kasn-legend {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.kasn-legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.7rem;
    color: rgba(250, 250, 250, 0.4);
}

.kasn-legend-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

/* ── KAS MASUK / KELUAR ROWS ── */
.kas2-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.kas2-section-total {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
}

.kas2-add-btn {
    display: none;
    align-items: center;
    gap: 0.5rem;
    background: var(--gold);
    color: #1A1A1A;
    border: none;
    padding: 0.55rem 1.3rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.25s;
}

.kas2-add-btn:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
}

.kas2-table-head {
    display: grid;
    grid-template-columns: 1.1fr 2.8fr 1.1fr 1.3fr;
    padding: 0.75rem 1.4rem;
    border: 1px solid rgba(250, 250, 250, 0.07);
    border-bottom: none;
    background: rgba(250, 250, 250, 0.03);
}

.kas2-table-head span {
    font-size: 0.6rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(250, 250, 250, 0.28);
}

.kas2-table-head span:last-child {
    text-align: right;
}

.kas2-table-body {
    border: 1px solid rgba(250, 250, 250, 0.07);
    overflow: hidden;
}

.kas2-row {
    display: grid;
    grid-template-columns: 1.1fr 2.8fr 1.1fr 1.3fr;
    padding: 0.9rem 1.4rem;
    border-bottom: 1px solid rgba(250, 250, 250, 0.04);
    align-items: center;
    transition: background 0.15s;
}

.kas2-row:last-child {
    border-bottom: none;
}

.kas2-row:nth-child(even) {
    background: rgba(250, 250, 250, 0.015);
}

.kas2-row:hover {
    background: rgba(250, 250, 250, 0.03);
}

.kas2-tgl {
    font-size: 0.76rem;
    color: rgba(250, 250, 250, 0.35);
}

.kas2-ket {
    font-size: 0.86rem;
    color: rgba(250, 250, 250, 0.75);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.kas2-kat {}

.kas2-badge {
    display: inline-block;
    font-size: 0.62rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 0.18rem 0.6rem;
    border-radius: 2px;
}

.kas2-nominal {
    font-size: 0.88rem;
    font-weight: 600;
    text-align: right;
}

.kas2-del {
    background: rgba(192, 57, 43, 0.12);
    border: 1px solid rgba(192, 57, 43, 0.3);
    color: #e05c4b;
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.6rem;
    flex-shrink: 0;
    transition: all 0.2s;
}

.kas2-del:hover {
    background: rgba(192, 57, 43, 0.3);
}

/* ── Tombol edit transaksi ── */
.kas2-edit {
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.3);
    color: #C9A84C;
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.65rem;
    flex-shrink: 0;
    transition: all 0.2s;
    margin-right: 2px;
}

.kas2-edit:hover {
    background: rgba(201, 168, 76, 0.25);
}

.kas2-empty {
    text-align: center;
    color: rgba(250, 250, 250, 0.2);
    padding: 3rem;
    font-size: 0.85rem;
    border: 1px dashed rgba(250, 250, 250, 0.07);
}

/* ── MODAL ── */
.kas2-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(8, 8, 8, 0.96);
    overflow-y: auto;
}

.kas2-modal-overlay.open {
    display: flex;
    align-items: center;
    justify-content: center;
}

.kas2-modal-box {
    background: #1c1c1c;
    border: 1px solid rgba(201, 168, 76, 0.2);
    max-width: 480px;
    width: 90%;
    padding: 2.5rem;
    margin: 2rem auto;
}

.kas2-modal-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 0.3rem;
}

.kas2-modal-sub {
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 2rem;
}

.kas2-inputs {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.kas2-inputs input,
.kas2-inputs select,
.kas2-inputs textarea {
    background: rgba(250, 250, 250, 0.04);
    border: 1px solid rgba(250, 250, 250, 0.1);
    color: var(--white);
    padding: 0.75rem 1rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.88rem;
    outline: none;
    width: 100%;
    appearance: none;
    transition: border-color 0.25s;
}

.kas2-inputs input:focus,
.kas2-inputs select:focus {
    border-color: rgba(201, 168, 76, 0.5);
}

.kas2-inputs select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23C9A84C' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-color: rgba(250, 250, 250, 0.04);
}

.kas2-inputs select option {
    background: #1A1A1A;
}

.kas2-modal-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

/* admin btn */
.kas2-admin-row {
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
}


#kas2-admin-btn,
#kas2-report-btn {
    border: 1px solid rgba(201, 168, 76, 0.2);
    background: rgba(255, 255, 255, 0.03);
    color: #FAFAFA;
    padding: 0.85rem 1.2rem;
    border-radius: 14px;
    cursor: pointer;
    font-size: 0.82rem;
    font-weight: 600;
    transition: 0.25s;
}

#kas2-report-btn {
    display: none;
    color: #C9A84C;
    border-color: rgba(201, 168, 76, 0.3);
}

#kas2-report-btn:hover {
    background: rgba(201, 168, 76, 0.1);
}

/* Nama filter bar */
.kasn-filter-bar {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.2rem;
    align-items: center;
    flex-wrap: wrap;
}

.kasn-filter-bar input {
    background: rgba(250, 250, 250, 0.04);
    border: 1px solid rgba(250, 250, 250, 0.1);
    color: var(--white);
    padding: 0.5rem 1rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.82rem;
    outline: none;
    width: 200px;
    transition: border-color 0.25s;
}

.kasn-filter-bar input:focus {
    border-color: rgba(201, 168, 76, 0.4);
}

@media (max-width: 900px) {
    .kas2-rekap-grid {
        grid-template-columns: 1fr 1fr;
    }

    .s-member {

@media (max-width: 600px) {
    .kasn-scroll-wrap { overflow: visible; }
    .kasn-table { width: 100%; min-width: 0; }
    .kasn-table thead, .kasn-subhead { display: none; }
    .kasn-cell, .kasn-cell-lunas, .kasn-th-bulan, .kasn-th-total { display: none !important; }
    .kasn-row td { display: none; }
    .kasn-row .kasn-no, .kasn-row .kasn-nama, .kasn-row .kasn-total-cell { display: flex; align-items: center; }
    .kasn-row { display: flex; justify-content: space-between; align-items: center; padding: 0.9rem; border-radius: 12px; border: 1px solid rgba(250,250,250,0.06); margin-bottom: 0.6rem; }
    .kasn-no { flex: 0 0 36px; text-align: center; padding: 0; border-right: none; }
    .kasn-nama { flex: 1 1 auto; padding: 0 0.6rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
    .kasn-total-cell { flex: 0 0 auto; padding: 0; white-space: nowrap; font-weight: 700; }
}
        width: calc(50% - 0.75rem);
        flex-shrink: 0;
    }

    .s-row {
        gap: 1rem;
    }

    .s-divisi-grid {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 1rem;
        justify-items: center;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-visual {
        order: -1;
    }

    .vm-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .programs-grid {
        grid-template-columns: 1fr 1fr;
    }

    .testi-grid {
        grid-template-columns: 1fr 1fr;
    }

    .section {
        padding: 5rem 2rem;
    }

    .gallery-section {
        padding: 5rem 2rem;
    }

    .struktur-section {
        padding: 5rem 2rem;
    }

    .programs-section {
        padding: 5rem 2rem;
    }

    .contact-section {
        padding: 5rem 2rem;
    }
}



@media (max-width: 900px) {
    .kas2-rekap-grid {
        grid-template-columns: 1fr 1fr;
    }

    .s-member {
        width: calc(50% - 0.75rem);
        flex-shrink: 0;
    }

    .s-row {
        gap: 1rem;
    }

    .s-divisi-grid {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 1rem;
        justify-items: center;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-visual {
        order: -1;
    }

    .vm-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .programs-grid {
        grid-template-columns: 1fr 1fr;
    }

    .testi-grid {
        grid-template-columns: 1fr 1fr;
    }

    .section {
        padding: 5rem 2rem;
    }

    .gallery-section {
        padding: 5rem 2rem;
    }

    .struktur-section {
        padding: 5rem 2rem;
    }

    .programs-section {
        padding: 5rem 2rem;
    }

    .contact-section {
        padding: 5rem 2rem;
    }
}

@media (max-width: 600px) {
    .programs-grid {
        grid-template-columns: 1fr;
    }

    .about-stats {
        grid-template-columns: 1fr 1fr;
    }

    .gallery-modal-grid {
        grid-template-columns: 1fr 1fr;
    }

    .s-member {
        width: calc(50% - 0.75rem);
    }

    .s-divisi-grid {
        gap: 1rem;
    }
}

/* Hamburger base */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 200;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s ease;
    transform-origin: center;
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 900px) {
    nav {
        padding: 1rem 2rem;
        justify-content: space-between;
    }

    .hamburger {
        display: flex;
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        gap: 0;
        position: fixed;
        top: 0;
        right: 0;
        width: 260px;
        height: 100vh;
        background: rgba(20, 20, 20, 0.98);
        backdrop-filter: blur(16px);
        border-left: 1px solid rgba(201, 168, 76, 0.15);
        padding: 5rem 2rem 2rem;
        transform: translateX(100%);
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 150;
        list-style: none;
        margin: 0;
    }

    .nav-links.open {
        transform: translateX(0);
    }

    .nav-links li {
        border-bottom: 1px solid rgba(250, 250, 250, 0.06);
    }

    .nav-links a {
        display: block;
        padding: 1rem 0;
        font-size: 0.9rem;
        letter-spacing: 2px;
    }

    .nav-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 140;
    }

    .nav-overlay.open {
        display: block;
    }

    .about-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 2.5rem;
    }

    .about-visual {
        order: -1;
        width: 100%;
    }

    .testi-grid {
        grid-template-columns: 1fr 1fr;
    }

    .kas2-rekap-grid {
        grid-template-columns: 1fr 1fr;
    }

    .s-member {
        width: calc(50% - 0.75rem);
        flex-shrink: 0;
    }

    .s-row {
        gap: 1rem;
    }

    .s-divisi-grid {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 1rem;
        justify-items: center;
    }

    .section {
        padding: 4rem 1.5rem;
    }

    .gallery-section,
    .struktur-section,
    .programs-section,
    .contact-section {
        padding: 4rem 1.5rem;
    }
}

@media (min-width: 901px) {
    .hamburger {
        display: none !important;
    }

    .nav-links {
        display: flex !important;
        position: static !important;
        flex-direction: row !important;
        width: auto !important;
        height: auto !important;
        background: transparent !important;
        backdrop-filter: none !important;
        border: none !important;
        padding: 0 !important;
        transform: none !important;
        gap: 2.5rem !important;
    }
}

.btn-primary {
    background: var(--gold);
    color: var(--dark);
    padding: 0.9rem 2.5rem;
    border: none;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}

/* ── TESTIMONI ── */
.testi-section {
    max-width: 1200px;
    margin: 0 auto;
}

/* ── TESTI MODAL ── */
.testi-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(10, 10, 10, 0.96);
    overflow-y: auto;
}

.testi-modal-overlay.open {
    display: block;
}

.testi-modal-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 5rem 2rem 4rem;
}

/* ── TESTI BUTTON GAP ── */
.testi-seemore-wrap {
    margin-bottom: 1.5rem;
}

/* ── TESTI DATE ── */
.testi-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.5rem;
}

.testi-date {
    font-size: 0.68rem;
    color: rgba(250, 250, 250, 0.3);
    letter-spacing: 0.5px;
    margin-top: 0.6rem;
    text-align: right;
    line-height: 1.5;
}

.testi-modal-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 1rem;
}

/* ── TESTI SEE MORE BUTTON ── */
.testi-seemore-wrap {
    justify-content: center;
    margin-top: 2.5rem;
}

.testi-inputs select {
    background: rgba(250, 250, 250, 0.04);
    border: 1px solid rgba(250, 250, 250, 0.1);
    color: var(--white);
    padding: 0.8rem 1rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    outline: none;
    width: 100%;
    cursor: pointer;
    transition: border-color 0.3s;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23C9A84C' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
}

#testimoni .testi-section {
    max-width: 1200px;
    margin: 0 auto;
}

#testimoni .section-title,
#testimoni .section-label,
#testimoni .divider {
    text-align: left;
}

.testi-inputs select:focus {
    border-color: rgba(201, 168, 76, 0.5);
}

.testi-inputs select option {
    background: #1A1A1A;
    color: var(--white);
}

.testi-inputs select optgroup {
    color: var(--gold);
    font-size: 0.78rem;
    letter-spacing: 1px;
}

.testi-inputs input[readonly] {
    opacity: 0.6;
    cursor: not-allowed;
    border-style: dashed;
}

.testi-delete-btn {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(192, 57, 43, 0.15);
    border: 1px solid rgba(192, 57, 43, 0.4);
    color: #e05c4b;
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.75rem;
    transition: all 0.2s;
    z-index: 2;
}

.testi-delete-btn:hover {
    background: rgba(192, 57, 43, 0.35);
}

.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.testi-card {
    border: 1px solid rgba(250, 250, 250, 0.07);
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s;
}

.testi-card:hover {
    border-color: rgba(201, 168, 76, 0.3);
}

.testi-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, var(--gold), transparent);
}

.testi-quote-mark {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: rgba(201, 168, 76, 0.2);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.testi-pesan {
    font-size: 0.9rem;
    color: rgba(250, 250, 250, 0.55);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.testi-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(201, 168, 76, 0.1);
    border: 1.5px solid rgba(201, 168, 76, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--gold);
    flex-shrink: 0;
}

.testi-author-name {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--white);
}

.testi-author-role {
    font-size: 0.68rem;
    color: var(--gold);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 2px;
}

.testi-new-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 0.6rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    background: rgba(201, 168, 76, 0.12);
    color: var(--gold);
    border: 1px solid rgba(201, 168, 76, 0.3);
    padding: 2px 8px;
}

/* Form */
.testi-form-wrap {
    text-align: center;
}

.testi-toggle-btn {
    background: transparent;
    border: 1px solid rgba(201, 168, 76, 0.4);
    color: var(--gold);
    padding: 0.8rem 2rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
}

.testi-toggle-btn:hover {
    background: var(--gold);
    color: var(--dark);
}

.testi-form {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testi-form.open {
    max-height: 500px;
}

.testi-form-inner {
    max-width: 600px;
    margin: 2rem auto 0;
    border: 1px solid rgba(201, 168, 76, 0.15);
    padding: 2.5rem;
    text-align: left;
}

.testi-form-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.testi-inputs {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.testi-inputs input,
.testi-inputs textarea {
    background: rgba(250, 250, 250, 0.04);
    border: 1px solid rgba(250, 250, 250, 0.1);
    color: var(--white);
    padding: 0.8rem 1rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    outline: none;
    resize: none;
    transition: border-color 0.3s;
    width: 100%;
}

.testi-inputs input::placeholder,
.testi-inputs textarea::placeholder {
    color: rgba(250, 250, 250, 0.25);
}

.testi-inputs input:focus,
.testi-inputs textarea:focus {
    border-color: rgba(201, 168, 76, 0.5);
}

.testi-char {
    font-size: 0.72rem;
    color: rgba(250, 250, 250, 0.3);
    text-align: right;
    margin-top: -0.5rem;
}

.testi-form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.testi-empty {
    grid-column: 1 / -1;
    text-align: center;
    color: rgba(250, 250, 250, 0.25);
    font-size: 0.9rem;
    padding: 3rem 0;
    border: 1px dashed rgba(250, 250, 250, 0.08);
}

@media (max-width: 900px) {
    .s-row {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 1rem !important;
    }

    .s-member {
        width: 100% !important;
        flex-shrink: unset !important;
    }

    .s-divisi-grid {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 1rem !important;
        justify-items: center !important;
    }
}


.btn-outline {
    background: transparent;
    color: var(--white);
    padding: 0.9rem 2.5rem;
    border: 1px solid rgba(250, 250, 250, 0.3);
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    animation: fadeUp 0.8s ease 1.4s forwards;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.scroll-indicator span {
    font-size: 0.65rem;
    letter-spacing: 3px;
    color: var(--light);
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 1.5s ease infinite;
}

/* ── ABOUT ── */
.section {
    padding: 7rem 4rem;
}

.section-label {
    font-size: 0.7rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--white);
}

.divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(to right, var(--gold), transparent);
    margin: 1.5rem 0 2rem;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-hero-grid {
    align-items: start;
}

.about-top-badge {
    display: inline-block;
    padding: 0.65rem 1.2rem;
    border-radius: 999px;
    background: rgba(201, 168, 76, 0.12);
    color: var(--gold);
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.about-highlight {
    color: var(--gold);
}

.about-text p {
    color: rgba(250, 250, 250, 0.75);
    line-height: 1.9;
    font-size: 1rem;
    margin-bottom: 1.2rem;
    max-width: 38rem;
}

.about-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.about-hero-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 2.5rem;
}

.about-stat-item {
    border: 1px solid rgba(201, 168, 76, 0.2);
    padding: 1.4rem;
    border-radius: 20px;
    background: rgba(250, 250, 250, 0.02);
}

.about-visual {
    position: relative;
}

.about-img-wrap {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(250, 250, 250, 0.08);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    background: linear-gradient(180deg, rgba(4, 4, 4, 0.1), rgba(13, 13, 13, 0.95));
}

.about-img-wrap img {
    width: 100%;
    display: block;
    object-fit: cover;
    height: 100%;
    min-height: 460px;
    transition: transform 0.6s ease;
}

.about-img-wrap:hover img {
    transform: scale(1.03);
}

.about-overlay-card {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    background: rgba(14, 14, 14, 0.96);
    border: 1px solid rgba(255, 206, 94, 0.24);
    border-radius: 22px;
    padding: 1rem 1.3rem;
    width: 190px;
    box-shadow: 0 26px 62px rgba(0, 0, 0, 0.25);
}

.overlay-icon {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.overlay-value {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 900;
    color: var(--gold);
    margin-bottom: 0.35rem;
}

.overlay-label {
    font-size: 0.82rem;
    color: rgba(250, 250, 250, 0.8);
    line-height: 1.5;
}

@media (max-width: 960px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-img-wrap img {
        min-height: 320px;
    }

    .about-hero-actions {
        justify-content: flex-start;
    }
}

.stat-box {
    border: 1px solid rgba(201, 168, 76, 0.2);
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
}

.stat-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: var(--gold);
}

.stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--gold);
}

.stat-label {
    font-size: 0.75rem;
    color: var(--light);
    letter-spacing: 1px;
    margin-top: 0.3rem;
}

.about-visual {
    position: relative;
}

.about-img-wrap {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 34px 65px rgba(0, 0, 0, 0.32);
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.85), rgba(20, 20, 20, 0.95));
}

.about-img-wrap img {
    width: 100%;
    display: block;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
    transform-origin: center;
    filter: saturate(0.95) contrast(1.05);
    transition: transform 0.6s ease, filter 0.6s ease;
}

.about-img-wrap:hover img {
    transform: scale(1.03);
    filter: saturate(1.08) contrast(1.12);
}

.about-img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(255, 214, 88, 0.1), transparent 35%),
        linear-gradient(180deg, rgba(8, 8, 8, 0) 0%, rgba(10, 10, 10, 0.9) 70%);
    pointer-events: none;
}

.about-overlay-card {
    position: absolute;
    bottom: 1.6rem;
    right: 1.6rem;
    background: rgba(12, 12, 12, 0.96);
    border: 1px solid rgba(255, 206, 94, 0.22);
    border-radius: 24px;
    padding: 1rem 1.35rem;
    width: 200px;
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);

    z-index: -1;
}

.gallery-section {
    background: #141414;
    padding: 7rem 4rem;
}

.gallery-header {
    max-width: 1200px;
    margin: 0 auto 4rem;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: grayscale(15%);
}

.gallery-item:hover img {
    transform: scale(1.04);
    filter: grayscale(0%);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 26, 26, 0.85) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.4s;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-caption {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
}

.gallery-sub {
    font-size: 0.75rem;
    color: var(--gold);
    letter-spacing: 2px;
    margin-top: 0.3rem;
    text-transform: uppercase;
}

.gallery-see-all {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    border: 1px solid rgba(201, 168, 76, 0.4);
    color: var(--gold);
    padding: 0.6rem 1.6rem;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    background: transparent;
    font-family: 'DM Sans', sans-serif;
    transition: all 0.3s;
    white-space: nowrap;
}

.gallery-see-all:hover {
    background: var(--gold);
    color: var(--dark);
}

/* ── GALLERY MODAL ── */
.gallery-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(10, 10, 10, 0.96);
    overflow-y: auto;
}

.gallery-modal-overlay.open {
    display: block;
}

.gallery-modal-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 5rem 2rem 4rem;
}

.gallery-modal-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.gallery-modal-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
}

.gallery-modal-close {
    background: transparent;
    border: 1px solid rgba(250, 250, 250, 0.2);
    color: var(--white);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.4rem;
    transition: all 0.3s;
    flex-shrink: 0;
}

.struktur-profile-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(10, 10, 10, 0.96);
    overflow-y: auto;
}

.struktur-profile-modal-overlay.open {
    display: block;
}

.struktur-profile-modal-inner {
    max-width: 980px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.struktur-profile-modal-card {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 2rem;
    background: rgba(250, 250, 250, 0.04);
    border: 1px solid rgba(250, 250, 250, 0.08);
    border-radius: 24px;
    padding: 2rem;
}

.struktur-profile-img-wrap {
    width: 100%;
    min-height: 320px;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(250, 250, 250, 0.05);
}

.struktur-profile-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.struktur-profile-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #FAFAFA;
}

.modal-label {
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.8rem;
}

.struktur-profile-copy h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.3rem;
    margin-bottom: 0.8rem;
}

.struktur-profile-role {
    color: var(--gold);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1.2px;
    margin-bottom: 1.2rem;
}

.struktur-profile-copy p {
    line-height: 1.85;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.struktur-profile-detail {
    margin-top: 1rem;
    color: rgba(250, 250, 250, 0.86);
    font-size: 0.95rem;
}

@media (max-width: 920px) {
    .struktur-profile-modal-card {
        grid-template-columns: 1fr;
    }
}

.gallery-modal-close:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.gallery-modal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
}

.gallery-modal-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
}

.gallery-modal-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
    filter: grayscale(10%);
}

.gallery-modal-item:hover img {
    transform: scale(1.05);
    filter: grayscale(0%);
}

.gallery-modal-item .gallery-overlay {
    opacity: 0;
}

.gallery-modal-item:hover .gallery-overlay {
    opacity: 1;
}

/* ── VISION MISSION ── */
.vm-section {
    max-width: 1200px;
    margin: 0 auto;
}

.vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 4rem;
}

.vm-card {
    border: 1px solid rgba(250, 250, 250, 0.08);
    padding: 3rem;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s;
}

.vm-card:hover {
    border-color: rgba(201, 168, 76, 0.3);
}

.vm-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, var(--gold), transparent);
}

.vm-icon {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.vm-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.vm-text {
    color: rgba(250, 250, 250, 0.55);
    line-height: 1.9;
}

.vm-list {
    list-style: none;
    margin-top: 1rem;
}

.vm-list li {
    color: rgba(250, 250, 250, 0.55);
    line-height: 1.8;
    padding: 0.4rem 0 0.4rem 1.2rem;
    border-bottom: 1px solid rgba(250, 250, 250, 0.05);
    position: relative;
    font-size: 0.95rem;
}

.vm-list li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 0.8rem;
}

/* ── PROGRAMS ── */
.programs-section {
    background: #141414;
    padding: 7rem 4rem;
}

.programs-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 4rem;
}

.prog-card {
    background: rgba(250, 250, 250, 0.03);
    border: 1px solid rgba(250, 250, 250, 0.07);
    padding: 2.5rem 2rem;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.prog-card:hover {
    border-color: rgba(201, 168, 76, 0.3);
    background: rgba(201, 168, 76, 0.04);
    transform: translateY(-4px);
}

.prog-num {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: rgba(201, 168, 76, 0.12);
    line-height: 1;
    position: absolute;
    top: 1rem;
    right: 1.5rem;
}

.prog-icon {
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
}

.prog-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

.prog-text {
    font-size: 0.88rem;
    color: rgba(250, 250, 250, 0.5);
    line-height: 1.8;
}

/* ── CONTACT ── */
.contact-section {
    padding: 7rem 4rem;
}

.contact-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact-inner .section-title {
    margin-bottom: 1rem;
}

.contact-inner .divider {
    margin: 1.5rem auto 2rem;
}

.contact-inner p {
    color: rgba(250, 250, 250, 0.5);
    line-height: 1.8;
    margin-bottom: 3rem;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 1px solid rgba(250, 250, 250, 0.08);
    padding: 1.2rem 1.5rem;
    transition: border-color 0.3s;
}

.contact-item:hover {
    border-color: var(--gold);
}

.contact-item span:first-child {
    font-size: 1.2rem;
}

.contact-label {
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: var(--gold);
    text-transform: uppercase;
    display: block;
}

.contact-value {
    font-size: 0.9rem;
    color: var(--white);
}

/* ── FOOTER ── */
footer {
    border-top: 1px solid rgba(250, 250, 250, 0.07);
    padding: 2.5rem 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--gold);
}

.footer-copy {
    font-size: 0.78rem;
    color: var(--light);
}

.footer-flag {
    display: flex;
    gap: 0.3rem;
}

.footer-flag span {
    width: 14px;
    height: 9px;
    display: block;
}

.flag-red {
    background: #C0392B;
}

.flag-white {
    background: #FAFAFA;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scrollPulse {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 1;
    }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.15s;
}

.reveal-delay-2 {
    transition-delay: 0.3s;
}

.reveal-delay-3 {
    transition-delay: 0.45s;
}

/* ── STRUKTUR ── */
.struktur-section {
    background: #141414;
    padding: 7rem 4rem;
}

.struktur-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.struktur-tabs {
    display: flex;
    width: fit-content;
    border: 1px solid rgba(201, 168, 76, 0.2);
    margin-bottom: 4rem;
}

.s-tab-btn {
    padding: 0.7rem 2rem;
    background: transparent;
    border: none;
    border-right: 1px solid rgba(201, 168, 76, 0.2);
    color: rgba(250, 250, 250, 0.4);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.25s;
}

.s-tab-btn:last-child {
    border-right: none;
}

.s-tab-btn.active {
    background: var(--gold);
    color: #1A1A1A;
    font-weight: 600;
}

.s-tab-btn:hover:not(.active) {
    color: var(--gold);
}

.s-tab-panel {
    display: none;
}

.s-tab-panel.active {
    display: block;
}

.s-row {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
    position: relative;
}

.s-row-connector {
    display: flex;
    justify-content: center;
    margin-bottom: 0;
}

.s-row-connector::before {
    content: '';
    display: block;
    width: 1px;
    height: 2rem;
    background: rgba(201, 168, 76, 0.25);
}

.s-member {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.6rem 1.2rem 1.4rem;
    border: 1px solid rgba(201, 168, 76, 0.12);
    background: rgba(250, 250, 250, 0.02);
    width: 160px;
    flex-shrink: 0;
    transition: all 0.3s;
    position: relative;
}

.s-member:hover {
    border-color: rgba(201, 168, 76, 0.45);
    background: rgba(201, 168, 76, 0.05);
    transform: translateY(-4px);
}

.s-member.koor::after {
    content: 'Koor';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: #1A1A1A;
    font-size: 0.55rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 0.18rem 0.7rem;
    font-weight: 700;
    white-space: nowrap;
    font-family: 'DM Sans', sans-serif;
}

.s-avatar {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: rgba(201, 168, 76, 0.08);
    border: 2px solid rgba(201, 168, 76, 0.22);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 0.9rem;
    overflow: hidden;
    flex-shrink: 0;
    cursor: pointer;
    transition: transform 0.25s ease;
}

.s-avatar:hover {
    transform: scale(1.05);
}

.s-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.s-name {
    font-family: 'Playfair Display', serif;
    font-size: 0.92rem;
    font-weight: 600;
    color: #FAFAFA;
    margin-bottom: 0.3rem;
    text-transform: capitalize;
}

.s-role {
    font-size: 0.65rem;
    color: var(--gold);
    letter-spacing: 1.2px;
    text-transform: uppercase;
    line-height: 1.4;
}

.s-divisi-block {
    margin-top: 4rem;
}

.s-divisi-block:first-child {
    margin-top: 0;
}

.s-divisi-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 0.6rem;
}

.s-divisi-line {
    flex: 1;
    height: 1px;
    background: rgba(201, 168, 76, 0.12);
}

.s-divisi-tag {
    font-size: 0.65rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(201, 168, 76, 0.55);
    white-space: nowrap;
}

.s-divisi-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #FAFAFA;
    margin-bottom: 1.8rem;
}

.s-divisi-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    justify-content: center;
}

/* visi misi */
@media (max-width: 600px) {
    .vm-grid {
        grid-template-columns: 1fr !important;
        gap: 1.2rem !important;
    }

    .vm-card {
        padding: 1.8rem 1.2rem !important;
    }
}

@media (max-width: 600px) {
    .programs-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }

    .prog-card {
        padding: 1.8rem 1.5rem !important;
    }
}

/* ── KAS TABS RESPONSIVE FIX ─────────────────────── */
.kas2-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.kas2-tab {
    flex: 1 1 auto;
    text-align: center;
    white-space: nowrap;
}

@media (max-width: 600px) {
    .kas2-tabs {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.4rem;
    }

    .kas2-tab {
        width: 100%;
        text-align: center;
        font-size: 0.75rem;
        padding: 0.55rem 0.5rem;
    }
}

@media (max-width: 600px) {
    .testi-grid {
        grid-template-columns: 1fr !important;
    }

    .testi-card {
        padding: 1.5rem !important;
    }
}

@media (max-width: 600px) {
    .testi-inputs select {
        width: 100% !important;
        max-width: 100% !important;
        font-size: 0.85rem !important;
    }

    .testi-form-inner {
        padding: 1.5rem 1rem !important;
    }
}

.custom-select-wrap {
    position: relative;
    width: 100%;
}

.custom-select-trigger {
    background: rgba(250, 250, 250, 0.04);
    border: 1px solid rgba(250, 250, 250, 0.1);
    color: var(--white);
    padding: 0.8rem 1rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: border-color 0.3s;
    width: 100%;
}

.custom-select-trigger:hover {
    border-color: rgba(201, 168, 76, 0.4);
}

.custom-select-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #1A1A1A;
    border: 1px solid rgba(201, 168, 76, 0.2);
    max-height: 220px;
    overflow-y: auto;
    z-index: 999;
}

.custom-select-dropdown.open {
    display: block;
}

.custom-optgroup {
    padding: 0.5rem 1rem 0.3rem;
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    background: #111;
    border-top: 1px solid rgba(201, 168, 76, 0.1);
}

.custom-option {
    padding: 0.7rem 1rem;
    font-size: 0.88rem;
    color: rgba(250, 250, 250, 0.75);
    cursor: pointer;
    transition: background 0.15s;
}

.custom-option:hover {
    background: rgba(201, 168, 76, 0.1);
    color: var(--gold);
}

.testi-form.open {
    max-height: 700px !important;
}

@media (max-width: 600px) {
    .testi-form-actions {
        flex-direction: column !important;
        gap: 0.8rem !important;
    }

    .testi-form-actions .btn-outline,
    .testi-form-actions .btn-primary {
        width: 100% !important;
        text-align: center !important;
        padding: 0.9rem 1rem !important;
    }
}

.nav-copyright {
    font-size: 0.6rem;
    color: rgba(250, 250, 250, 0.2);
    margin-top: 0.8rem;
    line-height: 1.5;
}

@media (max-width: 900px) {
    .nav-links {
        overflow-y: auto !important;
    }

    .nav-sidebar-footer {
        margin-top: 2rem !important;
        padding-top: 1.5rem !important;
    }

    .nav-org-name {
        margin-bottom: 0.4rem !important;
    }
}

@media (max-width: 900px) {
    .nav-links {
        overflow-x: hidden !important;
    }
}

.nav-sidebar-footer {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(201, 168, 76, 0.12);
    border-bottom: none !important;
}

.nav-org-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--gold);
    letter-spacing: 2px;
    margin-bottom: 0.3rem;
}

.nav-org-sub {
    font-size: 0.68rem;
    color: rgba(250, 250, 250, 0.35);
    line-height: 1.6;
    margin-bottom: 0.2rem;
}

.nav-org-rt {
    font-size: 0.62rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(250, 250, 250, 0.25);
    margin-bottom: 1rem;
}

.nav-copyright {
    font-size: 0.58rem;
    color: rgba(250, 250, 250, 0.15);
    line-height: 1.6;
}

@media (max-width: 600px) {
    .kas2-table-head {
        display: grid !important;
        grid-template-columns: 80px 1fr auto !important;
        padding: 0.6rem 0.8rem !important;
    }

    .kas2-table-head span:nth-child(3) {
        display: none !important;
    }

    .kas2-row {
        display: grid !important;
        grid-template-columns: 80px 1fr auto !important;
        grid-template-rows: auto !important;
        gap: 0 !important;
        padding: 0.75rem 0.8rem !important;
        align-items: center !important;
        flex-direction: unset !important;
    }

    .kas2-tgl {
        display: block !important;
        font-size: 0.68rem !important;
        color: rgba(250, 250, 250, 0.3) !important;
        grid-column: 1 !important;
        grid-row: 1 !important;
    }

    .kas2-ket {
        font-size: 0.84rem !important;
        grid-column: 2 !important;
        grid-row: 1 !important;
        padding: 0 0.5rem !important;
    }

    .kas2-kat {
        display: none !important;
    }

    .kas2-nominal {
        text-align: right !important;
        font-size: 0.88rem !important;
        font-weight: 700 !important;
        grid-column: 3 !important;
        grid-row: 1 !important;
        align-self: center !important;
    }
}


/* ── SPONSORSHIP ── */
/* ── SPONSORSHIP STYLES ── */
.sponsor-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

.sponsor-desc {
    color: rgba(250, 250, 250, 0.6);
    line-height: 1.8;
    max-width: 600px;
}

.sponsor-grid {
    display: grid;
    /* Membuat grid fleksibel: minimal lebar kartu 280px, otomatis mengisi ruang jika cukup */
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
    align-items: stretch;
    /* Memastikan tinggi semua kartu sama rata */
}

/* Base style tambahan untuk menunjang keterbacaan kartu di layar mobile */
.sponsor-card {
    border: 1px solid rgba(250, 250, 250, 0.07);
    padding: 2.5rem 2rem;
    background: rgba(255, 255, 255, 0.02);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

.sponsor-card-featured {
    border-color: var(--gold);
    background: rgba(201, 168, 76, 0.03);
}

.sponsor-tier-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.sponsor-tier-name {
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sponsor-tier-name.gold {
    color: var(--gold);
}

.sponsor-tier-name.silver {
    color: #A6ACAF;
}

.sponsor-tier-name.platinum {
    color: #AED6F1;
}

.sponsor-price {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 1rem 0 1.5rem;
}

.sponsor-benefits {
    list-style: none;
    margin-bottom: 2rem;
    width: 100%;
}

.sponsor-benefits li {
    font-size: 0.9rem;
    color: rgba(250, 250, 250, 0.7);
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(250, 250, 250, 0.05);
}

.sponsor-btn {
    margin-top: auto;
    /* Mendorong tombol selalu berada di paling bawah kartu */
    width: 100%;
    display: block;
    text-align: center;
    padding: 0.8rem 1.5rem;
    background: transparent;
    border: 1px solid rgba(250, 250, 250, 0.3);
    color: var(--white);
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s;
}

.sponsor-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.sponsor-btn-gold {
    background: var(--gold);
    color: var(--dark);
    border: none;
    font-weight: 600;
}

.sponsor-btn-gold:hover {
    background: var(--gold-light);
    color: var(--dark);
}

.sponsor-popular-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gold);
    color: var(--dark);
    font-size: 0.6rem;
    font-weight: 700;
    padding: 0.2rem 0.6rem;
    letter-spacing: 1px;
}

/* Penyesuaian padding section sponsorship untuk layar kecil */
@media (max-width: 900px) {
    .sponsor-inner {
        padding: 0 1.5rem;
    }
}

.sponsor-tier-icon {
    font-size: 1.6rem;
}

.sponsor-tier-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
}

.sponsor-tier-name.silver {
    color: #b0bec5;
}

.sponsor-tier-name.gold {
    color: var(--gold);
}

.sponsor-tier-name.platinum {
    color: #90caf9;
}

.sponsor-price {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--white);
    margin: 0.25rem 0;
}

.sponsor-benefits {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.5rem;
    flex: 1;
}

.sponsor-benefits li {
    font-size: 0.88rem;
    color: rgba(250, 250, 250, 0.6);
    padding-left: 1.2rem;
    position: relative;
}

.sponsor-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 0.8rem;
}

.sponsor-btn {
    display: block;
    text-align: center;
    margin-top: 1.25rem;
    padding: 0.7rem 1rem;
    border: 1px solid rgba(201, 168, 76, 0.35);
    border-radius: 8px;
    color: var(--gold);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: background 0.3s, color 0.3s;
}

.sponsor-btn:hover {
    background: rgba(201, 168, 76, 0.12);
}

.sponsor-btn-gold {
    background: var(--gold);
    color: var(--dark);
    border-color: var(--gold);
    font-weight: 700;
}

.sponsor-btn-gold:hover {
    background: var(--gold-light);
    color: var(--dark);
}

@media (max-width: 768px) {
    .sponsor-grid {
        grid-template-columns: 1fr;
    }

    .sponsor-card-featured {
        transform: scale(1);
    }

    .sponsor-card-featured:hover {
        transform: translateY(-4px);
    }
}

/* ── SECTION DIVIDER ── */
.section,
.gallery-section,
.struktur-section,
.programs-section {
    border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}

/* ── ALTERNATING SECTION BG ── */
.gallery-section,
.programs-section,
#sponsorship,
#kas {
    background: #111111;
}

/* ── IURAN RUMAH ─────────────────────────────────────── */
.ir-summary-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

@media (max-width: 600px) {
    .ir-summary-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

.ir-summary-card {
    background: rgba(250, 250, 250, 0.04);
    border: 1px solid rgba(250, 250, 250, 0.08);
    border-radius: 12px;
    padding: 0.9rem 1rem;
    text-align: center;
}

.ir-summary-val {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--font-serif, serif);
    margin-bottom: 0.2rem;
}

.ir-summary-lbl {
    font-size: 0.7rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(250, 250, 250, 0.4);
}

.ir-card-lunas {
    border-color: rgba(46, 204, 113, 0.25);
}

.ir-card-lunas .ir-summary-val {
    color: #2ecc71;
}

.ir-card-cicil {
    border-color: rgba(201, 168, 76, 0.25);
}

.ir-card-cicil .ir-summary-val {
    color: #C9A84C;
}

.ir-card-belum {
    border-color: rgba(231, 76, 60, 0.25);
}

.ir-card-belum .ir-summary-val {
    color: #e74c3c;
}

.ir-card-total {
    border-color: rgba(52, 152, 219, 0.25);
}

.ir-card-total .ir-summary-val {
    color: #3498db;
    font-size: 1.1rem;
}

.ir-filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
    margin-bottom: 1rem;
}

.ir-filter-bar input {
    flex: 1;
    min-width: 180px;
    background: rgba(250, 250, 250, 0.05);
    border: 1px solid rgba(250, 250, 250, 0.12);
    border-radius: 10px;
    color: #fafafa;
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
    outline: none;
    transition: border-color .2s;
}

.ir-filter-bar input:focus {
    border-color: var(--gold, #C9A84C);
}

.ir-filter-status {
    display: flex;
    gap: 0.4rem;
    flex-wrap: wrap;
}

.ir-filter-btn {
    background: rgba(250, 250, 250, 0.05);
    border: 1px solid rgba(250, 250, 250, 0.1);
    border-radius: 8px;
    color: rgba(250, 250, 250, 0.5);
    padding: 0.45rem 0.85rem;
    font-size: 0.78rem;
    cursor: pointer;
    transition: all .2s;
}

.ir-filter-btn.active,
.ir-filter-btn:hover {
    background: rgba(201, 168, 76, 0.15);
    border-color: rgba(201, 168, 76, 0.4);
    color: #C9A84C;
}

.ir-table-wrap {
    border: 1px solid rgba(250, 250, 250, 0.1);
    border-radius: 12px;
    overflow-x: auto;
    overflow-y: hidden;
}

.ir-table-head,
.ir-table-row {
    display: grid;
    grid-template-columns: 100px 1fr 150px 110px;
    align-items: center;
    font-size: 0.82rem;
}

.ir-table-head.with-aksi,
.ir-table-row.with-aksi {
    grid-template-columns: 100px 1fr 150px 110px 90px;
}

.ir-table-head > span,
.ir-table-row > span {
    padding: 0.75rem 1rem;
    border-right: 1px solid rgba(250, 250, 250, 0.08);
}

.ir-table-head > span:last-child,
.ir-table-row > span:last-child {
    border-right: none;
}

.ir-table-head {
    background: rgba(201, 168, 76, 0.08);
    border-bottom: 1px solid rgba(201, 168, 76, 0.2);
    color: #C9A84C;
    font-size: 0.7rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 600;
}

.ir-table-row {
    border-bottom: 1px solid rgba(250, 250, 250, 0.07);
    transition: background .15s;
}

.ir-table-row:last-child {
    border-bottom: none;
}

.ir-table-row:hover {
    background: rgba(250, 250, 250, 0.04) !important;
}

.ir-table-row.lunas {
    background: rgba(46, 204, 113, 0.05);
}

.ir-table-row.lunas > span {
    border-right-color: rgba(46, 204, 113, 0.1);
}

.ir-table-row.cicil {
    background: rgba(201, 168, 76, 0.05);
}

.ir-table-row.cicil > span {
    border-right-color: rgba(201, 168, 76, 0.1);
}

.ir-table-row.belum {
    background: rgba(250, 250, 250, 0.015);
}

.ir-badge {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    border-radius: 6px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.ir-badge.lunas {
    background: rgba(46, 204, 113, 0.18);
    color: #2ecc71;
}

.ir-badge.cicil {
    background: rgba(201, 168, 76, 0.18);
    color: #C9A84C;
}

.ir-badge.belum {
    background: rgba(231, 76, 60, 0.12);
    color: #e74c3c;
}

.ir-edit-btn {
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.25);
    color: #C9A84C;
    border-radius: 7px;
    padding: 0.3rem 0.65rem;
    font-size: 0.75rem;
    cursor: pointer;
    transition: all .2s;
}

.ir-edit-btn:hover {
    background: rgba(201, 168, 76, 0.22);
}

/* Modal edit iuran */
.ir-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s;
}

.ir-modal-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.ir-modal-box {
    background: #1e1e1e;
    border: 1px solid rgba(250, 250, 250, 0.1);
    border-radius: 16px;
    padding: 2rem;
    width: 100%;
    max-width: 380px;
    margin: 1rem;
}

.ir-modal-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: #C9A84C;
}

.ir-modal-box label {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(250, 250, 250, 0.4);
    margin-bottom: 0.3rem;
    margin-top: 0.9rem;
}

.ir-modal-box input {
    width: 100%;
    background: rgba(250, 250, 250, 0.05);
    border: 1px solid rgba(250, 250, 250, 0.12);
    border-radius: 9px;
    color: #fafafa;
    padding: 0.6rem 0.9rem;
    font-size: 0.9rem;
    outline: none;
    box-sizing: border-box;
    transition: border-color .2s;
}

.ir-modal-box input:focus {
    border-color: #C9A84C;
}

.ir-modal-actions {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
    justify-content: flex-end;
}

/* ── TABLE COLUMNS IURAN RUMAH ───────────────────── */
.ir-table-head,
.ir-table-row {
    display: grid;
    grid-template-columns: 90px 1fr 130px 100px;
    gap: 0;
    align-items: center;
    padding: 0.65rem 1rem;
    font-size: 0.82rem;
}

.ir-table-head.with-aksi,
.ir-table-row.with-aksi {
    grid-template-columns: 90px 1fr 130px 100px 80px;
}

.ir-aksi-col {
    display: flex;
    gap: 0.3rem;
}

.ir-del-btn {
    background: rgba(231, 76, 60, 0.1);
    border: 1px solid rgba(231, 76, 60, 0.25);
    color: #e74c3c;
    border-radius: 7px;
    padding: 0.3rem 0.55rem;
    font-size: 0.75rem;
    cursor: pointer;
    transition: all .2s;
}

.ir-del-btn:hover {
    background: rgba(231, 76, 60, 0.22);
}

.ir-summary-sub {
    font-size: 0.65rem;
    color: rgba(250, 250, 250, 0.3);
    margin-top: 0.15rem;
}