@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;
}

/* =========================================
RESET
========================================= */

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

html,
body{
    height:100%;
}

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

    display:flex;
    flex-direction:column;
    min-height:100vh;

    overflow-x:hidden;
}

#app{
    display:flex;
    flex-direction:column;
    min-height:100vh;

    overflow:visible !important;
}

.page-content{
    flex:1;
    padding-top:0 !important;
    margin-top:0 !important;
}

/* =========================================
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;

    text-decoration:none;
}

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

.instagram{
    background:#e1306c;
}

.tiktok{
    background:#000;
}

.youtube{
    background:#ff0000;
}

.twitter{
    background:#111;
}

.facebook{
    background:#1877f2;
}

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

.main-footer{

    background:#002f6c;

    color:white;

    padding-top:50px;

    margin-top:40px;

    position:relative;

    overflow:visible !important;
}

/* ROW FOOTER */

.main-footer .row{

    align-items:flex-start;
}

/* BANNER */

.footer-banner-img{

    width:100%;

    display:block;

    border-radius:22px;

    transition:.35s ease;

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

    border:3px solid rgba(255,255,255,.08);

    margin-bottom:24px;
}

.footer-bottom{

    position:relative;

    z-index:5;

    margin-top:10px;
}

/* FOOTER BOTTOM */

.footer-bottom{

    position:relative;

    z-index:2;

    margin-top:10px;

    padding-top:24px;
}

.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;
}

.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;
}

.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;
}

/* =========================================
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;
}

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

.form-control,
.form-select{
    height:54px;

    border-radius:10px;

    border:1px solid #dfe7f0;

    font-size:14px;
}

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

@media(max-width:992px){

    .mega-dropdown{
        width:100%;
        grid-template-columns:1fr;
    }

    .top-menu{
        flex-wrap:wrap;
        gap:12px;
    }

}

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

.page-header{
    display:flex;

    flex-direction:column;

    align-items:center;

    justify-content:center;

    text-align:center;

    margin-bottom:45px;
}

.page-line{
    width:80px;
    height:6px;

    background:#ffc107;

    border-radius:100px;

    margin:0 auto 24px;
}

.page-title{
    font-size:56px;

    font-weight:800;

    color:#002f6c;

    margin-bottom:18px;

    letter-spacing:.5px;
}

.page-subtitle{
    max-width:850px;

    margin:auto;

    color:#64748b;

    font-size:18px;

    line-height:1.8;
}

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

.page-toolbar{
    display:flex;

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

    gap:18px;

    margin-bottom:50px;

    flex-wrap:wrap;
}

.page-search{
    width:720px;
    max-width:100%;

    height:68px;

    background:white;

    border-radius:100px;

    border:1px solid #dbe7f3;

    display:flex;

    align-items:center;

    padding:0 26px;

    box-shadow:
        0 10px 25px rgba(15,23,42,.04);
}

.page-search i{
    font-size:22px;

    color:#94a3b8;

    margin-right:16px;
}

.page-search input{
    border:none;

    outline:none;

    width:100%;

    font-size:16px;

    background:transparent;
}

.page-btn,
.page-reset{
    height:68px;

    padding:0 34px;

    border:none;

    border-radius:100px;

    display:flex;

    align-items:center;

    justify-content:center;

    gap:12px;

    font-size:16px;

    font-weight:700;

    transition:.3s;

    text-decoration:none;
}

.page-btn{
    background:#002f6c;

    color:white;
}

.page-btn:hover{
    background:#0c4da2;
}

.page-reset{
    background:white;

    color:#16315c;

    border:1px solid #dbe7f3;

    box-shadow:
        0 10px 25px rgba(15,23,42,.04);
}

.page-reset:hover{
    background:#eff6ff;

    color:#16315c;
}

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

@media(max-width:768px){

    .page-title{
        font-size:38px;
    }

    .page-subtitle{
        font-size:15px;
    }

    .page-toolbar{
        flex-direction:column;
    }

    .page-search,
    .page-btn,
    .page-reset{
        width:100%;
    }

}

.page-title{
    width:100%;
}

.page-subtitle{
    width:100%;
}

.page-header > *{
    margin-left:auto;
    margin-right:auto;
}

/* =========================================
PAGE CONTENT SPACING
========================================= */

.page-top{
    margin-bottom:50px;
}

.page-content-grid{
    margin-top:50px;
}

.page-pagination{
    margin-top:60px;

    display:flex;

    justify-content:center;
}

