/* --- Reset & Pengaturan Dasar --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f4f7f9;
    color: #333333;
    line-height: 1.6;
}

/* --- Header & Navigasi Sticky --- */
.sticky-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.main-header {
    background-color: #0D47A1;
    color: #FFFFFF;
    padding: 15px 40px;
}

.header-content {
    display: flex;
    align-items: center;
}

.logo-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #1976D2;
    margin-right: 20px;
}

.title-container {
    margin-left: 15px;
}

.title-container h1 {
    font-size: 1.6em;
    font-weight: 700;
    line-height: 1.1;
}

.title-container p {
    font-size: 0.9em;
    font-weight: 400;
    opacity: 0.9;
}

/* Navigasi Desktop */
.main-nav {
    background-color: #1565C0;
    padding: 0 40px;
}

.main-nav ul {
    list-style: none;
    display: flex;
}

.main-nav ul li a {
    display: block;
    color: #FFFFFF;
    text-decoration: none;
    padding: 14px 20px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.main-nav ul li a:hover,
.main-nav ul li a.active {
    background-color: #1976D2;
    font-weight: 600;
}

/* --- Bagian Kampanye Anti Korupsi --- */
.campaign-section {
    background-color: #FFC107;
    color: #212121;
    padding: 20px 0;
    border-bottom: 3px solid #FFA000;
}

.campaign-content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.campaign-icon {
    font-size: 48px;
    margin-right: 25px;
    line-height: 1;
}

.campaign-text h3 {
    font-size: 1.6em;
    font-weight: 700;
    margin: 0 0 5px 0;
    line-height: 1.2;
}

.campaign-text p {
    margin: 0;
    font-size: 1em;
    text-align: left;
    max-width: 100%;
}

/* --- Banner Slider --- */
.slider-container {
    position: relative;
    width: 100%;
    max-height: 400px;
    overflow: hidden;
}

.slider-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
    box-sizing: border-box;
}

.slide img {
    width: 100%;
    display: block;
    object-fit: cover;
    max-height: 400px;
}

.slider-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    cursor: pointer;
    padding: 10px 15px;
    font-size: 20px;
    z-index: 100;
    transition: background-color 0.3s;
}

.slider-button:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.prev { left: 10px; }
.next { right: 10px; }

.slider-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
}

.dot {
    cursor: pointer;
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.3s ease;
    border: none;
}

.dot.active, .dot:hover {
    background-color: #FFFFFF;
}

/* --- Konten Utama & Kartu --- */
.main-content {
    padding: 40px 0;
}

