/* =========================================
   PAGE
========================================= */

.zi-page{
    padding:60px 0 90px;

    background:
    linear-gradient(
        180deg,
        #f8fbff 0%,
        #ffffff 100%
    );
}

/* =========================================
   HERO
========================================= */

.zi-hero{
    position:relative;

    overflow:hidden;

    border-radius:32px;

    padding:90px 70px;

    margin-bottom:70px;

    background:
    linear-gradient(
        135deg,
        #0d47a1 0%,
        #1565c0 50%,
        #1976d2 100%
    );
}

.zi-overlay{
    position:absolute;
    inset:0;

    background:
    radial-gradient(
        circle at top right,
        rgba(255,255,255,.14),
        transparent 35%
    );
}

.zi-hero-content{
    position:relative;
    z-index:2;

    max-width:850px;
}

.page-line{
    width:90px;
    height:5px;

    border-radius:999px;

    background:#ffc107;

    margin-bottom:26px;
}

.zi-hero h1{
    font-size:64px;
    font-weight:800;

    color:white;

    margin-bottom:26px;
}

.zi-hero p{
    font-size:18px;

    line-height:1.9;

    color:rgba(255,255,255,.92);

    margin-bottom:40px;
}

/* =========================================
   HERO STATS
========================================= */

.zi-stats{
    display:flex;
    flex-wrap:wrap;

    gap:22px;
}

.zi-stat-card{
    min-width:180px;

    padding:28px;

    border-radius:22px;

    background:
    rgba(255,255,255,.12);

    backdrop-filter:blur(10px);

    border:
    1px solid rgba(255,255,255,.16);
}

.zi-stat-card h3{
    font-size:40px;
    font-weight:800;

    color:white;

    margin-bottom:8px;
}

.zi-stat-card span{
    font-size:14px;

    color:rgba(255,255,255,.88);
}

/* =========================================
   SECTION
========================================= */

.zi-section{
    margin-bottom:90px;
}

.section-header{
    margin-bottom:34px;
}

.section-header h2{
    font-size:40px;
    font-weight:800;

    color:#0f172a;

    margin-bottom:10px;
}

.section-header p{
    font-size:16px;

    color:#64748b;
}

/* =========================================
   GRID
========================================= */

.zi-grid{
    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(340px,1fr));

    gap:28px;
}

/* =========================================
   CARD
========================================= */

.zi-card{
    background:white;

    border-radius:26px;

    overflow:hidden;

    border:
    1px solid #edf2f7;

    box-shadow:
    0 12px 34px rgba(15,23,42,.05);
}

.zi-card-header{
    padding:26px 28px;

    border-bottom:
    1px solid #edf2f7;

    background:#f8fbff;
}

.zi-card-header h4{
    margin:0;

    font-size:20px;
    font-weight:700;

    color:#0f172a;
}

.zi-card-body{
    padding:26px;
}

/* =========================================
   ITEM
========================================= */

.zi-item{
    display:flex;
    align-items:center;

    gap:18px;

    padding-bottom:22px;
    margin-bottom:22px;

    border-bottom:
    1px solid #f1f5f9;
}

.zi-item:last-child{
    margin-bottom:0;
    padding-bottom:0;

    border-bottom:none;
}

/* =========================================
   IMAGE
========================================= */

.zi-image{
    width:100px;
    height:80px;

    border-radius:16px;

    overflow:hidden;

    flex-shrink:0;

    background:#f1f5f9;
}

.zi-image img{
    width:100%;
    height:100%;

    object-fit:cover;
}

/* =========================================
   CONTENT
========================================= */

.zi-content{
    flex:1;
}

.zi-content h5{
    font-size:16px;
    font-weight:700;

    color:#0f172a;

    line-height:1.5;

    margin-bottom:8px;
}

.zi-content span{
    display:inline-flex;

    padding:7px 14px;

    border-radius:999px;

    background:#eff6ff;

    color:#2563eb;

    font-size:12px;
    font-weight:600;
}

/* =========================================
   PAPARAN
========================================= */

.paparan-grid{
    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(280px,1fr));

    gap:28px;
}

.paparan-card{
    background:white;

    border-radius:24px;

    overflow:hidden;

    border:
    1px solid #edf2f7;

    box-shadow:
    0 10px 28px rgba(15,23,42,.05);

    transition:.25s ease;
}

.paparan-card:hover{
    transform:translateY(-4px);
}

.paparan-thumbnail{
    height:220px;

    overflow:hidden;

    background:#f8fafc;
}

.paparan-thumbnail img{
    width:100%;
    height:100%;

    object-fit:cover;
}

.paparan-empty{
    width:100%;
    height:100%;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:54px;

    color:#94a3b8;
}

.paparan-content{
    padding:24px;
}

.paparan-content h4{
    font-size:17px;
    font-weight:700;

    color:#0f172a;

    line-height:1.6;

    margin:0;
}

/* =========================================
   FILTER
========================================= */

.zi-filter{
    display:grid;

    grid-template-columns:
    1fr 220px 170px;

    gap:18px;

    margin-bottom:40px;
}

.zi-search{
    position:relative;
}

.zi-search i{
    position:absolute;

    left:20px;
    top:50%;

    transform:translateY(-50%);

    color:#94a3b8;
}

