@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root{
    --primary:#002f6c;
    --primary-light:#0c4da2;
    --yellow:#ffc107;
    --bg:#f4f7fb;
    --text:#1b2b4b;
    --muted:#6c757d;
    --white:#ffffff;
    --border:#e7edf5;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Inter',sans-serif;
    background:var(--bg);
    color:var(--text);
    overflow-x:hidden;
}

/* =========================================
TOP HEADER
========================================= */

.top-header{
    background:white;
    border-bottom:1px solid var(--border);
    padding:14px 0;
}

.logo-img{
    height:62px;
}

.top-menu{
    display:flex;
    justify-content:flex-end;
    align-items:center;
    gap:22px;
}

.top-menu a{
    text-decoration:none;
    color:var(--text);
    font-size:14px;
    font-weight:500;
}

.btn-login{
    background:var(--primary);
    color:white !important;
    padding:10px 24px;
    border-radius:10px;
    font-weight:600;
}

/* =========================================
NAVBAR
========================================= */

.main-navbar{
    background:var(--primary);
    padding:0;
    overflow:visible !important;
    background:#002f6c;
}

.main-navbar .nav-link.active::after{
    content:'';
    position:absolute;
    left:0;
    bottom:0;
    width:100%;
    height:3px;
    background:var(--yellow);
}

/* =========================================
HERO FINAL SLIDER RESPONSIVE
========================================= */

.main-navbar{
    position: relative;
    z-index: 1000;
}

/* =========================================
HERO PERFECT FINAL
========================================= */

.hero-section{

    position:relative;

    width:100%;

    height:560px;

    overflow:hidden;

    background:#002f6c;
}

/* SWIPER */

.heroSwiper,
.heroSwiper .swiper-wrapper,
.heroSwiper .swiper-slide{

    width:100%;
    height:100%;
}

/* IMAGE */

.hero-bg{

    width:100%;
    height:100%;

    object-fit:contain;

    object-position:center top;

    display:block;

    background:#002f6c;
}

/* OVERLAY */

.hero-overlay{

    position:absolute;
    inset:0;

    background:linear-gradient(
        90deg,
        rgba(0,35,90,.45) 0%,
        rgba(0,35,90,.15) 45%,
        rgba(0,35,90,0) 100%
    );

    z-index:2;
}

/* NAV */

.hero-next,
.hero-prev{

    color:white;
    z-index:10;
}

/* PAGINATION */

.hero-pagination{

    z-index:10 !important;
}

/* =========================================
FLOATING SERVICES
========================================= */

.services-section{

    position:relative;

    margin-top:-70px;

    z-index:20;
}

/* =========================================
TABLET
========================================= */

@media(max-width:992px){

    .hero-section{

        height:460px;
    }

}

/* =========================================
MOBILE
========================================= */

@media(max-width:768px){

    .hero-section{

        height:280px;
    }

    .services-section{

        margin-top:20px;
    }

}

/* =========================================
SERVICES FLOATING
========================================= */

.services-section{

    position:relative;

    margin-top:-90px;

    z-index:30;
}

/* =========================================
MOBILE
========================================= */

@media(max-width:768px){

    .hero-section{

        height:320px;

        min-height:auto;
    }

    .services-section{

        margin-top:20px;
    }

}

/* =========================================
SERVICES
========================================= */

.services-section{
    position: relative;

    margin-top:-40px;

    z-index:20;
}

.services-wrapper{
    background:white;
    border-radius:22px;
    padding:32px;
    border:1px solid var(--border);
}

.section-title{
    font-size:22px;
    font-weight:700;
    color:#16315c;
    margin-bottom:25px;
}

.service-card{
    background:white;
    border:1px solid #e8edf4;
    border-radius:18px;
    padding:30px 20px;
    text-align:center;
    height:100%;
    transition:.3s;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    min-height:290px;
    box-shadow: 0 10px 30px rgba(0,0,0,.03);
}

.service-card:hover{
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(0,0,0,.08);
}

.service-card img{
    width: 140px;
    height: 140px;
    object-fit: contain;
    margin-bottom: 18px;
    transition: .3s;
}

.service-card h5{
    font-size:20px;
    font-weight:700;
    color:#17305c;
    margin-bottom:12px;
}

.service-card p{
    color:#6c757d;
    font-size:14px;
    line-height:1.7;
}

.service-card a{
    text-decoration:none;
    font-weight:600;
}