.content-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.content-wrapper h2 {
    font-size: 1.8em;
    color: #0D47A1;
    margin-bottom: 15px;
    text-align: center;
}
.content-wrapper p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.card {
    background-color: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    padding: 25px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.card h3 {
    color: #0D47A1;
    font-size: 1.3em;
    margin-bottom: 10px;
}
.card p {
    flex-grow: 1;
    margin-bottom: 20px;
    text-align: left;
}
.card-link {
    display: inline-block;
    background-color: #1976D2;
    color: #FFFFFF;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
    transition: background-color 0.3s ease;
}

.card-link:hover {
    background-color: #0D47A1;
}

/* --- Global Section Title --- */
.section-title {
    font-size: 2.2em;
    color: #0D47A1;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 700;
}

/* --- 1. BAGIAN ALUR LAYANAN --- */
.alur-layanan-section {
    padding: 60px 0;
    background-color: #FFFFFF;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.step-card {
    position: relative;
    background: #f4f7f9;
    padding: 30px;
    padding-top: 50px;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.step-number {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background-color: #1976D2;
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8em;
    font-weight: 700;
    border: 4px solid #FFFFFF;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.step-card h3 {
    color: #0D47A1;
    font-size: 1.4em;
    margin-bottom: 15px;
}

.app-download-section {
    padding: 80px 0;
    background: #f4f7f9; /* Latar belakang netral */
}

/* Header Section: Judul, Deskripsi, Tombol */
.showcase-header {
    text-align: center;
    max-width: 750px; /* Saya perbaiki dari kode sebelumnya agar konsisten */
    
    /* UBAH MENJADI INI: Jarak atas 80px, tanpa jarak bawah */
    margin: 80px auto 0 auto; 
}

/* Subtitle "Layanan dalam Genggaman" */
.showcase-header .info-subtitle {
    display: inline-block;
    background-color: #FFC107;
    color: #212121;
    padding: 6px 18px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9em;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

/* Judul Utama "Semua Urusan Paspor, Satu Aplikasi" */
.showcase-header .section-title {
    margin-bottom: 20px;
    line-height: 1.2;
    /* Menambahkan bayangan halus untuk efek 3D */
    text-shadow: 0 3px 5px rgba(0, 0, 0, 0.05);
}

/* Paragraf Deskripsi */
.showcase-header p {
    color: #5a677d; /* Warna abu-abu kebiruan yang lebih lembut */
    font-size: 1.15em;
    line-height: 1.8; /* Jarak antar baris lebih nyaman */
    margin-bottom: 40px; /* Jarak lebih besar ke tombol */
}

/* Wadah untuk kedua tombol unduh */
.app-buttons {
    display: flex; /* Menggunakan Flexbox untuk perataan sempurna */
    justify-content: center; /* Tombol berada di tengah */
    align-items: center;
    gap: 25px; /* Jarak konsisten antar tombol */
    flex-wrap: wrap; /* Tombol akan turun ke bawah jika layar terlalu sempit */
}

/* Masing-masing tombol unduh */
/* Wadah untuk kedua tombol unduh */
.app-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

/* Tombol Individual (Wadah <a>) */
.store-button {
    display: inline-flex; /* Membuat wadah fleksibel */
    align-items: center;  /* Memusatkan gambar di dalam wadah */
    height: 58px;         /* << ATUR TINGGI PATOKAN DI SINI */
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Gambar di dalam tombol */
.store-button img {
    height: 100%; /* Kunci: Gambar akan selalu mengisi 100% tinggi wadahnya */
    width: auto;  /* Lebar akan menyesuaikan secara otomatis */
}

/* Efek hover kita pindahkan ke wadah tombol */
.store-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 77, 153, 0.2);
}

/* Efek hover yang lebih premium */
.app-buttons a:hover {
    transform: translateY(-5px); /* Efek terangkat saat disentuh cursor */
    box-shadow: 0 12px 25px rgba(0, 77, 153, 0.2); /* Bayangan lebih dramatis */
}

/* Layout Utama: Kartu - HP - Kartu */
.showcase-layout {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

/* Kolom untuk fitur di kiri dan kanan */
.features-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 250px; /* Lebar tetap untuk kolom fitur */
}

/* Mockup HP di tengah */
.showcase-mockup {
    transform: scale(1.05); /* Sedikit perbesar HP agar jadi pusat perhatian */
    z-index: 10;
}

/* Kartu Fitur (digunakan kembali & disempurnakan) */
.advantage-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid #e9eef3;
    box-shadow: 0 4px 15px rgba(0, 77, 153, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.advantage-card:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 12px 25px rgba(0, 77, 153, 0.1);
}

/* Tata letak di dalam kartu */
.advantage-card .card-icon {
    font-size: 2rem;
    line-height: 1;
    color: #1976D2;
    margin-bottom: 12px;
}
.advantage-card h5 {
    font-size: 1.1em;
    font-weight: 600;
    color: #0D47A1;
    margin-bottom: 5px;
}
.advantage-card p {
    font-size: 0.9em;
    color: #667;
    line-height: 1.5;
}

/* Perataan teks untuk kartu kiri dan kanan */
.advantage-card.align-right {
    text-align: center;
}
.advantage-card.align-left {
    text-align: center;
}


/* --- PENYESUAIAN RESPONSIVE UNTUK SHOWCASE --- */
@media (max-width: 992px) {
    .showcase-layout {
        /* Ubah jadi 1 kolom di layar tablet & HP */
        flex-direction: column;
    }
    .showcase-mockup {
        /* Urutan: HP tampil duluan */
        order: -1; 
        margin-bottom: 40px;
        transform: scale(1); /* Kembali ke ukuran normal */
    }
    .features-column {
        width: 100%;
        max-width: 400px;
        flex-direction: row; /* Di tablet, kartu berdampingan */
    }
    .advantage-card {
        flex: 1;
        text-align: center !important; /* Semua kartu jadi rata tengah */
    }
}

@media (max-width: 576px) {
    .features-column {
        flex-direction: column; /* Di HP, kartu kembali ke bawah */
    }
}

/* CSS untuk Mockup Ponsel (Tidak ada perubahan, cukup salin) */
.phone-frame{width:280px;height:560px;background:#111;border-radius:40px;padding:15px;box-shadow:0 20px 40px rgba(0,0,0,.3)}.phone-screen{height:100%;background:#0D47A1;border-radius:25px;display:flex;flex-direction:column;overflow:hidden}.screen-header{padding:10px;text-align:center}.notch{display:inline-block;width:120px;height:20px;background:#111;border-radius:0 0 15px 15px}.screen-content{flex-grow:1;display:flex;flex-direction:column;align-items:center;justify-content:center;color:#fff;padding:20px;text-align:center}.app-logo{width:120px;height:120px;border-radius:25px;margin-bottom:20px;background-color:#fff}.screen-content h4{font-size:1.5em;margin:0}


/* --- Footer --- */
.main-footer {
    background-color: #0D47A1;
    color: #FFFFFF;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}
    
/* ======================================================= */
/* ===== CSS TAMBAHAN UNTUK HALAMAN LAYANAN PASPOR ===== */
/* ======================================================= */

/* --- Header Halaman Internal --- */
.page-header-section {
    position: relative;
    padding: 80px 20px;
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(13, 71, 161, 0.7); /* Overlay biru tua transparan */
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.page-header-section h1 {
    position: relative;
    z-index: 2;
    font-size: 2.8em;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.page-header-section p {
    position: relative;
    z-index: 2;
    font-size: 1.2em;
    max-width: 600px;
    opacity: 0.9;
}

/* --- Section Konten Umum --- */
.content-section {
    padding: 60px 0;
}

.section-subtitle {
    text-align: center;
    margin-top: -20px;
    margin-bottom: 40px;
    color: #667;
}

/* --- Grid Persyaratan --- */
.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.requirement-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border: 1px solid #e9eef3;
}

.requirement-card h5 {
    font-size: 1.3em;
    color: #0D47A1;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e9eef3;
}

.requirement-card ul {
    list-style: none;
    padding: 0;
}

.requirement-card li {
    color: #555;
    margin-bottom: 12px;
    line-height: 1.5;
}

.requirement-card li::before {
    content: '✓';
    color: #1976D2;
    font-weight: bold;
    margin-right: 10px;
}

/* --- Tabel Biaya --- */
.cost-table {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    border-collapse: collapse;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border-radius: 10px;
    overflow: hidden;
}

.cost-table th, .cost-table td {
    padding: 15px 20px;
    text-align: left;
}

.cost-table thead {
    background-color: #0D47A1;
    color: #fff;
    font-weight: 600;
}

.cost-table tbody tr {
    border-bottom: 1px solid #e9eef3;
}

.cost-table tbody tr:nth-child(even) {
    background-color: #f8f9fa;
}

.cost-table tbody tr:last-child {
    border-bottom: none;
}

.cost-note {
    text-align: center;
    margin-top: 20px;
    font-size: 0.9em;
    color: #888;
}    

/* ======================================================= */
/* ===== CSS TAMBAHAN UNTUK HALAMAN IZIN TINGGAL ===== */
/* ======================================================= */

/* --- Struktur Tab Interaktif --- */
.tabs-container {
    max-width: 900px;
    margin: 0 auto;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    margin-bottom: -1px; /* Agar menyatu dengan konten */
}

.tab-button {
    padding: 15px 30px;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    background-color: #f4f7f9;
    border: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    color: #667;
    transition: all 0.3s ease;
    margin: 0 5px;
    border-radius: 10px 10px 0 0;
}

.tab-button:hover {
    background-color: #e3f2fd;
    color: #0D47A1;
}

.tab-button.active {
    background-color: #fff;
    border-color: #e0e0e0;
    border-bottom: 1px solid #fff; /* Menghilangkan border bawah tab aktif */
    color: #0D47A1;
}

.tab-button i {
    margin-right: 8px;
}

.tab-content-container {
    background-color: #fff;
    padding: 40px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
}

.tab-pane {
    display: none; /* Sembunyikan semua panel secara default */
}

.tab-pane.active {
    display: block; /* Tampilkan hanya panel yang aktif */
}

.tab-pane h3 {
    font-size: 1.8em;
    color: #0D47A1;
    margin-bottom: 15px;
}
.tab-pane h5 {
    font-size: 1.2em;
    color: #1565C0;
    margin-top: 25px;
    margin-bottom: 15px;
}
.tab-pane ul {
    list-style: none;
    padding-left: 0;
}
.tab-pane li {
    margin-bottom: 10px;
}
.tab-pane li::before {
    content: '✓';
    color: #1976D2;
    font-weight: bold;
    margin-right: 10px;
}

/* --- Bagian "Penting untuk Diketahui" --- */
.important-notice {
    display: flex;
    align-items: flex-start;
    background-color: #fff3cd; /* Latar belakang kuning muda */
    border-left: 5px solid #ffc107; /* Aksen kuning tua */
    padding: 30px;
    border-radius: 8px;
    max-width: 900px;
    margin: 0 auto;
}

.notice-icon {
    font-size: 2em;
    color: #ffc107;
    margin-right: 25px;
    margin-top: 5px;
}

.notice-text h5 {
    font-size: 1.3em;
    color: #856404; /* Warna teks gelap */
    margin-top: 0;
    margin-bottom: 10px;
}

.notice-text p {
    color: #856404;
    line-height: 1.7;
    margin: 0;
    text-align: left; /* Override text-align global */
}
  
/* ======================================================= */
/* ===== CSS TAMBAHAN UNTUK HALAMAN PROGRAM UNGGULAN ===== */
/* ======================================================= */

.feature-section {
    padding: 80px 0;
}

.feature-section.alt-bg {
    background-color: #ffffff; /* Latar belakang berbeda untuk selang-seling */
}

.feature-layout {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    align-items: center;
}

.feature-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 77, 153, 0.2);
}

.feature-text .tagline {
    display: inline-block;
    background-color: #e3f2fd;
    color: #1976D2;
    padding: 6px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9em;
    margin-bottom: 15px;
}

.feature-text h3 {
    font-size: 2.5em;
    font-weight: 700;
    color: #0D47A1;
    margin-bottom: 20px;
    line-height: 1.2;
}

.feature-text p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 25px;
}

.feature-text ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.feature-text ul li {
    color: #333;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.feature-text ul li i {
    color: #1976D2;
    margin-right: 12px;
    font-size: 1.2em;
}

.cta-button {
    display: inline-block;
    background-color: #1976D2;
    color: #fff;
    padding: 14px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(25, 118, 210, 0.3);
}

.cta-button:hover {
    background-color: #0D47A1;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(13, 71, 161, 0.4);
}

/* Aturan untuk membalik layout (gambar di kanan, teks di kiri) */
.feature-layout-reverse .feature-image {
    order: 2;
}
.feature-layout-reverse .feature-text {
    order: 1;
}

/* --- Penyesuaian Responsif untuk Halaman Program --- */
@media (max-width: 992px) {
    .feature-layout {
        grid-template-columns: 1fr; /* Jadi 1 kolom di tablet */
        gap: 40px;
    }
    .feature-layout-reverse .feature-image,
    .feature-layout-reverse .feature-text {
        order: initial; /* Hapus urutan khusus di mobile */
    }
    .feature-text h3 {
        font-size: 2em;
    }
}  

/* ======================================================= */
/* ===== CSS TAMBAHAN UNTUK LANDING PAGE EAZY PASSPORT ===== */
/* ======================================================= */

/* --- Hero Section --- */
.hero-eazy-passport {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 70vh;
    padding: 40px;
    background: url('https://via.placeholder.com/1920x1080/0D47A1/FFFFFF?text=Layanan+di+Kantor+Anda') no-repeat center center;
    background-size: cover;
    color: #fff;
    text-align: center;
}
.hero-overlay {
    background: rgba(13, 71, 161, 0.75); /* Overlay biru tua agar teks terbaca */
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.hero-eazy-passport h1 {
    font-size: 3.5em;
    font-weight: 800;
    max-width: 800px;
    line-height: 1.2;
    text-shadow: 0 3px 6px rgba(0,0,0,0.3);
    margin-bottom: 20px;
}
.hero-eazy-passport p {
    font-size: 1.2em;
    max-width: 600px;
    opacity: 0.9;
    margin-bottom: 30px;
}
.hero-cta-button {
    background-color: #FFC107;
    color: #212121;
    padding: 18px 40px;
    font-size: 1.1em;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}
.hero-cta-button:hover {
    background-color: #fff;
    transform: translateY(-5px);
}

/* --- Benefits Section --- */
.text-center { text-align: center; }
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.benefit-card {
    background-color: #fff;
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.05);
}
.benefit-icon {
    font-size: 2.5em;
    color: #1976D2;
    margin-bottom: 20px;
}
.benefit-card h5 {
    font-size: 1.3em;
    color: #0D47A1;
    margin-bottom: 10px;
}
.benefit-card p {
    color: #667;
}

/* --- Process Timeline Section --- */
.process-timeline {
    display: flex;
    position: relative;
    margin: 40px auto;
    justify-content: space-between;
}
.process-timeline::before { /* Garis horizontal di tengah */
    content: '';
    position: absolute;
    top: 25px; /* Posisi vertikal garis */
    left: 50px;
    right: 50px;
    height: 4px;
    background-color: #dbeaff;
    z-index: 1;
}
.timeline-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 23%;
    position: relative;
    z-index: 2;
}
.timeline-icon {
    width: 50px;
    height: 50px;
    background-color: #1976D2;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    font-weight: 700;
    border: 4px solid #f4f7f9;
    margin-bottom: 20px;
}
.timeline-item:hover .timeline-icon {
    background-color: #0D47A1;
    transform: scale(1.1);
}
.timeline-content h6 {
    font-size: 1.2em;
    color: #0D47A1;
    margin-bottom: 8px;
}
.timeline-content p {
    color: #667;
    font-size: 0.9em;
}

/* --- Final CTA Section --- */
.final-cta-section {
    background-color: #0D47A1;
    color: #fff;
    padding: 80px 20px;
}
.cta-icon {
    font-size: 3.5em;
    margin-bottom: 20px;
    opacity: 0.5;
}
.final-cta-section h2 {
    font-size: 2.5em;
    font-weight: 700;
    max-width: 600px;
    margin: 0 auto 15px auto;
}
.final-cta-section p {
    max-width: 550px;
    margin: -190px auto 30px auto;
    opacity: 0.9;
}
.cta-buttons-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
.cta-buttons-container .cta-button.primary {
    background-color: #FFC107;
    color: #212121;
}
.cta-buttons-container .cta-button.secondary {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}
.cta-buttons-container .cta-button.primary:hover {
    background-color: #fff;
    color: #0D47A1;
}
.cta-buttons-container .cta-button.secondary:hover {
    background-color: #fff;
    color: #0D47A1;
}  

 /* ======================================================= */
/* ===== CSS UNTUK TOMBOL KEMBALI (HALAMAN INTERNAL) ===== */
/* ======================================================= */

.page-navigation-wrapper {
    padding: 20px 40px;
    background-color: #f4f7f9;
}

.bottom-nav-wrapper {
    text-align: center;
    margin-top: 60px;
    padding-bottom: 20px;
}

.back-button {
    display: inline-flex;
    align-items: center;
    gap: 8px; /* Jarak antara ikon dan teks */
    background-color: #eaf2fa;
    color: #0D47A1;
    padding: 12px 24px;
    border-radius: 50px; /* Bentuk pill/kapsul */
    font-weight: 600;
    text-decoration: none;
    border: 1px solid #d1e0f1;
    transition: all 0.3s ease;
}

.back-button:hover {
    background-color: #d1e9fc;
    border-color: #a8cbf1;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 77, 153, 0.1);
}

.back-button i {
    transition: transform 0.3s ease;
}

.back-button:hover i {
    transform: translateX(-3px);
}

/* ======================================================= */
/* ===== CSS TAMBAHAN UNTUK HALAMAN FASILITAS RAMAH HAM ===== */
/* ======================================================= */

/* --- Hero Section Halaman Ramah HAM --- */
.hero-ramah-ham {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60vh; /* Sedikit lebih pendek dari hero Eazy Passport */
    padding: 40px;
    background: url('https://via.placeholder.com/1920x1080/4caf50/ffffff?text=Pelayanan+Inklusif') no-repeat center center;
    background-size: cover;
    color: #fff;
    text-align: center;
}
.hero-ramah-ham .hero-overlay {
    background: linear-gradient(to top, rgba(0, 105, 92, 0.8), rgba(21, 101, 192, 0.7)); /* Gradien hijau-biru */
}
.hero-ramah-ham h1 {
    font-size: 3em;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.4);
}

