*{box-sizing:border-box}

body{
    margin:0;
    font-family:Arial,Helvetica,sans-serif;
    color:#10243d;
    background:#f6f9fc;
}

img{max-width:100%;height:auto}

.btn{
    display:inline-block;
    padding:13px 24px;
    background:#F4B400;
    color:#002b5c;
    border-radius:30px;
    text-decoration:none;
    font-weight:bold;
    margin-right:10px;
}

/* SLIDER */
.hero-slider{
    position:relative;
    height:650px;
    overflow:hidden;
}
.hero-buttons-bottom{
    position:absolute;
    bottom:60px;
    left:50%;
    transform:translateX(-50%);
    z-index:5;

    display:flex;
    flex-direction:row;
    justify-content:center;
    align-items:center;
    gap:15px;
    flex-wrap:nowrap;
}

.hero-buttons-bottom .btn{
    background:#f75a05;
    color:#fff;
    padding:14px 28px;
    border-radius:50px;
    text-decoration:none;
    font-weight:700;
    box-shadow:0 5px 20px rgba(0,0,0,.2);

    display:inline-flex;
    align-items:center;
    justify-content:center;
    white-space:nowrap;
    width:auto;
    min-width:180px;
}

.hero-buttons-bottom .btn:hover{
    transform:translateY(-2px);
}
.hero-buttons{
    display:flex;
    gap:15px;
    justify-content:center;
    align-items:center;
    margin-top:25px;
    flex-wrap:wrap;
}

.hero-buttons .btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:180px;
    padding:14px 28px;
    border-radius:50px;
    text-decoration:none;
    font-weight:700;
}