.service-card:hover img{
    transform: scale(1.08);
}



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

.info-section{
    margin-top:30px;
}

.card-header-custom{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:20px;
}

.card-header-custom h4{
    font-size:22px;
    font-weight:700;
    color:#16315c;
}

/* =========================================
SOCIAL
========================================= */

.social-icons{
    display:flex;
    gap:14px;
    margin-bottom:20px;
}

.social-icon{
    width:48px;
    height:48px;
    border-radius:12px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:white;
    font-size:22px;
    color:white;
    text-decoration:none;
}

.social-icon a:hover{
    color:white;
}

.social-videos{
    display:grid !important;
    grid-template-columns:repeat(2,1fr) !important;
    gap:16px;
}

.play-btn{
    position:absolute;
    inset:0;
    display:flex;
    align-items:center;
    justify-content:center;
}

.play-btn i{
    width:50px;
    height:50px;
    border-radius:50%;
    background:red;
    color:white;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
}

.btn-video{

    width:100%;

    margin-top:20px;

    border:1px solid #dfe7f0;

    border-radius:14px;

    height:54px;

    font-weight:700;

    display:flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    line-height:1;

    padding:0 18px;
}

.btn-video i{

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:18px;

    line-height:1;
}

/* =========================================
MAP
========================================= */
.map-stats{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:12px;
}

/* =========================================
OPENSTREETMAP
========================================= */

#uptMap{
    width:100%;
    height:340px;
    border-radius:18px;
    overflow:hidden;
    margin-bottom:20px;
    border:1px solid #e7edf5;
}

.leaflet-container{
    font-family:'Inter',sans-serif;
}

.map-box{
    border:1px solid #e7edf5;
    border-radius:12px;
    text-align:center;
    padding:15px 10px;
    background:white;
}

.map-box strong{
    display:block;
    font-size:24px;
    color:#16315c;
}

.map-box span{
    font-size:13px;
    color:#7c8ba1;
}

/* =========================================
STATISTICS
========================================= */

.stats-card{
    background:white;
    border-radius:18px;
    border:1px solid #e7edf5;
    padding:25px;

    align-self:flex-start;
}

.statistics-section .row{
    align-items:flex-start;
}

.stats-card h4{
    font-size:26px;
    font-weight:700;
    color:#16315c;
    margin-bottom:20px;
}

.chart-box{
    background:#fff;
    border:1px solid #edf2f7;
    border-radius:16px;
    padding:20px;
}

.chart-box h6{
    margin-bottom:15px;
    font-size:15px;
    font-weight:700;
    color:#16315c;
}

.visitor-top{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:15px;
}

.visitor-box{
    border:1px solid #e7edf5;
    border-radius:14px;
    padding:18px;
    text-align:center;
}

.visitor-box span{
    display:block;
    font-size:13px;
    color:#7c8ba1;
    margin-bottom:8px;
}

.visitor-box strong{
    font-size:24px;
    color:#16315c;
}

.visitor-box.active{
    background:#002f6c;
    color:white;
}

.visitor-box.active span,
.visitor-box.active strong{
    color:white;
}
/* =========================================
FOOTER
========================================= */

.main-footer{
    background:#002f6c;
    color:white;
    padding-top:50px;
    margin-top:40px;
}

.main-footer h5{
    font-size:20px;
    font-weight:700;
    margin-bottom:25px;
}

.footer-contact{
    list-style:none;
    padding:0;
    margin:0;
}

.footer-contact li{
    margin-bottom:18px;
    display:flex;
    gap:12px;
    line-height:1.7;
    color:#d9e3f0;
}

.footer-contact i{
    color:#fff;
    margin-top:4px;
}

.btn-footer{
    background:#0d4ea6;
    color:white;
    border:none;
    border-radius:12px;
    padding:12px 20px;
    margin-top:15px;
}

.footer-links{
    list-style:none;
    padding:0;
}

.footer-links li{
    margin-bottom:14px;
}

.footer-links a{
    color:#d9e3f0;
    text-decoration:none;
    transition:.3s;
}

.footer-links a:hover{
    color:white;
    padding-left:5px;
}

.footer-social{
    display:flex;
    gap:12px;
    flex-wrap:wrap;
}

.footer-social a{
    width:42px;
    height:42px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:white;
    font-size:18px;
    text-decoration:none;
}