/* --- Commitment Section --- */
.commitment-section {
    text-align: center;
}
.commitment-icon {
    font-size: 3em;
    color: #1976D2;
    margin-bottom: 10px;
}
.commitment-section .section-title {
    margin-bottom: 10px;
}

/* --- Facilities Gallery Section --- */
.facility-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.facility-card {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 91, 171, 0.1);
    overflow: hidden; /* Penting agar gambar mengikuti border-radius */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.facility-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 91, 171, 0.15);
}
.facility-card img {
    width: 100%;
    height: 220px;
    object-fit: cover; /* Memastikan gambar terpotong rapi, tidak penyok */
    display: block;
}
.facility-info {
    padding: 25px;
}
.facility-info h5 {
    font-size: 1.3em;
    color: #0D47A1;
    margin-bottom: 8px;
    text-align: center;
}
.facility-info p {
    color: #667;
    font-size: 1em;
    line-height: 1.6;
}
    
/* ======================================================= */
/* ===== CSS TAMBAHAN UNTUK HALAMAN IMIGRASI MENYAPA ===== */
/* ======================================================= */

/* --- Hero Section Halaman Imigrasi Menyapa --- */
.hero-menyapa {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
    padding: 40px;
    background: url('https://via.placeholder.com/1920x1080/ff9800/ffffff?text=Imigrasi+Goes+to+Campus') no-repeat center center;
    background-size: cover;
    color: #fff;
    text-align: center;
}
.hero-menyapa .hero-overlay {
    background: linear-gradient(to top, rgba(191, 54, 12, 0.8), rgba(255, 111, 0, 0.7)); /* Gradien oranye */
}
.hero-menyapa h1 {
    font-size: 3em;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.4);
}

