/* Import Font dari Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

/* Reset CSS Dasar */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

/* Variabel Warna */
:root {
    --bg-grad-start: #0f2027; 
    --bg-grad-mid: #203a43;
    --bg-grad-end: #2c5364;
    --card-bg: rgba(255, 255, 255, 0.08);
    --card-border: rgba(255, 255, 255, 0.2);
    --text-primary: #ffffff;
    --text-secondary: #d1d1d1;
    --accent-color: #002B5B; 
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, var(--bg-grad-start), var(--bg-grad-mid), var(--bg-grad-end));
    color: var(--text-primary);
}

/* ================== STYLE HEADER BARU ================== */
.main-header {
    background: linear-gradient(225deg, #03045E 28%, #87CEEB 53%, #03045E 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 0.8rem 2rem;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid var(--card-border);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 2.0rem;
}

.logo-img {
    max-height: 40px; /* batasi tinggi */
    height: auto;
    width: auto;
    display: block;
    transform: scale(2.0);
}


.logo-text h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.2;
}

.logo-text span {
    font-size: 0.8rem;
    font-weight: 300;
    color: var(--text-secondary);
}

.neon-pulse-text {
    color: #002B5B;
    font-weight: bold;
    text-shadow: 0 0 5px #002B5B, 0 0 10px #002B5B, 0 0 20px #ffef8a;
    animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
    0% {
        text-shadow: 0 0 5px #002B5B, 0 0 10px #002B5B;
    }
    50% {
        text-shadow: 0 0 15px #002B5B, 0 0 25px #ffef8a;
    }
    100% {
        text-shadow: 0 0 5px #002B5B, 0 0 10px #002B5B;
    }
}

.slogan-neon {
    color: #00FFFF;
    font-weight: bold;
    text-shadow:
        0 0 5px #00FFFF,
        0 0 10px #00FFFF,
        0 0 15px #ffef8a;
    animation: pulseNeon 2s infinite;
}

@keyframes pulseNeon {
    0% {
        text-shadow: 0 0 5px #00FFFF, 0 0 10px #00FFFF;
    }
    50% {
        text-shadow: 0 0 15px #00FFFF, 0 0 25px #ffef8a;
    }
    100% {
        text-shadow: 0 0 5px #00FFFF, 0 0 10px #00FFFF;
    }
}