.instagram{ background:#e1306c; }
.tiktok{ background:#000; }
.youtube{ background:#ff0000; }
.twitter{ background:#111; }
.facebook{ background:#1877f2; }

.footer-banner{
    width:100%;
    border-radius:14px;
    border:2px solid rgba(255,255,255,.08);
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.08);
    margin-top:40px;
    padding:20px 0;
}

.footer-bottom-wrapper{
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:20px;
}

.footer-bottom-links{
    display:flex;
    gap:25px;
}

.footer-bottom-links a{
    color:#d9e3f0;
    text-decoration:none;
    font-size:14px;
}

.footer-bottom-links a:hover{
    color:white;
}

/* =========================================
STATISTICS
========================================= */

.statistics-section{
    margin-top:30px;
    margin-bottom:40px;
    background:#f4f7fb;
}
/* =========================================
HERO SLIDER
========================================= */

.hero-next,
.hero-prev{
    color:white;
}

.hero-pagination .swiper-pagination-bullet{
    background:white;
    opacity:.5;
}

.hero-pagination .swiper-pagination-bullet-active{
    background:#ffc107;
    opacity:1;
}

#unitChart{
    height:420px !important;
}

/* =========================================
FIX SLIDER NAV
========================================= */

.video-item{
    text-decoration:none;
    position:relative;
    border-radius:14px;
    overflow:hidden;
    display:block;

    transition:.3s;
}

.video-item:hover{
    transform:translateY(-4px);
}

.video-item img{
    width:100%;
    height:120px;

    object-fit:cover;
    display:block;
}

.service-link{
    margin-top:16px;

    display:inline-flex;
    align-items:center;
    gap:8px;

    color:#0d4ea6;

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

    text-decoration:none;

    transition:.3s;
}

.service-link:hover{
    gap:12px;

    color:#002f6c;
}

/* =========================================
STATUS BOX
========================================= */

.status-box{

    background:#f8fbff;

    border-radius:22px;

    padding:26px;

    border:1px solid #e7edf5;

    position:relative;

    overflow:hidden;

    height:auto !important;

    min-height:100%;
}

/* TITLE */

.status-box h4{

    font-size:24px;

    font-weight:700;

    color:#16315c;

    margin-bottom:22px;
}

/* FORM */

.form-control,
.form-select{

    height:54px;

    border-radius:14px;

    border:1px solid #dfe7f0;

    font-size:14px;

    box-shadow:none !important;
}

.form-control:focus,
.form-select:focus{

    border-color:#0d4ea6;

    box-shadow:
        0 0 0 4px rgba(13,78,166,.08) !important;
}

/* BUTTON */

.btn-search{

    height:54px;

    border:none;

    border-radius:14px;

    background:
    linear-gradient(
        135deg,
        #0d4ea6,
        #002f6c
    );

    color:white;

    font-weight:700;

    transition:.3s;
}

.btn-search:hover{

    transform:translateY(-2px);

    box-shadow:
        0 12px 24px rgba(13,78,166,.18);
}

/* =========================================
RESULT
========================================= */

#hasil-pencarian{

    width:100%;

    overflow:hidden;
}

/* RESULT CARD */

.status-result-card{

    margin-top:10px;

    background:white;

    border-radius:22px;

    overflow:hidden;

    border:1px solid #edf2f7;

    box-shadow:
        0 10px 30px rgba(0,0,0,.05);
}

/* HEADER */

.status-header{

    padding:20px 24px;

    background:
    linear-gradient(
        135deg,
        #0d4ea6,
        #002f6c
    );

    color:white;
}

.status-header h5{

    margin:0;

    font-size:20px;

    font-weight:700;

    display:flex;

    align-items:center;

    gap:10px;
}

/* TABLE */

.status-table{

    width:100%;

    margin:0;
}

/* RESPONSIVE TABLE */

.table-responsive{

    overflow-x:auto;
}

/* HEAD */

.status-table thead{

    background:#f8fafc;
}

.status-table th{

    padding:18px;

    font-size:14px;

    font-weight:700;

    color:#16315c;

    border:none;

    white-space:nowrap;
}

/* BODY */

.status-table td{

    padding:18px;

    border-color:#edf2f7;

    vertical-align:middle;

    font-size:14px;
}

/* STATUS TEXT */

.status-text{

    font-weight:700;
}

.status-success{

    color:#16a34a;
}

/* DETAIL */

.status-detail{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:18px;

    padding:24px;

    background:#f8fafc;
}

/* ITEM */

.detail-item{

    background:white;

    border-radius:18px;

    padding:18px;

    border:1px solid #edf2f7;
}

.detail-item strong{

    display:block;

    margin-bottom:8px;

    font-size:14px;

    color:#16315c;
}

.detail-item span{

    font-size:15px;

    color:#475569;
}

/* BACK BUTTON */

.btn-back-status{

    border:none;

    background:#edf2f7;

    color:#16315c;

    padding:12px 18px;

    border-radius:14px;

    font-weight:600;

    margin-bottom:18px;

    transition:.3s;
}

.btn-back-status:hover{

    background:#dbe7f5;
}

/* =========================================
TABLET
========================================= */

@media(max-width:992px){

    .status-box{

        margin-top:24px;
    }

}

/* =========================================
MOBILE
========================================= */

@media(max-width:768px){

    .status-box{

        padding:18px;

        border-radius:20px;
    }

    .status-box h4{

        font-size:20px;

        margin-bottom:18px;
    }

    /* FORM */

    .form-control,
    .form-select,
    .btn-search{

        height:50px;

        font-size:14px;
    }

    /* RESULT */

    .status-result-card{

        border-radius:18px;
    }

    .status-header{

        padding:18px;
    }

    .status-header h5{

        font-size:16px;

        line-height:1.5;
    }

    /* TABLE */

    .status-table th,
    .status-table td{

        padding:14px;

        font-size:13px;
    }

    /* DETAIL */

    .status-detail{

        grid-template-columns:1fr;

        gap:12px;

        padding:18px;
    }

    .detail-item{

        padding:14px;
    }

    .detail-item strong{

        font-size:13px;
    }

    .detail-item span{

        font-size:14px;
    }

    /* BACK BUTTON */

    .btn-back-status{

        width:100%;

        display:flex;

        align-items:center;

        justify-content:center;
    }

}


.detail-item{
    background:white;

    border-radius:16px;

    padding:16px;

    border:1px solid #edf2f7;
}

.detail-item strong{
    display:block;

    margin-bottom:6px;

    color:#16315c;

    font-size:14px;
}

.detail-item span{
    color:#475569;

    font-size:15px;
}

@media(max-width:768px){

    .status-detail{
        grid-template-columns:1fr;
    }

    .hero-section{
        min-height: 260px;
    }

    .services-section{

        margin-top: 20px;
    }

}

.btn-back-status{
    border:none;

    background:#edf2f7;

    color:#16315c;

    padding:10px 16px;

    border-radius:12px;

    font-weight:600;

    margin-bottom:16px;

    transition:.3s;
}

.btn-back-status:hover{
    background:#dbe7f5;
}

/* =========================================
FLOATING CONSULTATION
========================================= */

.floating-consultation{

    position:fixed;

    right:24px;
    bottom:24px;

    z-index:99999;

    cursor:pointer;

    transition:.3s ease;
}

.floating-consultation:hover{

    transform:translateY(-3px);
}

/* CARD */

.consultation-text{

    background:white;

    border:1px solid #e2e8f0;

    border-radius:24px;

    padding:14px 18px;

    display:flex;

    align-items:center;

    gap:14px;

    min-width:320px;

    box-shadow:
        0 12px 30px rgba(15,23,42,.08);

    transition:.3s ease;
}

.consultation-text:hover{

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

/* CHARACTER */

.consultation-text img{

    width:82px;

    height:auto;

    flex-shrink:0;

    filter:drop-shadow(
        0 8px 18px rgba(0,0,0,.12)
    );
}

/* TEXT */

.consultation-info{

    display:flex;

    flex-direction:column;
}

.consultation-info strong{

    font-size:15px;

    color:#16315c;

    margin-bottom:4px;

    font-weight:700;
}

.consultation-info span{

    font-size:13px;

    color:#64748b;

    line-height:1.5;
}

/* =========================================
MODAL
========================================= */

.consultation-modal{

    border:none;

    border-radius:24px;

    overflow:hidden;

    box-shadow:
        0 15px 40px rgba(0,0,0,.12);
}

.consultation-body{

    padding:24px;
}

/* HEADER */

.consultation-header{

    margin-bottom:22px;
}

.consultation-header h4{

    font-size:22px;

    font-weight:700;

    color:#16315c;

    margin-bottom:6px;
}

.consultation-header p{

    margin:0;

    font-size:14px;

    color:#64748b;
}

.schedule-day{

    width:80px;

    font-weight:600;

    color:#16315c;

    font-size:14px;
}

/* SERVICE LIST */

.service-list{

    margin:0;

    padding-left:18px;
}

.service-list li{

    font-size:13px;

    color:#334155;

    line-height:1.7;

    margin-bottom:4px;
}

.empty-service{

    color:#94a3b8;

    font-size:13px;
}

/* LIVE CHAT */

.live-chat-section h5{

    font-size:18px;

    font-weight:700;

    color:#16315c;

    margin-bottom:14px;
}

.live-chat-item{

    display:flex;

    justify-content:space-between;

    align-items:center;

    background:#f8fafc;

    border-radius:16px;

    padding:14px 16px;

    margin-bottom:12px;
}

.live-chat-item strong{

    display:block;

    font-size:14px;

    margin-bottom:2px;
}

.live-chat-item small{

    font-size:12px;

    color:#64748b;
}

/* BUTTON */

.btn-chat,
.btn-google-form{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:8px;

    padding:10px 16px;

    border-radius:12px;

    text-decoration:none;

    font-size:13px;

    font-weight:600;

    transition:.3s;
}

/* WA */

.btn-chat{

    background:#22c55e;

    color:white;
}

.btn-chat:hover{

    background:#16a34a;

    color:white;
}

/* GOOGLE FORM */

.btn-google-form{

    background:#2563eb;

    color:white;
}

.btn-google-form:hover{

    background:#1d4ed8;

    color:white;
}

/* SCHEDULE */

.consultation-schedule-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:12px;

    margin-bottom:24px;
}

.schedule-card{

    background:#f8fafc;

    border-radius:16px;

    padding:14px;
}

.consultation-actions{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:14px;

    margin-top:20px;

    background:#f8fafc;

    border-radius:16px;

    padding:16px;
}

.consultation-form-info strong{

    display:block;

    font-size:14px;

    color:#16315c;

    margin-bottom:4px;
}

.consultation-form-info small{

    color:#64748b;

    font-size:12px;
}

/* =========================================
SOCIAL LINK FIX
========================================= */

.social-icon a,
.social-icon a:hover,
.social-icon a:focus,
.social-icon a:active{

    color:white !important;

    text-decoration:none !important;
}

/* BUTTON LIHAT VIDEO */

.btn-video,
.btn-video:hover,
.btn-video:focus,
.btn-video:active{

    color:#16315c !important;

    text-decoration:none !important;
}

/* ICON DI BUTTON */

.btn-video i{

    color:#ff0000 !important;
}

.social-icons a{

    text-decoration:none !important;
}

.social-icons a i{

    color:white !important;
}

/* NAV LINK */

.main-navbar .nav-link{

    color:white !important;

    padding:18px 18px !important;

    font-size:14px;

    font-weight:600;

    transition:.3s;

    position:relative;
}

.main-navbar .nav-link:hover{

    color:#ffc107 !important;
}

/* DROPDOWN */

.main-navbar .dropdown{

    position:relative;
}

/* MENU */

.main-navbar .dropdown-menu{

    display:none;

    position:absolute;

    top:100%;

    left:0;

    min-width:240px;

    background:white;

    border:none;

    border-radius:20px;

    padding:14px;

    box-shadow:
        0 20px 45px rgba(0,0,0,.08);

    z-index:999999;
}


/* ITEM */

.dropdown-item{

    padding:12px 14px;

    border-radius:12px;

    font-size:14px;

    transition:.3s;

    color:#16315c;
}

.dropdown-item:hover{

    background:#eff6ff;

    color:#2563eb;
}

/* MEGA MENU */

.mega-dropdown{

    width:850px;

    display:none;

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

    gap:28px;
}

/* COLUMN */

.mega-column{

    display:flex;

    flex-direction:column;
}

/* TITLE */

.dropdown-title{

    font-size:15px;

    font-weight:700;

    color:#16315c;

    margin-bottom:12px;

    padding:0 10px;
}

/* NAVBAR FIX */

.navbar-collapse{

    overflow:visible !important;
}

/* =========================================
GLOBAL NAVBAR FIX
========================================= */

#app{

    overflow:visible !important;
}

/* NAV ITEM */

.main-navbar .nav-item{

    position:relative !important;
}

.main-navbar .dropdown-menu.show{
    display:block !important;
}

/* MEGA MENU */

.main-navbar .mega-dropdown.show{

    display:grid !important;

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

    gap:24px;
}


.main-navbar .navbar-collapse{

    overflow:visible !important;
}

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

.pagination .page-link{

    border:none;

    margin:0 5px;

    border-radius:12px !important;

    color:#1d4ed8;

    min-width:44px;

    height:44px;

    display:flex;

    align-items:center;

    justify-content:center;

    font-weight:600;
}

.pagination .active .page-link{

    background:#1d4ed8;

    color:white;
}

/* =========================================
GLOBAL PAGE SPACING
========================================= */

.page-content{

    padding-top:90px;
}

/* =========================================
STICKY FOOTER
========================================= */

html,
body{

    height:100%;
}

body{

    display:flex;

    flex-direction:column;

    min-height:100vh;
}

#app{

    display:flex;

    flex-direction:column;

    min-height:100vh;
}