/* --- Topics Covered Section --- */
.topics-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr; /* Kolom gambar lebih kecil */
    gap: 50px;
    align-items: center;
}
.topics-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.topics-list h3 {
    font-size: 1.8em;
    color: #0D47A1;
    margin-bottom: 25px;
}
.topics-list ul {
    list-style: none;
    padding: 0;
}
.topics-list li {
    font-size: 1.1em;
    color: #333;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}
.topics-list li i {
    font-size: 1.2em;
    color: #1976D2;
    margin-right: 15px;
    width: 25px; /* Lebar tetap untuk ikon agar rapi */
    text-align: center;
}

/* --- Gallery Section --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 40px;
}
.gallery-item {
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.gallery-item:hover img {
    transform: scale(1.1);
}

/* --- Penyesuaian Responsif --- */
@media (max-width: 992px) {
    .topics-layout {
        grid-template-columns: 1fr; /* Jadi 1 kolom di tablet */
    }
}    
    
/* ======================================================= */
/* ===== CSS TAMBAHAN UNTUK HALAMAN HUBUNGI KAMI ===== */
/* ======================================================= */

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr; /* Kolom kanan sedikit lebih lebar */
    gap: 50px;
}

/* Kolom Kiri: Informasi Kontak */
.contact-info-column h3 {
    font-size: 1.8em;
    color: #0D47A1;
    margin-bottom: 10px;
}
.contact-info-column p {
    color: #667;
    margin-bottom: 30px;
    text-align: left;
    max-width: 100%;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}