/* =========================================
NAVBAR FINAL PROFESSIONAL
========================================= */

.main-navbar{

    background:#002f6c;

    position:relative;

    z-index:99999;

    padding:0;

    box-shadow:
        0 6px 20px rgba(0,0,0,.06);
}

/* CONTAINER */

.main-navbar .container-fluid{

    min-height:64px;
}

/* =========================================
NAV MENU
========================================= */

.main-navbar .navbar-nav{

    gap:4px;
}

.main-navbar .nav-item{

    position:relative;
}

/* LINK */

.main-navbar .nav-link{

    color:white !important;

    font-size:14px;

    font-weight:600;

    padding:20px 16px !important;

    transition:.25s ease;

    position:relative;

    display:flex;
    align-items:center;
    gap:6px;
}

/* HOVER */

.main-navbar .nav-link:hover{

    color:#ffc107 !important;
}

/* ACTIVE */

.main-navbar .nav-link.active::after{

    content:'';

    position:absolute;

    left:0;
    bottom:0;

    width:100%;
    height:3px;

    background:#ffc107;

    border-radius:100px;
}

/* =========================================
PREMIUM MOBILE BUTTON
========================================= */

.navbar-toggler{

    width:50px;
    height:50px;

    border:none !important;

    border-radius:14px;

    background:#0c4da2 !important;

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

    padding:0;

    transition:.25s ease;

    box-shadow:none !important;

    position:relative;

    z-index:9999;
}

/* HOVER */

.navbar-toggler:hover{

    background:#1459b5 !important;
}

/* REMOVE BS EFFECT */

.navbar-toggler:focus,
.navbar-toggler:active{

    outline:none !important;

    border:none !important;

    box-shadow:none !important;
}

/* =========================================
CUSTOM ICON
========================================= */

.navbar-toggler-icon{

    position:relative;

    width:24px;
    height:18px;

    background:none !important;
}

/* ALL LINES */

.navbar-toggler-icon::before,
.navbar-toggler-icon::after,
.navbar-toggler-icon span{

    content:'';

    position:absolute;

    left:0;

    width:100%;
    height:2.5px;

    background:#ffffff;

    border-radius:100px;

    transition:.3s ease;
}

/* TOP */

.navbar-toggler-icon::before{

    top:0;
}

/* MIDDLE */

.navbar-toggler-icon span{

    top:7px;
}

/* BOTTOM */

.navbar-toggler-icon::after{

    bottom:0;
}

/* =========================================
ACTIVE
========================================= */

.navbar-toggler.active
.navbar-toggler-icon::before{

    top:50%;

    transform:
    translateY(-50%)
    rotate(45deg);
}

.navbar-toggler.active
.navbar-toggler-icon span{

    opacity:0;
}

.navbar-toggler.active
.navbar-toggler-icon::after{

    top:50%;

    bottom:auto;

    transform:
    translateY(-50%)
    rotate(-45deg);
}

.navbar-toggler-icon{

    position:relative;

    width:24px;
    height:18px;

    display:block;
}

/* =========================================
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:18px;

    padding:12px;

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

    z-index:99999;
}

/* SHOW */

.main-navbar .dropdown-menu.show{

    display:block;
}

/* ITEM */

.dropdown-item{

    padding:12px 14px;

    border-radius:12px;

    font-size:14px;

    color:#16315c;

    transition:.25s ease;
}

.dropdown-item:hover{

    background:#eff6ff;

    color:#1459b5;
}

/* =========================================
MEGA MENU
========================================= */

.mega-dropdown{

    width:850px;

    display:none;

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

    gap:24px;
}

.main-navbar
.mega-dropdown.show{

    display:grid !important;
}