.hero-slide{
    position:absolute;
    inset:0;
    background-color:#0b3f75;
    background-image:
        radial-gradient(circle at top left,#1e5fa8 0%,#0b3f75 40%,#05284d 100%);
    background-size:contain;
    background-position:center center;
    background-repeat:no-repeat;
    opacity:0;
    transition:opacity .8s ease;
}
.hero-slide.active{
    opacity:1;
    z-index:2;
}

.hero-content{
    max-width:1200px;
    margin:auto;
    padding:180px 40px;
    color:#fff;
    position:relative;
    z-index:3;
}

.hero-content h1{
    font-size:clamp(22px, 5vw, 46px);
    font-weight:700;
    line-height:1.2;
    max-width:850px;
    margin:0 auto 15px;
}
@media (max-width:992px){

    .hero-content h1{
        font-size:34px;
    }

}

@media (max-width:768px){

    .hero-content{
        padding:120px 25px;
    }

    .hero-content h1{
        font-size:28px;
        line-height:1.3;
    }

    .hero-content p{
        font-size:17px;
    }

}

@media (max-width:480px){

    .hero-content h1{
        font-size:22px;
    }

    .hero-content p{
        font-size:15px;
    }

}

.hero-content p{
    font-size:22px;
    max-width:750px;
    margin-bottom:25px;
}

.slide-nav{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    z-index:10;
    background:none;
    border:none;
    color:#fff;
    font-size:60px;
    cursor:pointer;
}

.prev{left:25px}
.next{right:25px}

.slide-dots{
    position:absolute;
    bottom:25px;
    left:50%;
    transform:translateX(-50%);
    z-index:10;
}

.slide-dot{
    width:14px;
    height:14px;
    border-radius:50%;
    display:inline-block;
    margin:0 6px;
    background:#ddd;
    cursor:pointer;
}
@media (max-width:768px){

    .hero-buttons-bottom{
        bottom:70px;
        flex-wrap:wrap;
        width:90%;
    }

    .hero-buttons-bottom .btn{
        min-width:140px;
        padding:12px 20px;
        font-size:14px;
    }

}
.slide-dot.active{background:#007bff}

/* LAYANAN DIGITAL */
.layanan-section{
    padding:80px 30px 95px;
    background:
        radial-gradient(circle at 8% 65%, rgba(0,123,255,.10) 0 18%, transparent 19%),
        radial-gradient(circle at 92% 18%, rgba(0,62,126,.08) 0 20%, transparent 21%),
        linear-gradient(135deg,#ffffff 0%,#f3f8ff 45%,#eaf4ff 100%);
    position:relative;
    overflow:hidden;
}

.layanan-section::before{
    content:'';
    position:absolute;
    left:-80px;
    bottom:-80px;
    width:420px;
    height:180px;
    background:linear-gradient(135deg,#003E7E,#007bff);
    border-radius:60% 60% 0 0;
    opacity:.12;
}

.layanan-section::after{
    content:'';
    position:absolute;
    right:-100px;
    bottom:-60px;
    width:520px;
    height:170px;
    background:linear-gradient(135deg,#F4B400,#003E7E);
    border-radius:60% 60% 0 0;
    opacity:.16;
}

.layanan-title{
    text-align:center;
    margin-bottom:45px;
    position:relative;
    z-index:2;
}

.title-line{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:14px;
    color:#F4B400;
    font-weight:800;
    letter-spacing:1px;
}

.title-line span{
    display:block;
    width:70px;
    height:3px;
    background:#003E7E;
    border-radius:20px;
}

.layanan-title h2{
    color:#003E7E;
    font-size:42px;
    margin:12px 0 8px;
}

.layanan-title p{
    color:#5b6777;
    font-size:17px;
    margin:0;
}

.layanan-grid-new{
    max-width:1350px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:28px;
    position:relative;
    z-index:2;
}

.layanan-card-new{
    min-height:300px;
    border-radius:26px;
    padding:32px 24px 0;
    text-align:center;
    text-decoration:none;
    color:white;
    box-shadow:0 18px 35px rgba(0,0,0,.16);
    overflow:hidden;
    position:relative;
    transition:.35s ease;
    display:flex;
    flex-direction:column;
    align-items:center;
}

.layanan-card-new::before{
    content:'';
    position:absolute;
    width:160px;
    height:160px;
    border-radius:50%;
    background:rgba(255,255,255,.12);
    left:-60px;
    top:90px;
}

.layanan-card-new::after{
    content:'';
    position:absolute;
    right:25px;
    top:22px;
    width:70px;
    height:70px;
    background-image:radial-gradient(rgba(255,255,255,.35) 2px, transparent 2px);
    background-size:12px 12px;
    opacity:.8;
}

.card-blue{background:linear-gradient(160deg,#0094ff,#003E7E)}
.card-teal{background:linear-gradient(160deg,#18d2be,#00818f)}
.card-purple{background:linear-gradient(160deg,#8b43ff,#4a28b8)}
.card-orange{background:linear-gradient(160deg,#ffc400,#ff7a00)}

.icon-box{
    width:104px;
    height:104px;
    border-radius:26px;
    background:#fff;
    color:#003E7E;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:50px;
    margin:0 auto 24px;
    box-shadow:0 10px 20px rgba(0,0,0,.12);
    position:relative;
    z-index:2;
}

.layanan-card-new h3{
    font-size:28px;
    line-height:1.2;
    margin:0 0 12px;
    color:#fff;
    position:relative;
    z-index:2;
}

.layanan-card-new p{
    font-size:15px;
    line-height:1.5;
    margin:0;
    color:#fff;
    position:relative;
    z-index:2;
}

.arrow-btn{
    width:46px;
    height:46px;
    border-radius:50%;
    background:#fff;
    color:#003E7E;
    font-size:34px;
    font-weight:bold;
    line-height:42px;
    margin-top:auto;
    margin-bottom:18px;
    position:relative;
    z-index:3;
    box-shadow:0 8px 18px rgba(0,0,0,.18);
    transition:.35s;
}

.layanan-card-new:hover{
    transform:translateY(-12px);
    box-shadow:0 25px 50px rgba(0,62,126,.25);
}

.layanan-card-new:hover .icon-box{
    transform:scale(1.08);
}

.layanan-card-new:hover .arrow-btn{
    background:#F4B400;
    color:#003E7E;
    transform:translateX(4px);
}

.card-center{
    grid-column:2/4;
    max-width:430px;
    margin:auto;
    margin-top:6px;
}

/* SECTION UMUM */
.section{padding:60px}

.section h2{
    font-size:34px;
    margin-top:0;
}

.grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.card{
    background:white;
    padding:25px;
    border-radius:18px;
    box-shadow:0 8px 25px rgba(0,0,0,.06);
}

/* FOOTER */
.footer-main{
    background:linear-gradient(135deg,#0b4f9c,#2b7bd3);
    color:#fff;
    padding:28px 0 0;
    margin-top:45px;
}

.footer-container{
    max-width:1300px;
    margin:auto;
    display:grid;
    grid-template-columns:1.6fr 1fr 1fr 1.3fr;
    gap:30px;
    padding:0 35px;
    align-items:start;
}

.footer-logo-row{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:12px;
}

.footer-logo-row img{
    width:50px;
    height:50px;
    object-fit:contain;
    margin:0;
}

.footer-logo-row h3{
    margin:0;
    font-size:16px;
    line-height:1.25;
    font-weight:800;
    color:#fff;
}

.footer-brand p,
.footer-col p{
    margin:7px 0;
    font-size:13px;
    line-height:1.45;
    opacity:.95;
}

.footer-col h4{
    font-size:17px;
    margin:0 0 12px;
    color:#fff;
}

.footer-col h4::after{
    content:'';
    width:45px;
    height:3px;
    background:#7fd3ff;
    display:block;
    margin-top:7px;
    border-radius:20px;
}

.footer-col a{
    display:block;
    color:#fff;
    text-decoration:none;
    margin-bottom:8px;
    font-size:13px;
    line-height:1.35;
}

.footer-col a:hover{
    padding-left:6px;
}

.footer-bottom{
    margin-top:25px;
    background:rgba(0,0,0,.15);
    text-align:center;
    padding:13px;
    font-size:13px;
}

/* RESPONSIVE */
@media(max-width:992px){
    .grid{
        grid-template-columns:repeat(2,1fr);
    }

    .layanan-grid-new{
        grid-template-columns:repeat(2,1fr);
    }

    .card-center{
        grid-column:auto;
        max-width:100%;
        margin-top:0;
    }

    .footer-container{
        grid-template-columns:1fr 1fr;
    }
}

@media(max-width:768px){
    .hero-slider{
        height:480px;
    }

    .hero-content{
        padding:125px 25px;
        text-align:left;
    }

    .hero-content h1{
        font-size:clamp(32px,5vw,50px);
        line-height:1.2;
    }
    .hero-content p{
        font-size:17px;
    }

    .slide-nav{
        font-size:48px;
    }

    .layanan-section{
        padding:50px 20px 65px;
    }

    .layanan-title h2{
        font-size:30px;
    }

    .title-line span{
        width:38px;
    }

    .layanan-grid-new{
        grid-template-columns:1fr;
    }

    .layanan-card-new{
        min-height:280px;
    }

    .section{
        padding:35px 20px;
    }

    .grid{
        grid-template-columns:1fr;
    }

    .footer-container{
        grid-template-columns:1fr;
        gap:25px;
        padding:0 24px;
    }

    .footer-logo-row h3{
        font-size:15px;
    }
}
/* ================= BERITA TERBARU ================= */

.news-section{
    padding:80px 30px 90px;
    background:
        radial-gradient(circle at 8% 20%, rgba(0,123,255,.09) 0 16%, transparent 17%),
        radial-gradient(circle at 92% 80%, rgba(0,62,126,.08) 0 18%, transparent 19%),
        linear-gradient(135deg,#ffffff 0%,#f3f8ff 45%,#eaf4ff 100%);
    position:relative;
    overflow:hidden;
}

.news-title{
    text-align:center;
    margin-bottom:42px;
    position:relative;
    z-index:2;
}

.news-title .title-line{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:14px;
    color:#F4B400;
    font-weight:800;
    letter-spacing:1px;
}

.news-title .title-line span{
    display:block;
    width:65px;
    height:3px;
    background:#003E7E;
    border-radius:20px;
}

.news-title h2{
    color:#003E7E;
    font-size:42px;
    margin:12px 0 8px;
}

.news-title p{
    color:#5b6777;
    font-size:17px;
    margin:0;
}

.news-wrapper{
    max-width:1200px;
    margin:auto;
    position:relative;
    z-index:2;
}

.news-featured-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:24px;
    margin-bottom:24px;
}

.news-featured-card{
    min-height:360px;
    border-radius:18px;
    overflow:hidden;
    position:relative;
    display:block;
    color:#fff;
    box-shadow:0 14px 35px rgba(0,0,0,.15);
}

.news-featured-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    position:absolute;
    inset:0;
    transition:.4s;
}

.news-featured-card:hover img{
    transform:scale(1.07);
}

.news-overlay{
    position:absolute;
    inset:0;
    padding:26px;
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    background:linear-gradient(180deg,rgba(0,0,0,.05),rgba(0,0,0,.78));
}

.news-badge,
.news-badge-small{
    display:inline-block;
    width:max-content;
    background:#F4B400;
    color:#003E7E;
    font-size:12px;
    font-weight:800;
    border-radius:20px;
    padding:6px 12px;
    margin-bottom:10px;
}

.news-overlay h3{
    font-size:24px;
    line-height:1.35;
    margin:0 0 12px;
}

.news-overlay p{
    margin:0;
    font-size:14px;
}

.news-small-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:22px;
}

.news-small-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    text-decoration:none;
    color:#10243d;
    box-shadow:0 10px 28px rgba(0,0,0,.09);
    transition:.35s;
}

.news-small-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 38px rgba(0,62,126,.18);
}

.news-small-card img{
    width:100%;
    height:170px;
    object-fit:cover;
}

.news-small-content{
    padding:16px;
}

.news-small-content h3{
    color:#003E7E;
    font-size:18px;
    line-height:1.35;
    margin:0 0 12px;
}

.news-small-content p{
    color:#5b6777;
    font-size:13px;
    margin:0;
}

.news-button-wrap{
    text-align:center;
    margin-top:35px;
}

.news-button{
    display:inline-block;
    padding:13px 28px;
    border-radius:30px;
    background:#003E7E;
    color:#fff;
    text-decoration:none;
    font-weight:800;
    box-shadow:0 10px 25px rgba(0,62,126,.25);
    transition:.3s;
}

.news-button:hover{
    background:#F4B400;
    color:#003E7E;
    transform:translateY(-3px);
}

@media(max-width:992px){
    .news-featured-grid{
        grid-template-columns:1fr;
    }

    .news-small-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:768px){
    .news-section{
        padding:50px 20px 65px;
    }

    .news-title h2{
        font-size:30px;
    }

    .news-featured-card{
        min-height:300px;
    }

    .news-small-grid{
        grid-template-columns:1fr;
    }
}
.detail-berita{
    padding:70px 25px;
    background:#f6f9fc;
}

.detail-container{
    max-width:900px;
    margin:auto;
    background:#fff;
    padding:35px;
    border-radius:22px;
    box-shadow:0 10px 35px rgba(0,0,0,.08);
}

.detail-kategori{
    display:inline-block;
    background:#F4B400;
    color:#003E7E;
    padding:7px 14px;
    border-radius:20px;
    font-weight:800;
    font-size:13px;
}

.detail-container h1{
    color:#003E7E;
    font-size:38px;
    line-height:1.25;
    margin:18px 0 10px;
}

.detail-meta{
    color:#6b7280;
    font-size:14px;
    margin-bottom:25px;
}

.detail-thumb{
    width:100%;
    max-height:460px;
    object-fit:cover;
    border-radius:18px;
    margin-bottom:25px;
}

.detail-isi{
    font-size:17px;
    line-height:1.8;
    color:#1f2937;
}

.btn-back{
    display:inline-block;
    margin-top:30px;
    background:#003E7E;
    color:#fff;
    padding:12px 22px;
    border-radius:30px;
    text-decoration:none;
    font-weight:700;
}

@media(max-width:768px){
    .detail-container{
        padding:24px;
    }

    .detail-container h1{
        font-size:28px;
    }
}
.page-news{
    padding:70px 35px;
    background:
        radial-gradient(circle at 10% 20%, rgba(0,123,255,.08) 0 16%, transparent 17%),
        linear-gradient(135deg,#ffffff,#f3f8ff,#eaf4ff);
}

.page-news-title{
    text-align:center;
    max-width:760px;
    margin:0 auto 45px;
}

.page-news-title span{
    color:#F4B400;
    font-weight:800;
    letter-spacing:2px;
}

.page-news-title h1{
    color:#003E7E;
    font-size:42px;
    margin:10px 0;
}

.page-news-title p{
    color:#5b6777;
    font-size:17px;
}

.page-news-grid{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:26px;
}

.page-news-card{
    background:#fff;
    border-radius:22px;
    overflow:hidden;
    text-decoration:none;
    color:#10243d;
    box-shadow:0 12px 30px rgba(0,0,0,.08);
    transition:.35s;
}

.page-news-card:hover{
    transform:translateY(-8px);
    box-shadow:0 22px 45px rgba(0,62,126,.18);
}

.page-news-img{
    height:220px;
    background:#dbeafe;
}

.page-news-img img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.page-news-body{
    padding:22px;
}

.page-news-body span{
    display:inline-block;
    background:#eaf3ff;
    color:#003E7E;
    padding:6px 12px;
    border-radius:20px;
    font-size:13px;
    font-weight:800;
    margin-bottom:12px;
}

.page-news-body h3{
    color:#003E7E;
    font-size:22px;
    line-height:1.35;
    margin:0 0 15px;
}

.page-news-body p{
    color:#6b7280;
    margin:0;
}

@media(max-width:992px){
    .page-news-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:768px){
    .page-news{
        padding:45px 20px;
    }

    .page-news-title h1{
        font-size:30px;
    }

    .page-news-grid{
        grid-template-columns:1fr;
    }
}
.breadcrumb{
    font-size:14px;
    margin-bottom:18px;
    color:#6b7280;
}

.breadcrumb a{
    color:#003E7E;
    text-decoration:none;
    font-weight:600;
}

.breadcrumb span{
    margin-right:6px;
}
.search-news-box{
    max-width:720px;
    margin:0 auto 22px;
    display:flex;
    gap:10px;
}

.search-news-box input{
    flex:1;
    height:52px;
    border:1px solid #d6dce8;
    border-radius:14px;
    padding:0 18px;
    font-size:16px;
    outline:none;
}

.search-news-box input:focus{
    border-color:#003E7E;
    box-shadow:0 0 0 4px rgba(0,62,126,.08);
}

.search-news-box button{
    height:52px;
    border:0;
    border-radius:14px;
    padding:0 24px;
    background:#003E7E;
    color:#fff;
    font-weight:700;
    cursor:pointer;
}

.search-result-info{
    max-width:720px;
    margin:0 auto 28px;
    background:#eef5ff;
    color:#123;
    padding:12px 16px;
    border-radius:12px;
    font-size:15px;
}

.search-result-info a{
    float:right;
    color:#003E7E;
    font-weight:700;
    text-decoration:none;
}

.news-empty{
    grid-column:1/-1;
    text-align:center;
    background:#fff;
    padding:35px;
    border-radius:18px;
    color:#555;
}

@media(max-width:600px){
    .search-news-box{
        flex-direction:column;
    }

    .search-news-box button{
        width:100%;
    }

    .search-result-info a{
        float:none;
        display:block;
        margin-top:8px;
    }
}
.related-news{
    margin-top:45px;
    padding-top:30px;
    border-top:1px solid #e5e7eb;
}

.related-news h2{
    font-size:26px;
    color:#003E7E;
    margin-bottom:20px;
}

.related-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

.related-card{
    background:#fff;
    border-radius:16px;
    overflow:hidden;
    text-decoration:none;
    color:#10243d;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
}

.related-card img{
    width:100%;
    height:150px;
    object-fit:cover;
}

.related-card h3{
    font-size:16px;
    padding:14px 14px 6px;
    line-height:1.4;
}

.related-card p{
    padding:0 14px 16px;
    font-size:13px;
    color:#6b7280;
}

@media(max-width:768px){
    .related-grid{
        grid-template-columns:1fr;
    }
}
.content{
    padding:30px;
}

.page-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:20px;
}

.page-header h2{
    margin:0;
    font-size:28px;
    color:#0b2b4c;
}

.card{
    background:#fff;
    padding:25px;
    border-radius:14px;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
}

.form-admin{
    max-width:850px;
}

.form-group{
    margin-bottom:18px;
}

.form-group label{
    display:block;
    font-weight:700;
    margin-bottom:7px;
    color:#10243d;
}

.form-group input,
.form-group textarea,
.form-group select{
    width:100%;
    padding:12px 14px;
    border:1px solid #d6dce8;
    border-radius:10px;
    font-size:15px;
    outline:none;
}

.form-group textarea{
    resize:vertical;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus{
    border-color:#003E7E;
    box-shadow:0 0 0 4px rgba(0,62,126,.08);
}

.form-group small{
    display:block;
    margin-top:6px;
    color:#6b7280;
}

.form-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:18px;
}

.btn-primary,
.btn-secondary{
    display:inline-block;
    padding:11px 18px;
    border-radius:10px;
    text-decoration:none;
    border:0;
    cursor:pointer;
    font-weight:700;
}

.btn-primary{
    background:#003E7E;
    color:#fff;
}

.btn-secondary{
    background:#e9eef7;
    color:#003E7E;
}

@media(max-width:768px){
    .form-row{
        grid-template-columns:1fr;
    }
}
.content .card{
    width:100%;
}

.content .table{
    width:100%;
    border-collapse:collapse;
}

.content .table th,
.content .table td{
    padding:16px 14px;
    border-bottom:1px solid #e5e7eb;
    text-align:left;
}

.content .table thead{
    background:#f3f6fb;
}

.content .table img{
    width:80px;
    height:55px;
    object-fit:cover;
    border-radius:8px;
}
.content{
    padding:35px 40px !important;
    width:100% !important;
    max-width:none !important;
    box-sizing:border-box;
}

.card{
    width:100% !important;
    max-width:none !important;
}

.table{
    width:100% !important;
    border-collapse:collapse;
}
.content .card{
    width:100% !important;
    max-width:none !important;
}

.content .table{
    width:100% !important;
}
/* ==========================
   STATISTIK PERPUSTAKAAN
========================== */

.stat-section{
     margin-top:0;
    padding:30px 0 40px;
    position:relative;
    overflow:hidden;
    background:linear-gradient(135deg,#eef5ff 0%,#f8fbff 55%,#fff8df 100%);
}

.stat-section::before{
    content:'';
    position:absolute;
    width:420px;
    height:420px;
    border-radius:50%;
    background:rgba(59,130,246,.10);
    left:-190px;
    bottom:-190px;
}

.stat-section::after{
    content:'';
    position:absolute;
    width:330px;
    height:330px;
    border-radius:50%;
    background:rgba(251,191,36,.13);
    right:-130px;
    top:-130px;
}

.stat-container{
    max-width:1200px;
    margin:auto;
    padding:0 20px;
    position:relative;
    z-index:2;
}

.stat-title{
    text-align:center;
    margin-bottom:42px;
}

.stat-title span{
    display:inline-block;
    background:#003E7E;
    color:#fff;
    padding:8px 18px;
    border-radius:30px;
    font-size:13px;
    font-weight:800;
    letter-spacing:1px;
    margin-bottom:14px;
}

.stat-title h2{
    font-size:40px;
    color:#003E7E;
    margin:8px 0;
}

.stat-title p{
    color:#64748b;
    margin:0;
}

.stat-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
    margin-top:-10px;
}

.stat-card{
    min-height:135px;
    border-radius:24px;
    padding:26px;
    position:relative;
    overflow:hidden;
    display:flex;
    justify-content:space-between;
    align-items:center;
    color:#fff;
    box-shadow:0 18px 38px rgba(0,0,0,.14);
    transition:.35s;
}

.stat-card:hover{
    transform:translateY(-8px);
    box-shadow:0 28px 55px rgba(0,62,126,.22);
}

.stat-card:nth-child(1){
    background:linear-gradient(135deg,#1597f2,#00529b);
}

.stat-card:nth-child(2){
    background:linear-gradient(135deg,#22c7b8,#078f92);
}

.stat-card:nth-child(3){
    background:linear-gradient(135deg,#8b5cf6,#5126b8);
}

.stat-card:nth-child(4){
    background:linear-gradient(135deg,#fbbf24,#fb8500);
}

.stat-card::before{
    content:'';
    position:absolute;
    width:150px;
    height:150px;
    border-radius:50%;
    left:-55px;
    bottom:-55px;
    background:rgba(255,255,255,.16);
}

.stat-card::after{
    content:'';
    position:absolute;
    width:95px;
    height:95px;
    border-radius:25px;
    right:22px;
    top:22px;
    background:rgba(255,255,255,.16);
}

.stat-number{
    font-size:38px;
    font-weight:900;
    line-height:1;
    margin-bottom:10px;
    color:#fff;
    position:relative;
    z-index:2;
}

.stat-label{
    color:#fff;
    font-size:15px;
    font-weight:700;
    position:relative;
    z-index:2;
}

.stat-icon{
    width:74px;
    height:74px;
    border-radius:22px;
    background:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:36px;
    position:relative;
    z-index:3;
    box-shadow:0 12px 28px rgba(0,0,0,.12);
}

@media(max-width:992px){
    .stat-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:768px){
    .stat-section{
        padding:60px 0;
    }

    .stat-title h2{
        font-size:30px;
    }

    .stat-grid{
        grid-template-columns:1fr;
    }

    .stat-card{
        min-height:125px;
    }
}
.opac-search-section{
    margin-top:40px;
    margin-bottom:40px;
    text-align:center;
}

.opac-search-title{
    margin-bottom:25px;
}

.opac-search-title span{
    display:inline-block;
    background:#003E7E;
    color:#fff;
    padding:8px 18px;
    border-radius:30px;
    font-size:13px;
    font-weight:700;
    letter-spacing:1px;
    margin-bottom:12px;
}

.opac-search-title h2{
    font-size:42px;
    color:#003E7E;
    margin:10px 0;
}

.opac-search-title p{
    color:#64748b;
    max-width:700px;
    margin:auto;
}

.opac-search-box{
    max-width:760px;
    margin:auto;
    background:#fff;
    border:2px solid #f4b400;
    border-radius:22px;
    display:flex;
    align-items:center;
    overflow:hidden;
    box-shadow:0 18px 40px rgba(0,62,126,.12);
}

.opac-search-box input{
    flex:1;
    height:70px;
    border:none;
    padding:0 25px;
    font-size:18px;
    outline:none;
}

.opac-search-box button{
    width:80px;
    height:70px;
    border:none;
    cursor:pointer;
    color:#fff;
    font-size:26px;
    background:linear-gradient(
        135deg,
        #6d5dfc,
        #4f8cff
    );
}
.panduan-section{
    padding:80px 20px;
    background:#fff;
}

.panduan-title{
    text-align:center;
    margin-bottom:45px;
}

.panduan-title h2{
    font-size:40px;
    color:#003E7E;
}

.panduan-title p{
    color:#64748b;
}

.panduan-grid{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
}

.panduan-card{
    background:#fff;
    border-radius:22px;
    padding:30px;
    text-decoration:none;
    color:#10243d;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    transition:.3s;
}

.panduan-card:hover{
    transform:translateY(-8px);
    box-shadow:0 25px 50px rgba(0,62,126,.16);
}

.panduan-icon{
    width:70px;
    height:70px;
    border-radius:20px;
    background:linear-gradient(135deg,#003E7E,#0d8bff);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:34px;
    margin-bottom:20px;
}

.panduan-card h3{
    color:#003E7E;
    font-size:22px;
    margin-bottom:12px;
}

.panduan-card p{
    color:#64748b;
    line-height:1.6;
}

@media(max-width:992px){
    .panduan-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:600px){
    .panduan-grid{
        grid-template-columns:1fr;
    }

    .panduan-title h2{
        font-size:30px;
    }
}
.panduan-card{
    transition:.35s;
}

.panduan-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(0,62,126,.15);
}
.panduan-section{
    position:relative;
    overflow:hidden;
}

.panduan-section::before{
    content:'';
    position:absolute;
    width:350px;
    height:350px;
    border-radius:50%;
    background:rgba(59,130,246,.05);
    left:-150px;
    bottom:-150px;
}

.panduan-section::after{
    content:'';
    position:absolute;
    width:300px;
    height:300px;
    border-radius:50%;
    background:rgba(251,191,36,.05);
    right:-120px;
    top:-120px;
}
.panduan-btn{
    text-align:center;
    margin-top:40px;
}

.panduan-btn a{
    display:inline-block;
    background:#003E7E;
    color:#fff;
    padding:14px 30px;
    border-radius:50px;
    text-decoration:none;
    font-weight:700;
    box-shadow:0 10px 25px rgba(0,62,126,.25);
    transition:.3s;
}

.panduan-btn a:hover{
    background:#0056b3;
    transform:translateY(-3px);
}
/* Thumbnail Panduan */

.panduan-thumb{
    height:220px;
    background:#eef5ff;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
}

.panduan-thumb img{
    max-width:100%;
    max-height:100%;
    object-fit:contain;
    padding:10px;
}
/* ==========================
   STAFF PERPUSTAKAAN
========================== */

.staff-section{
    padding:90px 20px;
    background:#f8fbff;
}

.staff-title{
    text-align:center;
    margin-bottom:50px;
}

.staff-grid{
    max-width:1200px;
    margin:auto;

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.staff-card{
    background:#fff;
    border-radius:24px;
    padding:25px;

    text-align:center;

    box-shadow:0 12px 30px rgba(0,0,0,.08);

    transition:.3s;
}

.staff-card:hover{
    transform:translateY(-8px);
}

.staff-photo{
    width:150px;
    height:150px;

    margin:auto;
    margin-bottom:20px;

    border-radius:50%;
    overflow:hidden;

    border:5px solid #f1f5f9;
}

.staff-photo img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.staff-info h3{
    margin:0 0 10px;

    color:#003E7E;
    font-size:20px;
    font-weight:700;
}

.staff-info p{
    margin:0;

    color:#64748b;
    font-size:15px;
    line-height:1.6;
}
@media(max-width:991px){

    .staff-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:576px){

    .staff-grid{
        grid-template-columns:1fr;
    }

    .staff-photo{
        width:130px;
        height:130px;
    }

}
/* =================================
   STAFF ADMIN
================================= */

.staff-admin-hero{
    background:#fff;
    border-radius:18px;
    padding:28px;
    display:flex;
    align-items:center;
    gap:22px;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
    margin-bottom:25px;
}

.staff-admin-icon{
    width:78px;
    height:78px;
    border-radius:18px;
    background:#eef5ff;
    color:#003E7E;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:38px;
}

.staff-admin-hero h2{
    color:#003E7E;
    margin:0 0 6px;
}

.staff-admin-hero p{
    margin:0;
    color:#64748b;
}

.staff-admin-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
}

.staff-admin-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 12px 30px rgba(0,0,0,.08);
}

.staff-admin-photo{
    width:100%;
    height:320px;
    background:#f5f7fa;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
}

.staff-admin-photo img{
    width:100%;
    height:100%;
    object-fit:contain;
}

.staff-admin-body{
    padding:22px;
}

.staff-admin-body h3{
    color:#003E7E;
    font-size:21px;
    margin:0 0 8px;
}

.staff-position{
    color:#64748b;
    margin:0 0 16px;
}

.staff-line{
    width:45px;
    height:3px;
    background:#0066cc;
    border-radius:10px;
    margin-bottom:18px;
}

.staff-contact{
    color:#475569;
    margin:8px 0;
    font-size:14px;
}

.staff-admin-footer{
    border-top:1px solid #e5e7eb;
    padding:13px 18px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    color:#475569;
}

.status-badge{
    padding:5px 12px;
    border-radius:10px;
    font-size:13px;
    font-weight:700;
}

.status-badge.aktif{
    background:#dcfce7;
    color:#15803d;
}

.status-badge.nonaktif{
    background:#fee2e2;
    color:#b91c1c;
}

.staff-admin-actions{
    display:flex;
    gap:10px;
    padding:16px 18px 20px;
}

.staff-admin-actions a{
    flex:1;
    text-align:center;
    padding:10px;
    border-radius:9px;
    text-decoration:none;
    font-weight:700;
    font-size:14px;
}

.btn-view{
    background:#eaf3ff;
    color:#0056b3;
}

.btn-edit{
    background:#fff3cd;
    color:#8a5a00;
}

.btn-delete{
    background:#ffe4ec;
    color:#c2185b;
}

.staff-admin-note{
    margin-top:28px;
    background:#fff;
    border-radius:14px;
    padding:18px 22px;
    color:#475569;
    box-shadow:0 8px 25px rgba(0,0,0,.05);
}

/* RESPONSIVE */

@media(max-width:1200px){

    .staff-admin-grid{
        grid-template-columns:repeat(3,1fr);
    }

}

@media(max-width:900px){

    .staff-admin-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:600px){

    .staff-admin-grid{
        grid-template-columns:1fr;
    }

}
/* ==========================
   STAFF FRONTEND - OVERRIDE
========================== */

.staff-section{
    padding:90px 20px;
    background:#f8fbff;
}

.staff-grid{
    max-width:1200px;
    margin:0 auto;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:28px;
}

.staff-card{
    background:#fff;
    border-radius:22px;
    overflow:hidden;
    padding:0;
    text-align:left;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.staff-photo{
    width:100%;
    height:260px;
    margin:0;
    border-radius:0;
    border:0;
    background:#eef5ff;
    overflow:hidden;
}

.staff-photo{
    width:100%;
    height:280px;
    background:#f5f7fa;
    display:flex;
    align-items:center;
    justify-content:center;
}

.staff-photo img{
    width:100%;
    height:100%;
    object-fit:contain;
}

.staff-info{
    padding:24px;
}

.staff-info h3{
    color:#003E7E;
    font-size:21px;
    margin:0 0 10px;
    line-height:1.25;
}

.staff-info p{
    color:#64748b;
    margin:0 0 14px;
}

.staff-info small{
    display:block;
    color:#475569;
    margin-top:10px;
}

@media(max-width:992px){
    .staff-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:600px){
    .staff-grid{
        grid-template-columns:1fr;
    }
}
/* ==========================
   STAFF ADMIN FINAL
========================== */

.staff-admin-hero{
    background:#fff;
    border-radius:18px;
    padding:26px 28px;
    display:flex;
    align-items:center;
    gap:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
    margin-bottom:25px;
}

.staff-admin-icon{
    width:72px;
    height:72px;
    border-radius:18px;
    background:#eef5ff;
    color:#003E7E;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:36px;
}

.staff-admin-hero h2{
    color:#003E7E;
    margin:0 0 6px;
}

.staff-admin-hero p{
    margin:0;
    color:#64748b;
}

.staff-admin-grid{
    display:grid;
    grid-template-columns:repeat(auto-fill,minmax(300px,1fr));
    gap:24px;
}

.staff-admin-card{
    background:#fff;
    border-radius:22px;
    overflow:hidden;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    display:flex;
    flex-direction:column;
}

.staff-admin-photo{
    width:100%;
    height:300px;
    background:#eef5ff;
    overflow:hidden;
}

.staff-admin-photo img{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center top;
}

.staff-admin-body{
    padding:22px 22px 12px;
    min-height:150px;
}

.staff-admin-body h3{
    color:#003E7E;
    font-size:22px;
    margin:0 0 8px;
    line-height:1.25;
}

.staff-position{
    color:#64748b;
    margin:0 0 14px;
    font-weight:600;
}

.staff-line{
    width:45px;
    height:3px;
    background:#0066cc;
    border-radius:10px;
    margin-bottom:14px;
}

.staff-contact{
    color:#475569;
    margin:7px 0;
    font-size:14px;
    word-break:break-word;
}

.staff-admin-footer{
    border-top:1px solid #e5e7eb;
    padding:13px 18px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    color:#475569;
    margin-top:auto;
}

.status-badge{
    padding:5px 12px;
    border-radius:10px;
    font-size:13px;
    font-weight:700;
    text-transform:capitalize;
}

.status-badge.aktif{
    background:#dcfce7;
    color:#15803d;
}

.status-badge.nonaktif{
    background:#fee2e2;
    color:#b91c1c;
}

.staff-admin-actions{
    display:flex;
    gap:10px;
    padding:16px 18px 20px;
}

.staff-admin-actions a{
    flex:1;
    text-align:center;
    padding:10px;
    border-radius:9px;
    text-decoration:none;
    font-weight:700;
    font-size:14px;
}

.btn-view{
    background:#eaf3ff;
    color:#0056b3;
}

.btn-edit{
    background:#fff3cd;
    color:#8a5a00;
}

.btn-delete{
    background:#ffe4ec;
    color:#c2185b;
}

.staff-admin-note{
    margin-top:28px;
    background:#fff;
    border-radius:14px;
    padding:18px 22px;
    color:#475569;
    box-shadow:0 8px 25px rgba(0,0,0,.05);
}
/* ==========================
   HALAMAN STAFF PUBLIK
========================== */

.staff-page-grid{
    max-width:1200px;
    margin:45px auto 0;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:28px;
}

.staff-page-card{
    background:#fff;
    border-radius:22px;
    overflow:hidden;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    transition:.3s;
}

.staff-page-card:hover{
    transform:translateY(-8px);
    box-shadow:0 22px 45px rgba(0,62,126,.16);
}

.staff-page-photo{
    width:100%;
    height:280px;
    background:#eef5ff;
    overflow:hidden;
}

.staff-page-photo img{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center top;
}

.staff-page-body{
    padding:24px;
}

.staff-page-body h3{
    color:#003E7E;
    min-height:50px;
    font-size:22px;
    line-height:1.25;
    margin:0 0 10px;
}

.staff-page-job{
    color:#64748b;
    font-weight:600;
    margin:0 0 14px;
}

.staff-page-line{
    width:45px;
    height:3px;
    background:#0066cc;
    border-radius:10px;
    margin-bottom:16px;
}

.staff-page-info{
    color:#475569;
    font-size:14px;
    margin:8px 0;
    word-break:break-word;
}

.staff-page-desc{
    margin-top:14px;
    color:#64748b;
    line-height:1.6;
    font-size:14px;
}

@media(max-width:992px){
    .staff-page-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:600px){
    .staff-page-grid{
        grid-template-columns:1fr;
    }
}
.staff-btn{
    text-align:center;
    margin-top:40px;
}

.staff-btn a{
    display:inline-block;
    background:#003E7E;
    color:#fff;
    padding:14px 30px;
    border-radius:50px;
    text-decoration:none;
    font-weight:700;
    box-shadow:0 10px 25px rgba(0,62,126,.25);
    transition:.3s;
}

.staff-btn a:hover{
    background:#0056b3;
    transform:translateY(-3px);
}
/* STAFF FRONTEND RAPI DESKTOP */

.staff-card{
    height:100%;
    display:flex;
    flex-direction:column;
}

.staff-photo{
    height:260px;
    flex-shrink:0;
}

.staff-info{
    padding:24px;
    display:flex;
    flex-direction:column;
    flex:1;
}

.staff-info h3{
    min-height:58px;
    display:flex;
    align-items:flex-start;
    margin-bottom:10px;
}

.staff-info p{
    min-height:42px;
    margin-bottom:14px;
}

.staff-line{
    margin-top:auto;
}

.staff-grid{
    align-items:stretch;
}
.desktop-menu{
    display:flex;
    align-items:center;
    gap:28px;
}

.desktop-menu a{
    color:#0f2743;
    text-decoration:none;
    font-size:15px;
    font-weight:700;
}

.menu-toggle,
.mobile-menu,
.menu-overlay{
    display:none;
}

@media(max-width:768px){

    .desktop-menu{
        display:none;
    }

    .menu-toggle{
        display:block;
        background:none;
        border:0;
        font-size:34px;
        color:#003E7E;
        cursor:pointer;
    }

    .menu-overlay{
        display:block;
        position:fixed;
        inset:0;
        background:rgba(0,0,0,.45);
        opacity:0;
        visibility:hidden;
        z-index:9998;
    }

    .menu-overlay.active{
        opacity:1;
        visibility:visible;
    }

    .mobile-menu{
        display:flex;
        position:fixed;
        top:0;
        right:-100%;
        width:76%;
        max-width:320px;
        height:100vh;
        background:#002b55;
        flex-direction:column;
        padding:22px 30px;
        z-index:9999;
        transition:.3s ease;
    }

    .mobile-menu.active{
        right:0;
    }

    .mobile-menu a{
        display:block;
        color:#fff;
        text-decoration:none;
        font-size:18px;
        font-weight:700;
        padding:16px 0;
        border-bottom:1px solid rgba(255,255,255,.18);
    }

    .menu-close{
        display:block;
        align-self:flex-end;
        background:none;
        border:0;
        color:#fff;
        font-size:42px;
        cursor:pointer;
        margin-bottom:15px;
    }
}
/* ===================================
   KOLEKSI TERBARU
=================================== */

.koleksi-section{
    padding:80px 0;
    background:#f8fbff;
}

.section-heading{
    text-align:center;
    margin-bottom:45px;
}

.section-badge{
    display:inline-block;
    color:#f4b400;
    font-size:14px;
    font-weight:800;
    letter-spacing:2px;
    margin-bottom:10px;
}

.section-heading h2{
    font-size:38px;
    color:#003E7E;
    margin:0 0 12px;
}

.section-heading p{
    color:#64748b;
    font-size:16px;
    max-width:700px;
    margin:auto;
}

.koleksi-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:24px;
    margin-top:40px;
}

.koleksi-card{
    display:block;
    background:#fff;
    border-radius:18px;
    padding:18px;
    text-decoration:none;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.3s ease;
}

.koleksi-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 40px rgba(0,62,126,.15);
}

.koleksi-card img{
    width:100%;
    height:260px;
    object-fit:contain;
    margin-bottom:15px;
}

.koleksi-card h3{
    font-size:14px;
    font-weight:700;
    line-height:1.5;
    color:#003E7E;
    text-align:center;
    margin:0;

    display:-webkit-box;
    -webkit-line-clamp:3;
    -webkit-box-orient:vertical;
    overflow:hidden;
}

.koleksi-footer{
    text-align:center;
    margin-top:40px;
}

.btn-koleksi{
    display:inline-block;
    background:#003E7E;
    color:#fff;
    text-decoration:none;
    padding:14px 28px;
    border-radius:50px;
    font-weight:700;
    transition:.3s;
}

.btn-koleksi:hover{
    background:#00295a;
    color:#fff;
}

.koleksi-empty{
    text-align:center;
    padding:40px;
    background:#fff;
    border-radius:15px;
    color:#64748b;
    grid-column:1/-1;
}

/* TABLET */
@media(max-width:992px){

    .koleksi-grid{
        grid-template-columns:repeat(3,1fr);
    }

    .koleksi-card img{
        height:220px;
    }
}

/* MOBILE */
@media(max-width:768px){

    .koleksi-section{
        padding:60px 0;
    }

    .section-heading h2{
        font-size:28px;
    }

    .section-heading p{
        font-size:14px;
    }

    .koleksi-grid{
        grid-template-columns:repeat(2,1fr);
        gap:14px;
    }

    .koleksi-card{
        padding:12px;
        border-radius:14px;
    }

    .koleksi-card img{
        height:170px;
    }

    .koleksi-card h3{
        font-size:12px;
    }

    .btn-koleksi{
        padding:12px 22px;
        font-size:14px;
    }
}
/* ==========================
   ADMIN LAMAN
========================== */

.ck-editor__editable{
    min-height:420px;
    font-size:16px;
    line-height:1.7;
}

.content .card form{
    max-width:1000px;
}

.form-group small{
    color:#64748b;
    font-size:13px;
}

.form-group textarea[name="css"],
.form-group textarea[name="meta_description"]{
    font-family:Consolas, monospace;
}

.btn-view,
.btn-edit,
.btn-delete{
    display:inline-block;
    padding:8px 11px;
    border-radius:8px;
    text-decoration:none;
    font-size:13px;
    font-weight:700;
    margin:2px;
}

.btn-view{
    background:#eaf3ff;
    color:#0056b3;
}

.btn-edit{
    background:#fff3cd;
    color:#8a5a00;
}

.btn-delete{
    background:#ffe4ec;
    color:#c2185b;
}

.content .table td{
    vertical-align:middle;
}

.content .table td:nth-child(3){
    color:#0056b3;
    font-weight:600;
}
/* DETAIL LAMAN */
.detail-berita{
    padding:70px 25px !important;
    background:#f6f9fc !important;
}

.detail-container{
    max-width:950px !important;
    margin:0 auto !important;
    background:#fff !important;
    padding:38px !important;
    border-radius:22px !important;
    box-shadow:0 10px 35px rgba(0,0,0,.08) !important;
}

.detail-container h1{
    color:#003E7E !important;
    font-size:38px !important;
    line-height:1.3 !important;
    margin:15px 0 25px !important;
}

.detail-isi{
    font-size:17px !important;
    line-height:1.85 !important;
    color:#1f2937 !important;
}

.detail-isi p{
    text-align:justify !important;
    margin-bottom:18px !important;
}

.detail-isi img{
    display:block !important;
    max-width:100% !important;
    height:auto !important;
    margin:25px auto !important;
    border-radius:16px !important;
}

.detail-isi figure{
    margin:25px auto !important;
    text-align:center !important;
}

@media(max-width:768px){
    .detail-berita{
        padding:45px 18px !important;
    }

    .detail-container{
        padding:24px !important;
    }

    .detail-container h1{
        font-size:28px !important;
    }

    .detail-isi{
        font-size:16px !important;
    }
}
/* ==========================
   DETAIL LAMAN DINAMIS
========================== */

.laman-wrapper{
    padding:70px 25px;
    background:#f6f9fc;
}

.laman-box{
    max-width:950px;
    margin:0 auto;
    background:#fff;
    padding:38px;
    border-radius:22px;
    box-shadow:0 10px 35px rgba(0,0,0,.08);
}

.laman-box h1{
    color:#003E7E;
    font-size:42px;
    font-weight:800;
    text-align:center;
    margin:0 0 35px;
    position:relative;
}

.laman-box h1::after{
    content:'';
    display:block;
    width:90px;
    height:4px;
    background:#f5b400;
    margin:15px auto 0;
    border-radius:20px;
}
.laman-content{
    font-size:17px;
    line-height:1.85;
    color:#1f2937;
}

.laman-content p{
    text-align:justify;
    margin-bottom:18px;
}

.laman-content img{
    display:block;
    max-width:100%;
    height:auto;
    margin:25px auto;
    border-radius:16px;
}

.laman-content figure{
    margin:25px auto;
    text-align:center;
}

.laman-content table{
    width:100%;
    border-collapse:collapse;
    margin:20px 0;
}

.laman-content table td,
.laman-content table th{
    border:1px solid #e5e7eb;
    padding:12px;
}

@media(max-width:768px){
    .laman-wrapper{
        padding:45px 18px;
    }

    .laman-box{
        padding:24px;
    }

    .laman-box h1{
        font-size:28px;
    }

    .laman-content{
        font-size:16px;
    }
}
.laman-wrapper{
    background:
        radial-gradient(circle at 8% 25%, rgba(0,62,126,.08) 0 120px, transparent 121px),
        radial-gradient(circle at 92% 35%, rgba(244,180,0,.10) 0 130px, transparent 131px),
        linear-gradient(135deg,#f6f9fc 0%,#eef6ff 100%);
    position:relative;
    overflow:hidden;
}

.laman-wrapper::before{
    content:'';
    position:absolute;
    left:-90px;
    top:180px;
    width:260px;
    height:260px;
    border-radius:50%;
    background:rgba(0,62,126,.06);
}

.laman-wrapper::after{
    content:'';
    position:absolute;
    right:-100px;
    top:260px;
    width:300px;
    height:300px;
    border-radius:50%;
    background:rgba(244,180,0,.09);
}

.laman-box{
    position:relative;
    z-index:2;
}
.mobile-group{
    margin-bottom:18px;
}

.mobile-group-title{
    color:#ffd24d;
    font-weight:800;
    margin:15px 0 5px;
    font-size:17px;
}

.mobile-submenu{
    padding-left:20px !important;
    font-size:15px !important;
}
.dokumen-hero{
    background:linear-gradient(135deg,#003E7E 0%, #0057B8 100%);
    min-height:260px;
    color:#fff;
    position:relative;
    overflow:hidden;
}

.dokumen-hero::before{
    content:'';
    position:absolute;
    width:400px;
    height:400px;
    border-radius:50%;
    background:rgba(255,255,255,.06);
    top:-150px;
    right:-100px;
}

.dokumen-hero::after{
    content:'';
    position:absolute;
    width:300px;
    height:300px;
    border-radius:50%;
    background:rgba(255,255,255,.04);
    bottom:-120px;
    left:-100px;
}

.dokumen-hero-overlay{
    position:relative;
    z-index:2;
}

.dokumen-hero-overlay{
    max-width:1400px;
    margin:auto;
    padding:70px 35px;
}

.dokumen-hero-content h1{
    font-size:46px;
    margin:0 0 15px;
    font-weight:800;
}

.dokumen-hero-content h1:after{
    content:'';
    display:block;
    width:70px;
    height:4px;
    background:#f5b400;
    margin-top:14px;
    border-radius:20px;
}

.dokumen-hero-content p{
    max-width:650px;
    line-height:1.8;
    font-size:17px;
}

.dokumen-page{
    background:#f5f9ff;
    padding:40px 25px 80px;
}

.dokumen-container{
    max-width:1400px;
    margin:auto;
    display:grid;
    grid-template-columns:1fr 310px;
    gap:35px;
}

.dokumen-filter{
    display:grid;
    grid-template-columns:1fr 90px 220px;
    gap:15px;
    margin-bottom:35px;
}
.dokumen-reset{
    display:flex;
    align-items:center;
    justify-content:center;
    background:#fff;
    color:#003e7e;
    border:1px solid #dfe7f2;
    border-radius:10px;
    text-decoration:none;
    font-weight:700;
}
.dokumen-filter input,
.dokumen-filter select{
    border:1px solid #dfe7f2;
    border-radius:10px;
    padding:14px 16px;
    font-size:15px;
    background:#fff;
}

.dokumen-filter button{
    border:0;
    background:#003e7e;
    color:#fff;
    border-radius:10px;
    font-weight:700;
}

.section-title-left{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:22px;
}

.section-title-left span{
    width:5px;
    height:28px;
    background:#f5b400;
    border-radius:10px;
}

.section-title-left h2{
    color:#003e7e;
    margin:0;
    font-size:25px;
}

.dokumen-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:22px;
}

.dokumen-card{
    background:#fff;
    border-radius:14px;
    box-shadow:0 8px 25px rgba(0,0,0,.07);
    overflow:hidden;
    transition:.25s;
}

.dokumen-card:hover{
    transform:translateY(-5px);
}

.dokumen-card-top{
    display:flex;
    gap:15px;
    padding:24px;
    min-height:145px;
}

.doc-icon{
    width:52px;
    height:62px;
    border-radius:8px;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:12px;
    font-weight:800;
    flex-shrink:0;
}

.doc-pdf{background:#ef3328}
.doc-word{background:#1877f2}
.doc-excel{background:#16a34a}
.doc-ppt{background:#f59e0b}

.dokumen-card h3{
    margin:0 0 10px;
    color:#0f2743;
    font-size:16px;
    line-height:1.45;
}

.dokumen-card p{
    display:inline-block;
    background:#eef5ff;
    color:#003e7e;
    padding:7px 12px;
    border-radius:20px;
    font-size:13px;
    margin:0;
}

.dokumen-meta{
    padding:0 24px 20px;
    color:#64748b;
    font-size:13px;
    display:flex;
    gap:12px;
}

.dokumen-action{
    border-top:1px solid #eef2f7;
    padding:16px 24px;
    display:flex;
    justify-content:space-between;
    color:#003e7e;
    font-size:14px;
}

.dokumen-action a{
    color:#003e7e;
    text-decoration:none;
    font-weight:700;
}

.dokumen-sidebar{
    display:flex;
    flex-direction:column;
    gap:25px;
}

.dokumen-side-card{
    background:#fff;
    border-radius:16px;
    padding:25px;
    box-shadow:0 8px 25px rgba(0,0,0,.07);
}

.dokumen-side-card h3{
    margin:0 0 20px;
    color:#003e7e;
    border-left:5px solid #f5b400;
    padding-left:12px;
}

.dokumen-side-card a{
    display:flex;
    justify-content:space-between;
    color:#0f2743;
    text-decoration:none;
    padding:11px 0;
    border-bottom:1px solid #eef2f7;
}

.dokumen-side-card a span{
    background:#eef5ff;
    color:#003e7e;
    padding:3px 10px;
    border-radius:15px;
    font-size:12px;
}

.dokumen-populer{
    padding-left:20px;
    color:#0f2743;
    line-height:2;
}

.dokumen-btn-full{
    display:block !important;
    background:#003e7e;
    color:#fff !important;
    text-align:center;
    border-radius:10px;
    margin-top:15px;
    border:0 !important;
}

.dokumen-empty{
    grid-column:1/-1;
    background:#fff;
    padding:40px;
    border-radius:14px;
    text-align:center;
    color:#64748b;
}

@media(max-width:992px){
    .dokumen-container{
        grid-template-columns:1fr;
    }

    .dokumen-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:600px){
    .dokumen-filter{
        grid-template-columns:1fr;
    }

    .dokumen-grid{
        grid-template-columns:1fr;
    }

    .dokumen-hero-content h1{
        font-size:34px;
    }
}
.survey-success-icon{
    width:100px;
    height:100px;
    margin:0 auto 20px;
    border-radius:50%;
    background:#10b981;
    color:#fff;
    font-size:50px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
}

.survey-success-title{
    text-align:center;
    color:#003e7e;
    margin-bottom:15px;
}

.survey-success-text{
    text-align:center;
    color:#64748b;
    margin-bottom:10px;
}

.survey-success-box{
    background:#f8fafc;
    border:1px solid #e2e8f0;
    border-radius:15px;
    padding:20px;
    margin:25px 0;
}

.survey-actions{
    text-align:center;
}
.survey-page{
    padding:90px 20px;
    background:linear-gradient(135deg,#eef6ff,#f8fbff);
    min-height:80vh;
}

.survey-container{
    max-width:920px;
    margin:auto;
    background:#fff;
    border-radius:28px;
    padding:42px;
    box-shadow:0 25px 70px rgba(15,23,42,.12);
    border:1px solid #e5eef8;
}

.survey-header{
    text-align:center;
    margin-bottom:35px;
}

.survey-header h1{
    font-size:38px;
    color:#003e7e;
    margin:0 0 12px;
    font-weight:900;
}

.survey-header p{
    color:#64748b;
    font-size:17px;
    max-width:650px;
    margin:auto;
    line-height:1.6;
}

.survey-form{
    margin-top:30px;
}

.survey-question{
    background:#f8fafc;
    border:1px solid #e2e8f0;
    border-radius:18px;
    padding:22px;
    margin-bottom:20px;
}

.survey-question > label{
    font-size:17px;
    font-weight:800;
    color:#0f172a;
    display:block;
    margin-bottom:16px;
    line-height:1.5;
}

.survey-options{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:12px;
}

.survey-options label{
    background:#fff;
    border:2px solid #e2e8f0;
    border-radius:14px;
    padding:13px 12px;
    cursor:pointer;
    font-size:14px;
    font-weight:700;
    color:#334155;
    transition:.25s;
}

.survey-options label:hover{
    border-color:#006de0;
    background:#eef6ff;
    transform:translateY(-2px);
}

.survey-options input{
    margin-right:7px;
}

.survey-question textarea{
    width:100%;
    min-height:130px;
    border:2px solid #e2e8f0;
    border-radius:16px;
    padding:16px;
    font-size:15px;
    font-family:inherit;
    resize:vertical;
}

.survey-question textarea:focus{
    outline:none;
    border-color:#006de0;
    box-shadow:0 0 0 4px rgba(0,109,224,.12);
}

.btn-survey{
    width:100%;
    border:0;
    background:linear-gradient(135deg,#006de0,#003e7e);
    color:#fff;
    padding:17px 28px;
    border-radius:999px;
    font-size:17px;
    font-weight:900;
    cursor:pointer;
    box-shadow:0 12px 30px rgba(0,62,126,.25);
    transition:.25s;
}

.btn-survey:hover{
    transform:translateY(-3px);
    background:linear-gradient(135deg,#f59e0b,#f97316);
}

.survey-alert{
    padding:25px;
    border-radius:18px;
    text-align:center;
    font-weight:800;
}

.survey-alert.error{
    background:#fef2f2;
    color:#b91c1c;
    border:1px solid #fecaca;
}

.survey-alert.success{
    background:#ecfdf5;
    color:#047857;
    border:1px solid #a7f3d0;
}

.survey-success-icon{
    width:100px;
    height:100px;
    margin:0 auto 20px;
    border-radius:50%;
    background:#10b981;
    color:#fff;
    font-size:50px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:900;
}

.survey-success-title,
.survey-success-text,
.survey-actions{
    text-align:center;
}

.survey-success-title{
    color:#003e7e;
}

.survey-success-text{
    color:#64748b;
}

@media(max-width:900px){
    .survey-container{
        padding:26px;
        border-radius:22px;
    }

    .survey-header h1{
        font-size:28px;
    }

    .survey-options{
        grid-template-columns:1fr;
    }
}
.survey-question input[type=text]{
    width:100%;
    padding:15px;
    border:2px solid #e2e8f0;
    border-radius:14px;
    font-size:15px;
}

.survey-question input[type=text]:focus{
    outline:none;
    border-color:#006de0;
    box-shadow:0 0 0 4px rgba(0,109,224,.12);
}
.survey-question-chart h3{
    margin:0 0 18px;
    font-size:22px;
    font-weight:800;
}

.survey-question-chart p{
    margin:0;
    color:#475569;
    font-weight:700;
}

.survey-chart-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
    flex-wrap:wrap;
}

.survey-pie-wrap{
    width:50px;
    height:30px;
    margin:30px auto;
}
.survey-bar-wrap{
    height:380px;
}

.survey-question-chart{
    margin-top:30px;
}

.survey-question-chart h3{
    margin:0 0 14px;
    font-size:22px;
    font-weight:800;
}

.survey-answer-count{
    margin:0 0 20px;
    color:#475569;
    font-weight:700;
}

.survey-chart-row{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:50px;
    min-height:280px;
}

.survey-pie-box{
    width:260px;
    height:260px;
    flex:0 0 260px;
}

.survey-legend-box{
    min-width:220px;
    font-size:16px;
    font-weight:700;
    line-height:2;
}

.dot{
    display:inline-block;
    width:13px;
    height:13px;
    border-radius:50%;
    margin-right:8px;
}

.dot-blue{background:#3b82f6;}
.dot-green{background:#22c55e;}
.dot-yellow{background:#f59e0b;}
.dot-red{background:#ef4444;}

@media(max-width:768px){
    .survey-chart-row{
        flex-direction:column;
        gap:20px;
    }

    .survey-pie-box{
        width:230px;
        height:230px;
        flex:0 0 230px;
    }
}
.chart-box{
    border:1px solid #d1d5db;
    padding:12px;
    margin-bottom:15px;
    page-break-inside:avoid;
}

.chart-box h3{
    font-size:13px;
    margin-bottom:6px;
    color:#111827;
}

.chart-box p{
    margin:0 0 10px;
    color:#6b7280;
}

.bar-row{
    display:table;
    width:100%;
    margin-bottom:7px;
}

.bar-label{
    display:table-cell;
    width:130px;
    font-size:10px;
}

.bar-bg{
    display:table-cell;
    background:#e5e7eb;
    height:14px;
    width:300px;
}

.bar-fill{
    background:#003e7e;
    height:14px;
}

.bar-value{
    display:table-cell;
    width:80px;
    padding-left:8px;
    font-size:10px;
}