.info-item i {
    font-size: 1.5em;
    color: #1976D2;
    margin-right: 20px;
    width: 30px;
    text-align: center;
}
.info-item div {
    display: flex;
    flex-direction: column;
}
.info-item strong {
    font-weight: 600;
    color: #333;
    margin-bottom: 3px;
}
.info-item span {
    color: #555;
    line-height: 1.5;
}

.social-media-title {
    margin-top: 40px;
    margin-bottom: 15px;
    font-size: 1.2em;
    color: #333;
}
.social-media-links a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: #eaf2fa;
    color: #1976D2;
    border-radius: 50%;
    text-decoration: none;
    margin-right: 10px;
    transition: all 0.3s ease;
}
.social-media-links a:hover {
    background-color: #1976D2;
    color: #fff;
    transform: translateY(-3px);
}

/* Kolom Kanan: Peta dan Formulir */
.contact-form-column h3 {
    font-size: 1.8em;
    color: #0D47A1;
    margin-bottom: 20px;
}
.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border: 1px solid #ddd;
}
.form-title {
    margin-top: 40px;
}
.contact-form .form-group {
    margin-bottom: 20px;
}
.contact-form label {
    display: block;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 1em;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #1976D2;
    box-shadow: 0 0 0 3px rgba(25, 118, 210, 0.2);
}
.contact-form .cta-button {
    width: 100%;
    padding: 15px;
    font-size: 1.1em;
}