.neon-glow {
    max-height: 40px;
    display: block;
    filter: drop-shadow(0 0 8px #002B5B)
            drop-shadow(0 0 16px #002B5B)
            drop-shadow(0 0 32px #002B5B);
    animation: neonPulse 2s infinite;
}

@keyframes neonPulse {
    0% {
        filter: drop-shadow(0 0 3px #002B5B) drop-shadow(0 0 5px #002B5B);
    }
    50% {
        filter: drop-shadow(0 0 5px #002B5B) drop-shadow(0 0 9px #002B5B);
    }
    100% {
        filter: drop-shadow(0 0 3px #002B5B) drop-shadow(0 0 5px #002B5B);
    }
}

.main-nav {
    display: flex;
    align-items: center; /* Menjaga link tetap di tengah secara vertikal */
    gap: 1.5rem; /* Memberi jarak antar link */
}

.main-nav a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 400;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.3s ease;
}

.main-nav a:hover, .main-nav a.active {
    color: var(--text-primary);
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.main-nav a:hover::after, .main-nav a.active::after {
    width: 100%;
}


/* ================== STYLE BANNER BARU ================== */
.banner-container {
    padding: 6rem 2rem;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
                url(/img/banner1.jpg) no-repeat center center;
    background-size: cover; /* Kunci utama agar gambar menutupi seluruh elemen */
    background-position: contain;
    background-repeat: no-repeat;
}

.banner-content h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.banner-content p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2rem auto;
    color: var(--text-secondary);
    font-weight: 300;
}

.btn-primary {
    background-color: var(--accent-color);
    color: #0f2027;
    padding: 0.8rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-primary:hover {
    background-color: #fff;
    transform: translateY(-3px);
}

/* ================== KONTEN UTAMA & KARTU ================== */
.portal-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    text-align: center;
}

.section-title {
    margin-bottom: 3rem;
}

.section-title h3 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #002B5B;
}

.section-title p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-weight: 300;
}

.portal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.portal-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 15px;
    padding: 2.5rem 2rem;
    text-decoration: none;
    color: var(--text-primary);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.portal-card:hover {
    transform: translateY(-10px) scale(1.02);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.portal-card i {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.portal-card:hover i {
    transform: scale(1.1) rotate(-5deg);
}

.portal-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.portal-card p {
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ================== FOOTER ================== */
.portal-footer {
    padding: 2rem;
    background-color: #0f2027;
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 2rem;
}

/* ================== RESPONSIVE DESIGN ================== */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 1rem;
    }

    .main-nav {
        width: 100%;
        justify-content: space-around;
    }

    .banner-content h2 {
        font-size: 2rem;
    }
    .banner-content p {
        font-size: 1rem;
    }
    
    .section-title h3 {
        font-size: 2rem;
    }

    .portal-container {
        padding: 2rem 1rem;
    }

    .portal-grid {
        grid-template-columns: 1fr;
    }
}

/* ================== SEKSI ALUR PERMOHONAN ================== */
.flow-section {
    padding: 4rem 2rem;
    background-color: transparent; /* Menyatu dengan background utama */
}

.flow-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.flow-step {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    text-align: center;
    position: relative;
    padding: 0 1rem;
}

.flow-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem auto;
    border-radius: 50%;
    background-color: var(--card-bg);
    border: 2px solid var(--accent-color);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    color: var(--accent-color);
    transition: transform 0.3s ease;
}

.flow-step:hover .flow-icon {
    transform: scale(1.1);
}

.flow-step h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.flow-step p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Garis penghubung antar step */
.flow-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 40px; /* Setengah dari tinggi ikon */
    right: -25%;
    width: 50%;
    height: 2px;
    background: repeating-linear-gradient(90deg, var(--card-border), var(--card-border) 5px, transparent 5px, transparent 10px);
}


/* ================== SEKSI KOMITMEN ================== */
.commitment-section {
    padding: 4rem 2rem;
    background-color: var(--bg-grad-start); /* Warna solid untuk memecah gradien */
}

.commitment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.commitment-item {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 10px;
    border-left: 5px solid var(--accent-color);
    text-align: left;
}

.commitment-item i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.commitment-item h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.commitment-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}


/* ================== SEKSI FAQ (DESAIN BARU) ================== */
.faq-section {
    padding: 4rem 2rem;
}

.faq-container {
    max-width: 1200px;
    margin: 2rem auto 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr; /* Dua kolom untuk layar besar */
    gap: 3rem;
}

.faq-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    border-bottom: 1px solid var(--card-border);
    padding-bottom: 1.5rem;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    color: var(--text-secondary); /* Warna default agak redup */
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--text-primary);
}

.faq-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
    line-height: 1.4;
}

.faq-text {
    font-size: 1.2rem;
    font-weight: 600;
    flex-grow: 1; /* Membuat teks mengisi ruang */
    line-height: 1.4;
}