/* 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;
}

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

@media(max-width:991px){

    /* NAVBAR */

    .main-navbar{

        padding:10px 0;
    }

    .main-navbar .container-fluid{

        display:flex;

        align-items:center;
    }

    .navbar-toggler{

        position:relative;

        margin:0;

        top:auto;

        left:auto;

        transform:none;
    }

    /* ICON CENTER */

    .navbar-toggler-icon{

        display:flex;

        align-items:center;

        justify-content:center;
    }

    /* MENU */

    .main-navbar .navbar-collapse{

        display:none;

        width:100%;

        background:#002f6c;

        padding:14px;

        margin-top:12px;

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

    .main-navbar .navbar-collapse.show{

        display:block;
    }

    .main-navbar .container-fluid{

        align-items:flex-start;
    }

    .navbar-toggler{

        margin-top:10px;

        margin-bottom:10px;
    }

    /* NAV */

    .main-navbar .navbar-nav{

        width:100%;

        gap:0;
    }

    .main-navbar .nav-item{

        width:100%;
    }

    .main-navbar .nav-link{

        width:100%;

        padding:15px 14px !important;

        border-bottom:
        1px solid rgba(255,255,255,.08);

        justify-content:space-between;
    }

    /* DROPDOWN */

    .main-navbar .dropdown-menu{

        position:relative !important;

        width:100% !important;

        min-width:100% !important;

        margin-top:10px;

        border-radius:14px;

        box-shadow:none;

        padding:10px;
    }

    /* MEGA */

    .mega-dropdown{

        width:100% !important;

        grid-template-columns:1fr;

        gap:10px;
    }

    .main-navbar .mega-dropdown.show{

        display:grid !important;
    }

}

/* =========================================
FOOTER MENU BOX
========================================= */

.footer-banner-link{

    text-decoration:none;
}

.footer-menu-box{

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

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

    border-radius:18px;

    padding:20px 16px;

    min-height:120px;

    display:flex;

    flex-direction:column;

    align-items:center;

    justify-content:center;

    gap:12px;

    transition:.3s ease;
}

.footer-menu-box:hover{

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

    transform:translateY(-4px);
}

.footer-menu-box i{

    font-size:32px;

    color:#ffc107;
}

.footer-menu-box span{

    color:white;

    font-size:14px;

    font-weight:600;

    text-align:center;

    line-height:1.6;
}

/* =========================================
FOOTER BANNER IMAGE
========================================= */

.footer-banner-link{

    display:block;

    text-decoration:none;
}

.footer-banner-img{

    width:100%;

    border-radius:22px;

    transition:.35s ease;

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

    border:3px solid rgba(255,255,255,.08);
}

/* HOVER */