/* --- Penyesuaian Responsif untuk Halaman Kontak --- */
@media (max-width: 992px) {
    .contact-layout {
        grid-template-columns: 1fr; /* Jadi 1 kolom di tablet & mobile */
    }
}

/* ======================================================= */
/* ===== CSS TAMBAHAN UNTUK HALAMAN CEK STATUS ===== */
/* ======================================================= */

.status-checker-container {
    max-width: 600px;
    margin: -80px auto 0 auto; /* Trik agar naik ke atas hero banner */
    background-color: #fff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 77, 153, 0.15);
    position: relative;
    z-index: 10;
}

.status-checker-container h3 {
    text-align: center;
    font-size: 1.8em;
    color: #0D47A1;
    margin-bottom: 10px;
}

.checker-instruction {
    text-align: center;
    color: #667;
    margin-bottom: 30px;
}

.form-group-icon {
    position: relative;
    margin-bottom: 20px;
}

.form-group-icon i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #aaa;
}

.form-group-icon input {
    width: 100%;
    padding: 18px 20px 18px 50px; /* Padding kiri untuk ruang ikon */
    font-size: 1.1em;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
}
.form-group-icon input:focus {
    outline: none;
    border-color: #1976D2;
    box-shadow: 0 0 0 3px rgba(25, 118, 210, 0.2);
}

