:root{
    --blue:#0b1f3a;
    --blue2:#102f55;
    --gold:#c9a227;
    --gold2:#facc15;
    --muted:#64748b;
}

*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{background:#f8f9fa;color:#1f2937;overflow-x:hidden;}
section{scroll-margin-top:95px;}
img{max-width:100%;}
a{text-decoration:none;}

.section-title small{letter-spacing:3px;color:var(--gold);font-weight:800;}
.section-title h2{color:var(--blue);font-weight:900;margin-top:8px;}
.title-line{width:65px;height:4px;background:var(--gold);margin:12px auto 0;border-radius:999px;}

/* NAVBAR */
#navbar{
    background:#fff;
    border-bottom:2px solid #f1e3b0;
    box-shadow:0 4px 18px rgba(0,0,0,.06);
    z-index:999;
}
.navbar-brand img{width:92px;}
.navbar-brand{min-width:0;}
.nav-custom{color:#333 !important;font-weight:600;transition:.25s;padding-left:.65rem !important;padding-right:.65rem !important;}
.nav-custom:hover,.nav-custom.active{color:var(--gold) !important;}
.dropdown-menu{border:0;border-radius:16px;box-shadow:0 15px 35px rgba(0,0,0,.12);}
.dropdown-item{padding:10px 16px;font-weight:500;}
.dropdown-item:hover{background:#fff7db;color:#8a6b11;}
.login-btn{background:var(--gold);color:#fff;transition:.3s;}
.login-btn:hover{background:#b8951f;color:#fff;transform:translateY(-2px);}
.navbar-toggler{border:none;box-shadow:none !important;}

/* HERO */
.hero-bg{
    min-height:100vh;
    background:url('../images/bg.png') center/cover no-repeat;
    position:relative;
    overflow:hidden;
}
.hero-bg::after{
    content:'';
    position:absolute;
    inset:0;
    z-index:0;
    pointer-events:none;
    background:radial-gradient(circle at top right, rgba(201,162,39,.35), transparent 35%), rgba(0,0,0,.58);
}

/* Keep the decorative hero overlay behind all interactive content. */
.hero-bg > .container{
    position:relative;
    z-index:1;
}
.hero-content,
.video-wrapper{
    position:relative;
    z-index:2;
}
.hero-content{
    color:#fff;
}
.hero-row{min-height:100vh;position:relative;z-index:2;padding-top:110px;padding-bottom:60px;}
.portal-badge{
    display:inline-flex;
    align-items:center;
    gap:8px;
    background:rgba(212,169,53,.2);
    border:1px solid rgba(212,169,53,.5);
    padding:7px 15px;
    border-radius:30px;
    font-size:12px;
    color:#fff;
    font-weight:800;
}
.portal-badge span{width:8px;height:8px;background:var(--gold2);border-radius:50%;display:inline-block;}
.hero-title{font-size:52px;line-height:1.1;font-weight:900;color:#fff;}
.hero-title span{color:var(--gold2);}
.hero-text{color:#e5e7eb;font-size:17px;max-width:650px;}
.hero-actions{display:flex;gap:14px;flex-wrap:wrap;}
.hero-cta{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    min-height:48px;
    padding:9px 18px;
    border-radius:14px;
    font-weight:850;
    letter-spacing:0;
    transition:.25s ease;
}
.hero-cta-icon{
    width:31px;
    height:31px;
    border-radius:10px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    font-size:16px;
    transition:.25s ease;
}
.btn-gold{background:var(--gold);color:#fff;border:0;font-weight:800;}
.btn-gold .hero-cta-icon{background:rgba(255,255,255,.18);color:#fff;}
.btn-gold:hover{background:var(--gold2);color:var(--blue);transform:translateY(-2px);}
.btn-gold:hover .hero-cta-icon{background:var(--blue);color:#fff;}
.btn-outline-white{border:1px solid rgba(255,255,255,.75);color:#fff;font-weight:800;background:rgba(255,255,255,.06);}
.btn-outline-white .hero-cta-icon{background:rgba(255,255,255,.12);color:#fff;}
.btn-outline-white:hover{background:#fff;color:var(--blue);transform:translateY(-2px);}
.btn-outline-white:hover .hero-cta-icon{background:rgba(15,42,74,.1);color:var(--blue);}
.sosmed-circle{
    width:50px;
    height:50px;
    border-radius:50%;
    background:rgba(255,255,255,.18);
    backdrop-filter:blur(8px);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:20px;
    transition:.3s;
}
.sosmed-circle:hover{background:var(--gold);color:#fff;transform:translateY(-4px);box-shadow:0 10px 20px rgba(0,0,0,.25);}
.video-card{
    background:rgba(255,255,255,.96);
    border:1px solid rgba(255,255,255,.25);
    backdrop-filter:blur(12px);
    box-shadow:0 20px 45px rgba(0,0,0,.24);
    border-radius:26px;
    padding:16px;
}
.video-thumb{
    width:100%;
    min-height:315px;
    border:0;
    padding:0;
    border-radius:18px;
    overflow:hidden;
    position:relative;
    background-size:cover;
    background-position:center;
    display:flex;
    align-items:center;
    justify-content:center;
    isolation:isolate;
    cursor:pointer;
    text-align:left;
    z-index:0;
}
.video-thumb::before{
    content:'';
    position:absolute;
    inset:0;
    background:linear-gradient(135deg,rgba(11,31,58,.78),rgba(0,0,0,.2) 48%,rgba(201,162,39,.5));
    z-index:0;
    pointer-events:none;
}
.video-thumb::after{
    content:'';
    position:absolute;
    inset:12px;
    border:1px solid rgba(255,255,255,.22);
    border-radius:14px;
    pointer-events:none;
}
.video-play-btn{
    position:relative;
    z-index:2;
    width:82px;
    height:82px;
    border:0;
    border-radius:50%;
    background:#fff;
    color:var(--blue);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:38px;
    box-shadow:0 20px 45px rgba(0,0,0,.28);
    transition:.25s;
}
.video-thumb:hover .video-play-btn,
.video-thumb:focus-visible .video-play-btn{transform:scale(1.06);background:var(--gold2);}
.video-thumb:focus-visible{outline:3px solid var(--gold2);outline-offset:4px;}
.video-thumb-caption{
    position:absolute;
    z-index:2;
    left:24px;
    right:24px;
    bottom:22px;
    color:#fff;
}
.video-thumb-caption span{
    display:inline-flex;
    padding:5px 10px;
    border-radius:999px;
    background:rgba(255,255,255,.16);
    font-size:11px;
    font-weight:900;
    letter-spacing:1px;
    text-transform:uppercase;
    margin-bottom:8px;
}
.video-thumb-caption strong{
    display:block;
    font-size:17px;
    line-height:1.35;
    max-width:420px;
}
.video-frame{
    border:0;
    width:100%;
    aspect-ratio:16/9;
    display:block;
    border-radius:18px;
    background:#000;
}
.empty-video{
    height:315px;
    background:linear-gradient(135deg,var(--blue),var(--blue2));
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    border-radius:16px;
}

/* STATISTIK */
.statistik-section{background:linear-gradient(180deg,#f8f9fa 0%,#eef2f7 100%);}
.stat-link,.stat-link:hover,.stat-link:focus,.stat-link:active{color:inherit;display:block;height:100%;}
.stat-card-new{
    background:#fff;
    color:var(--blue);
    padding:22px;
    border-radius:22px;
    height:100%;
    border:1px solid rgba(15,23,42,.06);
    box-shadow:0 12px 30px rgba(15,23,42,.07);
    transition:.25s;
    position:relative;
    overflow:hidden;
    text-align:left;
}
.stat-card-new::before{content:'';position:absolute;inset:0 0 auto 0;height:4px;background:linear-gradient(90deg,var(--gold),var(--blue));}
.stat-card-new:hover{transform:translateY(-6px);box-shadow:0 18px 42px rgba(15,23,42,.12);border-color:#d7ad2f;}
.stat-card-top{display:flex;justify-content:space-between;align-items:flex-start;gap:12px;margin-bottom:18px;}
.stat-icon-new{width:54px;height:54px;border-radius:16px;display:flex;align-items:center;justify-content:center;font-size:25px;}
.icon-anggota{background:#dbeafe;color:#2563eb;}
.icon-pegawai{background:#dcfce7;color:#16a34a;}
.icon-informasi{background:#fef3c7;color:#b45309;}
.icon-akd{background:#ede9fe;color:#7c3aed;}
.stat-click{width:34px;height:34px;border-radius:50%;background:#f8fafc;border:1px solid #e5e7eb;color:#64748b;display:flex;align-items:center;justify-content:center;transition:.25s;}
.stat-card-new:hover .stat-click{background:var(--blue);color:#fff;border-color:var(--blue);transform:translate(2px,-2px);}
.stat-card-new .stat-number{font-size:38px;font-weight:900;color:var(--blue);margin-bottom:4px;line-height:1;}
.stat-card-new p{color:#64748b;margin:0;font-size:14px;font-weight:800;min-height:38px;}
.stat-action{margin-top:18px;padding-top:14px;border-top:1px solid #eef2f7;display:flex;justify-content:space-between;align-items:center;color:var(--gold);font-size:13px;font-weight:900;}
.stat-card-new:hover .stat-action i{transform:translateX(4px);}

/* PROFIL */
.modern-card{background:#fff;border:0;border-radius:24px;box-shadow:0 12px 30px rgba(0,0,0,.06);}
.misi-number{min-width:28px;height:28px;background:#f1e3b0;border-radius:50%;text-align:center;font-size:13px;line-height:28px;margin-right:12px;font-weight:800;color:var(--blue);}
.tab-btn{border:0;padding:9px 18px;border-radius:12px;background:#e5e7eb;color:#333;font-weight:800;transition:.25s;}
.tab-btn.active{background:var(--gold);color:#fff;}
.preview-img{cursor:pointer;transition:.3s;border-radius:16px;box-shadow:0 8px 20px rgba(0,0,0,.1);}
.preview-img:hover{transform:scale(1.02);}
.img-modal{display:none;position:fixed;z-index:99999;inset:0;background:rgba(0,0,0,.92);justify-content:center;align-items:center;padding:25px;}
.img-modal.show{display:flex;}
.img-modal .modal-img{max-width:82%;max-height:86vh;border-radius:14px;}
.close-btn{position:absolute;top:20px;right:30px;color:#fff;font-size:42px;cursor:pointer;}
.modal-mobile-hint{display:none;}
.structure-modal-open{overflow:hidden;}

@media(max-width:575.98px){
    .img-modal{
        align-items:flex-start;
        justify-content:flex-start;
        overflow:auto;
        padding:72px 12px 24px;
        -webkit-overflow-scrolling:touch;
        touch-action:pan-x pan-y;
    }

    .img-modal .modal-img{
        width:850px;
        max-width:none !important;
        max-height:none !important;
        flex:0 0 auto;
        border-radius:10px;
    }

    .close-btn{
        position:fixed;
        top:14px;
        right:18px;
        z-index:2;
        width:44px;
        height:44px;
        display:flex;
        align-items:center;
        justify-content:center;
        border-radius:50%;
        background:rgba(255,255,255,.14);
        font-size:34px;
        line-height:1;
    }

    .modal-mobile-hint{
        display:block;
        position:fixed;
        top:22px;
        left:16px;
        z-index:2;
        color:#fff;
        font-size:12px;
        font-weight:800;
    }
}

/* AGENDA RAPAT */
.agenda-section{
    background:linear-gradient(180deg,#f8f9fa 0%,#eef2f7 100%);
}

.calendar-card{
    background:#fff;
    border-radius:24px;
    padding:24px;
    box-shadow:0 18px 45px rgba(15,23,42,.09);
    border:1px solid rgba(15,23,42,.06);
    position:sticky;
    top:105px;
    overflow:hidden;
}

.calendar-card::before{
    content:'';
    display:block;
    height:5px;
    background:linear-gradient(90deg,var(--gold),var(--blue));
    position:absolute;
    top:0;
    left:0;
    right:0;
}

.calendar-top{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:14px;
    margin-bottom:20px;
    padding-top:6px;
}

.calendar-label,
.agenda-panel-label{
    display:inline-block;
    color:var(--gold);
    font-size:11px;
    font-weight:900;
    letter-spacing:1.5px;
    text-transform:uppercase;
    margin-bottom:4px;
}

.calendar-top h5{
    color:var(--blue);
    font-weight:900;
    font-size:20px;
}

.btn-today{
    border:1px solid #e5e7eb;
    background:#f8fafc;
    color:var(--blue);
    border-radius:12px;
    padding:8px 11px;
    font-size:12px;
    font-weight:900;
    display:flex;
    align-items:center;
    gap:6px;
    transition:.25s;
    white-space:nowrap;
}

.btn-today:hover{
    background:var(--blue);
    color:#fff;
    border-color:var(--blue);
}

.calendar-head{
    display:grid;
    grid-template-columns:38px 1fr 38px;
    align-items:center;
    gap:12px;
    background:#f8fafc;
    border:1px solid #eef2f7;
    border-radius:16px;
    padding:10px;
    margin-bottom:18px;
}

.calendar-month-info{
    text-align:center;
    color:#64748b;
    font-size:12px;
    line-height:1.2;
}

.calendar-month-info strong{
    display:block;
    color:var(--blue);
    font-size:20px;
    font-weight:900;
}

.cal-nav{
    width:38px;
    height:38px;
    border:0;
    background:#fff;
    color:var(--blue);
    border-radius:12px;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:.25s;
    box-shadow:0 5px 12px rgba(15,23,42,.05);
}

.cal-nav:hover{
    background:var(--blue);
    color:#fff;
    transform:translateY(-2px);
}

.calendar-week,
.calendar-days{
    display:grid;
    grid-template-columns:repeat(7,1fr);
    text-align:center;
    gap:8px;
}

.calendar-week span{
    font-size:12px;
    font-weight:900;
    color:var(--blue);
    margin-bottom:8px;
}

.day-cell{
    width:100%;
    aspect-ratio:1/1;
    border:0;
    background:transparent;
    border-radius:12px;
    font-size:14px;
    color:#111827;
    transition:.2s;
    position:relative;
    font-weight:800;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-direction:column;
    gap:2px;
}

.day-cell.muted{
    color:#cbd5e1;
    font-weight:600;
}

.day-cell.has-agenda{
    background:#fff;
    box-shadow:inset 0 0 0 1px rgba(15,23,42,.08);
}

.day-cell.active{
    background:var(--blue) !important;
    color:#fff !important;
    transform:scale(1.04);
    box-shadow:0 10px 20px rgba(11,31,58,.24);
}

.day-cell.today:not(.active){
    outline:2px solid rgba(11,31,58,.28);
    outline-offset:2px;
}

.day-cell:hover{
    background:#eef2f7;
    transform:translateY(-2px);
}

.day-markers{
    position:absolute;
    left:50%;
    bottom:6px;
    transform:translateX(-50%);
    display:flex;
    justify-content:center;
    gap:3px;
    max-width:34px;
}

.day-marker,
.day-more{
    width:5px;
    height:5px;
    border-radius:50%;
    display:block;
}

.day-marker{
    box-shadow:0 0 0 1px rgba(255,255,255,.75);
}

.day-more{
    background:#64748b;
}

.calendar-legend{
    display:flex;
    align-items:center;
    gap:10px 12px;
    margin-top:18px;
    color:#64748b;
    font-size:12px;
    flex-wrap:wrap;
}

.calendar-legend div{
    display:flex;
    align-items:center;
    gap:7px;
}

.legend-dot{
    width:12px;
    height:12px;
    border-radius:4px;
    display:inline-block;
}

.legend-dot.today{
    background:#fff;
    border:2px solid rgba(11,31,58,.38);
}

.agenda-list-box{
    min-height:410px;
}

.agenda-panel-head{
    background:#fff;
    border:1px solid rgba(15,23,42,.06);
    border-radius:22px;
    padding:22px 24px;
    margin-bottom:16px;
    box-shadow:0 12px 30px rgba(15,23,42,.06);
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:14px;
}

.agenda-panel-head h5{
    color:var(--blue);
}

.agenda-panel-head small{
    color:#64748b;
}

.agenda-count{
    background:#eef2ff;
    color:var(--blue);
    padding:9px 14px;
    border-radius:999px;
    font-size:12px;
    font-weight:900;
    white-space:nowrap;
}

.agenda-result{
    display:flex;
    flex-direction:column;
    gap:14px;
}

.calendar-agenda-card{
    display:grid;
    grid-template-columns:64px 1fr;
    gap:16px;
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:20px;
    padding:18px;
    box-shadow:0 10px 24px rgba(15,23,42,.055);
    transition:.25s;
    position:relative;
    overflow:hidden;
}

.calendar-agenda-card::before{
    content:'';
    position:absolute;
    left:0;
    top:0;
    bottom:0;
    width:5px;
    background:var(--agenda-color,var(--gold));
}

.calendar-agenda-card:hover{
    transform:translateY(-4px);
    box-shadow:0 16px 34px rgba(15,23,42,.1);
    border-color:var(--agenda-color,#d7ad2f);
}

.agenda-date-box{
    width:62px;
    height:62px;
    background:var(--agenda-color,var(--blue));
    color:#fff;
    border-radius:14px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    line-height:1;
    box-shadow:0 10px 20px rgba(11,31,58,.18);
}

.agenda-date-box strong{
    font-size:24px;
    font-weight:900;
}

.agenda-date-box small{
    font-size:11px;
    margin-top:5px;
    font-weight:800;
}

.agenda-info{
    flex:1;
    min-width:0;
}

.agenda-top{
    display:flex;
    align-items:center;
    gap:8px;
    flex-wrap:wrap;
    margin-bottom:8px;
}

.agenda-category{
    background:var(--agenda-soft,#e0edff);
    color:var(--agenda-color,#2563eb);
    border-radius:999px;
    padding:5px 9px;
    font-size:11px;
    font-weight:900;
}

.agenda-time{
    color:#64748b;
    font-size:12px;
    font-weight:800;
    display:inline-flex;
    align-items:center;
    gap:5px;
}

.agenda-status-pill{
    margin-left:auto;
    border-radius:999px;
    padding:6px 12px;
    font-size:12px;
    font-weight:900;
}

.agenda-status-pill.selesai{
    background:#dcfce7;
    color:#16a34a;
}

.agenda-status-pill.berlangsung{
    background:#dbeafe;
    color:#2563eb;
}

.agenda-status-pill.dijadwalkan{
    background:#fef9c3;
    color:#ca8a04;
}

.agenda-title-cal{
    color:var(--blue);
    font-weight:900;
    font-size:17px;
    line-height:1.45;
    margin-bottom:6px;
}

.agenda-desc-cal{
    color:#64748b;
    font-size:13px;
    margin-bottom:12px;
    line-height:1.55;
    max-width:100%;
    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
    overflow:hidden;
}

.agenda-actions{
    display:flex;
    gap:8px;
    flex-wrap:wrap;
}

.btn-mini-agenda{
    border:1px solid #e5e7eb;
    color:var(--blue);
    background:#fff;
    padding:7px 11px;
    border-radius:999px;
    font-size:12px;
    font-weight:900;
    transition:.25s;
    display:inline-flex;
    align-items:center;
    gap:6px;
}

.btn-mini-agenda:hover{
    background:var(--blue);
    color:#fff;
    border-color:var(--blue);
}

.btn-agenda-all{
    border:1.5px solid var(--blue);
    color:var(--blue);
    background:#fff;
    border-radius:14px;
    padding:13px;
    font-weight:900;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    box-shadow:0 8px 18px rgba(15,23,42,.04);
}

.btn-agenda-all:hover{
    background:var(--blue);
    color:#fff;
}

.empty-agenda-calendar{
    background:#fff;
    border:1px dashed #cbd5e1;
    border-radius:20px;
    padding:48px 20px;
    text-align:center;
    color:#64748b;
    box-shadow:0 10px 24px rgba(15,23,42,.04);
}

.empty-agenda-calendar i{
    font-size:42px;
    color:#d7ad2f;
}

@media(max-width:991px){
    .calendar-card{
        position:relative;
        top:0;
    }
}

@media(max-width:768px){
    .calendar-card,
    .agenda-panel-head{
        border-radius:20px;
        padding:18px;
    }

    .calendar-agenda-card{
        grid-template-columns:1fr;
    }

    .agenda-date-box{
        width:100%;
        height:auto;
        min-height:58px;
        flex-direction:row;
        gap:8px;
    }

    .agenda-status-pill{
        margin-left:0;
    }

    .calendar-legend{
        max-height:130px;
        overflow:auto;
        padding-right:4px;
    }
}
/* PERJADIN */
.perjadin-section{background:linear-gradient(180deg,#f8f9fa 0%,#f1f5f9 100%);}
.perjadin-section a,.perjadin-section a:hover,.perjadin-section a:focus,.perjadin-section a:active{text-decoration:none;}
.perjadin-shell{background:#fff;border:1px solid rgba(15,23,42,.06);border-radius:26px;padding:20px;box-shadow:0 18px 45px rgba(15,23,42,.07);}
.perjadin-map-panel,.perjadin-list-panel{background:#fff;border:1px solid #eef2f7;border-radius:22px;padding:22px;}
.perjadin-map-panel{background:linear-gradient(180deg,#fff 0%,#f8fafc 100%);}
.panel-head{display:flex;justify-content:space-between;align-items:flex-start;gap:14px;}
.eyebrow{display:block;color:var(--gold);font-size:11px;font-weight:900;letter-spacing:1.4px;text-transform:uppercase;margin-bottom:4px;}
.panel-head h5{color:var(--blue);font-weight:900;margin:0;}
.panel-icon{width:44px;height:44px;border-radius:14px;background:#f8fafc;border:1px solid #e5e7eb;color:var(--blue);display:flex;align-items:center;justify-content:center;font-size:21px;}
.map-area{position:relative;height:330px;margin-top:18px;background:#f8fafc;border:1px solid #e5e7eb;border-radius:20px;overflow:hidden;}
.map-svg,.garis{position:absolute;inset:0;width:100%;height:100%;}
.map-svg{opacity:.75;}
.garis line{stroke:#c9a227;stroke-width:2;stroke-dasharray:6;opacity:.85;animation:dash 3s linear infinite;}
.center-point{position:absolute;top:50%;left:60%;transform:translate(-50%,-50%);width:66px;height:66px;border-radius:50%;background:var(--blue);color:#fff;display:flex;align-items:center;justify-content:center;z-index:4;border:4px solid #fff;box-shadow:0 14px 28px rgba(11,31,58,.22);}
.center-point strong{font-size:10px;font-weight:900;}
.marker{position:absolute;transform:translate(-50%,-50%);text-align:center;z-index:5;transition:.25s;}
.marker:hover{transform:translate(-50%,-50%) scale(1.08);}
.marker .dot{width:11px;height:11px;border-radius:50%;background:#c9a227;border:2px solid #fff;margin:auto;box-shadow:0 0 0 5px rgba(201,162,39,.16);}
.marker small{display:inline-block;margin-top:5px;background:#fff;border:1px solid #e5e7eb;color:#334155;font-size:10px;font-weight:800;border-radius:999px;padding:3px 7px;box-shadow:0 8px 16px rgba(15,23,42,.08);}
.map-summary{display:grid;grid-template-columns:repeat(3,1fr);gap:10px;margin-top:14px;}
.map-summary div{background:#fff;border:1px solid #eef2f7;border-radius:16px;padding:13px 10px;text-align:center;}
.map-summary strong{display:block;color:var(--blue);font-size:21px;font-weight:900;line-height:1;}
.map-summary span{display:block;color:#64748b;font-size:12px;font-weight:800;margin-top:4px;}
.perjadin-list{display:flex;flex-direction:column;gap:12px;}
.perjadin-card{display:grid;grid-template-columns:88px 1fr 38px;align-items:center;gap:14px;background:#fff;border:1px solid #e5e7eb;border-radius:18px;padding:14px;color:inherit;transition:.25s;}
.perjadin-card:hover{color:inherit;border-color:#d7ad2f;box-shadow:0 14px 30px rgba(15,23,42,.08);transform:translateY(-3px);}
.date-chip{min-height:76px;border-radius:15px;background:#f8fafc;border:1px solid #eef2f7;display:flex;flex-direction:column;justify-content:center;align-items:center;gap:6px;color:var(--blue);font-size:11px;font-weight:900;text-align:center;}
.date-chip i{color:var(--gold);font-size:20px;}
.perjadin-card-top{display:flex;flex-wrap:wrap;align-items:center;gap:8px;margin-bottom:6px;}
.status-chip{border-radius:999px;padding:5px 10px;font-size:11px;font-weight:900;}
.status-chip.warning{background:#fef3c7;color:#b45309;}
.status-chip.primary{background:#dbeafe;color:#2563eb;}
.status-chip.success{background:#dcfce7;color:#16a34a;}
.status-chip.secondary{background:#f1f5f9;color:#64748b;}
.range-chip{color:#64748b;font-size:12px;font-weight:800;}
.perjadin-card-body h6{color:var(--blue);font-weight:900;margin-bottom:4px;}
.perjadin-card-body p{color:#64748b;font-size:13px;line-height:1.5;margin-bottom:8px;}
.perjadin-meta-new{display:flex;gap:12px;flex-wrap:wrap;color:#64748b;font-size:12px;font-weight:800;}
.perjadin-meta-new i{color:var(--gold);}
.arrow-btn{width:34px;height:34px;border-radius:50%;display:flex;align-items:center;justify-content:center;background:#f8fafc;color:#64748b;transition:.25s;}
.perjadin-card:hover .arrow-btn{background:var(--blue);color:#fff;}
.perjadin-empty{border:1px dashed #cbd5e1;border-radius:18px;padding:42px 20px;text-align:center;color:#64748b;}
.perjadin-empty i{color:var(--gold);font-size:42px;}
.perjadin-empty h6{color:var(--blue);margin-top:12px;}
.perjadin-empty p{margin:0;font-size:13px;}
@keyframes dash{to{stroke-dashoffset:24;}}

/* PRODUK */
.search-box input{padding:12px 15px;border-radius:14px;border:1px solid #e5e7eb;width:280px;outline:none;}
.search-box input:focus{border-color:var(--gold);box-shadow:0 0 0 4px rgba(201,162,39,.14);}
.filter-btn{border:0;padding:10px 18px;border-radius:14px;background:#e5e7eb;font-weight:800;color:#374151;transition:.25s;}
.filter-btn.active,.filter-btn:hover{background:var(--blue);color:#fff;}
.produk-card{background:#fff;padding:25px;border-radius:22px;box-shadow:0 10px 25px rgba(0,0,0,.06);transition:.3s;height:100%;display:flex;flex-direction:column;}
.produk-card:hover{transform:translateY(-6px);}
.produk-icon{width:52px;height:52px;background:var(--blue);color:var(--gold2);border-radius:16px;display:flex;align-items:center;justify-content:center;font-size:22px;}
.badge-pos{position:absolute;top:20px;right:20px;padding:6px 12px;border-radius:999px;font-size:12px;font-weight:800;}
.badge-perda{background:#fef3c7;color:#b45309;}
.badge-usulan{background:#dbeafe;color:#1d4ed8;}
.badge-dprd{background:#ede9fe;color:#6d28d9;}
.produk-meta{display:flex;flex-direction:column;gap:12px;}
.produk-actions{display:flex;gap:8px;flex-wrap:wrap;}
.preview-btn,.download-btn{display:inline-flex;align-items:center;gap:6px;border-radius:999px;padding:7px 12px;font-size:12px;font-weight:900;transition:.25s;}
.preview-btn{background:#eef2ff;color:var(--blue);border:1px solid #dbe4ff;}
.preview-btn:hover{background:var(--blue);color:#fff;border-color:var(--blue);}
.download-btn{background:#fff7db;color:#8a6b11;border:1px solid #f1e3b0;}
.download-btn:hover{background:var(--gold);color:#fff;border-color:var(--gold);}
.dokumen-kosong{display:inline-flex;align-items:center;gap:6px;color:#94a3b8;font-size:12px;font-weight:800;}

.jdih-home-section{background:linear-gradient(180deg,#f8fafc 0%,#eef3f9 100%);}
.jdih-home-head{display:flex;align-items:flex-end;justify-content:space-between;gap:24px;background:linear-gradient(135deg,#071b34,#0f2f5c);border-radius:30px;padding:32px;color:#fff;box-shadow:0 22px 54px rgba(15,23,42,.14);overflow:hidden;position:relative;}
.jdih-home-head::after{content:"";position:absolute;right:-70px;top:-90px;width:260px;height:260px;border-radius:50%;background:rgba(250,204,21,.18);filter:blur(10px);}
.jdih-home-head>*{position:relative;z-index:1;}
.jdih-home-kicker{display:inline-flex;align-items:center;gap:8px;border-radius:999px;background:rgba(255,255,255,.12);border:1px solid rgba(255,255,255,.16);color:#fde68a;padding:8px 13px;font-size:12px;font-weight:900;letter-spacing:.04em;text-transform:uppercase;margin-bottom:13px;}
.jdih-home-head h2{font-size:34px;font-weight:900;margin:0 0 8px;}
.jdih-home-head p{color:#dbe7f5;max-width:690px;margin:0;line-height:1.65;}
.jdih-home-all{display:inline-flex;align-items:center;justify-content:center;gap:8px;min-width:max-content;border-radius:16px;background:#facc15;color:var(--blue);font-weight:900;padding:12px 16px;box-shadow:0 14px 28px rgba(0,0,0,.16);transition:.25s;}
.jdih-home-all:hover{background:#fff;color:var(--blue);transform:translateY(-2px);}
.jdih-home-filter{background:#fff;border:1px solid rgba(15,23,42,.08);border-radius:24px;padding:18px;box-shadow:0 18px 42px rgba(15,23,42,.08);}
.jdih-home-filter .search-box{position:relative;}
.jdih-home-filter .search-box i{position:absolute;left:15px;top:50%;transform:translateY(-50%);color:#94a3b8;}
.jdih-home-filter .search-box input{padding-left:42px;width:340px;}
.jdih-home-card{position:relative;overflow:hidden;border:1px solid rgba(15,23,42,.07);padding:24px;}
.jdih-home-card::before{content:"";position:absolute;inset:0 0 auto 0;height:5px;background:linear-gradient(90deg,var(--gold),var(--blue));}
.jdih-home-card-top{display:flex;align-items:flex-start;justify-content:space-between;gap:14px;margin-bottom:16px;}
.jdih-home-number{min-width:74px;border-radius:18px;background:#f8fafc;border:1px solid #e2e8f0;padding:10px;text-align:center;}
.jdih-home-number span{display:block;color:#64748b;font-size:10px;font-weight:900;text-transform:uppercase;}
.jdih-home-number strong{display:block;color:var(--blue);font-size:19px;font-weight:900;line-height:1.1;overflow-wrap:anywhere;}
.jdih-home-badge{display:inline-flex;width:max-content;max-width:100%;align-items:center;border-radius:999px;padding:7px 12px;font-size:11px;font-weight:900;margin-bottom:14px;}
.jdih-home-card h6{color:var(--blue);font-size:16px;font-weight:900;line-height:1.45;margin-bottom:10px;min-height:46px;}
.jdih-home-card p{color:#64748b;font-size:13px;line-height:1.65;margin-bottom:14px;min-height:64px;}
.jdih-home-meta{display:grid;grid-template-columns:1fr 1fr;gap:9px;margin-bottom:14px;}
.jdih-home-meta span{display:flex;align-items:center;gap:7px;border-radius:14px;background:#f8fafc;color:#475569;padding:9px 10px;font-size:12px;font-weight:800;}
.jdih-home-meta i{color:var(--gold);}
.jdih-home-empty{display:flex;flex-direction:column;align-items:center;gap:6px;border:1px dashed #cbd5e1;border-radius:24px;background:#fff;padding:42px 20px;text-align:center;color:#64748b;}
.jdih-home-empty i{font-size:42px;color:var(--gold);}
.jdih-home-empty strong{color:var(--blue);}

@media(min-width:992px){
    #produk.jdih-home-section{
        padding-top:72px !important;
        padding-bottom:78px !important;
        background:
            radial-gradient(circle at 11% 12%, rgba(250,204,21,.13), transparent 28%),
            linear-gradient(180deg,#f8fafc 0%,#eef3f9 100%) !important;
    }

    #produk .container{
        max-width:1200px;
    }

    #produk .jdih-home-head{
        align-items:center;
        padding:34px 38px;
        margin-bottom:26px !important;
        border:1px solid rgba(255,255,255,.18);
    }

    #produk .jdih-home-head h2{
        font-size:38px;
        letter-spacing:0;
    }

    #produk .jdih-home-head p{
        font-size:15px;
    }

    #produk .jdih-home-filter{
        justify-content:space-between !important;
        align-items:center;
        gap:10px !important;
        padding:16px;
        margin-bottom:32px !important;
    }

    #produk .jdih-home-filter .search-box{
        flex:1 1 330px;
        max-width:430px;
    }

    #produk .jdih-home-filter .search-box input{
        width:100%;
        height:48px;
        border-radius:15px;
        background:#f8fafc;
    }

    #produk .jdih-home-filter .filter-btn{
        height:48px;
        border-radius:15px;
        padding:0 18px;
        background:#eef2f7;
        color:#334155;
    }

    #produk .jdih-home-filter .filter-btn.active,
    #produk .jdih-home-filter .filter-btn:hover{
        background:var(--blue);
        color:#fff;
        box-shadow:0 12px 24px rgba(11,31,58,.15);
    }

    #produk .jdih-home-list{
        --bs-gutter-x:1.35rem;
        --bs-gutter-y:1.35rem;
    }

    #produk .jdih-home-card{
        min-height:300px;
        border-radius:24px;
        padding:24px;
        box-shadow:0 18px 44px rgba(15,23,42,.07);
    }

    #produk .jdih-home-card:hover{
        transform:translateY(-7px);
        border-color:rgba(201,162,39,.38);
        box-shadow:0 24px 56px rgba(15,23,42,.13);
    }

    #produk .jdih-home-badge{
        display:inline-flex !important;
        width:auto !important;
        align-self:flex-start;
        line-height:1;
        background:#fef3c7;
    }

    #produk .jdih-home-badge.badge-usulan{
        background:#dbeafe;
    }

    #produk .jdih-home-badge.badge-dprd{
        background:#ede9fe;
    }

    #produk .jdih-home-card h6{
        font-size:16px;
        min-height:70px;
        margin-bottom:12px;
    }

    #produk .jdih-home-card p{
        min-height:64px;
    }

    #produk .jdih-home-meta span{
        min-height:42px;
    }

    #produk .produk-actions{
        display:flex;
        gap:8px;
    }

    #produk .preview-btn,
    #produk .download-btn{
        border-radius:13px;
        padding:9px 13px;
    }
}

/* BERITA */
.berita-card{background:#fff;border-radius:18px;overflow:hidden;box-shadow:0 8px 22px rgba(15,23,42,.055);transition:.3s;height:100%;border:1px solid rgba(15,23,42,.06);}
.berita-card:hover{transform:translateY(-4px);box-shadow:0 16px 34px rgba(15,23,42,.1);}
.berita-img{height:190px;background:var(--blue);position:relative;}
.berita-img img{width:100%;height:100%;object-fit:cover;}
.no-img{display:flex;flex-direction:column;align-items:center;justify-content:center;height:100%;color:var(--gold2);}
.no-img i{font-size:30px;}
.badge-terbaru{position:absolute;top:15px;left:15px;background:var(--gold);color:#fff;padding:6px 13px;border-radius:12px;font-size:12px;font-weight:800;z-index:2;}
.berita-body{padding:20px;}
.meta{display:flex;gap:14px;flex-wrap:wrap;color:#6b7280;font-size:12px;}
.berita-card h6{color:var(--blue);line-height:1.45;}
.berita-featured .berita-img{height:315px;}
.berita-featured .berita-body{padding:24px;}
.berita-featured h6{font-size:22px;}
.berita-featured p{font-size:15px !important;line-height:1.65;}
.baca-link{color:var(--gold);font-weight:900;}
.baca-link:hover{color:#a78016;}

/* GALERI */
.galeri-card{position:relative;border-radius:18px;overflow:hidden;height:250px;box-shadow:0 10px 24px rgba(0,0,0,.08);background:#e5e7eb;}
.galeri-card img{width:100%;height:100%;object-fit:cover;transition:.4s;}
.galeri-overlay{position:absolute;inset:auto 0 0 0;min-height:48%;background:linear-gradient(180deg,rgba(0,0,0,0),rgba(11,31,58,.88));display:flex;justify-content:flex-start;align-items:flex-end;text-align:left;transition:.3s;padding:18px;}
.galeri-overlay-content{color:#fff;}
.galeri-overlay-content i{font-size:24px;color:var(--gold2);}
.galeri-overlay-content h6{line-height:1.4;text-shadow:0 2px 10px rgba(0,0,0,.25);}
.galeri-featured{height:360px;}
.galeri-featured .galeri-overlay{padding:24px;}
.galeri-featured .galeri-overlay-content h6{font-size:22px;}
.galeri-card:hover img{transform:scale(1.1);}
.galeri-card:hover .galeri-overlay{min-height:62%;background:linear-gradient(180deg,rgba(0,0,0,0),rgba(11,31,58,.95));}

/* PENGADUAN */
.pengaduan-section{background:linear-gradient(135deg,#06142b,#0a1f3b,#0d2c54);color:#fff;}
.pengaduan-info,.pengaduan-form{background:rgba(255,255,255,.06);padding:36px;border-radius:24px;backdrop-filter:blur(10px);border:1px solid rgba(255,255,255,.08);}
.icon-besar{width:118px;height:118px;border-radius:50%;border:2px solid var(--gold);display:flex;align-items:center;justify-content:center;margin:auto;font-size:42px;color:var(--gold);}
.info-box{background:rgba(255,255,255,.06);padding:15px 20px;border-radius:14px;text-align:center;}
.info-box strong{color:var(--gold2);display:block;}
.custom-input{background:rgba(255,255,255,.1);border:1px solid rgba(255,255,255,.08);border-radius:14px;color:#fff;padding:12px;}
.custom-input::placeholder{color:#cbd5e1;}
.custom-input:focus{background:rgba(255,255,255,.16);color:#fff;border-color:var(--gold);box-shadow:none;}
.custom-file-input{cursor:pointer;}
.custom-file-input::file-selector-button{
    border:0;
    border-radius:10px;
    background:var(--gold);
    color:var(--blue);
    font-weight:900;
    padding:8px 12px;
    margin-right:12px;
    cursor:pointer;
}
.custom-file-input:hover::file-selector-button{background:var(--gold2);}
.btn-kirim{background:var(--gold);border:0;padding:12px;border-radius:14px;font-weight:900;color:var(--blue);}
.btn-kirim:hover{background:var(--gold2);color:var(--blue);}
.notif-success,.notif-error{position:fixed;top:22px;right:22px;background:#fff;color:var(--blue);padding:15px 20px;border-radius:14px;display:flex;align-items:center;gap:12px;box-shadow:0 12px 30px rgba(0,0,0,.14);z-index:99999;animation:slideIn .5s ease;max-width:360px;}
.notif-success i{color:#16a34a;font-size:22px;}
.notif-error i{color:#dc2626;font-size:22px;}
.notif-success span,.notif-error span{cursor:pointer;font-size:20px;}
@keyframes slideIn{from{transform:translateX(110%);opacity:0;}to{transform:translateX(0);opacity:1;}}

/* FOOTER + WA */
.footer-main{background:#fff;color:var(--blue);}
.footer-main a:hover{color:var(--gold) !important;}
.footer-logo{width:92px;}
.wa-container{position:fixed;bottom:25px;right:25px;z-index:9999;}
.wa-float{width:60px;height:60px;background:#25D366;border-radius:50%;display:flex;align-items:center;justify-content:center;color:#fff;font-size:28px;cursor:pointer;box-shadow:0 8px 20px rgba(0,0,0,.2);transition:.3s;}
.wa-float:hover{transform:scale(1.08);background:#1ebe5d;}
.wa-box{width:285px;background:#fff;border-radius:16px;box-shadow:0 12px 28px rgba(0,0,0,.16);overflow:hidden;margin-bottom:10px;display:none;animation:fadeUp .3s ease;}
.wa-header{background:#25D366;color:#fff;padding:12px 15px;display:flex;justify-content:space-between;align-items:center;}
.wa-header span{cursor:pointer;font-size:20px;}
.wa-body{padding:15px;font-size:14px;color:#333;}
.wa-btn{display:block;text-align:center;background:#25D366;color:#fff;padding:11px;font-weight:900;}
.wa-btn:hover{background:#1ebe5d;color:#fff;}
@keyframes fadeUp{from{opacity:0;transform:translateY(20px);}to{opacity:1;transform:translateY(0);}}

/* PAGINATION */
.pagination .page-link{border-radius:10px;margin:0 3px;color:var(--blue);font-weight:800;}
.pagination .active .page-link{background:var(--gold);border-color:var(--gold);color:#fff;}
.pagination .page-link:hover{background:#f1e3b0;color:#000;}
.pagination .page-item.disabled .pagination-dots{background:#fff;color:#64748b;border-color:#e5e7eb;pointer-events:none;}

/* RESPONSIVE */
@media(max-width:991px){
    .navbar-collapse{background:#fff;margin-top:12px;padding:15px;border-radius:16px;box-shadow:0 12px 28px rgba(0,0,0,.08);}
    .hero-title{font-size:42px;}
    .hero-row{padding-top:125px;}
    .calendar-card{position:relative;top:0;}
    .perjadin-shell{padding:16px;}
}
@media(max-width:768px){
    section{scroll-margin-top:85px;}
    .navbar-brand img{width:72px;}
    .brand-title{font-size:13px !important;}
    .navbar-brand small{font-size:10px;}
    .hero-row{min-height:auto;padding-top:125px;padding-bottom:60px;}
    .hero-title{font-size:32px;}
    .hero-text{font-size:14px;}
    .sosmed-circle{width:42px;height:42px;font-size:17px;}
    .video-card{padding:10px;border-radius:20px;}
    .stat-card-new{padding:18px;border-radius:18px;}
    .stat-icon-new{width:48px;height:48px;font-size:22px;}
    .stat-click{width:30px;height:30px;}
    .stat-card-new .stat-number{font-size:30px;}
    .calendar-card,.perjadin-map-panel,.perjadin-list-panel{padding:18px;}
    .calendar-top{flex-direction:column;}
    .btn-today{width:100%;justify-content:center;}
    .calendar-week,.calendar-days{gap:5px;}
    .day-cell{font-size:12px;border-radius:9px;}
    .agenda-panel-head{padding:18px;}
    .calendar-agenda-card{flex-direction:column;gap:12px;}
    .agenda-date-box{width:62px;}
    .agenda-status-pill{margin-left:0;}
    .map-area{height:250px;}
    .map-summary{grid-template-columns:1fr;}
    .perjadin-card{grid-template-columns:1fr;}
    .date-chip{min-height:auto;flex-direction:row;justify-content:flex-start;padding:12px;}
    .arrow-btn{justify-self:end;}
    .center-point{width:54px;height:54px;}
    .marker small{font-size:8px;padding:2px 5px;}
    .search-box,.search-box input{width:100%;}
    .filter-btn{flex:1 1 auto;font-size:13px;padding:9px 12px;}
    .berita-img{height:210px;}
    .galeri-card{height:230px;}
    .pengaduan-info,.pengaduan-form{padding:24px;}
    .img-modal .modal-img{max-width:96%;max-height:82vh;}
    .footer-main,.footer-main .text-end{text-align:center !important;}
    .footer-bottom{flex-direction:column;gap:8px;text-align:center;}
    .wa-container{right:14px;bottom:14px;}
    .wa-float{width:52px;height:52px;font-size:24px;}
    .wa-box{width:270px;}
}
@media(max-width:480px){
    .hero-title{font-size:28px;}
    .section-title h2{font-size:25px;}
    .portal-badge{font-size:11px;}
    .hero-cta{width:100%;}
    .meta{flex-direction:column;gap:5px;}
    .navbar-brand{gap:8px !important;}
    .navbar-brand img{width:66px;}
    .navbar-brand small{font-size:9px;}
    .hero-row{padding-top:105px;padding-bottom:36px;}
    .hero-actions{gap:10px;}
    .video-thumb{min-height:230px;}
    .video-play-btn{width:66px;height:66px;font-size:32px;}
    .video-thumb-caption{left:18px;right:18px;bottom:18px;}
    .statistik-section .container,
    #visi .container,
    .agenda-section .container,
    .perjadin-section .container,
    #produk .container,
    #berita .container,
    #galeri .container,
    #pengaduan .container{padding-top:1.25rem !important;padding-bottom:1.25rem !important;}
    .section-title{margin-bottom:1.75rem !important;}
    .berita-featured .berita-img{height:225px;}
    .berita-featured h6{font-size:18px;}
    .galeri-featured{height:260px;}
    .galeri-overlay{min-height:56%;}
    .wa-box{width:245px;}
}

@media(max-width:575.98px){
    body{
        background:#f3f6fb;
    }

    section{
        scroll-margin-top:76px;
    }

    .hero-bg{
        min-height:0;
        background-position:center top;
    }

    .hero-bg::after{
        background:
            linear-gradient(180deg, rgba(6,20,43,.9) 0%, rgba(8,23,48,.84) 52%, rgba(243,246,251,1) 100%),
            radial-gradient(circle at 82% 18%, rgba(250,204,21,.28), transparent 32%);
    }

    .hero-row{
        min-height:0;
        padding-top:92px !important;
        padding-bottom:24px !important;
        text-align:left;
    }

    .portal-badge{
        padding:6px 11px;
        border-radius:999px;
        font-size:10px;
        letter-spacing:.7px;
        background:rgba(255,255,255,.1);
    }

    .hero-title{
        font-size:clamp(27px, 8.2vw, 34px);
        line-height:1.14;
        margin-bottom:12px !important;
    }

    .hero-title br{
        display:none;
    }

    .hero-text{
        font-size:13.5px;
        line-height:1.65;
        max-width:96%;
        margin-bottom:18px !important;
    }

    .hero-actions{
        display:grid;
        grid-template-columns:1fr;
        gap:10px;
    }

    .hero-cta{
        width:100%;
        min-height:46px;
        border-radius:13px;
        padding:8px 13px;
        font-size:13px;
    }

    .hero-cta-icon{
        width:29px;
        height:29px;
        border-radius:9px;
    }

    .sosmed-circle{
        width:40px;
        height:40px;
        font-size:16px;
        background:rgba(255,255,255,.14);
    }

    .video-card{
        margin-top:20px;
        padding:8px;
        border-radius:18px;
        box-shadow:0 16px 34px rgba(15,23,42,.18);
    }

    .video-thumb,
    .empty-video{
        min-height:205px;
        border-radius:14px;
    }

    .video-thumb::after{
        inset:8px;
        border-radius:11px;
    }

    .video-play-btn{
        width:58px;
        height:58px;
        font-size:27px;
    }

    .video-thumb-caption{
        left:14px;
        right:14px;
        bottom:14px;
    }

    .video-thumb-caption span{
        font-size:9.5px;
        padding:4px 8px;
    }

    .video-thumb-caption strong{
        font-size:13px;
        line-height:1.35;
    }

    .statistik-section,
    #visi,
    .agenda-section,
    .perjadin-section,
    #produk,
    #berita,
    #galeri{
        background:#f3f6fb !important;
    }

    .statistik-section .container,
    #visi .container,
    .agenda-section .container,
    .perjadin-section .container,
    #produk .container,
    #berita .container,
    #galeri .container,
    #pengaduan .container{
        padding-top:30px !important;
        padding-bottom:30px !important;
    }

    section.py-5{
        padding-top:24px !important;
        padding-bottom:24px !important;
    }

    .section-title{
        text-align:left !important;
        margin-bottom:20px !important;
    }

    .section-title small{
        display:inline-flex;
        max-width:100%;
        letter-spacing:1.2px;
        font-size:10px;
        line-height:1.35;
    }

    .section-title h2{
        font-size:24px !important;
        line-height:1.2;
        margin-top:6px;
    }

    .section-title p{
        font-size:13px;
        line-height:1.55;
    }

    .title-line{
        margin-left:0;
        margin-right:0;
        width:48px;
        height:3px;
    }

    .statistik-section .row{
        --bs-gutter-x:10px;
        --bs-gutter-y:10px;
    }

    .statistik-section .col-6{
        width:50%;
    }

    .stat-card-new{
        padding:14px;
        border-radius:16px;
        box-shadow:0 8px 20px rgba(15,23,42,.06);
    }

    .stat-card-top{
        margin-bottom:12px;
    }

    .stat-icon-new{
        width:42px;
        height:42px;
        border-radius:13px;
        font-size:20px;
    }

    .stat-click{
        width:28px;
        height:28px;
        font-size:12px;
    }

    .stat-card-new .stat-number{
        font-size:25px;
    }

    .stat-card-new p{
        min-height:34px;
        font-size:12px;
        line-height:1.35;
    }

    .stat-action{
        margin-top:10px;
        padding-top:10px;
        font-size:11px;
    }

    .modern-card{
        border-radius:18px;
        box-shadow:0 10px 24px rgba(15,23,42,.06);
    }

    .modern-card.p-4{
        padding:18px !important;
    }

    .modern-card h5{
        font-size:16px;
    }

    .misi-number{
        min-width:25px;
        height:25px;
        line-height:25px;
        font-size:12px;
    }

    .tab-btn{
        flex:1 1 100%;
        width:100%;
        border-radius:12px;
        padding:10px 12px;
        font-size:13px;
    }

    .preview-img{
        border-radius:14px;
    }

    .calendar-card,
    .agenda-panel-head,
    .perjadin-shell,
    .perjadin-map-panel,
    .perjadin-list-panel,
    .produk-card,
    .berita-card,
    .galeri-card,
    .pengaduan-info,
    .pengaduan-form{
        border-radius:17px !important;
        box-shadow:0 8px 22px rgba(15,23,42,.06);
    }

    .calendar-card,
    .agenda-panel-head,
    .perjadin-map-panel,
    .perjadin-list-panel{
        padding:15px !important;
    }

    .calendar-top{
        flex-direction:row;
        align-items:center;
        margin-bottom:14px;
    }

    .calendar-label,
    .agenda-panel-label,
    .eyebrow{
        font-size:9.5px;
        letter-spacing:1px;
    }

    .calendar-top h5,
    .panel-head h5{
        font-size:16px;
    }

    .btn-today{
        width:auto;
        min-height:38px;
        padding:7px 10px;
        font-size:11px;
    }

    .calendar-head{
        grid-template-columns:36px 1fr 36px;
        gap:8px;
        padding:8px;
        border-radius:14px;
        margin-bottom:14px;
    }

    .cal-nav{
        width:36px;
        height:36px;
        border-radius:11px;
    }

    .calendar-month-info strong{
        font-size:18px;
    }

    .calendar-month-info span{
        font-size:11px;
    }

    .calendar-week,
    .calendar-days{
        gap:4px !important;
    }

    .calendar-week span{
        font-size:10px;
        margin-bottom:5px;
    }

    .day-cell{
        min-height:38px;
        border-radius:10px;
        font-size:12px !important;
    }

    .day-markers{
        bottom:4px;
        gap:2px;
    }

    .day-marker,
    .day-more{
        width:4px;
        height:4px;
    }

    .calendar-legend{
        max-height:88px;
        overflow:auto;
        gap:8px;
        font-size:10.5px;
        margin-top:13px;
    }

    .legend-dot{
        width:10px;
        height:10px;
    }

    .agenda-list-box{
        min-height:0;
    }

    .agenda-panel-head{
        align-items:flex-start;
        margin-bottom:12px;
    }

    .agenda-panel-head h5{
        font-size:16px;
    }

    .agenda-panel-head small{
        font-size:12px;
        line-height:1.45;
    }

    .agenda-count{
        padding:7px 10px;
        font-size:11px;
    }

    .calendar-agenda-card{
        grid-template-columns:1fr;
        gap:11px;
        border-radius:16px;
        padding:15px;
    }

    .calendar-agenda-card::before{
        width:4px;
    }

    .agenda-date-box{
        width:100%;
        min-height:44px;
        padding:10px 12px;
        border-radius:13px;
        flex-direction:row;
        justify-content:flex-start;
    }

    .agenda-date-box strong{
        font-size:20px;
    }

    .agenda-date-box small{
        margin-top:0;
    }

    .agenda-category,
    .agenda-time,
    .agenda-status-pill{
        font-size:10.5px;
    }

    .agenda-title-cal{
        font-size:15px;
    }

    .agenda-desc-cal{
        font-size:12px;
        -webkit-line-clamp:3;
    }

    .agenda-actions{
        display:grid;
        grid-template-columns:1fr;
    }

    .btn-mini-agenda,
    .btn-agenda-all{
        justify-content:center;
        border-radius:12px;
        min-height:39px;
    }

    .perjadin-shell{
        padding:0;
        border:0;
        background:transparent;
        box-shadow:none;
    }

    .panel-head{
        align-items:center;
    }

    .panel-icon{
        width:38px;
        height:38px;
        border-radius:12px;
        font-size:18px;
    }

    .map-area{
        height:210px;
        border-radius:15px;
    }

    .center-point{
        width:48px;
        height:48px;
        border-width:3px;
    }

    .center-point strong{
        font-size:9px;
    }

    .marker small{
        max-width:82px;
        white-space:nowrap;
        overflow:hidden;
        text-overflow:ellipsis;
    }

    .map-summary{
        grid-template-columns:repeat(3,1fr);
        gap:7px;
    }

    .map-summary div{
        border-radius:13px;
        padding:10px 6px;
    }

    .map-summary strong{
        font-size:17px;
    }

    .map-summary span{
        font-size:10px;
    }

    .perjadin-card{
        grid-template-columns:1fr;
        gap:10px;
        border-radius:15px;
        padding:13px;
    }

    .date-chip{
        min-height:0;
        flex-direction:row;
        justify-content:flex-start;
        padding:10px 11px;
        border-radius:13px;
    }

    .perjadin-card-body h6{
        font-size:14px;
        line-height:1.45;
    }

    .perjadin-card-body p{
        font-size:12px;
    }

    .perjadin-meta-new{
        font-size:11px;
        gap:8px;
    }

    .arrow-btn{
        justify-self:end;
    }

    #produk form{
        display:grid !important;
        grid-template-columns:1fr 1fr;
        gap:8px !important;
        margin-bottom:22px !important;
    }

    #produk .search-box{
        grid-column:1 / -1;
    }

    .search-box,
    .search-box input{
        width:100%;
    }

    .filter-btn{
        min-height:41px;
        border-radius:12px;
        padding:8px 9px;
        font-size:12px;
        line-height:1.25;
    }

    .produk-card{
        padding:17px;
    }

    .produk-icon{
        width:44px;
        height:44px;
        border-radius:13px;
        font-size:19px;
    }

    .badge-pos{
        top:14px;
        right:14px;
        max-width:46%;
        padding:5px 8px;
        font-size:10px;
        text-align:center;
    }

    .produk-card h6{
        font-size:14px;
        line-height:1.45;
        padding-right:0 !important;
    }

    .produk-actions{
        display:grid;
        grid-template-columns:1fr 1fr;
    }

    .preview-btn,
    .download-btn{
        justify-content:center;
        border-radius:12px;
    }

    .berita-img{
        height:188px;
    }

    .berita-body{
        padding:16px;
    }

    .berita-card h6{
        font-size:15px;
    }

    .berita-body p{
        font-size:12px;
    }

    .meta{
        flex-direction:row;
        gap:8px;
        font-size:11px;
    }

    .baca-link{
        display:inline-flex;
        margin-top:4px;
        font-size:13px;
    }

    .galeri-card{
        height:205px;
    }

    .galeri-overlay{
        min-height:50%;
        padding:15px;
    }

    .galeri-overlay-content h6{
        font-size:14px;
    }

    .pengaduan-section{
        background:linear-gradient(180deg,#06142b 0%,#0b2448 100%);
    }

    .pengaduan-info,
    .pengaduan-form{
        padding:20px;
    }

    .icon-besar{
        width:82px;
        height:82px;
        font-size:31px;
        margin-bottom:16px !important;
    }

    .pengaduan-info h4{
        font-size:20px;
    }

    .pengaduan-info p{
        font-size:13px;
        line-height:1.6;
    }

    .info-box{
        flex:1 1 calc(33.333% - 8px);
        padding:11px 8px;
        border-radius:12px;
    }

    .custom-input{
        min-height:43px;
        border-radius:12px;
        font-size:13px;
    }

    textarea.custom-input{
        min-height:120px;
    }

    .btn-kirim{
        min-height:44px;
        border-radius:12px;
    }

    .pagination{
        gap:4px;
    }

    .pagination .page-link{
        min-width:36px;
        margin:0 !important;
        border-radius:10px;
        text-align:center;
    }

    .footer-main{
        text-align:center;
    }

    .wa-container{
        right:12px;
        bottom:12px;
    }

    .wa-float{
        width:50px;
        height:50px;
        font-size:23px;
    }

    .wa-box{
        width:min(260px, calc(100vw - 24px));
    }
}

.pengaduan-public-page .pengaduan-page-kicker{
    display:inline-flex;
    margin-bottom:10px;
    color:var(--gold2);
    font-size:11px;
    font-weight:900;
    letter-spacing:1px;
}

.pengaduan-public-page .pengaduan-support-list{
    display:grid;
    gap:10px;
    margin-top:22px;
    text-align:left;
}

.pengaduan-public-page .pengaduan-support-list div{
    display:flex;
    align-items:center;
    gap:10px;
    padding:11px 12px;
    border:1px solid rgba(255,255,255,.1);
    border-radius:14px;
    background:rgba(255,255,255,.07);
    color:#e5edf7;
    font-size:13px;
    font-weight:700;
}

.pengaduan-public-page .pengaduan-support-list i{
    color:var(--gold2);
    font-size:17px;
}

.pengaduan-form-head{
    display:flex;
    align-items:flex-start;
    gap:12px;
    margin-bottom:18px;
}

.pengaduan-form-head > span{
    width:42px;
    height:42px;
    display:flex;
    align-items:center;
    justify-content:center;
    flex:0 0 auto;
    border-radius:14px;
    color:var(--blue);
    background:var(--gold2);
}

.pengaduan-form-head small{
    color:rgba(255,255,255,.72);
    line-height:1.45;
}

@media(max-width:767.98px){
    .pengaduan-public-page{
        padding-top:92px !important;
        background:
            radial-gradient(circle at 82% 8%, rgba(250,204,21,.18), transparent 32%),
            linear-gradient(180deg,#06142b 0%,#0b2448 100%) !important;
    }

    .pengaduan-public-page .container{
        padding-left:16px;
        padding-right:16px;
    }

    .pengaduan-public-page .row{
        --bs-gutter-y:18px;
    }

    .pengaduan-public-page .pengaduan-info,
    .pengaduan-public-page .pengaduan-form{
        padding:20px !important;
        border-radius:20px !important;
        border:1px solid rgba(255,255,255,.1);
        box-shadow:0 16px 36px rgba(0,0,0,.16);
    }

    .pengaduan-public-page .pengaduan-info{
        text-align:left !important;
    }

    .pengaduan-public-page .icon-besar{
        width:68px;
        height:68px;
        margin-left:0;
        margin-right:auto;
        margin-bottom:14px !important;
        font-size:27px;
    }

    .pengaduan-public-page .pengaduan-info h4{
        font-size:23px;
        line-height:1.2;
    }

    .pengaduan-public-page .pengaduan-info p{
        font-size:13px;
        line-height:1.65;
    }

    .pengaduan-public-page .pengaduan-support-list{
        gap:8px;
        margin-top:16px;
    }

    .pengaduan-public-page .pengaduan-support-list div{
        padding:10px 11px;
        font-size:12px;
    }

    .pengaduan-public-page .pengaduan-form label{
        font-size:12px;
        font-weight:800;
    }

    .pengaduan-public-page .custom-input{
        min-height:46px;
        border-radius:14px;
        background:rgba(255,255,255,.12);
    }

    .pengaduan-public-page textarea.custom-input{
        min-height:132px;
    }

    .pengaduan-public-page .btn-kirim{
        min-height:48px;
        border-radius:15px;
    }
}

@media(max-width:767.98px){
    body.berita-public-page main{
        padding-top:86px !important;
        background:#f5f7fb !important;
    }

    body.berita-public-page main > .container{
        padding-top:18px !important;
    }

    body.berita-public-page .section-title{
        margin-bottom:18px !important;
        text-align:left !important;
    }

    body.berita-public-page .section-title small{
        letter-spacing:1px;
        font-size:10px;
    }

    body.berita-public-page .section-title h2{
        font-size:23px;
        line-height:1.2;
    }

    body.berita-public-page .title-line{
        width:44px;
        height:3px;
        margin-left:0;
        margin-right:0;
    }

    body.berita-public-page .row.g-4{
        --bs-gutter-x:12px;
        --bs-gutter-y:14px;
    }

    body.berita-public-page .row.g-4 > [class*="col-"]{
        width:50%;
        flex:0 0 50%;
    }

    body.berita-public-page .berita-card{
        min-height:276px;
        border-radius:16px;
        box-shadow:0 10px 22px rgba(16,46,85,.075);
    }

    body.berita-public-page .berita-card:hover{
        transform:none;
    }

    body.berita-public-page .berita-img{
        height:108px;
    }

    body.berita-public-page .berita-body{
        padding:10px 10px 12px;
    }

    body.berita-public-page .meta{
        gap:6px;
        margin-bottom:6px !important;
        color:#7c8799;
        font-size:9.5px;
    }

    body.berita-public-page .meta small:nth-child(2){
        display:none;
    }

    body.berita-public-page .berita-card h6{
        min-height:51px;
        display:-webkit-box;
        -webkit-line-clamp:3;
        -webkit-box-orient:vertical;
        overflow:hidden;
        font-size:12px;
        line-height:1.42;
        margin-bottom:7px;
    }

    body.berita-public-page .berita-body p{
        min-height:16px;
        display:-webkit-box;
        -webkit-line-clamp:1;
        -webkit-box-orient:vertical;
        overflow:hidden;
        margin-bottom:8px;
        font-size:10.5px;
        line-height:1.45;
    }

    body.berita-public-page .baca-link{
        display:inline-flex;
        align-items:center;
        color:#174ea6;
        font-size:10.5px;
        font-weight:900;
    }
}

@media(max-width:380px){
    body.berita-public-page .row.g-4{
        --bs-gutter-x:10px;
        --bs-gutter-y:12px;
    }

    body.berita-public-page .berita-img{
        height:98px;
    }

    body.berita-public-page .berita-body{
        padding:9px;
    }

    body.berita-public-page .berita-card h6{
        font-size:12px;
    }
}

@media(max-width:991.98px){
    body.berita-public-page .footer-main{
        text-align:center;
        background:#fff;
        border-top:1px solid rgba(8,47,99,.10);
        padding-bottom:calc(106px + env(safe-area-inset-bottom));
    }

    body.berita-public-page .footer-main .row{
        --bs-gutter-y:16px;
        max-width:520px;
        margin-left:auto;
        margin-right:auto;
    }

    body.berita-public-page .footer-main .container.py-5{
        padding-top:28px !important;
        padding-bottom:22px !important;
    }

    body.berita-public-page .footer-main h5{
        color:#082f63;
        font-size:16px;
        margin-bottom:10px;
    }

    body.berita-public-page .footer-logo{
        width:64px !important;
        height:auto;
    }

    body.berita-public-page .footer-main p{
        color:#77859d;
        font-size:12px;
        line-height:1.65;
    }

    body.berita-public-page .footer-main .btn-outline-dark{
        width:38px;
        height:38px;
        display:inline-flex;
        align-items:center;
        justify-content:center;
        border-color:rgba(8,47,99,.10);
        border-radius:13px;
        color:#082f63;
        background:#fff7df;
    }

    body.berita-public-page .footer-main .row > .col-lg-4:nth-child(2){
        display:none;
    }

    body.berita-public-page .footer-main .col-lg-4:nth-child(3){
        max-width:360px;
        margin-left:auto;
        margin-right:auto;
        padding:16px;
        border:1px solid rgba(8,47,99,.10);
        border-radius:18px;
        background:#f8fbff;
    }

    body.berita-public-page .footer-main .col-lg-4:nth-child(3) p{
        margin-bottom:8px !important;
    }

    body.berita-public-page .footer-bottom{
        flex-direction:column;
        gap:5px;
        text-align:center;
        padding-top:12px !important;
        padding-bottom:14px !important;
        color:#77859d;
        font-size:11px;
    }

    body.berita-public-page .footer-bottom .text-end{
        text-align:center !important;
    }
}

@media(max-width:575.98px){
    body.berita-public-page .footer-main{
        padding-bottom:calc(150px + env(safe-area-inset-bottom));
    }
}

/* ==========================================================================
   HERO LANDING v6.2 — Modern Public Portal
   Tidak bergantung pada bg.png agar hero tetap konsisten pada semua server.
   ========================================================================== */
.website-dprd-page .hero-home-v62{
    --hero-navy:#071a2f;
    --hero-navy-2:#0d2b4b;
    --hero-navy-3:#153e66;
    --hero-gold:#d6ad35;
    --hero-gold-bright:#facc15;
    position:relative;
    isolation:isolate;
    min-height:720px;
    overflow:hidden;
    background:
        radial-gradient(circle at 84% 12%, rgba(214,173,53,.22), transparent 23%),
        radial-gradient(circle at 7% 88%, rgba(39,101,155,.24), transparent 30%),
        linear-gradient(118deg,#06172a 0%,#0a2340 48%,#10355a 100%);
}

.website-dprd-page .hero-home-v62::before,
.website-dprd-page .hero-home-v62::after{
    content:none;
}

.website-dprd-page .hero-home-v62 > .container{
    position:relative;
    z-index:3;
}

.hero-home-v62 .hero-grid{
    position:absolute;
    inset:0;
    z-index:0;
    pointer-events:none;
    opacity:.22;
    background-image:
        linear-gradient(rgba(255,255,255,.07) 1px,transparent 1px),
        linear-gradient(90deg,rgba(255,255,255,.07) 1px,transparent 1px);
    background-size:52px 52px;
    -webkit-mask-image:linear-gradient(90deg,rgba(0,0,0,.82),transparent 92%);
    mask-image:linear-gradient(90deg,rgba(0,0,0,.82),transparent 92%);
}

.hero-home-v62 .hero-ambient{
    position:absolute;
    z-index:0;
    border-radius:50%;
    pointer-events:none;
    filter:blur(4px);
}

.hero-home-v62 .hero-ambient-one{
    width:500px;
    height:500px;
    top:-240px;
    right:-80px;
    background:radial-gradient(circle,rgba(250,204,21,.20),rgba(250,204,21,0) 70%);
}

.hero-home-v62 .hero-ambient-two{
    width:520px;
    height:520px;
    left:-250px;
    bottom:-290px;
    background:radial-gradient(circle,rgba(54,121,178,.27),rgba(54,121,178,0) 70%);
}

.hero-home-v62 .hero-home-row{
    min-height:720px;
    padding-top:112px;
    padding-bottom:58px;
}

.hero-home-v62 .hero-home-copy{
    max-width:660px;
    color:#fff;
    position:relative;
    z-index:3;
}

.hero-home-v62 .hero-kicker{
    display:inline-flex;
    align-items:center;
    gap:9px;
    margin-bottom:22px;
    padding:8px 13px;
    border:1px solid rgba(250,204,21,.34);
    border-radius:999px;
    background:rgba(255,255,255,.075);
    color:#f8e7a4;
    box-shadow:inset 0 1px 0 rgba(255,255,255,.06);
    backdrop-filter:blur(12px);
    -webkit-backdrop-filter:blur(12px);
    font-size:11px;
    line-height:1;
    font-weight:900;
    letter-spacing:1.35px;
    text-transform:uppercase;
}

.hero-home-v62 .hero-kicker-dot{
    width:8px;
    height:8px;
    flex:0 0 8px;
    border-radius:50%;
    background:var(--hero-gold-bright);
    box-shadow:0 0 0 5px rgba(250,204,21,.10),0 0 18px rgba(250,204,21,.45);
}

.hero-home-v62 .hero-home-title{
    max-width:650px;
    margin:0;
    color:#fff;
    font-size:clamp(3.35rem,4.5vw,4.85rem);
    line-height:.99;
    letter-spacing:-.052em;
    font-weight:900;
    text-wrap:balance;
}

.hero-home-v62 .hero-home-title span{
    display:block;
    margin-top:9px;
    color:#f8d95f;
    background:linear-gradient(110deg,#fff2ae 0%,#facc15 44%,#d8ad2f 100%);
    -webkit-background-clip:text;
    background-clip:text;
    -webkit-text-fill-color:transparent;
}

.hero-home-v62 .hero-home-text{
    max-width:620px;
    margin:24px 0 0;
    color:rgba(236,244,252,.79);
    font-size:1.05rem;
    line-height:1.78;
    font-weight:450;
}

.hero-home-v62 .hero-home-text strong{
    color:#fff0a6;
    font-weight:850;
}

.hero-home-v62 .hero-home-actions{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin-top:29px;
}

.hero-home-v62 .hero-cta{
    min-height:52px;
    padding:7px 10px 7px 8px;
    border-radius:14px;
    font-size:14px;
    font-weight:850;
    transition:transform .2s ease,box-shadow .2s ease,background .2s ease,border-color .2s ease;
}

.hero-home-v62 .hero-primary-action{
    min-width:176px;
    color:#10233a;
    border:1px solid #e8bf3e;
    background:linear-gradient(135deg,#ffe78a 0%,#facc15 48%,#d8ac2e 100%);
    box-shadow:0 15px 30px rgba(0,0,0,.17),inset 0 1px 0 rgba(255,255,255,.55);
}

.hero-home-v62 .hero-primary-action .hero-cta-icon{
    background:rgba(7,26,47,.10);
    color:#10233a;
}

.hero-home-v62 .hero-primary-action:hover{
    color:#071a2f;
    transform:translateY(-2px);
    box-shadow:0 20px 38px rgba(0,0,0,.22),0 0 0 1px rgba(250,204,21,.16);
}

.hero-home-v62 .hero-primary-action .hero-cta-arrow{
    margin-left:4px;
    font-size:14px;
    transition:transform .2s ease;
}

.hero-home-v62 .hero-primary-action:hover .hero-cta-arrow{
    transform:translateX(3px);
}

.hero-home-v62 .hero-secondary-action{
    min-width:168px;
    color:#f8fafc;
    border:1px solid rgba(255,255,255,.22);
    background:rgba(255,255,255,.075);
    box-shadow:inset 0 1px 0 rgba(255,255,255,.07);
    backdrop-filter:blur(12px);
    -webkit-backdrop-filter:blur(12px);
}

.hero-home-v62 .hero-secondary-action .hero-cta-icon{
    background:rgba(255,255,255,.10);
    color:#f8d95f;
}

.hero-home-v62 .hero-secondary-action:hover{
    color:#fff;
    border-color:rgba(255,255,255,.38);
    background:rgba(255,255,255,.13);
    transform:translateY(-2px);
}

.hero-home-v62 .hero-service-row{
    display:flex;
    align-items:center;
    flex-wrap:wrap;
    gap:9px 19px;
    margin-top:24px;
    color:rgba(229,238,247,.65);
    font-size:11px;
    font-weight:750;
}

.hero-home-v62 .hero-service-row span{
    display:inline-flex;
    align-items:center;
    gap:6px;
}

.hero-home-v62 .hero-service-row i{
    color:#facc15;
    font-size:11px;
}

.hero-home-v62 .hero-media-stage{
    position:relative;
    z-index:3;
    max-width:610px;
    margin:4px 0 4px auto;
    padding:20px 26px 25px;
}

.hero-home-v62 .hero-media-glow{
    position:absolute;
    z-index:-1;
    width:86%;
    height:76%;
    left:7%;
    top:13%;
    border-radius:50%;
    background:radial-gradient(circle,rgba(250,204,21,.24),rgba(250,204,21,.07) 42%,transparent 72%);
    filter:blur(34px);
}

.hero-home-v62 .hero-media-card{
    position:relative;
    overflow:hidden;
    border:1px solid rgba(255,255,255,.17);
    border-radius:27px;
    background:rgba(255,255,255,.97);
    box-shadow:0 35px 85px rgba(0,0,0,.33),0 10px 28px rgba(0,0,0,.13);
    transform:perspective(1100px) rotateY(-2deg) rotateX(1deg);
    transform-origin:center;
    transition:transform .35s ease,box-shadow .35s ease;
}

.hero-home-v62 .hero-media-card:hover{
    transform:perspective(1100px) rotateY(0) rotateX(0) translateY(-4px);
    box-shadow:0 43px 95px rgba(0,0,0,.38),0 12px 30px rgba(0,0,0,.15);
}

.hero-home-v62 .hero-media-head{
    min-height:70px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
    padding:14px 16px;
    border-bottom:1px solid #e9eef4;
    background:linear-gradient(180deg,#ffffff,#f8fafc);
}

.hero-home-v62 .hero-media-title{
    min-width:0;
    display:flex;
    align-items:center;
    gap:10px;
}

.hero-home-v62 .hero-media-icon{
    width:39px;
    height:39px;
    flex:0 0 39px;
    display:grid;
    place-items:center;
    border-radius:12px;
    color:#fff;
    background:linear-gradient(145deg,#183e65,#071a2f);
    box-shadow:0 7px 16px rgba(7,26,47,.20);
}

.hero-home-v62 .hero-media-title strong,
.hero-home-v62 .hero-media-title small{
    display:block;
}

.hero-home-v62 .hero-media-title strong{
    color:#0b2744;
    font-size:13px;
    line-height:1.2;
    font-weight:900;
}

.hero-home-v62 .hero-media-title small{
    margin-top:3px;
    color:#8996a5;
    font-size:10px;
    font-weight:650;
}

.hero-home-v62 .hero-media-status{
    flex:0 0 auto;
    display:inline-flex;
    align-items:center;
    gap:7px;
    padding:6px 9px;
    border:1px solid #dcfce7;
    border-radius:999px;
    color:#15803d;
    background:#f0fdf4;
    font-size:9px;
    font-weight:850;
}

.hero-home-v62 .hero-media-status i{
    width:7px;
    height:7px;
    display:inline-block;
    border-radius:50%;
    background:#22c55e;
    box-shadow:0 0 0 4px rgba(34,197,94,.10);
}

.hero-home-v62 .hero-video-wrapper{
    padding:12px 12px 0;
}

.hero-home-v62 .hero-video-thumb{
    min-height:305px;
    border-radius:18px;
    background-position:center;
    box-shadow:0 12px 28px rgba(15,23,42,.14);
}

.hero-home-v62 .hero-video-thumb::before{
    background:linear-gradient(180deg,rgba(7,26,47,.05) 0%,rgba(7,26,47,.22) 48%,rgba(5,17,31,.88) 100%);
}

.hero-home-v62 .hero-video-thumb::after{
    inset:10px;
    border-color:rgba(255,255,255,.20);
    border-radius:13px;
}

.hero-home-v62 .hero-video-shade{
    position:absolute;
    inset:0;
    z-index:1;
    pointer-events:none;
    background:radial-gradient(circle at 78% 10%,rgba(250,204,21,.18),transparent 33%);
}

.hero-home-v62 .hero-video-play{
    z-index:3;
    width:70px;
    height:70px;
    color:#0b2744;
    background:rgba(255,255,255,.96);
    box-shadow:0 17px 36px rgba(0,0,0,.30),0 0 0 8px rgba(255,255,255,.10);
}

.hero-home-v62 .hero-video-thumb:hover .hero-video-play,
.hero-home-v62 .hero-video-thumb:focus-visible .hero-video-play{
    background:#facc15;
    color:#071a2f;
    transform:scale(1.07);
}

.hero-home-v62 .hero-video-caption{
    position:absolute;
    z-index:3;
    left:23px;
    right:23px;
    bottom:20px;
    color:#fff;
    text-align:left;
    pointer-events:none;
}

.hero-home-v62 .hero-video-caption small,
.hero-home-v62 .hero-video-caption strong{
    display:block;
}

.hero-home-v62 .hero-video-caption small{
    margin-bottom:5px;
    color:#f8dc71;
    font-size:9px;
    letter-spacing:1.2px;
    font-weight:900;
}

.hero-home-v62 .hero-video-caption strong{
    max-width:380px;
    font-size:15px;
    line-height:1.35;
    font-weight:850;
    text-shadow:0 2px 10px rgba(0,0,0,.28);
}

.hero-home-v62 .hero-video-empty{
    min-height:305px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:14px;
    padding:30px;
    border:1px dashed #d7e0e9;
    border-radius:18px;
    color:#536579;
    background:linear-gradient(145deg,#f8fafc,#ffffff);
    text-align:left;
}

.hero-home-v62 .hero-video-empty-icon{
    width:54px;
    height:54px;
    flex:0 0 54px;
    display:grid;
    place-items:center;
    border-radius:16px;
    color:#d5a92a;
    background:#fff8df;
    font-size:23px;
}

.hero-home-v62 .hero-video-empty strong{
    display:block;
    color:#173451;
    font-weight:900;
}

.hero-home-v62 .hero-video-empty p{
    margin:5px 0 0;
    color:#8794a2;
    font-size:12px;
}

.hero-home-v62 .hero-quick-stats{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:1px;
    margin-top:13px;
    border-top:1px solid #eef2f6;
    background:#eef2f6;
}

.hero-home-v62 .hero-quick-stat{
    min-width:0;
    display:flex;
    align-items:center;
    gap:9px;
    padding:13px 12px;
    color:#203b55;
    background:#fff;
    transition:background .2s ease;
}

.hero-home-v62 .hero-quick-stat:hover{
    background:#f8fafc;
}

.hero-home-v62 .hero-quick-icon{
    width:32px;
    height:32px;
    flex:0 0 32px;
    display:grid;
    place-items:center;
    border-radius:10px;
    font-size:13px;
}

.hero-home-v62 .hero-quick-icon.blue{background:#eaf2ff;color:#2563eb;}
.hero-home-v62 .hero-quick-icon.green{background:#ecfdf3;color:#16a34a;}
.hero-home-v62 .hero-quick-icon.gold{background:#fff7db;color:#a97c08;}

.hero-home-v62 .hero-quick-stat strong,
.hero-home-v62 .hero-quick-stat small{
    display:block;
}

.hero-home-v62 .hero-quick-stat strong{
    color:#102f4c;
    font-size:15px;
    line-height:1;
    font-weight:900;
}

.hero-home-v62 .hero-quick-stat small{
    margin-top:4px;
    overflow:hidden;
    color:#83909f;
    font-size:9px;
    line-height:1.1;
    font-weight:700;
    text-overflow:ellipsis;
    white-space:nowrap;
}

.hero-home-v62 .hero-floating-label{
    position:absolute;
    z-index:5;
    display:flex;
    align-items:center;
    gap:9px;
    padding:9px 12px 9px 9px;
    border:1px solid rgba(255,255,255,.88);
    border-radius:14px;
    background:rgba(255,255,255,.95);
    box-shadow:0 17px 38px rgba(0,0,0,.24);
    backdrop-filter:blur(14px);
    -webkit-backdrop-filter:blur(14px);
    animation:hero-label-float 6s ease-in-out infinite;
}

.hero-home-v62 .hero-floating-label-top{
    top:0;
    right:-2px;
}

.hero-home-v62 .hero-floating-label-icon{
    width:36px;
    height:36px;
    display:grid;
    place-items:center;
    border-radius:11px;
    color:#9a7305;
    background:#fff6d3;
}

.hero-home-v62 .hero-floating-label small,
.hero-home-v62 .hero-floating-label strong{
    display:block;
}

.hero-home-v62 .hero-floating-label small{
    color:#8e99a6;
    font-size:8px;
    line-height:1;
}

.hero-home-v62 .hero-floating-label strong{
    margin-top:4px;
    color:#173451;
    font-size:10px;
    line-height:1;
    font-weight:900;
}

@keyframes hero-label-float{
    0%,100%{transform:translateY(0);}
    50%{transform:translateY(-7px);}
}

@media(max-width:1199.98px){
    .hero-home-v62 .hero-home-row{min-height:690px;}
    .hero-home-v62 .hero-home-title{font-size:clamp(3rem,4.7vw,4rem);}
    .hero-home-v62 .hero-media-stage{padding-left:12px;padding-right:12px;}
    .hero-home-v62 .hero-floating-label-top{right:-7px;}
}

@media(max-width:991.98px){
    .website-dprd-page .hero-home-v62{min-height:auto;}
    .hero-home-v62 .hero-home-row{min-height:auto;padding-top:130px;padding-bottom:70px;}
    .hero-home-v62 .hero-home-copy{max-width:760px;margin:0 auto;text-align:center;}
    .hero-home-v62 .hero-kicker{margin-left:auto;margin-right:auto;}
    .hero-home-v62 .hero-home-title{max-width:760px;margin-left:auto;margin-right:auto;font-size:clamp(3rem,7vw,4.3rem);}
    .hero-home-v62 .hero-home-text{max-width:700px;margin-left:auto;margin-right:auto;}
    .hero-home-v62 .hero-home-actions,.hero-home-v62 .hero-service-row{justify-content:center;}
    .hero-home-v62 .hero-media-stage{max-width:640px;margin:20px auto 0;}
    .hero-home-v62 .hero-media-card{transform:none;}
}

@media(max-width:575.98px){
    .website-dprd-page .hero-home-v62{
        background:
            radial-gradient(circle at 92% 10%,rgba(214,173,53,.20),transparent 25%),
            linear-gradient(155deg,#06172a 0%,#0b2949 68%,#123d64 100%);
    }

    .hero-home-v62 .hero-grid{background-size:38px 38px;opacity:.16;}
    .hero-home-v62 .hero-home-row{padding-top:92px !important;padding-bottom:42px !important;text-align:left;}
    .hero-home-v62 .hero-home-copy{text-align:left;}
    .hero-home-v62 .hero-kicker{margin-left:0;margin-right:0;margin-bottom:16px;padding:7px 10px;font-size:9px;letter-spacing:1px;}
    .hero-home-v62 .hero-home-title{margin-left:0;margin-right:0;font-size:clamp(2.35rem,11.2vw,3.05rem);line-height:1.02;}
    .hero-home-v62 .hero-home-title span{margin-top:6px;}
    .hero-home-v62 .hero-home-text{margin:17px 0 0;max-width:none;font-size:13.5px;line-height:1.65;}
    .hero-home-v62 .hero-home-actions{display:grid;grid-template-columns:1fr;gap:9px;margin-top:21px;}
    .hero-home-v62 .hero-cta{width:100%;min-height:48px;justify-content:flex-start;padding-right:14px;}
    .hero-home-v62 .hero-primary-action .hero-cta-arrow{margin-left:auto;}
    .hero-home-v62 .hero-service-row{justify-content:flex-start;gap:8px 13px;margin-top:17px;font-size:9.5px;}
    .hero-home-v62 .hero-media-stage{width:calc(100% + 4px);margin:7px 0 0 -2px;padding:0;}
    .hero-home-v62 .hero-media-card{border-radius:21px;}
    .hero-home-v62 .hero-media-head{min-height:61px;padding:11px 12px;}
    .hero-home-v62 .hero-media-icon{width:34px;height:34px;flex-basis:34px;border-radius:10px;font-size:13px;}
    .hero-home-v62 .hero-media-title strong{font-size:11px;}
    .hero-home-v62 .hero-media-title small{font-size:8.5px;}
    .hero-home-v62 .hero-media-status{font-size:0;padding:7px;}
    .hero-home-v62 .hero-media-status i{margin:0;}
    .hero-home-v62 .hero-video-wrapper{padding:9px 9px 0;}
    .hero-home-v62 .hero-video-thumb,.hero-home-v62 .hero-video-empty{min-height:220px;border-radius:15px;}
    .hero-home-v62 .hero-video-play{width:59px;height:59px;font-size:28px;}
    .hero-home-v62 .hero-video-caption{left:17px;right:17px;bottom:15px;}
    .hero-home-v62 .hero-video-caption strong{font-size:12px;}
    .hero-home-v62 .hero-video-caption small{font-size:7.5px;}
    .hero-home-v62 .hero-quick-stat{gap:6px;padding:10px 7px;}
    .hero-home-v62 .hero-quick-icon{width:28px;height:28px;flex-basis:28px;border-radius:8px;font-size:11px;}
    .hero-home-v62 .hero-quick-stat strong{font-size:12px;}
    .hero-home-v62 .hero-quick-stat small{font-size:7.5px;}
    .hero-home-v62 .hero-floating-label{display:none;}
}

@media(prefers-reduced-motion:reduce){
    .hero-home-v62 .hero-floating-label{animation:none;}
    .hero-home-v62 .hero-media-card,.hero-home-v62 .hero-cta,.hero-home-v62 .hero-primary-action .hero-cta-arrow{transition:none;}
}