.footer-banner-img:hover{

    transform:
        translateY(-6px)
        scale(1.02);

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

/* =========================================
FINAL FOOTER FIX
========================================= */

.main-footer .row{

    align-items:flex-start;
}

.footer-bottom{

    position:relative;

    z-index:10;

    margin-top:0;
}

/* =========================================
PENGADUAN CARD FINAL
========================================= */

.pengaduan-card{

    position:relative;

    display:flex;

    align-items:center;

    gap:14px;

    padding:18px;

    border-radius:24px;

    text-decoration:none;

    overflow:hidden;

    min-height:120px;

    background:
    linear-gradient(
        135deg,
        #ffd54f,
        #ffb300
    );

    transition:.35s ease;

    box-shadow:
        0 14px 35px rgba(0,0,0,.18);
}

/* SOFT SHAPE */

.pengaduan-card::before{
    display:none;
}

/* HOVER */

.pengaduan-card:hover{

    transform:
    translateY(-5px);

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

/* AVATAR */

.pengaduan-avatar{

    width:72px;
    height:72px;

    flex-shrink:0;

    border-radius:18px;

    overflow:hidden;

    background:#ffffff;

    padding:6px;

    display:flex;

    align-items:center;

    justify-content:center;

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

.pengaduan-avatar img{

    width:100%;
    height:100%;

    object-fit:contain;

    display:block;
}

/* CONTENT */

.pengaduan-content{

    flex:1;

    position:relative;

    z-index:2;
}

.pengaduan-title{

    display:block;

    color:#002f6c;

    font-size:16px;

    font-weight:800;

    margin-bottom:6px;

    line-height:1.4;
}

.pengaduan-content small{

    display:block;

    color:#5c4600;

    font-size:12px;

    line-height:1.6;
}

/* ARROW */

.pengaduan-arrow{

    font-size:30px;

    color:#002f6c;

    transition:.3s ease;

    position:relative;

    z-index:2;
}

.pengaduan-card:hover
.pengaduan-arrow{

    transform:
    translateX(5px);
}

/* MOBILE */

@media(max-width:768px){

    .pengaduan-card{

        min-height:auto;
    }

}

/* =========================================
SURVEY CARD PNG VERSION
========================================= */

.survey-card{

    position:relative;

    display:flex;

    align-items:center;

    gap:14px;

    padding:18px;

    border-radius:24px;

    text-decoration:none;

    overflow:hidden;

    min-height:120px;

    background:
    linear-gradient(
        135deg,
        #ffffff,
        #f4f7fb
    );

    transition:.35s ease;

    box-shadow:
        0 14px 35px rgba(0,0,0,.12);
}

/* SHAPE */

.survey-card::before{
    display:none;
}

/* HOVER */

.survey-card:hover{

    transform:
    translateY(-5px);

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

/* AVATAR */

.survey-avatar{

    width:72px;
    height:72px;

    flex-shrink:0;

    border-radius:18px;

    overflow:hidden;

    background:#ffffff;

    padding:6px;

    display:flex;

    align-items:center;

    justify-content:center;

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

.survey-avatar img{

    width:100%;
    height:100%;

    object-fit:contain;

    display:block;
}

/* CONTENT */

.survey-content{

    flex:1;

    position:relative;

    z-index:2;
}

.survey-title{

    display:block;

    color:#002f6c;

    font-size:16px;

    font-weight:800;

    margin-bottom:6px;

    line-height:1.4;
}

.survey-content small{

    display:block;

    color:#5b6475;

    font-size:12px;

    line-height:1.6;
}

/* ARROW */

.survey-arrow{

    font-size:30px;

    color:#002f6c;

    transition:.3s ease;

    position:relative;

    z-index:2;
}

.survey-card:hover
.survey-arrow{

    transform:
    translateX(5px);
}

/* ========================================
   PROFILE DROPDOWN
======================================== */

.profile-dropdown{
    position:relative;
}

/* ========================================
   PROFILE AREA
======================================== */

.profile-area{

    height:58px;

    border:none;

    background:white;

    display:flex;
    align-items:center;

    gap:14px;

    padding:0 18px;

    border-radius:16px;

    cursor:pointer;

    transition:.2s ease;

    border:
    1px solid #e8eef5;

    box-shadow:
    0 2px 10px rgba(15,23,42,.04);
}

.profile-area:hover{

    border-color:
    rgba(13,110,253,.18);

    box-shadow:
    0 6px 20px rgba(15,23,42,.06);
}

/* ========================================
   AVATAR
======================================== */

.profile-avatar{

    width:40px;
    height:40px;

    border-radius:12px;

    background:#0d6efd;

    color:white;

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

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

    flex-shrink:0;
}

/* ========================================
   PROFILE INFO
======================================== */

.profile-info{
    text-align:left;
}

.profile-info h5{

    margin:0;

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

    color:#0f172a;

    line-height:1.2;
}

.profile-info p{

    margin:3px 0 0;

    font-size:12px;

    color:#64748b;
}

/* ========================================
   ARROW
======================================== */

.dropdown-arrow{

    font-size:11px;

    color:#94a3b8;

    margin-left:4px;

    transition:.25s ease;
}

.profile-dropdown.active .dropdown-arrow{

    transform:rotate(180deg);
}

/* ========================================
   DROPDOWN MENU
======================================== */

.dropdown-menu-profile{

    position:absolute;

    top:calc(100% + 10px);
    right:0;

    width:290px;

    background:white;

    border-radius:18px;

    overflow:hidden;

    border:
    1px solid #e8eef5;

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

    opacity:0;
    visibility:hidden;

    transform:translateY(10px);

    transition:.25s ease;

    z-index:999;
}

.profile-dropdown.active .dropdown-menu-profile{

    opacity:1;
    visibility:visible;

    transform:translateY(0);
}

/* ========================================
   MINI PROFILE
======================================== */

.mini-profile{

    display:flex;
    align-items:center;

    gap:14px;

    padding:20px;
}

/* avatar */

.mini-profile-avatar{

    width:56px;
    height:56px;

    border-radius:16px;

    background:#0d6efd;

    color:white;

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

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

    flex-shrink:0;
}

/* info */

.mini-profile-info{
    flex:1;
}

.mini-profile-info h5{

    margin:0;

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

    color:#0f172a;
}

.mini-profile-info p{

    margin:4px 0 2px;

    font-size:12px;

    color:#64748b;
}

.mini-profile-info small{

    font-size:11px;

    color:#94a3b8;

    line-height:1.6;
}

/* ========================================
   DIVIDER
======================================== */

.dropdown-divider{

    height:1px;

    background:#edf2f7;
}

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

.dropdown-item{

    display:flex;
    align-items:center;

    gap:12px;

    padding:14px 18px;

    text-decoration:none;

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

    color:#334155;

    transition:.2s ease;
}

.dropdown-item:hover{

    background:#f8fafc;

    color:#0f172a;
}

/* ========================================
   LOGOUT
======================================== */

.logout-item{

    color:#dc2626;
}

.logout-item:hover{

    background:#fef2f2;

    color:#dc2626;
}