.faq-question i {
    font-size: 1.2rem;
    margin-top: 0.3rem;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Transisi dengan efek 'bounce' */
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.faq-answer p {
    padding: 1rem 0 0 4rem; /* Indentasi agar sejajar dengan teks pertanyaan */
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1rem;
}

/* Style untuk Accordion aktif */
.faq-item.active .faq-question {
    color: var(--text-primary); /* Warna teks menjadi cerah */
}

.faq-item.active .faq-question i {
    transform: rotate(45deg); /* Berubah menjadi ikon 'x' */
    color: var(--accent-color);
}

/* Penyesuaian Responsif untuk FAQ */
@media (max-width: 992px) {
    .faq-container {
        grid-template-columns: 1fr; /* Satu kolom untuk tablet dan mobile */
        gap: 0;
    }
    .faq-item {
        margin-bottom: 1.5rem;
    }
}

/* ================== SEKSI ANTI PUNGLI & CALO ================== */
.anti-corruption-strip {
    background-color: var(--accent-color); /* Menggunakan warna aksen emas agar menonjol */
    color: var(--bg-grad-start); /* Teks berwarna gelap agar kontras */
    padding: 1rem 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.strip-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 2rem;
}

.strip-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.strip-icon .fa-stack-1x {
    color: var(--bg-grad-start);
}
/* Warna merah untuk ikon 'ban' sudah di-inline style agar lebih tegas, namun bisa juga di sini */
/* .strip-icon .fa-stack-2x { color: #e74c3c; } */


.strip-text h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
}

.strip-text p {
    font-size: 0.9rem;
    margin: 0;
}

.strip-divider {
    width: 1px;
    height: 40px;
    background-color: rgba(15, 32, 39, 0.2);
}

/* Penyesuaian Responsif untuk seksi ini */
@media (max-width: 768px) {
    .strip-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .strip-divider {
        display: none; /* Sembunyikan garis pemisah di layar kecil */
    }

    .strip-item {
        width: 100%;
    }
}

/* ================== HAMBURGER MENU & NAVIGASI MOBILE ================== */

/* Tombol Hamburger */
.hamburger-menu {
    display: none; /* Sembunyikan di desktop */
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1011; /* Harus di atas overlay navigasi */
}

.hamburger-menu .line {
    display: block;
    width: 30px;
    height: 3px;
    background-color: var(--text-primary);
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
}


/* Media Query untuk Mobile */
@media (max-width: 768px) {
    /* Tampilkan tombol hamburger di mobile */
    .hamburger-menu {
        display: flex;
    }

    /* Sembunyikan header container yang lama agar tidak tumpang tindih */
    .header-container .main-nav {
        /* Posisikan menu di luar layar */
        position: fixed;
        top: 0;
        right: 0;
        width: 75%;
        height: 100vh;
        background: rgba(15, 32, 39, 0.9); /* Latar belakang semi-transparan */
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        
        /* Ubah flexbox menjadi vertikal dan tengahkan */
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        
        /* Sembunyikan di kanan */
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    }
    
    /* State ketika menu aktif/terbuka */
    .main-nav.nav-active {
        transform: translateX(0);
        box-shadow: -5px 0px 20px rgba(0,0,0,0.3);
    }

    .main-nav a {
        font-size: 1.5rem;
        font-weight: 600;
    }
    
    /* Animasi hamburger menjadi 'X' */
    .hamburger-menu.active .line:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
    }
    
    .hamburger-menu.active .line:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger-menu.active .line:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
}

/* ================== SEKSI LAYANAN UTAMA (SHOWCASE) ================== */
.service-showcase {
    padding: 4rem 2rem;
    background-color: var(--bg-grad-end); /* Memberi latar yang sedikit berbeda */
}

.service-container {
    max-width: 1100px;
    margin: 3rem auto 0 auto;
    display: flex;
    flex-direction: column;
    gap: 5rem; /* Jarak antar item layanan */
}

.service-item {
    display: flex;
    align-items: center;
    gap: 3rem;
}

/* Modifier untuk membalik layout */
.service-item.layout-reversed {
    flex-direction: row-reverse;
}

.service-image, .service-content {
    flex: 1; /* Membuat kedua sisi memiliki lebar yang sama */
}

.service-image {
    text-align: center;
}