.page-content{

    flex:1;
}

/* =========================================
SERVICES RESPONSIVE FINAL
========================================= */

@media(max-width:992px){

    .services-wrapper{

        padding:24px;
    }

    .service-card{

        min-height:250px;

        padding:24px 18px;
    }

    .service-card img{

        width:100px;
        height:100px;
    }

    .service-card h5{

        font-size:17px;
    }

}

/* MOBILE */

@media(max-width:768px){

    /* CONTAINER */

    .services-section .container-fluid{

        padding-left:16px !important;
        padding-right:16px !important;
    }

    .services-wrapper{

        padding:20px;

        border-radius:20px;
    }

    /* TITLE */

    .section-title{

        font-size:20px;

        margin-bottom:20px;
    }

    /* CARD */

    .service-card{

        min-height:auto;

        padding:20px 14px;

        border-radius:18px;
    }

    /* IMAGE */

    .service-card img{

        width:78px;
        height:78px;

        margin-bottom:14px;
    }

    /* TITLE */

    .service-card h5{

        font-size:15px;

        line-height:1.5;

        margin-bottom:8px;
    }

    /* DESC */

    .service-card p{

        font-size:12px;

        line-height:1.6;

        margin-bottom:14px;
    }

    /* BUTTON */

    .service-link{

        font-size:12px;

        gap:6px;
    }

    /* STATUS BOX */

    .status-box{

        margin-top:20px;

        padding:20px;
    }

    .status-box h4{

        font-size:20px;
    }

}

