:root{
    --primary:#2563eb;
    --primary2:#1e40af;
    --dark:#0f172a;
    --gray:#64748b;
    --light:#f8fafc;
}
*{
    font-family:'Poppins',sans-serif;
}
html{
    scroll-behavior:smooth;
}
body{
    background:#f1f5f9;
    overflow-x:hidden;
    color:#0f172a;
}
.navbar{
    padding:16px 0;
    background:rgba(15,23,42,0.82);
    backdrop-filter:blur(18px);
    transition:0.4s;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
}
.navbar-brand{
    color:white !important;
    font-weight:800;
    font-size:26px;
    letter-spacing:0.5px;
}
.nav-link{
    color:white !important;
    margin-left:18px;
    font-weight:500;
    position:relative;
    transition:0.3s;
}
.nav-link::after{
    content:'';
    position:absolute;
    width:0%;
    height:2px;
    background:#60a5fa;
    left:0;
    bottom:-4px;
    transition:0.3s;
}
.nav-link:hover::after{
    width:100%;
}
.nav-link:hover{
    color:#93c5fd !important;
}
.nav-link.active{
    color:#ffffff !important;
    font-weight:700;
}
.nav-link.active::after{
    width:100%;
}
.nav-link.active:not(.btn-login){
    color:#60a5fa !important;
}
.btn-login{
    background:linear-gradient(135deg,#3b82f6,#2563eb);
    color:white !important;
    padding:11px 25px !important;
    border-radius:50px;
    margin-left:20px;
    font-weight:600;
    box-shadow:0 10px 25px rgba(37,99,235,0.35);
    transition:0.4s;
}
.btn-login:hover{
    transform:translateY(-3px);
    background:linear-gradient(135deg,#2563eb,#1d4ed8);
}
.hero{
    min-height:100vh;
    background:
    linear-gradient(rgba(2,6,23,0.82),rgba(15,23,42,0.86)),
    url('https://images.unsplash.com/photo-1509062522246-3755977927d7?q=80&w=1600');
    background-size:cover;
    background-position:center;
    position:relative;
    display:flex;
    align-items:center;
    overflow:hidden;
}
.hero::before{
    content:'';
    position:absolute;
    width:650px;
    height:650px;
    background:rgba(59,130,246,0.10);
    border-radius:50%;
    top:-250px;
    right:-220px;
}
.hero::after{
    content:'';
    position:absolute;
    width:420px;
    height:420px;
    background:rgba(255,255,255,0.04);
    border-radius:50%;
    bottom:-150px;
    left:-120px;
}
.hero-content{
    position:relative;
    z-index:2;
    text-align:center;
    color:white;
}
.hero-badge{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:rgba(255,255,255,0.12);
    padding:12px 24px;
    border-radius:50px;
    margin-bottom:30px;
    backdrop-filter:blur(10px);
    border:1px solid rgba(255,255,255,0.15);
    font-size:14px;
}
.hero h1{
    font-size:72px;
    font-weight:800;
    line-height:1.15;
    margin-bottom:25px;
}
.hero p{
    font-size:18px;
    color:#cbd5e1;
    margin-bottom:10px;
}
.hero-buttons{
    margin-top:40px;
    display:flex;
    justify-content:center;
    gap:18px;
    flex-wrap:wrap;
}
.btn-daftar{
    background:linear-gradient(135deg,#facc15,#f59e0b);
    color:#111827;
    border:none;
    padding:16px 38px;
    border-radius:60px;
    font-weight:700;
    text-decoration:none;
    transition:0.4s;
    box-shadow:0 15px 35px rgba(250,204,21,0.35);
}
.btn-daftar:hover{
    transform:translateY(-5px);
    color:#111827;
    background:white;
}
.btn-outline-custom{
    border:2px solid rgba(255,255,255,0.25);
    color:white;
    padding:15px 35px;
    border-radius:60px;
    text-decoration:none;
    font-weight:600;
    transition:0.4s;
    backdrop-filter:blur(10px);
}
.btn-outline-custom:hover{
    background:white;
    color:#111827;
}
.stat-section{
    margin-top:-90px;
    position:relative;
    z-index:10;
}
.stat-box{
    background:white;
    border-radius:30px;
    padding:40px 30px;
    text-align:center;
    transition:0.4s;
    border:1px solid #e2e8f0;
    box-shadow:0 20px 45px rgba(15,23,42,0.08);
    height:100%;
}
.stat-box:hover{
    transform:translateY(-10px);
}
.stat-icon{
    width:85px;
    height:85px;
    margin:auto;
    margin-bottom:20px;
    border-radius:25px;
    background:linear-gradient(135deg,#3b82f6,#2563eb);
    display:flex;
    align-items:center;
    justify-content:center;
    color:white;
    font-size:32px;
    box-shadow:0 15px 30px rgba(37,99,235,0.25);
}
.stat-box h2{
    font-size:45px;
    font-weight:800;
    margin-bottom:10px;
}
.stat-box p{
    color:#64748b;
    margin-bottom:0;
}
.section{
    padding:110px 0;
}
.section-title{
    font-size:48px;
    font-weight:800;
    text-align:center;
    margin-bottom:15px;
    color:#0f172a;
}
.section-subtitle{
    text-align:center;
    color:#64748b;
    max-width:700px;
    margin:auto;
    margin-bottom:70px;
    line-height:1.8;
}
.profile-card{
    background:white;
    border-radius:35px;
    padding:40px;
    box-shadow:0 20px 50px rgba(15,23,42,0.07);
    border:1px solid #e2e8f0;
}
.profil-img{
    width:100%;
    border-radius:30px;
    background:#f8fafc;
    padding:30px;
    box-shadow:0 15px 40px rgba(0,0,0,0.08);
}
.profile-title{
    font-size:38px;
    font-weight:800;
    margin-bottom:25px;
}
.profile-desc{
    color:#64748b;
    line-height:2;
}
.info-card{
    display:flex;
    gap:18px;
    margin-top:28px;
}
.info-icon{
    min-width:60px;
    height:60px;
    border-radius:20px;
    background:linear-gradient(135deg,#2563eb,#1d4ed8);
    display:flex;
    align-items:center;
    justify-content:center;
    color:white;
    font-size:22px;
    box-shadow:0 12px 25px rgba(37,99,235,0.25);
}
.info-card h6{
    font-weight:700;
}
.info-card p{
    margin:0;
    color:#64748b;
}
.card-custom{
    border:none;
    border-radius:30px;
    overflow:hidden;
    transition:0.4s;
    background:white;
    box-shadow:0 20px 45px rgba(15,23,42,0.06);
    height:100%;
    border:1px solid #e2e8f0;
}
.card-custom:hover{
    transform:translateY(-10px);
}
.info-top{
    height:6px;
    background:linear-gradient(135deg,#2563eb,#60a5fa);
}
.info-box{
    padding:30px;
}
.badge-info{
    background:#dbeafe;
    color:#1d4ed8;
    padding:8px 18px;
    border-radius:50px;
    font-size:13px;
    font-weight:600;
}
.info-title{
    font-size:22px;
    font-weight:700;
    margin-top:20px;
    margin-bottom:18px;
    line-height:1.5;
}
.info-desc{
    color:#64748b;
    line-height:1.8;
}
.btn-baca{
    display:inline-block;
    margin-top:20px;
    padding:12px 24px;
    border-radius:50px;
    background:linear-gradient(135deg,#2563eb,#1d4ed8);
    color:white;
    text-decoration:none;
    font-weight:600;
    transition:0.4s;
}
.btn-baca:hover{
    transform:translateY(-3px);
    color:white;
}
footer{
    background:#0f172a;
    color:white;
    padding:80px 0 25px;
    position:relative;
    overflow:hidden;
}
footer::before{
    content:'';
    position:absolute;
    width:400px;
    height:400px;
    border-radius:50%;
    background:rgba(255,255,255,0.03);
    top:-180px;
    right:-150px;
}
.footer-title{
    font-size:30px;
    font-weight:800;
    margin-bottom:20px;
}
.footer-text{
    color:#cbd5e1;
    line-height:1.9;
}
.footer-link{
    color:#cbd5e1;
    text-decoration:none;
    display:block;
    margin-bottom:14px;
    transition:0.3s;
}
.footer-link:hover{
    color:white;
    padding-left:5px;
}
.footer-contact{
    color:#cbd5e1;
    margin-bottom:14px;
}
.footer-contact i{
    width:25px;
}
.back-to-top{
    position:fixed;
    bottom:25px;
    right:25px;
    width:58px;
    height:58px;
    border:none;
    border-radius:50%;
    background:linear-gradient(135deg,#2563eb,#1d4ed8);
    color:white;
    font-size:20px;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 15px 30px rgba(37,99,235,0.35);
    opacity:0;
    visibility:hidden;
    transition:0.4s;
    z-index:999;
}
.back-to-top.show{
    opacity:1;
    visibility:visible;
}
.back-to-top:hover{
    transform:translateY(-5px);
}
@media(max-width:768px){
    .hero{
        min-height:95vh;
        padding:40px 20px;
    }
    .hero h1{
        font-size:42px;
    }
    .hero p{
        font-size:15px;
    }
    .section-title{
        font-size:34px;
    }
    .navbar-brand{
        font-size:19px;
    }
    .btn-login{
        margin-top:12px;
        margin-left:0;
        display:inline-block;
    }
    .profile-title{
        font-size:30px;
    }
    .hero-buttons{
        flex-direction:column;
    }
}
.page-header{
    padding:170px 0 120px;
    background:
    linear-gradient(rgba(15,23,42,0.88),rgba(15,23,42,0.90)),
    url('https://images.unsplash.com/photo-1509062522246-3755977927d7?q=80&w=1600');
    background-size:cover;
    background-position:center;
    text-align:center;
    color:white;
    position:relative;
    overflow:hidden;
}
.page-header::before{
    content:'';
    position:absolute;
    width:500px;
    height:500px;
    border-radius:50%;
    background:rgba(255,255,255,0.04);
    top:-200px;
    right:-150px;
}
.page-header h1{
    font-size:60px;
    font-weight:800;
    margin-bottom:20px;
    position:relative;
    z-index:2;
}
.page-header p{
    color:#cbd5e1;
    font-size:18px;
    position:relative;
    z-index:2;
}
.profile-section{
    padding:100px 0;
}
.profile-wrapper{
    background:white;
    border-radius:35px;
    padding:45px;
    box-shadow:0 20px 50px rgba(15,23,42,0.08);
    border:1px solid #e2e8f0;
}
.logo-box{
    background:#f8fafc;
    border-radius:30px;
    padding:40px;
    text-align:center;
    box-shadow:0 15px 40px rgba(0,0,0,0.05);
}
.logo-box img{
    max-width:100%;
    height:260px;
    object-fit:contain;
}
.profile-title{
    font-size:42px;
    font-weight:800;
    margin-bottom:25px;
    color:#0f172a;
}
.profile-desc{
    color:#64748b;
    line-height:2;
    font-size:16px;
}
.info-list{
    margin-top:35px;
}
.info-item{
    display:flex;
    gap:18px;
    margin-bottom:25px;
}
.info-icon{
    min-width:60px;
    height:60px;
    border-radius:20px;
    background:linear-gradient(135deg,#2563eb,#1d4ed8);
    color:white;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    box-shadow:0 10px 25px rgba(37,99,235,0.25);
}
.info-item h6{
    font-weight:700;
    margin-bottom:5px;
}
.info-item p,
.info-item a{
    margin:0;
    color:#64748b;
    text-decoration:none;
}
.section-title-custom{
    font-size:45px;
    font-weight:800;
    text-align:center;
    margin-bottom:15px;
    color:#0f172a;
}
.section-subtitle-custom{
    text-align:center;
    color:#64748b;
    margin-bottom:70px;
}
.visi-misi-section{
    padding-bottom:100px;
}
.vm-card{
    background:white;
    border-radius:30px;
    padding:40px;
    height:100%;
    border:1px solid #e2e8f0;
    box-shadow:0 20px 45px rgba(15,23,42,0.06);
    transition:0.4s;
}
.vm-icon{
    width:80px;
    height:80px;
    border-radius:25px;
    margin-bottom:25px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:white;
    font-size:32px;
    background:linear-gradient(135deg,#2563eb,#1d4ed8);
    box-shadow:0 12px 30px rgba(37,99,235,0.25);
}
.vm-title{
    font-size:30px;
    font-weight:800;
    margin-bottom:20px;
}
.vm-text{
    color:#64748b;
    line-height:2;
}
.vm-text ul{
    padding-left:20px;
}
.vm-text li{
    margin-bottom:12px;
}
.stat-area{
    padding-bottom:100px;
}
.stat-card{
    background:white;
    border-radius:30px;
    padding:40px 30px;
    text-align:center;
    box-shadow:0 20px 45px rgba(15,23,42,0.06);
    border:1px solid #e2e8f0;
    transition:0.4s;
}
.stat-card:hover{
    transform:translateY(-8px);
}
.stat-icon{
    width:85px;
    height:85px;
    margin:auto;
    margin-bottom:20px;
    border-radius:25px;
    background:linear-gradient(135deg,#2563eb,#1d4ed8);
    display:flex;
    align-items:center;
    justify-content:center;
    color:white;
    font-size:32px;
    box-shadow:0 12px 25px rgba(37,99,235,0.25);
}
.stat-card h2{
    font-size:45px;
    font-weight:800;
    margin-bottom:10px;
}
.stat-card p{
    color:#64748b;
    margin:0;
}
@media(max-width:768px){
    .page-header{
        padding:150px 20px 100px;
    }
    .page-header h1{
        font-size:40px;
    }
    .profile-wrapper{
        padding:25px;
    }
    .profile-title{
        font-size:32px;
    }
    .section-title-custom{
        font-size:34px;
    }
}
.custom-pagination{
    gap:10px;
}
.custom-pagination .page-item .page-link{
    width:50px;
    height:50px;
    border:none;
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
    color:#2563eb;
    background:white;
    box-shadow:0 10px 25px rgba(15,23,42,0.08);
    transition:0.4s;
    font-size:16px;
}
.custom-pagination .page-item .page-link:hover{
    background:linear-gradient(135deg,#2563eb,#1d4ed8);
    color:white;
    transform:translateY(-4px);
}
.custom-pagination .page-item.active .page-link{
    background:linear-gradient(135deg,#2563eb,#1d4ed8);
    color:white;
    box-shadow:0 15px 30px rgba(37,99,235,0.35);
}
.detail-informasi{
    font-size:17px;
    line-height:2;
    color:#475569;
}
.sidebar-title{
    font-size:18px;
    font-weight:700;
    margin-bottom:25px;
    color:#0f172a;
}
.sidebar-info{
    padding-bottom:18px;
    margin-bottom:18px;
    border-bottom:1px solid #e2e8f0;
    transition:0.3s;
}
.sidebar-info:last-child{
    border-bottom:none;
    margin-bottom:0;
    padding-bottom:0;
}
.sidebar-link-title{
    text-decoration:none;
    color:#334155;
    font-size:15px;
    font-weight:600;
    line-height:1.7;
    transition:0.3s;
    display:flex;
    align-items:flex-start;
    gap:12px;
}
.sidebar-link-title:hover{
    color:#2563eb;
    padding-left:5px;
}
.sidebar-dot{
    min-width:26px;
    height:26px;
    border-radius:50%;
    background:#dbeafe;
    color:#2563eb;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:12px;
    margin-top:2px;
    transition:0.3s;
}
.sidebar-info:hover .sidebar-dot{
    background:#2563eb;
    color:white;
}
.preview-foto{
    width: 170px;
    height: 170px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #e9ecef;
    background: #f8f9fa;
    padding: 4px;
}
.placeholder-custom::placeholder{
    color: #adb5bd;
    font-size: 14px;
}
.info-kosong{
    background: linear-gradient(135deg,#fff3cd,#ffe69c);
    border-radius: 25px;
    padding: 50px 30px;
    text-align: center;
    border: 2px dashed #ffc107;
}
.info-kosong i{
    font-size: 70px;
    color: #ffc107;
    margin-bottom: 20px;
}