.service-image i {
    font-size: 12rem; /* Ikon super besar */
    background: linear-gradient(135deg, var(--accent-color), #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
    transition: transform 0.4s ease;
}

.service-item:hover .service-image i {
    transform: scale(1.05) rotate(-5deg);
}

.service-content {
    text-align: left;
}

.service-category {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background-color: var(--accent-color);
    color: var(--bg-grad-start);
    font-weight: 700;
    font-size: 0.8rem;
    border-radius: 50px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.service-content h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.service-content p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.btn-secondary {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: var(--accent-color);
    color: var(--bg-grad-start);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.2);
}

.btn-secondary i {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.btn-secondary:hover i {
    transform: translateX(5px);
}

/* Responsif untuk Layanan Showcase */
@media(max-width: 992px) {
    .service-item, .service-item.layout-reversed {
        flex-direction: column; /* Semua item menjadi vertikal */
        text-align: center;
    }
    .service-content {
        text-align: center;
    }
    .service-image i {
        font-size: 8rem; /* Perkecil ikon di mobile */
    }
    .service-content h3 {
        font-size: 2rem;
    }
}

/* ================== STYLE UNTUK KONTEN HALAMAN INTERNAL ================== */
.page-content-wrapper {
    max-width: 900px;
    margin: 4rem auto; /* Jarak dari header dan footer */
    padding: 2.5rem 3rem;
    background-color: #ffffff;
    color: #333; /* Warna teks gelap agar mudah dibaca */
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.page-content-wrapper article h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.2rem;
    color: #1a2a33;
    border-bottom: 3px solid var(--accent-color); /* Menggunakan warna aksen tema */
    padding-bottom: 0.5rem;
    margin-bottom: 0.5rem;
}

.page-content-wrapper .subtitle {
    font-size: 1.1rem;
    color: #777;
    margin-bottom: 2.5rem;
    font-style: italic;
}

.page-content-wrapper article section {
    margin-bottom: 2.5rem;
}

.page-content-wrapper article h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.6rem;
    color: #1a2a33;
    margin-bottom: 1rem;
}

.page-content-wrapper article p,
.page-content-wrapper article li {
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    color: #444;
}

.page-content-wrapper article ul,
.page-content-wrapper article ol {
    padding-left: 2rem;
}

.page-content-wrapper article li {
    margin-bottom: 0.8rem;
}

.page-content-wrapper article strong {
    color: #000;
}

/* Responsif untuk konten halaman */
@media (max-width: 768px) {
    .page-content-wrapper {
        margin: 2rem 1rem;
        padding: 1.5rem;
    }
    .page-content-wrapper article h2 {
        font-size: 1.8rem;
    }
    .page-content-wrapper article h3 {
        font-size: 1.4rem;
    }
}

/* ================== STYLE UNTUK KONTEN HALAMAN DENGAN TAB ================== */

/* Judul di atas Tab */
.page-title-container {
    text-align: center;
    padding: 3rem 2rem 0 2rem;
}
.page-title-container h2 {
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}
.page-title-container p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Kontainer utama untuk Tab */
.tabs-container {
    max-width: 1000px;
    margin: 2rem auto 4rem auto;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    overflow: hidden; /* Agar border-radius rapi */
}

/* Bagian Tombol Tab */
.tab-buttons {
    display: flex;
    background-color: #f4f7f6;
    border-bottom: 1px solid #e0e0e0;
}

.tab-button {
    flex: 1; /* Membuat semua tombol sama lebar */
    padding: 1.25rem 1rem;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #555;
    background: none;
    border: none;
    border-bottom: 3px solid transparent; /* Garis bawah non-aktif */
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-button:hover {
    background-color: #e9ecef;
    color: #000;
}

.tab-button.active {
    color: var(--bg-grad-start);
    background-color: #fff;
    border-bottom-color: var(--accent-color); /* Garis bawah aktif */
}

.tab-button i {
    margin-right: 0.75rem;
}

/* Bagian Konten Tab */
.tab-content {
    padding: 2rem 2.5rem;
    color: #333;
}

.tab-panel {
    display: none; /* Sembunyikan semua panel by default */
    animation: fadeIn 0.5s ease-in-out;
}

.tab-panel.active {
    display: block; /* Tampilkan hanya panel yang aktif */
}

.tab-panel h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #111;
}

.tab-panel h4 {
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    color: #333;
    border-left: 3px solid var(--accent-color);
    padding-left: 0.8rem;
}

.tab-panel ul {
    padding-left: 2rem;
    list-style-type: '✓  ';
}

.tab-panel p, .tab-panel li {
    line-height: 1.8;
    font-size: 1rem;
}

/* Animasi Fade-in untuk Panel */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsif untuk Tab */
@media (max-width: 768px) {
    .tab-buttons {
        flex-direction: column;
    }
    .tab-button {
        border-bottom: 1px solid #e0e0e0;
    }
    .tab-button.active {
        border-bottom-color: #e0e0e0;
        border-left: 5px solid var(--accent-color);
    }
}

/* ================== STYLE HALAMAN LAYANAN PERCEPATAN ================== */
.percepatan-hero {
    padding: 5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.percepatan-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.1), transparent 70%);
    z-index: 0;
}