/* =========================================
FINAL STATUS OVERFLOW FIX
========================================= */

/* WRAPPER */

.services-wrapper{

    overflow:visible !important;
}

/* ROW */

.services-wrapper .row{

    align-items:flex-start !important;
}

/* COLUMN */

.services-section .col-lg-5{

    display:flex;

    flex-direction:column;
}

/* STATUS BOX */

.status-box{

    height:auto !important;

    min-height:auto !important;

    overflow:visible !important;

    flex:none !important;
}

/* RESULT */

#hasil-pencarian{

    width:100%;

    overflow:visible !important;
}

/* RESULT CARD */

.status-result-card{

    position:relative;

    overflow:visible !important;

    margin-bottom:0 !important;
}

/* DETAIL */

.status-detail{

    overflow:visible !important;
}

/* MOBILE FIX */

@media(max-width:768px){

    .services-section{

        margin-bottom:24px;
    }

    .services-wrapper{

        padding-bottom:24px;
    }

    .status-box{

        margin-bottom:0;
    }

}

/* =========================================
KEGIATAN FINAL CLEAN
========================================= */

/* CARD UTAMA */

.info-card{
    background:white;
    border-radius:18px;
    border:1px solid #e7edf5;
    padding:20px;

    height:auto;
}

/* HEADER */

