/* ======================
     Berita & Kegiatan
     ====================== */
.berita-kegiatan {
    background: #f7f9f8;
    padding: 56px 0 36px 0;
    text-align: center;
}
.berita-title {
    font-size: 2.5rem;
    color: #234c36;
    font-weight: 700;
    margin-bottom: 8px;
}
.berita-sub {
    color: #6c8078;
    font-size: 1.15rem;
    margin-bottom: 36px;
}
.berita-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1200px;
    margin: 0 auto;
}
.berita-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(46,84,73,0.07);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    transition: box-shadow .2s;
}
.berita-card:hover {
    box-shadow: 0 8px 32px rgba(46,84,73,0.13);
}
.berita-img {
    width: 100%;
    aspect-ratio: 4/2.2;
    background: #e9f1ed;
    overflow: hidden;
}
.berita-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.berita-content {
    padding: 22px 20px 18px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.berita-date {
    color: #3d6b5c;
    font-size: 15px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.berita-head {
    font-size: 1.18rem;
    color: #234c36;
    font-weight: 600;
    margin: 0 0 8px 0;
    text-align: left;
}
.berita-desc {
    color: #6c8078;
    font-size: 1rem;
    margin-bottom: 18px;
    text-align: left;
}
.berita-link {
    color: #1b4d36;
    font-weight: 600;
    text-decoration: none;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
    transition: color .2s;
}
.berita-link:hover {
    color: #0f5f3c;
    text-decoration: underline;
}
@media (max-width: 900px) {
    .berita-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 600px) {
    .berita-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .berita-title {
        font-size: 1.5rem;
    }
    .berita-content {
        padding: 16px 10px 14px 10px;
    }
}
*{
    margin:0;
    padding:0;
    font-family: "Poppins", sans-serif;
}

.header{
    min-height:100vh;
    width: 100%;
    background-image: linear-gradient(rgba(0, 64, 46, 0.8)),url(../img/banner.jpg);
    background-position: center;
    background-size: cover;
    position: relative;
    padding-top: 90px; /* supaya konten tidak ketutup navbar */
}

nav{
    display : flex;
    padding: 12px 4% 12px 8%;
    justify-content: flex-start;
    align-items: center;

    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;

    /* Glassmorphism Effect */
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.brand{
    display: flex;
    align-items: center;
}

.brand h1{
    color: #222;
    font-size: 22px;
    font-weight: 600;
}

.brand img{
    width : auto;
    height: 60px;
    margin-right: 10px;
}

.nav-links{
    flex: none;
    margin-left: 400px;
    text-align: left;
}

.nav-links i{
    display: none;
}

nav > .fa-bars,
nav > .menu-toggle{
    display: none;
}

/* Responsive navbar */
@media (max-width: 1200px) {
    .nav-links {
        margin-left: 200px;
    }
}

@media (max-width: 900px) {
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        height: auto;
        background: #f8f9fa;
        box-shadow: 0 8px 16px rgba(0,0,0,0.1);
        border-radius: 0;
        text-align: left;
        z-index: 1000;
        transition: all 0.3s ease;
        transform: scaleY(0);
        transform-origin: top;
        opacity: 0;
        margin-left: 0;
        padding: 0;
    }

    .nav-links ul{
        padding: 0;
        margin: 0;
        list-style: none;
    }

    .nav-links ul li{
        display: block !important;
        width: 100%;
        padding: 0;
        margin: 0;
        border-bottom: 1px solid #e0e0e0;
        list-style: none;
    }

    .nav-links ul li:last-child{
        border-bottom: none;
    }

    .nav-links ul li a{
        display: block;
        width: 100%;
        padding: 20px 30px;
        color: #2d5f4d;
        font-size: 17px;
        font-weight: 500;
        text-decoration: none;
        transition: all 0.2s ease;
        box-sizing: border-box;
    }

    .nav-links ul li a:hover{
        background: #e8f5e9;
        color: #1b4332;
        padding-left: 35px;
    }

    .nav-links ul li::after{
        display: none;
    }

    .nav-links i{
        display: none;
    }

    nav > .fa-bars,
    nav > .menu-toggle{
        display: block !important;
        color: #000;
        margin: 10px;
        font-size: 24px;
        cursor: pointer;
        position: absolute;
        right: 8%;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1001;
    }
}

/* Media Query untuk Tablet dan Mobile */
@media (max-width: 768px) {
    nav {
        padding: 12px 2% 12px 4%;
    }

    .brand h1 {
        font-size: 18px;
    }

    .brand img {
        height: 50px;
    }

    nav > .fa-bars,
    nav > .menu-toggle{
        display: block !important;
        right: 7%;
        font-size: 26px;
    }
}

/* Media Query khusus untuk HP */
@media (max-width: 480px) {
    nav {
        padding: 10px 2% 10px 3%;
    }

    .brand h1 {
        font-size: 16px;
    }

    .brand img {
        height: 45px;
        margin-right: 8px;
    }

    nav > .fa-bars,
    nav > .menu-toggle{
        display: block !important;
        right: 6%;
        font-size: 28px;
        color: #000 !important;
    }
}

.nav-links ul li{
    list-style: none;
    display: inline-block;
    padding: 8px 12px;
    position: relative;
}

.nav-links ul li a{
    color: #222;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: .3s;
}

.nav-links ul li::after{
    content:'';
    width: 0%;
    height: 2px;
    background: #E9C75C;
    display: block;
    margin: auto;
    transition: 0.5s;
}

.nav-links ul li:hover::after{
    width:100%;
}

.text-box{
    width: 70%;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.text-box h1{
    font-size: 40px;
    line-height: 1.6;
    font-weight: 600;
}

.text-box h1 span{
    color: #E9C75C;
}

.text-box p{
    margin: 10px 0 40px;
    font-size: 16px;
    color: #fff;
    line-height: 1.8;
    letter-spacing: 0.5px;
    font-weight: 300;
}

.hero-btn{
    display: inline-block;
    text-decoration: none;
    color:#fff;
    border: 1px solid #fff;
    padding:12px 34px;
    font-size:13px;
    background:transparent;
    position: relative;
    cursor: pointer;
}

.hero-btn:hover{
    border: 1px solid #E9C75C;
    background: #E9C75C;
    transition: 1s;
}

.soft-yellow-btn {
    display: inline-block;
    padding: 14px 36px;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    background: linear-gradient(to right, #F5E08C, #E9C75C);
    border: none;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.soft-yellow-btn:hover {
    background: linear-gradient(to right, #E9C75C, #F5E08C);
    box-shadow: 0 6px 10px rgba(0,0,0,0.15);
    transform: translateY(-2px);
}

.soft-yellow-btn i {
    margin-left: 10px; /* Atur sesuai selera, bisa 6px atau 10px */
    font-size: 16px;
    vertical-align: middle;
}

.hero-btn,
.soft-yellow-btn {
    margin-right: 10px; /* Atur sesuai kebutuhan */
}




.count{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    /* Jarak responsif dari tombol/hero agar tidak menimpa */
    margin-top: clamp(400px, 42vh, 520px);
    flex-wrap: wrap;
    text-align: center;
    z-index: 1;
}

.count-col {
    padding: 20px 30px;
    min-width: 150px;
}

.count-col h3 {
    font-size: 20px;
    color: #E9C75C; /* Kuning soft */
    margin: 0;
    font-weight: bold;
}

.count-col p {
    font-size: 10px;
    color: #fff;
    letter-spacing: 0.2px;
}

@media(max-width: 768px){
    .text-box{
        width: 95%;
        top: 45%;
        
    }
    
    .text-box h1{
        font-size: 30px;
        line-height: 1.6;
    }
    .text-box p{
        margin: 5px 0 10px;
        font-size: 20px;
        color: #fff;
        line-height: 1.8;
        letter-spacing: 0.5px;
    }

    .nav-links ul{
        padding: 10px 0;
    }

    .brand img{
        height: 50px;
    }

    .brand h1{
        font-size: 18px;
    }

    .soft-yellow-btn,
    .hero-btn {
        display: block;
        width: 80%;
        margin: 10px auto;
        text-align: center;
        font-size: 14px;
        padding: 12px 20px;
    }

     .soft-yellow-btn i {
        font-size: 14px;
        margin-left: 6px;
    }

    .count{
        width: 90%;
        display: flex;
        justify-content: center;
        align-items: stretch;
        gap: 40px;
        /* Lebih besar di layar kecil karena tinggi teks membesar */
        margin-top: clamp(560px, 68vh, 760px);
        flex-wrap: wrap;
        text-align: center;
    }

    .count-col {
        padding: 10px 20px;
        min-width: 100px;
        
    }

    .count-col h3 {
        font-size: 20px;
        color: #E9C75C; /* Kuning soft */
        margin: 0;
        font-weight: bold;
    }

    .count-col p {
        font-size: 10px;
        color: #fff;
        letter-spacing: 0.2px;
    }
    

}


/* Statistik */
.statistik{
    width:80%;
    margin: auto;
    text-align: center;
    padding-top: 30px;
}

h1{
    font-size: 36px;
    font-weight: 600;
}

p{
    color: #777;
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    padding: 10px;
}

.row{
    margin-top: 15px;
    display: flex;
    justify-content: space-between;
}

.statistik-col{
    flex-basis: 31%;
    background: #E9FDF6;
    border-radius: 10px;
    margin-bottom: 5%;
    padding: 20px 12px;
    box-sizing: border-box;
}

.statistik-col .icon-circle{
    width: 80px;
    height: 80px;
    background: #3D6B5C;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.statistik-col .icon-circle i{
    font-size: 36px;
    color: #fff;
    z-index: 2;
}

h3{
    text-align: center;
    font-weight: 600;
    margin: 10px 0;
    color:#1E3932;
}

.statistik-col:hover{
    box-shadow: 0 0 20px 0px rgba(0,0,0,0.2);

}

@media(max-width:700px){
    .row{
        flex-direction: column;
    }
}

/* Partisipasi Section */
.partisipasi{
    width: 80%;
    margin: 10px auto;
    text-align: center;
    padding: 40px 40px;
    background: #E9FDF6;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.partisipasi h5{
    font-size: 24px;
    font-weight: 600;
    color: #3D6B5C;
    margin-bottom: 20px;
}

.partisipasi > p{
    color: #6B8A7A;
    font-size: 16px;
    line-height: 28px;
    max-width: 900px;
    margin: 0 auto 50px;
}

.partisipasi-highlight{
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.highlight-item{
    flex: 1;
    min-width: 200px;
    text-align: center;
}

.highlight-item h2{
    font-size: 28px;
    font-weight: 700;
    color: #E9C75C;
}

.highlight-item p{
    font-size: 16px;
    color: #6B8A7A;
    margin: 0;
    font-weight: 500;
}

@media(max-width:700px){
    .partisipasi{
        width: 90%;
        padding: 40px 20px;
        margin: 50px auto;
    }

    .partisipasi h1{
        font-size: 28px;
    }

    .partisipasi > p{
        font-size: 14px;
        line-height: 24px;
    }

    .partisipasi-highlight{
        flex-direction: column;
        gap: 30px;
    }

    .highlight-item h2{
        font-size: 36px;
    }

    .highlight-item p{
        font-size: 14px;
    }
}

/* Distribusi Alumni (Bidang & Program Studi) */
.distribusi-alumni{
    width: 85%;
    margin: 35px auto 20px;
    padding-top: 100px; /* Space untuk navbar fixed */
    text-align: center;
}

.distribusi-alumni h1{
    color: #2E5E4F;
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 10px;
}

.distribusi-alumni > p{
    color: #6B8A7A;
    font-size: 18px;
    max-width: 980px;
    margin: 0 auto 50px;
    line-height: 30px;
    font-weight: 500;
    letter-spacing: 0.3px;
}

/* Alumni Stats Grid (4 cards) */
.alumni-stats-grid{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    margin-bottom: 50px;
}

.alumni-stat-card{
    background: #fff;
    border: 1px solid #E8F0EE;
    border-radius: 14px;
    padding: 32px 24px 28px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
}

.alumni-stat-card:hover{
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.alumni-stat-icon{
    width: 78px;
    height: 78px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: #3D6B5C;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(61,107,92,.18);
}

.alumni-stat-icon i{
    color: #fff;
    font-size: 30px;
}

.alumni-stat-number{
    font-size: 38px;
    font-weight: 800;
    color: #2F6A5A;
    letter-spacing: .3px;
    margin-bottom: 8px;
}

.alumni-stat-number.stat-yellow{ 
    color: #E9C75C; 
}

.alumni-stat-number.stat-dark{ 
    color: #2E4961; 
}

.alumni-stat-label{
    font-size: 18px;
    color: #2F6A5A;
    font-weight: 600;
    margin-top: 6px;
}

.alumni-stat-sub{
    font-size: 14px;
    color: #7B9A8C;
    margin-top: 6px;
    font-weight: 500;
}

@media(max-width: 1000px){
    .alumni-stats-grid{
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:700px){
    .distribusi-alumni{
        width: 92%;
        margin-top: 50px;
        padding-top: 90px; /* Space untuk navbar fixed di mobile */
    }
    
    .distribusi-alumni h1{ 
        font-size: 32px; 
    }
    
    .distribusi-alumni > p{ 
        font-size: 16px;
        font-weight: 500;
        letter-spacing: 0.3px;
    }
    
    .alumni-stats-grid{
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .alumni-stat-icon{
        width: 70px;
        height: 70px;
    }
    
    .alumni-stat-icon i{
        font-size: 26px;
    }
    
    .alumni-stat-number{
        font-size: 32px;
    }
}

h1{
    font-size: 36px;
    font-weight: 600;
}

.distribusi-container{
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.bidang-card,
.prodi-card{
    background: #fff;
    border-radius: 15px;
    padding: 35px;
    flex: 1;
    min-width: 300px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    text-align: left;
}

.bidang-card{ flex: 1.2; }
.prodi-card{ flex: 1; }

.bidang-card .card-header,
.prodi-card .card-header{
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
}

.bidang-card .card-header i,
.prodi-card .card-header i{
    font-size: 22px;
    color: #3D6B5C;
}

.bidang-card .card-header h3,
.prodi-card .card-header h3{
    font-size: 20px;
    color: #3D6B5C;
    margin: 0;
    font-weight: 600;
}

/* Bidang Pekerjaan Styles */
.bidang-list{
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.bidang-item{
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.bidang-info{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.bidang-name{
    font-size: 15px;
    color: #2C3E50;
    font-weight: 500;
}

.bidang-bar-container{
    width: 100%;
    height: 8px;
    background: #E8F0EE;
    border-radius: 10px;
    overflow: hidden;
}

.bidang-bar{
    height: 100%;
    background: #3D6B5C;
    border-radius: 10px;
    transition: width 0.4s ease;
}

.bidang-stats{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bidang-count{
    font-size: 13px;
    color: #6B8A7A;
}

.bidang-percent{
    font-size: 14px;
    color: #2C3E50;
    font-weight: 600;
}

/* Program Studi Styles */
.prodi-list{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.prodi-item{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    background: linear-gradient(180deg, #FBFDFB 0%, #F7FAF9 100%);
    border-radius: 10px;
    border: 1px solid #E8F0EE;
    transition: all 0.3s ease;
    text-decoration: none;
    cursor: pointer;
}

.prodi-item:hover{
    background: #EEF5F3;
    border-color: #3D6B5C;
    transform: translateX(3px);
    box-shadow: 0 4px 12px rgba(61, 107, 92, 0.1);
}

.prodi-info h4{
    font-size: 16px;
    color: #2C3E50;
    margin: 0 0 6px 0;
    font-weight: 600;
}

.prodi-response{
    font-size: 12px;
    color: #6B8A7A;
    margin: 0;
}

.prodi-response i{
    font-size: 11px;
    margin-left: 4px;
    transition: transform 0.3s ease;
}

.prodi-item:hover .prodi-response i{
    transform: translateX(4px);
}

.prodi-response span{
    color: #3D6B5C;
    font-weight: 600;
}

.prodi-count{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
}

.prodi-count .count-number{
    font-size: 24px;
    font-weight: 700;
    color: #3D6B5C;
}

.prodi-count .count-label{
    font-size: 11px;
    color: #6B8A7A;
}

/* Responsive Distribusi Alumni */
@media(max-width:700px){
    .distribusi-container{
        flex-direction: column;
    }

    .bidang-card,
    .prodi-card{
        min-width: 100%;
        padding: 25px 20px;
    }

    .bidang-card .card-header h3,
    .prodi-card .card-header h3{
        font-size: 18px;
    }

    .bidang-list{
        gap: 20px;
    }

    .bidang-name{
        font-size: 14px;
    }

    .prodi-item{
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 16px 18px;
    }

    .prodi-count{
        align-items: flex-start;
    }

    .prodi-count .count-number{
        font-size: 20px;
    }
}

/* Peta Persebaran Alumni */
.peta{
    width:90%;
    max-width: 1400px;
    margin: auto;
    text-align: center;
    padding: 100px 20px 80px 20px;
    /* background: #f8f9fa; */
    overflow: visible;
}

.peta h1{
    color: #3D6B5C;
    font-size: 40px;
    margin-bottom: 15px;
    width: 100%;
    overflow-wrap: break-word;
}

.peta > p{
    color: #6B8A7A;
    font-size: 16px;
    max-width: 900px;
    margin: 0 auto 50px;
    width: 100%;
    overflow-wrap: break-word;
}

/* Statistik Cards */
.peta-stats{
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.peta-stat-card{
    background: #fff;
    border-radius: 12px;
    padding: 35px 30px;
    min-width: 200px;
    flex: 1;
    max-width: 280px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.peta-stat-card:hover{
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.12);
}

.peta-stat-card.highlight-yellow{
    background: #fff;
}

.stat-icon{
    width: 60px;
    height: 60px;
    background: #E8F0EE;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.stat-icon i{
    font-size: 28px;
    color: #3D6B5C;
}

.stat-icon.yellow{
    background: #FFF8E1;
}

.stat-icon.yellow i{
    color: #E9C75C;
}

.stat-icon.green{
    background: #E8F5E9;
}

.stat-icon.green i{
    color: #5DA271;
}

.peta-stat-card h2{
    font-size: 42px;
    font-weight: 700;
    color: #3D6B5C;
    margin: 10px 0;
}

.peta-stat-card.highlight-yellow h2{
    color: #E9C75C;
}

.peta-stat-card p{
    font-size: 15px;
    color: #6B8A7A;
    margin: 0;
}

/* Detail Section */
.peta-details{
    display: flex;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.distribusi-card,
.kota-card{
    background: #fff;
    border-radius: 15px;
    padding: 35px;
    flex: 1;
    min-width: 300px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    text-align: left;
}

.distribusi-card{ flex: 2; }
.kota-card{ flex: 1; }

.card-header{
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
}

.card-header i{
    font-size: 24px;
    color: #3D6B5C;
}

.card-header h3{
    font-size: 22px;
    color: #3D6B5C;
    margin: 0;
    font-weight: 600;
    overflow-wrap: break-word;
    word-wrap: break-word;
    flex: 1;
}

/* Distribusi Chart */
.distribusi-chart{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-items: center;
    align-items: end;
    gap: 35px 140px;
    padding: 30px 30px;
    background: #FBFDFB;
    border: 1px solid #E8F0EE;
    border-radius: 12px;
}

.chart-item{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.chart-circle{
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #fff;
    font-size: 24px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.08);
}

.chart-circle.large{
    width: 140px;
    height: 140px;
    background: #3D6B5C;
    font-size: 32px;
}

.chart-circle.medium{
    width: 110px;
    height: 110px;
    background: #E9C75C;
    font-size: 28px;
}

.chart-circle.small{
    width: 70px;
    height: 70px;
    background: #3D5A6B;
    font-size: 24px;
}

.chart-circle.xsmall{
    width: 70px;
    height: 70px;
    font-size: 18px;
}

/* Bubble color overrides */
.chart-circle.bg-green{ background:#3D6B5C; }
.chart-circle.bg-yellow{ background:#E9C75C; }
.chart-circle.bg-navy{ background:#2E4961; }
.chart-circle.bg-green-light{ background:#5DA271; }
.chart-circle.bg-ghost{ background:#F1F5F4; color:#7A9690; box-shadow: 0 6px 12px rgba(61,107,92,0.10); }

.chart-label{
    font-size: 14px;
    color: #6B8A7A;
    text-align: center;
    margin: 0;
    overflow-wrap: break-word;
    word-wrap: break-word;
    max-width: 150px;
}

/* Kota List */
.kota-list{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.kota-item{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 18px;
    background: linear-gradient(180deg, #FBFDFB 0%, #F7FAF9 100%);
    border-radius: 10px;
    transition: background 0.3s ease;
}

.kota-item:hover{
    background: #EEF5F3;
}

.kota-info {
    flex: 1;
    min-width: 0;
}

.kota-info h4{
    font-size: 18px;
    color: #3D6B5C;
    margin: 0 0 5px 0;
    font-weight: 600;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.kota-info p{
    font-size: 13px;
    color: #6B8A7A;
    margin: 0;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.kota-count{
    text-align: right;
    flex-shrink: 0;
    min-width: fit-content;
}

.count-number{
    font-size: 24px;
    font-weight: 700;
    color: #3D6B5C;
    display: block;
}

.count-label{
    font-size: 11px;
    color: #6B8A7A;
}

/* Responsive */
@media(max-width:700px){
    .peta{
        width: 100%;
        padding: 50px 15px;
    }

    .peta h1{
        font-size: 28px;
        overflow-wrap: break-word;
        word-break: break-word;
    }

    .peta-stats{
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .peta-stat-card{
        max-width: 100%;
        width: 100%;
    }

    .peta-details{
        flex-direction: column;
    }

    .distribusi-chart{
        flex-direction: column;
        align-items: center;
    }

    .chart-circle.large{
        width: 120px;
        height: 120px;
        font-size: 28px;
    }

    .chart-circle.medium{
        width: 100px;
        height: 100px;
        font-size: 24px;
    }

    .chart-circle.small{
        width: 80px;
        height: 80px;
        font-size: 20px;
    }

    .kota-item{
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .kota-count{
        text-align: center;
    }
}

/* WHY */
.why{
    width: 80%;
    margin:auto;
    text-align: center;
    padding-top: 100px;
}

.why-col{
    flex-basis: 31%;
    border-radius: 10px;
    margin-bottom: 5%;
    text-align: left;
}

.why-col img{
    width: 100%;
    border-radius: 10px;
}

.why-col p{
    padding: 0;
}

.why-col h3{
    margin-top: 16px;
    margin-bottom: 15px;
    text-align: left;
}

/* Testimoni */
.testimoni{
    width:80%;
    margin: auto;
    padding-top: 100px;
    text-align: center;
}

.testimoni-col{
    flex-basis: 44%;
    border-radius: 10px;
    margin-bottom: 5%;
    text-align: left;
    background: #E9FDF6;
    padding:25px;
    cursor: pointer;
    display: flex;
}

.testimoni-col img{
    height: 40px;
    margin-left: 5px;
    margin-right: 30px;
    border-radius: 80%;
}

.testimoni-col p{
    padding: 0;
}

.testimoni-col h3{
    margin-top: 15px;
    text-align: left;
}

.testimoni-col .fa{
    color: #E9C75C;
}

@media(max-width:700px){
    .testimoni-col img{
        margin-left: 0px;
        margin-right: 15px;
    }
}

/* CTA */
.cta{
    margin: 100px auto;
    width: 80%;
    background-image: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)),url(../img/banner.jpg);
    background-position: center;
    background-size: cover;
    border-radius: 10px;
    text-align: center;
    padding: 100px 0;
}

.cta h1{
    color: #fff;
    margin-bottom: 40px;
    padding: 0;
}

@media(max-width:700px){
    .cta h1{
        font-size: 24px;
    }
}

/* Footer */
.footer{
    background: linear-gradient(135deg, #3D6B5C 0%, #2E5449 100%);
    color: #fff;
    padding: 60px 0 0;
    margin-top: 80px;
}

.footer-container{
    width: 85%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1.3fr;
    gap: 50px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.15);
}

.footer-logo{
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo img{ width: 50px; height: auto; }

.footer-title h3{ font-size: 20px; color: #fff; margin: 0; font-weight: 600; }
.footer-subtitle{ font-size: 13px; color: #E9C75C; margin: 2px 0 0; }

.footer-desc{ font-size: 14px; line-height: 24px; color: rgba(255,255,255,0.85); margin-bottom: 25px; }

.footer-contact{ display: flex; flex-direction: column; gap: 12px; }
.contact-item{ display: flex; align-items: flex-start; gap: 12px; font-size: 13px; color: rgba(255,255,255,0.8); }
.contact-item i{ color: #E9C75C; font-size: 16px; margin-top: 2px; min-width: 18px; }

.footer-col h4{ font-size: 18px; color: #fff; margin-bottom: 20px; font-weight: 600; }
.footer-col ul{ list-style: none; padding: 0; margin: 0; }
.footer-col ul li{ margin-bottom: 12px; }
.footer-col ul li a{ color: rgba(255,255,255,0.8); text-decoration: none; font-size: 14px; display: flex; align-items: center; gap: 8px; transition: all 0.3s ease; }
.footer-col ul li a:hover{ color: #E9C75C; padding-left: 5px; }
.footer-col ul li a i{ font-size: 10px; color: #E9C75C; }

.footer-help{ background: rgba(255,255,255,0.08); padding: 20px; border-radius: 10px; margin-top: 25px; border: 1px solid rgba(255,255,255,0.1); }
.footer-help h5{ font-size: 16px; color: #fff; margin: 0 0 10px; font-weight: 600; }
.footer-help p{ font-size: 13px; color: rgba(255,255,255,0.75); margin: 0 0 15px; line-height: 20px; }
.help-btn{ display: inline-block; background: #E9C75C; color: #2E5449; padding: 10px 20px; border-radius: 6px; text-decoration: none; font-size: 13px; font-weight: 600; transition: all 0.3s ease; }
.help-btn:hover{ background: #F5E08C; transform: translateY(-2px); }

.footer-bottom{ width: 85%; margin: 0 auto; padding: 25px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; }
.footer-bottom-content p{ margin: 0; font-size: 13px; color: rgba(255,255,255,0.7); }
.footer-version{ font-size: 12px !important; color: rgba(255,255,255,0.5) !important; margin-top: 5px !important; }
.footer-social{ display: flex; align-items: center; gap: 15px; }
.footer-social span{ font-size: 13px; color: rgba(255,255,255,0.7); }
.footer-social a{ width: 36px; height: 36px; background: rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 16px; transition: all 0.3s ease; border: 1px solid rgba(255,255,255,0.15); }
.footer-social a:hover{ background: #E9C75C; color: #2E5449; transform: translateY(-3px); }

@media(max-width: 1000px){
    .footer-container{ grid-template-columns: 1fr 1fr; gap: 40px; }
    .footer-info{ grid-column: 1 / -1; }
}

@media(max-width: 700px){
    .footer{ padding: 40px 0 0; margin-top: 60px; }
    .footer-container{ width: 90%; grid-template-columns: 1fr; gap: 35px; }
    .footer-logo{ flex-direction: column; align-items: flex-start; }
    .footer-logo img{ width: 45px; }
    .footer-title h3{ font-size: 18px; }
    .footer-bottom{ width: 90%; flex-direction: column; text-align: center; padding: 20px 0; }
    .footer-bottom-content{ order: 2; }
    .footer-social{ order: 1; }
}

/* ======================
     Kuesioner (Tracer Study)
     Scoped with .ts-* prefix
     ====================== */

body.ts-body{ background: #F4F8F6; font-family: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; color: #1d2b26; }
.ts-wrapper{ padding: 30px 0 60px; }
.ts-header{ text-align: center; margin-bottom: 20px; }
.ts-header h1{ font-size: clamp(22px, 3vw, 34px); color: #2E5449; margin: 0 0 6px; font-weight: 700; letter-spacing: 0.2px; }
.ts-subtitle{ margin: 0; color: #62897B; font-size: 14px; }

.ts-container{ width: 85%; margin: 0 auto; display: flex; flex-direction: column; gap: 18px; }

.ts-card{ background: #fff; border: 1px solid #E5ECE9; border-radius: 14px; padding: 22px; box-shadow: 0 10px 18px rgba(0,0,0,0.04); }
.ts-card-head h2{ margin: 0 0 6px; font-size: 22px; color: #2E5449; }
.ts-card-head p{ margin: 0; color: #6C8078; font-size: 14px; }

/* Progress */
.ts-progress-head{ display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; font-size: 14px; color: #314741; }
.ts-progress-label{ color: #6C8078; }
.ts-progress-track{ width: 100%; height: 10px; background: #ECF2EF; border-radius: 999px; overflow: hidden; }
.ts-progress-bar{ height: 100%; width: 0; background: linear-gradient(90deg, #3D6B5C 0%, #2E5449 100%); border-radius: 999px; }

/* Steps */
.ts-steps{ display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 18px; }
.ts-step{ display: flex; align-items: center; gap: 12px; padding: 10px 12px; border-radius: 12px; background: #F7FAF8; border: 1px solid #E7EEEA; }
.ts-step:hover{ background: #EEF4F1; }
.ts-step-icon{ width: 38px; height: 38px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; background: #EEF4F1; color: #2E5449; border: 1px solid #DCE7E3; }
.ts-step-text strong{ display: block; font-size: 14px; color: #2E5449; line-height: 1.2; }
.ts-step-text span{ display: block; font-size: 12px; color: #6C8078; }
.ts-step.active{ background: #F2F9F6; border-color: #CFE2DB; }
.ts-step.active .ts-step-icon{ background: #2E5449; color: #fff; border-color: #2E5449; box-shadow: 0 6px 10px rgba(46,84,73,0.25); }

/* Form */
.ts-form{ margin-top: 8px; }
.ts-grid{ display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.ts-col-2{ grid-column: span 2; }
.ts-field{ margin-bottom: 24px; }
.ts-field label{ display: inline-block; margin-bottom: 10px; font-size: 15px; color: #1b3a2f; font-weight: 600; }
.ts-field label span{ color: #D34B4B; }
.ts-field input,
.ts-field select,
.ts-field textarea{ width: 100%; box-sizing: border-box; border: 2px solid #DFE8E4; background: #FBFDFB; border-radius: 14px; padding: 18px 22px; font-size: 16px; color: #1d2b26; outline: none; transition: all 0.3s ease; font-family: inherit; }
.ts-field textarea{ resize: vertical; min-height: 120px; }
.ts-field input::placeholder,
.ts-field textarea::placeholder{ color: #a8b8b0; font-weight: 400; }
.ts-field select{ appearance: none; background-image: url('data:image/svg+xml;utf8,<svg fill="%2362897B" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>'); background-repeat: no-repeat; background-position: right 18px center; background-size: 18px; padding-right: 44px; }
.ts-field input:hover,
.ts-field select:hover,
.ts-field textarea:hover{ border-color: #D0DDD8; background: #FDFFFE; }
.ts-field input:focus,
.ts-field select:focus,
.ts-field textarea:focus{ border-color: #2E5449; background: #fff; box-shadow: 0 0 0 4px rgba(61,107,92,0.15), inset 0 0 0 1px rgba(61,107,92,0.08); }

/* Actions */
.ts-actions{ display: flex; justify-content: space-between; align-items: center; margin-top: 12px; gap: 12px; }
.ts-actions-right{ display: flex; gap: 10px; }

.btn{ display: inline-flex; align-items: center; gap: 8px; border-radius: 10px; padding: 10px 16px; font-weight: 600; font-size: 14px; text-decoration: none; border: 1px solid transparent; transition: all .2s ease; cursor: pointer; }
.btn i{ font-size: 14px; }
.btn-light{ background: #F3F7F5; color: #9AA8A1; border-color: #E5ECE9; cursor: not-allowed; }
.btn-secondary{ background: #E9C75C; color: #2E5449; }
.btn-secondary:hover{ background: #F0D980; transform: translateY(-1px); }
.btn-primary{ background: #2E5449; color: #fff; box-shadow: 0 8px 16px rgba(46,84,73,0.18); }
.btn-primary:hover{ background: #26473E; transform: translateY(-1px); }

/* Responsive */
@media(max-width: 980px){
    .ts-container{ width: 90%; }
    .ts-steps{ grid-template-columns: 1fr 1fr; }
}

@media(max-width: 680px){
    .ts-grid{ grid-template-columns: 1fr; }
    .ts-col-2{ grid-column: span 1; }
    .ts-actions{ flex-direction: column; align-items: stretch; }
    .ts-actions-right{ justify-content: space-between; }
}

@media(max-width: 540px){
    .ts-wrapper{ padding: 16px 0 32px; }
    .ts-container{ width: 94%; gap: 12px; }
    .ts-card{ padding: 16px; }
    .ts-header h1{ font-size: 24px; }
    .ts-progress-head{ flex-direction: column; align-items: flex-start; gap: 6px; }
    .ts-progress-track{ height: 8px; }
    .ts-steps{ grid-template-columns: 1fr; gap: 12px; }
    .ts-step{ padding: 10px 12px; }
    .ts-step-icon{ width: 34px; height: 34px; font-size: 14px; }
    .ts-step-text strong{ font-size: 13px; }
    .ts-step-text span{ font-size: 11px; }
    .ts-grid{ gap: 16px; }
    .ts-field{ margin-bottom: 16px; }
    .ts-field label{ font-size: 14px; margin-bottom: 6px; }
    .ts-field input,
    .ts-field select,
    .ts-field textarea{ padding: 14px 16px; font-size: 15px; }
    .ts-actions{ flex-direction: column; align-items: stretch; gap: 10px; }
    .ts-actions-right{ width: 100%; flex-direction: column; }
    .btn{ width: 100%; justify-content: center; }

    /* Data Pribadi stacked satu kolom di layar kecil */
    .ts-panel[data-step="0"] .ts-grid{ grid-template-columns: 1fr; gap: 14px; }
    .ts-panel[data-step="0"] .ts-col-2{ grid-column: span 1; }
}

/* Status step add-ons */
.ts-hidden{ display: none !important; }
.ts-status-list{ display: grid; grid-template-columns: 1fr; gap: 10px; padding: 6px 2px; }
.ts-radio{ display: flex; align-items: center; gap: 10px; font-size: 14px; color: #2E5449; }
.ts-radio input{ width: 18px; height: 18px; accent-color: #2E5449; }

/* Invalid state */
.ts-invalid{ border-color: #D34B4B !important; box-shadow: 0 0 0 3px rgba(211,75,75,0.12) !important; }

/* Optional: completed step style */
.ts-steps .completed .ts-step-icon{ background: #2E5449; color: #fff; border-color: #2E5449; opacity: 0.9; }

/* Success Page */
.ts-success-wrapper{ min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 40px 20px; background: linear-gradient(135deg, #F4F8F6 0%, #E8F4F0 100%); }
.ts-success-container{ background: #fff; border-radius: 20px; max-width: 650px; width: 100%; padding: 50px 40px; text-align: center; box-shadow: 0 20px 60px rgba(0,0,0,0.08); }
.ts-success-icon{ width: 120px; height: 120px; margin: 0 auto 24px; border-radius: 50%; background: linear-gradient(135deg, #E8F4F0 0%, #D4E9E1 100%); display: flex; align-items: center; justify-content: center; position: relative; animation: successPulse 0.6s ease-out; }
@keyframes successPulse{ 0%{ transform: scale(0.8); opacity: 0; } 100%{ transform: scale(1); opacity: 1; } }
.ts-success-icon .fa-circle-check{ font-size: 64px; color: #2E5449; }
.ts-success-icon .ts-sparkle{ position: absolute; top: 10px; right: 14px; font-size: 26px; color: #E9C75C; animation: sparkle 1.5s ease-in-out infinite; }
@keyframes sparkle{ 0%, 100%{ transform: rotate(0deg) scale(1); } 50%{ transform: rotate(15deg) scale(1.1); } }
.ts-success-title{ font-size: 36px; color: #2E5449; margin: 0 0 10px; font-weight: 700; }
.ts-success-subtitle{ font-size: 18px; color: #62897B; margin: 0 0 28px; }
.ts-success-message{ background: #F4F8F6; padding: 24px; border-radius: 14px; margin-bottom: 32px; }
.ts-success-message p{ margin: 0 0 12px; font-size: 15px; line-height: 24px; color: #314741; }
.ts-success-message p:last-child{ margin: 0; }
.ts-success-desc{ font-size: 14px !important; color: #6C8078 !important; }
.ts-success-stats{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-bottom: 36px; }
.ts-success-stat-item{ background: #FAFCFB; border: 1px solid #E5ECE9; border-radius: 12px; padding: 20px 12px; display: flex; flex-direction: column; align-items: center; gap: 10px; transition: all .3s ease; }
.ts-success-stat-item:hover{ background: #F2F9F6; transform: translateY(-3px); box-shadow: 0 8px 16px rgba(46,84,73,0.1); }
.ts-success-stat-item i{ font-size: 28px; color: #2E5449; }
.ts-success-stat-item span{ font-size: 13px; color: #62897B; font-weight: 600; }
.ts-success-actions{ display: flex; gap: 12px; margin-bottom: 40px; }
.btn-lg{ padding: 14px 24px; font-size: 15px; flex: 1; justify-content: center; }
.ts-success-share-section{ background: #F9FBFA; border: 1px solid #E5ECE9; border-radius: 14px; padding: 28px 24px; margin-bottom: 28px; }
.ts-success-share-title{ font-size: 14px; color: #6C8078; margin: 0 0 6px; }
.ts-success-share-heading{ font-size: 20px; color: #2E5449; margin: 0 0 20px; font-weight: 600; }
.ts-success-share-buttons{ display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.ts-share-btn{ display: flex; flex-direction: column; align-items: center; gap: 8px; padding: 16px 10px; border-radius: 12px; text-decoration: none; border: 1px solid #E5ECE9; background: #fff; transition: all .3s ease; cursor: pointer; }
.ts-share-btn i{ font-size: 26px; }
.ts-share-btn span{ font-size: 12px; font-weight: 600; }
.ts-share-btn:hover{ transform: translateY(-4px); box-shadow: 0 8px 20px rgba(0,0,0,0.12); }
.ts-share-wa{ color: #25D366; border-color: #25D366; }
.ts-share-wa:hover{ background: #25D366; color: #fff; }
.ts-share-fb{ color: #1877F2; border-color: #1877F2; }
.ts-share-fb:hover{ background: #1877F2; color: #fff; }
.ts-share-tw{ color: #1DA1F2; border-color: #1DA1F2; }
.ts-share-tw:hover{ background: #1DA1F2; color: #fff; }
.ts-share-tg{ color: #0088cc; border-color: #0088cc; }
.ts-share-tg:hover{ background: #0088cc; color: #fff; }
.ts-share-copy{ color: #62897B; border-color: #CFE2DB; }
.ts-share-copy:hover{ background: #2E5449; color: #fff; border-color: #2E5449; }
.ts-success-contact{ font-size: 13px; color: #9AA8A1; margin: 0; }
.ts-success-contact a{ color: #2E5449; text-decoration: none; font-weight: 600; }
.ts-success-contact a:hover{ text-decoration: underline; }

@media(max-width: 700px){
  .ts-success-wrapper{ padding: 30px 15px; }
  .ts-success-container{ padding: 40px 25px; }
  .ts-success-title{ font-size: 28px; }
  .ts-success-stats{ grid-template-columns: 1fr; }
  .ts-success-actions{ flex-direction: column; }
  .ts-success-share-buttons{ grid-template-columns: repeat(3, 1fr); }
}
@media(max-width: 500px){
  .ts-success-share-buttons{ grid-template-columns: repeat(2, 1fr); }
}

/* ======================
     Verifikasi NIK (nik-*)
     ====================== */
.nik-wrapper{ min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; background: #F4F8F6; padding: 120px 20px 40px; }
.nik-header{ text-align: center; margin-bottom: 32px; }
.nik-icon{ width: 80px; height: 80px; border-radius: 50%; background: #EAF3EF; color: #2E5449; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; border: 1px solid #D6E5DF; font-size: 36px; }
.nik-header h1{ font-size: 36px; color: #1b3a2f; margin: 0 0 12px; font-weight: 700; }
.nik-header p{ color: #4d6d61; font-size: 16px; margin: 0; line-height: 1.6; font-weight: 500; }
.nik-card{ background: #fff; border-radius: 20px; box-shadow: 0 8px 32px rgba(46,84,73,0.1); padding: 48px 44px 40px; max-width: 550px; width: calc(100% - 40px); margin: 0 auto; display: flex; flex-direction: column; align-items: stretch; }
.nik-card h2{ font-size: 24px; color: #2E5449; margin: 0 0 8px; font-weight: 700; }
.nik-desc{ color: #6C8078; font-size: 15px; margin: 0 0 24px; font-weight: 500; }
.nik-label{ font-size: 15px; color: #1b3a2f; font-weight: 600; margin-bottom: 12px; display: block; }
.nik-input{ width: 100%; box-sizing: border-box; border: 2px solid #DFE8E4; background: #FBFDFB; border-radius: 14px; padding: 18px 22px; font-size: 16px; color: #1d2b26; outline: none; margin-bottom: 16px; transition: all 0.3s ease; font-family: inherit; }
.nik-input::placeholder{ color: #a8b8b0; font-weight: 400; }
.nik-input:hover{ border-color: #D0DDD8; background: #FDFFFE; }
.nik-input:focus{ border-color: #2E5449; background: #fff; box-shadow: 0 0 0 4px rgba(61,107,92,0.15), inset 0 0 0 1px rgba(61,107,92,0.08); }
.nik-count{ font-size: 14px; color: #9AA8A1; margin-bottom: 14px; }
.nik-info{ display: flex; align-items: flex-start; gap: 14px; background: #F4F8F6; border: 2px solid #E5ECE9; border-radius: 12px; padding: 18px 18px 18px 16px; margin-bottom: 28px; }
.nik-info i{ font-size: 22px; color: #2E5449; margin-top: 2px; flex-shrink: 0; }
.nik-info strong{ color: #2E5449; font-size: 15px; display: block; margin-bottom: 4px; font-weight: 600; }
.nik-info p{ color: #6C8078; font-size: 14px; margin: 0; }
.nik-btn{ width: 100%; margin-top: 12px; font-size: 16px; padding: 16px 0; border-radius: 12px; font-weight: 600; text-align: center; display: flex; align-items: center; justify-content: center; gap: 10px; }
.nik-btn:disabled{ background: #CFE2DB; color: #fff; cursor: not-allowed; }
.nik-back{ text-align: center; margin-top: 32px; }
.nik-back a{ color: #62897B; text-decoration: none; font-size: 16px; transition: color .2s; }
.nik-back a:hover{ color: #2E5449; text-decoration: underline; }
@media(max-width: 600px){
    .nik-wrapper{ padding: 110px 16px 30px; }
    .nik-card{ padding: 36px 28px 28px; max-width: 100%; width: calc(100% - 56px); }
    .nik-header h1{ font-size: 26px; }
    .nik-header p{ font-size: 14px; }
    .nik-input{ padding: 16px 18px; font-size: 15px; margin-bottom: 14px; }
    .nik-icon{ width: 70px; height: 70px; font-size: 32px; }
}

/* ======================
     Survei Pengguna Lulusan (sp-*)
     ====================== */
.sp-wrapper{ padding: 100px 32px 60px; }
.sp-header{ text-align: center; margin-bottom: 24px; }
.sp-icon-badge{ width: 64px; height: 64px; border-radius: 50%; background: #EAF3EF; color: #2E5449; display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; border: 1px solid #D6E5DF; }
.sp-icon-badge i{ font-size: 28px; }
.sp-header h1{ margin: 0 0 12px; font-size: clamp(24px, 3vw, 32px); color: #1b3a2f; font-weight: 700; }
.sp-header p{ margin: 0; color: #4d6d61; font-size: 15px; font-weight: 500; line-height: 1.6; }
.sp-container{ width: 85%; }

.sp-section-head{ display:flex; align-items:center; gap:10px; margin-bottom:6px; }
.sp-section-head i{ color:#2E5449; }
.sp-section-head h2{ margin:0; font-size:20px; color:#2E5449; }
.sp-section-sub{ margin:0 0 14px; color:#6C8078; font-size:13px; }

.sp-rating-list{ display:flex; flex-direction:column; gap:14px; }
.sp-rating-group label{ font-weight:600; color:#27443B; font-size:14px; }
.sp-rating-options{ display:flex; flex-wrap:wrap; gap:14px; margin-top:8px; }
.sp-radio{ display:flex; align-items:center; gap:8px; font-size:14px; color:#2E5449; }
.sp-radio input{ width:18px; height:18px; accent-color:#2E5449; }

.sp-radio-row{ display:flex; flex-wrap:wrap; gap:14px; margin-top:8px; }
.sp-block{ margin-bottom:14px; }

.sp-consent{ margin-top:8px; }
.sp-checkbox{ display:flex; align-items:flex-start; gap:10px; font-size:13px; color:#314741; }
.sp-checkbox input{ width:18px; height:18px; margin-top:2px; accent-color:#2E5449; }

.sp-actions{ display:flex; justify-content:space-between; align-items:center; gap:12px; margin-top:12px; }

@media(max-width: 980px){
    .sp-container{ width:90%; }
}
@media(max-width: 680px){
    .sp-actions{ flex-direction:column; align-items:stretch; }
}


/* About Us Page */
.sub-header{
    height: 50vh;
    width: 100%;
    background-image: linear-gradient(rgba(4,9,30,0.7), rgba(4,9,30,0.7)), url(../img/banner.jpg);
    background-position: center;
    background-size: cover;
    text-align: center;
    color: #fff;   
}

.about-us{
    width: 80%;
    margin: auto;
    padding-top: 50px;
    padding-bottom: 50px;
}

.about-col{
    flex-basis: 48%;
    padding: 30px 2px;
}

.about-col img{
    width: 100%;
}

.about-col h1{
    padding-top: 0;
}

.about-col p{
    padding: 15px 0 25px
}

.red-btn{
    border: 1px solid #f44336;
    background: transparent;
    color:#f44336;
}

.red-btn:hover{
    color:#fff;
}

/* Provinsi List */

.provinsi-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 10px 16px;
    margin: 10px 0 20px;
    background-color: #fff;
    overflow: visible;
    width: 100%;
}

.provinsi-left {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    min-width: 0;
}

.status-dot {
    width: 14px;
    height: 14px;
    background-color: #335e4f;
    border-radius: 50%;
    display: inline-block;
}

.provinsi-nama {
    font-size: 15px;
    color: #2C3E50;
    font-weight: 500;
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-word;
    flex: 1;
    min-width: 0;
}

.tag-lokal {
    border: 1px solid #d1d5db;
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 12px;
    color: #335e4f;
    white-space: nowrap;
    flex-shrink: 0;
}

.provinsi-right {
    text-align: right;
    flex-shrink: 0;
    min-width: fit-content;
}

.provinsi-jumlah {
    display: block;
    font-size: 20px;
    font-weight: bold;
    color: #335e4f;
}

.provinsi-persentase {
    font-size: 13px;
    color: #6b7280;
}



.provinsi-list{
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}


.provinsi-item:hover{
    background: #F8FAFB;
    border-color: #3D6B5C;
    transform: translateX(5px);
}

.provinsi-dot{
    width: 14px;
    height: 14px;
    border-radius: 50%;
    flex-shrink: 0;
}

.provinsi-dot.green{
    background: #3D6B5C;
}

.provinsi-dot.yellow{
    background: #E9C75C;
}

.provinsi-dot.navy{
    background: #3D5A6B;
}

.provinsi-dot.green-light{
    background: #5DA271;
}

.provinsi-dot.gray{
    background: #D3D3D3;
}

.provinsi-info{
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
}

.provinsi-name{
    font-size: 16px;
    color: #2C3E50;
    font-weight: 500;
}

.provinsi-badge{
    background: #E8F0EE;
    color: #3D6B5C;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.provinsi-stats{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
}

.provinsi-count{
    font-size: 24px;
    font-weight: 700;
    color: #2C3E50;
}

.provinsi-percent{
    font-size: 13px;
    color: #6B8A7A;
}

/* ============================================ */
/* Detail Prodi Alumni Styles */
/* ============================================ */

.detail-prodi {
    width: 90%;
    max-width: 1400px;
    margin: auto;
    padding: 100px 20px 80px 20px;
}

.detail-prodi-header {
    margin-bottom: 40px;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #3D6B5C;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: #2E5E4F;
}

.back-link i {
    font-size: 16px;
}

.header-title {
    display: flex;
    align-items: center;
    gap: 20px;
    background: linear-gradient(135deg, #3D6B5C 0%, #2E5E4F 100%);
    padding: 30px 40px;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(61, 107, 92, 0.2);
}

.icon-wrapper {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-wrapper i {
    font-size: 36px;
    color: #fff;
}

.header-title h1 {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 8px 0;
}

.prodi-name {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* Stats Grid */
.detail-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.detail-stat-card {
    background: #fff;
    border-radius: 14px;
    padding: 28px 32px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.detail-stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.detail-stat-card.highlight {
    border-color: #FFF8E1;
    background: linear-gradient(135deg, #FFFBF0 0%, #FFF8E1 100%);
}

.stat-icon-wrapper {
    width: 60px;
    height: 60px;
    background: #E8F0EE;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-icon-wrapper i {
    font-size: 26px;
    color: #3D6B5C;
}

.stat-icon-wrapper.yellow {
    background: #FFF8E1;
}

.stat-icon-wrapper.yellow i {
    color: #E9C75C;
}

.stat-icon-wrapper.green {
    background: #E8F5E9;
}

.stat-icon-wrapper.green i {
    color: #5DA271;
}

.stat-content {
    flex: 1;
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    color: #2E5E4F;
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 14px;
    color: #6B8A7A;
    font-weight: 500;
}

/* Search Section */
.search-section {
    margin-bottom: 30px;
}

.search-box {
    position: relative;
    max-width: 700px;
}

.search-box i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #6B8A7A;
    font-size: 18px;
}

.search-box input {
    width: 100%;
    padding: 16px 20px 16px 55px;
    border: 2px solid #E8F0EE;
    border-radius: 12px;
    font-size: 15px;
    color: #2C3E50;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.search-box input:focus {
    outline: none;
    border-color: #3D6B5C;
    box-shadow: 0 0 0 3px rgba(61, 107, 92, 0.1);
}

.search-box input::placeholder {
    color: #9CA3AF;
}

/* Alumni Table */
.alumni-table-container {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.alumni-table {
    width: 100%;
    border-collapse: collapse;
}

.alumni-table thead {
    background: linear-gradient(135deg, #3D6B5C 0%, #2E5E4F 100%);
}

.alumni-table thead th {
    padding: 18px 20px;
    text-align: left;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.alumni-table thead th:first-child {
    width: 60px;
    text-align: center;
}

.alumni-table tbody td {
    padding: 18px 20px;
    font-size: 15px;
    color: #2C3E50;
    border-bottom: 1px solid #F3F4F6;
}

.alumni-table tbody td:first-child {
    text-align: center;
    font-weight: 600;
    color: #6B8A7A;
}

.alumni-table tbody tr:last-child td {
    border-bottom: none;
}

.alumni-table tbody tr {
    transition: background-color 0.2s ease;
}

.alumni-table tbody tr:hover {
    background-color: #F9FAFB;
}

.alumni-name {
    font-weight: 600;
    color: #2E5E4F;
}

.year-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: #F3F4F6;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    color: #4B5563;
}

.year-badge i {
    font-size: 12px;
}

.location-text {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #3D6B5C;
    font-weight: 500;
}

.location-text i {
    font-size: 14px;
}

.no-data {
    color: #9CA3AF;
    font-style: italic;
}

.no-data-row {
    padding: 60px 20px !important;
}

.no-data-message {
    text-align: center;
    color: #9CA3AF;
}

.no-data-message i {
    font-size: 48px;
    margin-bottom: 16px;
    opacity: 0.5;
}

.no-data-message p {
    font-size: 16px;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .detail-prodi {
        width: 100%;
        padding: 80px 15px 60px 15px;
    }

    .header-title {
        flex-direction: column;
        text-align: center;
        padding: 24px 20px;
    }

    .header-title h1 {
        font-size: 28px;
    }

    .prodi-name {
        font-size: 16px;
    }

    .detail-stats-grid {
        grid-template-columns: 1fr;
    }

    .search-box {
        max-width: 100%;
    }

    .alumni-table-container {
        overflow-x: auto;
    }

    .alumni-table {
        min-width: 800px;
    }

    .alumni-table thead th,
    .alumni-table tbody td {
        padding: 12px 10px;
        font-size: 13px;
    }
}