.percepatan-hero .hero-content {
    position: relative;
    z-index: 1;
}

.percepatan-hero .hero-icon {
    font-size: 4rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    text-shadow: 0 0 25px var(--accent-color);
}

.percepatan-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.percepatan-hero p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

/* Seksi Keunggulan */
.key-features {
    padding: 0 2rem 4rem 2rem;
}

.features-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-item {
    background: var(--card-bg);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid var(--card-border);
    backdrop-filter: blur(5px);
}

.feature-item i {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.feature-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.feature-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Seksi Alur Proses */
.process-steps {
    padding: 4rem 2rem;
    background-color: var(--bg-grad-start); /* Latar berbeda */
}

.steps-container {
    max-width: 800px;
    margin: 3rem auto 0 auto;
    position: relative;
}

/* Garis timeline vertikal */
.steps-container::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 10px;
    bottom: 10px;
    width: 2px;
    background: var(--card-border);
}

.step-item {
    position: relative;
    padding-left: 70px; /* Jarak untuk nomor dan garis */
    margin-bottom: 3rem;
}

.step-number {
    position: absolute;
    left: 0;
    top: -5px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-color);
    color: var(--bg-grad-start);
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 3px solid var(--bg-grad-start);
}

.step-content h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.step-content p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Seksi Pemberitahuan Penting */
.important-notice {
    padding: 4rem 2rem;
}

.notice-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    background: rgba(255, 215, 0, 0.05); /* Latar kuning transparan */
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-left: 5px solid var(--accent-color);
    padding: 2rem;
    border-radius: 10px;
}

.notice-icon i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-top: 0.5rem;
}

.notice-text h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.notice-text ul {
    list-style-position: outside;
    padding-left: 1.2rem;
}

.notice-text li {
    margin-bottom: 0.8rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* Responsif untuk Halaman Percepatan */
@media(max-width: 768px) {
    .percepatan-hero h1 {
        font-size: 2.5rem;
    }
    .steps-container::before {
        left: 24px; /* Sesuaikan jika perlu */
    }
    .step-item {
        padding-left: 60px;
    }
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        left: 4px;
    }
    .notice-container {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
        align-items: center;
    }
}

/* ================== TOMBOL KEMBALI KE BERANDA (DESAIN BARU) ================== */
.back-home-container {
    max-width: 1100px; /* Sesuaikan dengan max-width konten Anda */
    margin: 1rem auto 3rem auto; /* Memberi jarak dari konten di atas dan footer di bawah */
    padding: 0 2rem;
    text-align: left; /* Memastikan tombol rata kiri */
}