.activity-header{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:20px;

    margin-bottom:24px;
}

/* ACTION */

.activity-action{

    display:flex;

    align-items:center;

    gap:18px;
}

/* NAVIGATION */

.activity-navigation{

    display:flex;

    align-items:center;

    gap:14px;
}

/* BUTTON */

.activity-prev-btn,
.activity-next-btn{

    width:40px;
    height:40px;

    border:none;

    border-radius:12px;

    background:#f1f5f9;

    color:#16315c;

    display:flex;

    align-items:center;

    justify-content:center;

    transition:.3s;
}

.activity-prev-btn:hover,
.activity-next-btn:hover{

    background:#0d4ea6;

    color:white;
}

/* PAGINATION */

.activity-pagination{

    position:relative !important;

    inset:auto !important;

    width:auto !important;

    display:flex;

    align-items:center;

    justify-content:center;
}

.activity-pagination .swiper-pagination-bullet{

    width:8px;
    height:8px;

    background:#cbd5e1;

    opacity:1;

    margin:0 4px !important;
}

.activity-pagination .swiper-pagination-bullet-active{

    background:#0d4ea6;
}

/* BUTTON MORE */

.activity-more-btn{

    height:40px;

    padding:0 18px;

    border-radius:12px;

    background:#0d4ea6;

    color:white;

    text-decoration:none;

    font-size:14px;

    font-weight:600;

    display:flex;

    align-items:center;
}