.cta-button.full-width {
    width: 100%;
    padding: 18px;
    font-size: 1.1em;
}

/* --- Status Result Box --- */
.status-result-box {
    display: flex;
    align-items: flex-start;
    padding: 25px;
    border-radius: 8px;
    margin-top: 30px;
    border: 1px solid transparent;
}
.result-icon {
    font-size: 2.5em;
    margin-right: 20px;
}
.result-text h4 {
    font-size: 1.2em;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 5px;
    text-align: center; /* << TAMBAHKAN BARIS INI */
}
.result-text p {
    margin: 0;
    line-height: 1.6;
    color: #555;
}

/* Variasi Warna Status */
.status-result-box.success {
    background-color: #e9f7ef;
    border-color: #a3d9b8;
}
.status-result-box.success .result-icon,
.status-result-box.success .result-text h4 {
    color: #1d7b46;
}

.status-result-box.error {
    background-color: #fdecea;
    border-color: #f5b9b9;
}
.status-result-box.error .result-icon,
.status-result-box.error .result-text h4 {
    color: #c9302c;
}

.help-text {
    text-align: center;
    margin-top: 40px;
    color: #667;
}
.help-text a {
    color: #1976D2;
    font-weight: 600;
    text-decoration: none;
}
.help-text a:hover {
    text-decoration: underline;
}