.btn-back-home {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.7rem 1.4rem;

    background-color: rgba(255, 255, 255, 0.08); /* Latar belakang kaca transparan */
    border: 1px solid var(--card-border);
    border-radius: 50px; /* Bentuk pil */

    color: #002B5B; /* Warna teks abu-abu terang */
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;

    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.btn-back-home:hover {
    background-color: rgba(255, 255, 255, 0.15);
    color: #002B5B; /* Teks menjadi putih cerah */
    border-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.btn-back-home i {
    transition: transform 0.3s ease;
}

.btn-back-home:hover i {
    transform: translateX(-3px); /* Ikon panah sedikit bergerak ke kiri */
}

/* ================== STYLE HALAMAN ZONA INTEGRITAS ================== */

/* Seksi Hero Integritas */
.integritas-hero {
    padding: 5rem 2rem;
    text-align: center;
    background: linear-gradient(rgba(15, 32, 39, 0.8), rgba(44, 83, 100, 0.9)), radial-gradient(circle at top, var(--bg-grad-mid), var(--bg-grad-start));
}

.integritas-hero .hero-icon {
    font-size: 5rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-shadow: 0 0 35px rgba(255, 215, 0, 0.6);
    display: inline-block;
}

.integritas-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.integritas-hero p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Seksi Pilar Perubahan */
.perubahan-pillars {
    padding: 5rem 2rem;
}

.pillars-container {
    max-width: 1200px;
    margin: 3rem auto 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.pillar-item {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 2.5rem 2rem;
    text-align: center;
    border-top: 5px solid var(--accent-color);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pillar-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

.pillar-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem auto;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-color), #f1c40f);
    color: var(--bg-grad-start);
    display: flex;
    justify-content: center;
    align-items: center;
}

.pillar-icon i {
    font-size: 2.5rem;
}

.pillar-item h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.pillar-item p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Seksi Dukungan Publik */
.public-support {
    padding: 4rem 2rem;
    background-color: var(--bg-grad-start);
}

.support-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    border: 1px solid var(--card-border);
    padding: 3rem;
    border-radius: 15px;
}

.support-container > i {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.support-container h3 {
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.support-container p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.support-button {
    font-size: 1rem;
}

/* ================== STYLE HALAMAN HUBUNGI KAMI ================== */
.contact-main {
    padding: 4rem 2rem; /* Memberi ruang di atas dan di bawah */
}
.contact-page-container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0,0,0,0.25);
}

/* Sisi Kiri: Gambar */
.contact-image-side {
    flex-basis: 45%; /* Lebar sisi gambar */
    min-height: 700px; /* Tinggi minimum agar tidak gepeng */
    /* GANTI DENGAN URL FOTO KANTOR ANDA */
    background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)), url('/img/gedung.jpg') no-repeat center center;
    background-size: cover;
}

/* Sisi Kanan: Informasi */
.contact-info-side {
    flex-basis: 55%; /* Lebar sisi informasi */
    padding: 3rem 4rem;
    color: #333;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info-side h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 0.5rem;
}

.contact-intro {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.info-block {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.info-block i {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-top: 5px;
    width: 30px;
    text-align: center;
}

.info-text h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.info-text p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    white-space: pre-line; /* Agar line break <br> dihormati */
}

/* Bagian Media Sosial */
.social-media-links {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e9ecef;
}

.social-media-links h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background-color: #f4f7f6;
    color: #555;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon.instagram i {
    color: #E4405F; /* Instagram pink */
}

.social-icon.facebook i {
    color: #1877F2; /* Facebook blue */
}

.social-icon.twitter i {
    color: #1DA1F2; /* Twitter blue */
}

.social-icon.youtube i {
    color: #FF0000; /* YouTube red */
}

.social-icon i:hover {
    transform: scale(1.2);
    transition: 0.3s;
}



/* Responsif untuk Halaman Kontak */
@media (max-width: 992px) {
    .contact-page-container {
        flex-direction: column; /* Tata letak menjadi vertikal */
    }
    .contact-image-side {
        flex-basis: auto;
        min-height: 300px; /* Tinggi gambar di mobile */
    }
    .contact-info-side {
        flex-basis: auto;
        padding: 2.5rem;
    }
    .contact-info-side h1 {
        font-size: 2.2rem;
    }
}

/* ================== STYLE HALAMAN CEK STATUS ================== */
.status-checker-main {
    padding: 4rem 2rem;
}