.zi-search input,
.zi-select{
    width:100%;
    height:58px;

    border:
    1px solid #dbe3ee;

    border-radius:18px;

    background:white;

    padding:0 22px;

    outline:none;

    transition:.2s ease;
}

.zi-search input{
    padding-left:52px;
}

.zi-search input:focus,
.zi-select:focus{
    border-color:
    rgba(13,110,253,.3);

    box-shadow:
    0 0 0 4px rgba(13,110,253,.08);
}

.zi-btn{
    height:58px;

    border:none;

    border-radius:18px;

    background:#0d6efd;

    color:white;

    font-weight:700;

    display:flex;
    align-items:center;
    justify-content:center;

    gap:10px;

    transition:.2s ease;
}

.zi-btn:hover{
    background:#0b5ed7;
}

/* =========================================
   PIAGAM
========================================= */

.piagam-grid{
    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(280px,1fr));

    gap:30px;
}

.piagam-card{
    background:white;

    border-radius:24px;

    overflow:hidden;

    border:
    1px solid #edf2f7;

    box-shadow:
    0 10px 28px rgba(15,23,42,.05);

    transition:.25s ease;
}

.piagam-card:hover{
    transform:translateY(-5px);
}

.piagam-image{
    height:240px;

    overflow:hidden;

    background:#f8fafc;
}

.piagam-image img{
    width:100%;
    height:100%;

    object-fit:cover;
}

.piagam-content{
    padding:26px;
}

.piagam-content h4{
    font-size:18px;
    font-weight:700;

    color:#0f172a;

    line-height:1.6;

    margin-bottom:12px;
}

.piagam-content span{
    font-size:13px;

    color:#64748b;
}

/* =========================================
   PAGINATION
========================================= */

.zi-pagination{
    margin-top:50px;

    display:flex;
    justify-content:center;
}

/* =========================================
   CONTACT
========================================= */

.zi-contact{
    margin-top:90px;

    background:white;

    border-radius:32px;

    padding:60px;

    border:
    1px solid #edf2f7;

    box-shadow:
    0 14px 40px rgba(15,23,42,.05);
}

.zi-contact-info h2{
    font-size:42px;
    font-weight:800;

    color:#0f172a;

    margin-bottom:22px;
}

.zi-contact-info p{
    font-size:16px;

    line-height:1.9;

    color:#64748b;
}

/* =========================================
   FORM
========================================= */

.zi-contact-form .form-control{
    height:58px;

    border:
    1px solid #dbe3ee;

    border-radius:18px;

    padding:0 20px;

    box-shadow:none;

    transition:.2s ease;
}

.zi-contact-form textarea.form-control{
    height:auto;

    padding-top:18px;
}

.zi-contact-form .form-control:focus{
    border-color:
    rgba(13,110,253,.35);

    box-shadow:
    0 0 0 4px rgba(13,110,253,.08);
}

.captcha-label{
    display:block;

    margin-bottom:10px;

    font-size:14px;
    font-weight:700;

    color:#0f172a;
}

/* =========================================
   SUBMIT
========================================= */

.zi-submit{
    height:60px;

    padding:0 32px;

    border:none;

    border-radius:18px;

    background:#0d6efd;

    color:white;

    font-size:15px;
    font-weight:700;

    display:inline-flex;
    align-items:center;
    justify-content:center;

    gap:12px;

    transition:.2s ease;
}

.zi-submit:hover{
    background:#0b5ed7;

    transform:translateY(-2px);
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:992px){

    .zi-hero{
        padding:70px 40px;
    }

    .zi-hero h1{
        font-size:48px;
    }

    .zi-filter{
        grid-template-columns:1fr;
    }

    .zi-contact{
        padding:40px 28px;
    }
}

@media(max-width:768px){

    .zi-page{
        padding:30px 0 70px;
    }

    .zi-hero{
        padding:50px 24px;
    }

    .zi-hero h1{
        font-size:38px;
    }

    .section-header h2{
        font-size:30px;
    }

    .zi-grid,
    .paparan-grid,
    .piagam-grid{
        grid-template-columns:1fr;
    }

    .zi-item{
        flex-direction:column;
        align-items:flex-start;
    }

    .zi-image{
        width:100%;
        height:220px;
    }

    .zi-contact-info h2{
        font-size:32px;
    }
}

.zi-gallery-trigger{

    cursor:pointer;

    transition:.25s;
}

.zi-gallery-trigger:hover{

    transform:translateY(-3px);
}

.zi-modal{

    border:none;

    border-radius:24px;

    overflow:hidden;
}

.zi-modal .modal-header{

    border:none;

    padding:20px 24px;
}

.zi-modal .modal-body{

    padding:0;
}

#ziCarousel img{

    width:100%;

    height:75vh;

    object-fit:contain;

    background:#f8fafc;
}

.paparan-grid{
    display:grid;
    grid-template-columns:
        repeat(auto-fill,minmax(260px,1fr));
    gap:24px;
}

.paparan-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    cursor:pointer;
    transition:.25s;
    box-shadow:
        0 10px 30px rgba(0,0,0,.05);
}

.paparan-card:hover{
    transform:translateY(-4px);
}

.paparan-image{
    height:260px;
}

.paparan-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.paparan-content{
    padding:18px;
}