/* Tambahkan ini ke style.css Anda */

/* Variasi Warna Status - PROCESSING */
.status-result-box.processing {
    background-color: #e3f2fd; /* Biru muda */
    border-color: #a8cbf1;
}
.status-result-box.processing .result-icon,
.status-result-box.processing .result-text h4 {
    color: #1976D2; /* Biru */
}

/* --- MOBILE & RESPONSIVE --- */
.mobile-tab-bar {
    display: none; /* Sembunyikan di desktop secara default */
}

/* ATURAN HANYA UNTUK LAYAR KECIL (DI BAWAH 768px) */
@media (max-width: 768px) {
    body {
        padding-bottom: 70px;
    }

    .main-header {
        padding: 15px 20px;
    }
    
    .title-container h1 {
        font-size: 1.3em;
    }

    .title-container p {
        font-size: 0.8em;
    }
    
    /* Sembunyikan navigasi atas di mobile */
    .main-nav {
        display: none;
    }

    .content-wrapper {
        padding: 0 20px;
    }

    .content-wrapper h2 {
        font-size: 1.5em;
    }

    /* Tampilkan Tab Bar Bawah di Mobile */
    .mobile-tab-bar {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 65px;
        background-color: #ffffff;
        box-shadow: 0 -2px 5px rgba(0,0,0,0.1);
        z-index: 1001;
    }

    .tab-item {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        color: #888888;
        padding: 5px 0;
        transition: color 0.3s;
    }

    .tab-item.active,
    .tab-item:hover {
        color: #0D47A1;
        font-weight: 600;
    }
    
    .tab-icon {
        font-size: 22px;
        margin-bottom: 3px;
    }

    .tab-label {
        font-size: 11px;
    }
    
    .main-footer {
       margin-bottom: 0; 
    }

    /* Aturan Mobile untuk Bagian Kampanye */
    .campaign-content {
        flex-direction: column;
        text-align: center;
    }

    .campaign-icon {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .campaign-text h3 {
        font-size: 1.4em;
    }

    .campaign-text p {
        font-size: 0.9em;
        text-align: center;
    }
    
    .section-title {
        font-size: 1.8em;
    }

    /* Aturan Mobile untuk Alur Layanan */
    .alur-layanan-section {
        padding: 40px 0;
    }