.status-checker-container {
    max-width: 800px;
    margin: 0 auto;
}

/* Bagian Input */
.input-section {
    background: var(--card-bg);
    padding: 2.5rem 3rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid var(--card-border);
}

.input-section h2 {
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.input-section p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.status-form {
    display: flex;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.input-wrapper {
    flex-grow: 1;
    position: relative;
}

.input-wrapper i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
}

.input-wrapper input {
    width: 100%;
    padding: 0.9rem 1rem 0.9rem 2.5rem; /* Padding kiri untuk ikon */
    border-radius: 8px;
    border: 1px solid var(--card-border);
    background-color: rgba(0,0,0,0.2);
    color: var(--text-primary);
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
}

.input-wrapper input::placeholder {
    color: var(--text-secondary);
}

.status-form .btn-primary {
    padding: 0.9rem 1.5rem;
    border-radius: 8px;
    flex-shrink: 0;
}

/* Bagian Hasil */
.result-section {
    margin-top: 3rem;
}

.result-section h3 {
    font-size: 1.5rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 1rem;
}

.result-display {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid var(--card-border);
}

.result-header {
    display: flex;
    justify-content: space-between;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--card-border);
    margin-bottom: 2.5rem;
}

/* Stepper / Timeline */
.status-stepper {
    display: flex;
    justify-content: space-between;
    position: relative;
    padding: 0 1rem;
}
/* Garis penghubung */
.status-stepper::before {
    content: '';
    position: absolute;
    top: 25px; /* Setengah tinggi ikon */
    left: 10%;
    right: 10%;
    height: 3px;
    background: var(--card-border);
    z-index: 0;
}

.stepper-item {
    position: relative;
    text-align: center;
    width: 120px;
}

.stepper-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--bg-grad-start);
    border: 3px solid var(--card-border);
    color: var(--text-secondary);
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1rem auto;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    z-index: 1;
    position: relative; /* Agar di atas garis */
}

.stepper-label {
    font-weight: 600;
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

/* Status Stepper Item */
.stepper-item.complete .stepper-icon {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--bg-grad-start);
}
.stepper-item.complete .stepper-label {
    color: var(--text-primary);
}
.stepper-item.active .stepper-icon {
    border-color: var(--accent-color);
    color: var(--accent-color);
    animation: pulse 2s infinite;
}
.stepper-item.active .stepper-label {
    color: var(--accent-color);
}
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(255, 215, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 215, 0, 0); }
}

/* Catatan Hasil */
.result-note {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--card-border);
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-secondary);
}
.result-note i {
    font-size: 1.2rem;
    color: var(--accent-color);
}

/* Responsif */
@media (max-width: 768px) {
    .status-form { flex-direction: column; }
    .result-header { flex-direction: column; gap: 0.5rem; text-align: center; }
    .status-stepper { flex-direction: column; align-items: flex-start; gap: 2rem; }
    .status-stepper::before { top: 5%; bottom: 5%; left: 25px; right: auto; width: 3px; }
    .stepper-item { display: flex; align-items: center; text-align: left; gap: 1.5rem; width: 100%;}
    .stepper-icon { margin: 0; }
}

/* ================== STYLE TAMBAHAN UNTUK INTERAKTIVITAS ================== */


.hidden {
    display: none !important;
}

/* Style untuk pesan error (Diperbaiki & Dipercantik) */
.input-section .error-message {
    color: #ffcdd2; /* Warna teks merah muda terang */
    background-color: rgba(239, 83, 80, 0.15); /* Latar belakang merah transparan */
    border: 1px solid rgba(239, 83, 80, 0.5); /* Bingkai merah */
    
    font-weight: 600;
    margin-top: 1.5rem;
    padding: 0.8rem 1rem;
    border-radius: 8px;
    
    /* Opsi agar lebar pesan error sama dengan form */
    max-width: 600px; 
    margin-left: auto;
    margin-right: auto;
}