.activity-more-btn:hover{

    background:#002f6c;

    color:white;
}

/* SWIPER */

.activitySwiper{

    overflow:hidden;

    padding-bottom:10px;
}

/* SLIDE */

.activitySwiper .swiper-slide{

    height:auto;
}

/* CARD ITEM */

.activity-item{

    background:white;

    border:1px solid #e7edf5;

    border-radius:22px;

    overflow:hidden;

    height:auto;

    margin-bottom:10px;
}

/* IMAGE */

.activity-image img{

    width:100%;

    height:220px;

    object-fit:cover;

    display:block;
}

/* CONTENT */

.activity-content{

    padding:18px;
}

.activity-content h5{

    font-size:16px;

    line-height:1.7;

    color:#16315c;

    margin:0;

    display:-webkit-box;

    -webkit-line-clamp:3;

    -webkit-box-orient:vertical;

    overflow:hidden;
}

/* MOBILE */

@media(max-width:768px){

    .activity-header{

        flex-direction:column;

        align-items:flex-start;
    }

    .activity-action{

        width:100%;

        justify-content:space-between;
    }

    .activity-image img{

        height:180px;
    }

}

.info-section .row{
    align-items:flex-start;
}

img{
    max-width:100%;
    height:auto;
}

.activity-image img{
    width:100%;
    height:250px;
    object-fit:cover;
}

.video-thumb img{
    width:100%;
    height:180px;
    object-fit:cover;
}

/* =========================================
CHART BOX
========================================= */

.chart-box{
    background:#fff;
    border-radius:20px;
    padding:20px;
    height:100%;
    min-height:340px;
    position:relative;
    box-shadow:0 4px 20px rgba(0,0,0,.04);
}

.chart-box h6{
    font-size:15px;
    font-weight:700;
    margin-bottom:20px;
    color:#0f172a;
    text-align:center;
}

.chart-box canvas{
    max-height:260px;
}

.chart-box-lg canvas{
    max-height:320px;
}

.chart-box-line{
    min-height:420px;
}

.chart-box-line canvas{
    max-height:320px;
}

/* =========================================
STATS SWIPER
========================================= */

.stats-swiper{
    padding-bottom:40px;
}

.stats-swiper .swiper-slide{
    height:auto;
}

.stats-pagination{
    bottom:0 !important;
}

.chart-box{
    background:#fff;
    border-radius:20px;
    padding:20px;
    min-height:340px;
    box-shadow:0 4px 20px rgba(0,0,0,.04);
}

.chart-box canvas{
    max-height:250px;
}

.chart-box-lg{
    min-height:420px;
}

.chart-box-line{
    min-height:420px;
}

/* =========================================
STATS SWIPER
========================================= */

.stats-swiper{
    width:100%;
    position:relative;
    overflow:hidden;
    padding-bottom:40px;
}

.stats-swiper .swiper-wrapper{
    align-items:stretch;
}

.stats-swiper .swiper-slide{
    height:auto;
}

.stats-pagination{
    position:relative;
    margin-top:20px;
    text-align:center;
}

/* =========================================
STATS SWIPER
========================================= */

.stats-swiper{
    width:100%;
    overflow:hidden;
    padding-bottom:40px;
}

.stats-swiper .swiper-slide{
    height:auto;
}

/* =========================================
CHART BOX
========================================= */

.chart-box{
    background:#fff;
    border-radius:20px;
    padding:20px;
    min-height:340px;
    box-shadow:0 4px 20px rgba(0,0,0,.04);
}

.chart-box canvas{
    max-height:250px;
}

.chart-box-wide{
    min-height:420px;
}

.chart-box-wide canvas{
    max-height:340px;
}