/* Import Font */
@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@400;600;700;800&display=swap');

/* Variabel Warna */
:root {
    --primary-blue: #0D47A1;
    --light-blue-bg: #E3F2FD;
    --accent-yellow: #FDB813;
    --dark-text: #212529;
    --light-text: #6c757d;
    --white-color: #ffffff;
    --border-color: #dee2e6;
}

/* Top Banner */
.top-banner {
    background-color: var(--primary-blue);
    color: var(--white-color);
    padding: 0.5rem 0;
    overflow: hidden; /* Penting untuk running text */
}
.running-text {
    white-space: nowrap; /* Teks tidak akan wrap */
    animation: scroll-left 25s linear infinite;
    color: #FFFF00;
}
.running-text p {
    margin: 0;
    font-size: 0.9rem;
}
@keyframes scroll-left {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* Penyesuaian Navbar untuk menampung menu */
.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Main Navigation */
.main-nav ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}
.main-nav a {
    color: var(--dark-text);
    font-weight: 700;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.3s ease;
}
.main-nav a:hover {
    color: var(--primary-blue);
}
.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--primary-blue);
    transition: width 0.3s ease;
}
.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

/* Tombol Menu Mobile (Hamburger) */
.nav-toggle {
    display: none; /* Sembunyikan di desktop */
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-blue);
    cursor: pointer;
}

/* Reset dan Pengaturan Dasar */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Nunito Sans', sans-serif;
    background-color: var(--white-color);
    color: var(--dark-text);
    line-height: 1.7;
}
.container { max-width: 1140px; margin: 0 auto; padding: 0 15px; }
a { text-decoration: none; color: var(--primary-blue); }
.text-center { text-align: center; }

/* Main Slider Section */
.main-slider {
    width: 100%;
    height: 60vh; /* Tinggi slider, bisa disesuaikan (misal: 500px) */
    min-height: 450px;
}
.swiper {
    width: 100%;
    height: 100%;
}
.swiper-slide {
    text-align: center;
    font-size: 18px;
    background-size: cover;
    background-position: center;

    /* Center slide content */
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* Tambahkan overlay gelap agar teks mudah dibaca */
.swiper-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.2));
}

.slide-content {
    position: relative; /* Agar konten berada di atas overlay */
    z-index: 10;
    color: var(--white-color);
    text-align: left;
    max-width: 600px;
    padding: 2rem;
}
.slide-content h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}
.slide-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Kustomisasi Navigasi dan Paginasi Swiper */
.swiper-button-next,
.swiper-button-prev {
    color: var(--white-color) !important; /* Ganti warna panah */
    transition: opacity 0.3s;
}
.swiper-button-next:hover,
.swiper-button-prev:hover {
    opacity: 0.7;
}

.swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.5) !important;
}

.swiper-pagination-bullet-active {
    background: var(--white-color) !important;
}

/* Responsive untuk Slider */
@media (max-width: 768px) {
    .main-slider {
        height: 70vh; /* Buat lebih tinggi di mobile */
    }
    .slide-content {
        text-align: center;
        padding: 1rem;
    }
    .slide-content h2 {
        font-size: 2rem;
    }
    .slide-content p {
        font-size: 1rem;
    }
}

/* Header / Navbar */
.navbar {
    background-color: var(--white-color);
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}
.navbar-brand { display: flex; align-items: center; gap: 15px; }
.navbar-brand img { height: 40px; transform: scale(2.7); margin-right: 30px;}
.navbar-brand h4 { margin: 0; font-size: 1.2rem; color: var(--primary-blue); font-weight: 800; }
.navbar-brand span { font-size: 0.85rem; color: var(--light-text); }

/* Hero Banner */
.hero-banner {
    background: linear-gradient(45deg, rgba(13, 71, 161, 0.95), rgba(30, 136, 229, 0.85)), url('https://via.placeholder.com/1920x400.png?text=Pelabuhan+Ambon') center center/cover no-repeat;
    color: var(--white-color);
    padding: 4rem 0;
    text-align: center;
}
.hero-banner h1 { font-size: 2.5rem; font-weight: 800; margin-bottom: 0.5rem; }
.hero-banner p { font-size: 1.1rem; opacity: 0.9; margin-bottom: 2rem; }
.search-bar {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
}
.search-bar input {
    flex-grow: 1;
    border: none;
    padding: 0.9rem 1.2rem;
    font-size: 1rem;
    border-radius: 8px 0 0 8px;
}
.search-bar input:focus { outline: 2px solid var(--accent-yellow); }
.search-bar button {
    border: none;
    background-color: var(--accent-yellow);
    color: var(--dark-text);
    padding: 0 1.5rem;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 0 8px 8px 0;
    cursor: pointer;
    transition: background-color 0.3s;
}
.search-bar button:hover { background-color: #ffc940; }

/* Style untuk Button (Bisa digunakan di banyak tempat) */
.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}
.btn-primary {
    background-color: var(--primary-blue);
    color: var(--white-color);
}
.btn-primary:hover {
    background-color: #0b3a82;
    transform: translateY(-2px);
}
.btn-primary i {
    margin-left: 8px;
    font-size: 0.8em;
}

/* Feature Banner Section */
.feature-banner {
    padding: 4rem 0;
    background-color: var(--white-color);
}
.feature-banner-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}
.feature-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.feature-text .eyebrow {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary-blue);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}
.feature-text h3 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--dark-text);
    margin-bottom: 1rem;
    line-height: 1.3;
}
.feature-text p {
    color: var(--light-text);
    margin-bottom: 2rem;
}

/* Section Header */
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header h2 { font-size: 2.2rem; font-weight: 800; color: var(--primary-blue); margin-bottom: 0.5rem; }
.section-header p { font-size: 1.1rem; color: var(--light-text); max-width: 600px; margin: 0 auto; }

/* Main Services Section */
.main-services { padding: 4rem 0; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.5rem; }
.service-card {
    background: var(--white-color);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}
.service-card:hover { transform: translateY(-8px); border-color: var(--primary-blue); box-shadow: 0 10px 20px rgba(0,0,0,0.05); }
.card-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem auto;
    background-color: var(--light-blue-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-blue);
    transition: all 0.3s ease;
}
.service-card:hover .card-icon { background-color: var(--primary-blue); color: var(--white-color); }
.service-card h3 { font-size: 1.25rem; font-weight: 700; color: var(--dark-text); margin-bottom: 0.5rem; }
.service-card p { color: var(--light-text); font-size: 0.95rem; margin-bottom: 1.5rem; }
.card-link { font-weight: 700; color: var(--primary-blue); }
.card-link i { margin-left: 5px; transition: margin-left 0.3s ease; }
.service-card:hover .card-link i { margin-left: 10px; }

/* Stats Section (Pengganti News Section) */
.stats-section { 
    padding: 4rem 0; 
    background-color: var(--light-blue-bg); 
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}
.stat-card {
    background-color: var(--white-color);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 10px rgba(0,0,0,0.04);
}
.stat-card i {
    font-size: 2.5rem;
    color: var(--accent-yellow);
    margin-bottom: 1rem;
}
.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 0.25rem;
}
.stat-label {
    font-size: 1rem;
    color: var(--light-text);
    font-weight: 600;
}

/* Footer */
.site-footer { background-color: #1c2331; color: #ccc; padding-top: 3rem; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; }
.footer-column h5 { font-size: 1.1rem; color: var(--white-color); margin-bottom: 1rem; font-weight: 700; }
.footer-column.about p { font-size: 0.9rem; }
.footer-column.links ul { list-style: none; }
.footer-column.links li { margin-bottom: 0.5rem; }
.footer-column.links a { color: #ccc; transition: color 0.3s, padding-left 0.3s; }
.footer-column.links a:hover { color: var(--white-color); padding-left: 5px; }
.footer-column.contact p { font-size: 0.9rem; display: flex; align-items: flex-start; gap: 10px; }
.footer-column.contact i { margin-top: 5px; color: var(--accent-yellow); }
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 1.5rem 0;
    margin-top: 2rem;
    border-top: 1px solid #333;
    font-size: 0.9rem;
}
.social-links a {
    color: #ccc;
    margin-left: 1rem;
    font-size: 1.1rem;
    transition: color 0.3s;
}
.social-links a:hover { color: var(--white-color); }

/* Responsive */
@media (max-width: 768px) {
    .hero-banner h1 { font-size: 2rem; }
    .search-bar { flex-direction: column; gap: 10px; }
    .search-bar input, .search-bar button { border-radius: 8px; }
    .footer-bottom { justify-content: center; text-align: center; gap: 1rem; }
}

@media (max-width: 992px) {
    .main-nav {
        display: none; /* Sembunyikan menu utama */
        position: absolute;
        top: 75px; /* Sesuaikan dengan tinggi header */
        left: 0;
        width: 100%;
        background-color: var(--white-color);
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        z-index: 1000;
    }
    .main-nav.active {
        display: block; /* Tampilkan menu saat di-klik */
    }
    .main-nav ul {
        flex-direction: column;
        gap: 0;
    }
    .main-nav li {
        border-bottom: 1px solid var(--border-color);
    }
    .main-nav a {
        display: block;
        padding: 1rem 1.5rem;
    }
    .main-nav a::after {
        display: none; /* Hilangkan garis bawah di mobile */
    }
    .nav-toggle {
        display: block; /* Tampilkan tombol hamburger */
    }
    
      .feature-banner-content {
        grid-template-columns: 1fr; /* Ubah jadi 1 kolom */
        gap: 2rem;
    }
    .feature-text {
        text-align: center; /* Teks jadi rata tengah */
        order: -1; /* Pindahkan teks di atas gambar di mobile */
    }
    .feature-text h3 {
        font-size: 1.8rem;
    }
}


/* STYLES UNTUK HALAMAN PROFIL & HALAMAN INTERNAL LAINNYA */

/* Page Header (Banner Judul Halaman) */
.page-header {
    padding: 4rem 0;
    text-align: center;
    color: var(--white-color);
    background-size: cover;
    background-position: center;
    position: relative;
}
.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(13, 71, 161, 0.8); /* Overlay biru tua transparan */
}
.page-header .container {
    position: relative;
    z-index: 2;
}
.page-header h1 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}
.breadcrumb {
    font-size: 0.9rem;
}
.breadcrumb a {
    color: var(--white-color);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}
.breadcrumb a:hover {
    opacity: 1;
}
.breadcrumb i {
    font-size: 0.7rem;
    margin: 0 0.5rem;
}
.breadcrumb span {
    font-weight: 700;
}

/* Struktur Konten Umum */
.content-section {
    padding: 4rem 0;
}
.content-section.bg-light-cyan {
    background-color: #E0F7FA; /* Warna latar biru-cyan terang */
}
.content-section.bg-light-gray {
    background-color: #f8f9fa; /* Warna latar abu-abu terang */
}
.section-header.centered {
    text-align: center;
    margin-bottom: 3rem;
}
.section-header.centered h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}
.section-header.centered p {
    font-size: 1.1rem;
    color: var(--light-text);
    max-width: 600px;
    margin: 0 auto;
}

/* Layout 2 Kolom */
.two-column-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}
.text-content h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
}
.image-content img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* Visi & Misi */
.vision-mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
.vm-card {
    background-color: var(--white-color);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid #B2EBF2; /* Border senada dengan background */
    text-align: center;
}
.vm-icon {
    font-size: 3rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}
.vm-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 1rem;
}
.mission-list {
    list-style: none;
    padding: 0;
    text-align: left;
}
.mission-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.5rem;
}
.mission-list i {
    color: #0097A7; /* Warna ikon check */
}

/* Struktur Organisasi */
.org-structure-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}
.profile-card {
    background: var(--white-color);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    text-align: center;
    padding: 2rem;
    transition: transform 0.3s, box-shadow 0.3s;
}
.profile-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}
.profile-card img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.5rem;
    border: 4px solid var(--light-blue-bg);
}
.profile-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark-text);
}
.profile-card .title {
    font-size: 0.9rem;
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 1rem;
}
.profile-card .desc {
    font-size: 0.9rem;
    color: var(--light-text);
}

/* Wilayah Kerja & Peta */
.map-content iframe {
    width: 100%;
    height: 400px;
    border: 0;
    border-radius: 12px;
}
.text-content ul {
    list-style-position: inside;
}

/* Responsive untuk Halaman Internal */
@media(max-width: 768px) {
    .page-header h1 {
        font-size: 2.2rem;
    }
    .two-column-layout {
        grid-template-columns: 1fr; /* Stack kolom di mobile */
    }
    .image-content {
        order: -1; /* Pindahkan gambar ke atas di mobile untuk seksi sejarah */
    }
}

/* STYLES UNTUK HALAMAN LAYANAN */

/* Penyesuaian kecil untuk page-header */
.page-header .page-subtitle {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0.5rem auto 0 auto;
    opacity: 0.9;
}

/* Grid Layanan */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
.service-item-card {
    background-color: var(--white-color);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}
.service-item-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(13, 71, 161, 0.1);
    border-color: var(--primary-blue);
}
.service-icon-bg {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem auto;
    border-radius: 50%;
    background-color: var(--light-blue-bg);
    display: flex;
    align-items: center;
    justify-content: center;
}
.service-icon-bg i {
    font-size: 2.5rem;
    color: var(--primary-blue);
}
.service-item-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--dark-text);
}
.service-item-card p {
    color: var(--light-text);
    margin-bottom: 1.5rem;
    min-height: 50px; /* Agar tinggi deskripsi seragam */
}
.btn-service {
    font-weight: 700;
    color: var(--primary-blue);
    text-decoration: none;
}
.btn-service:hover {
    text-decoration: underline;
}

/* Seksi FAQ */
.content-section.bg-light-yellow {
    background-color: #FFFBEA; /* Warna latar kuning pucat */
}
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    background-color: var(--white-color);
    border: 1px solid #FEEFB3; /* Border senada dengan background */
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden; /* Penting untuk animasi accordion */
}
.faq-question {
    padding: 1.25rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 700;
    font-size: 1.1rem;
}
.faq-question i {
    transition: transform 0.3s ease;
}
.faq-answer {
    max-height: 0; /* Sembunyikan jawaban secara default */
    transition: max-height 0.5s ease, padding 0.5s ease;
}
.faq-answer p {
    margin: 0;
    padding: 0 1.5rem 1.25rem 1.5rem;
    color: var(--light-text);
    line-height: 1.8;
}
.faq-answer a {
    font-weight: 600;
}

/* Style saat FAQ aktif/terbuka */
.faq-item.active .faq-question {
    color: var(--primary-blue);
}
.faq-item.active .faq-question i {
    transform: rotate(45deg);
}
.faq-item.active .faq-answer {
    max-height: 200px; /* Atur tinggi maksimal saat terbuka */
}

/* Seksi Call To Action (CTA) */
.cta-section {
    background-color: var(--primary-blue);
    color: var(--white-color);
    padding: 4rem 0;
    text-align: center;
}
.cta-section h3 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 1rem;
}
.cta-section p {
    max-width: 600px;
    margin: 0 auto 2rem auto;
    opacity: 0.9;
}
.btn-secondary {
    background-color: var(--accent-yellow);
    color: var(--dark-text);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}
.btn-secondary:hover {
    background-color: #ffc940;
    transform: translateY(-2px);
}

/* STYLES UNTUK HALAMAN INFORMASI */

/* STYLES UNTUK ALUR PROSES (TIMELINE) */
.timeline-container {
    position: relative;
    max-width: 900px;
    margin: 2rem auto;
}

/* Garis vertikal di tengah timeline */
.timeline-container::after {
    content: '';
    position: absolute;
    width: 4px;
    background-color: var(--light-blue-bg);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
    z-index: 1;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
}

/* Ikon bulat di timeline */
.timeline-icon {
    position: absolute;
    width: 50px;
    height: 50px;
    right: -25px;
    background-color: var(--white-color);
    border: 4px solid var(--primary-blue);
    top: 15px;
    border-radius: 50%;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--primary-blue);
}

/* Atur posisi item di kiri */
.timeline-item:nth-child(odd) {
    left: 0;
    padding-right: 60px;
    text-align: right;
}

/* Atur posisi item di kanan */
.timeline-item:nth-child(even) {
    left: 50%;
}

/* Atur posisi ikon untuk item kiri dan kanan */
.timeline-item:nth-child(odd) .timeline-icon {
    right: -25px;
}
.timeline-item:nth-child(even) .timeline-icon {
    left: -25px;
}

/* Kotak konten */
.timeline-content {
    padding: 20px 30px;
    background-color: var(--white-color);
    position: relative;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.timeline-content h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}
.timeline-content p {
    font-size: 0.95rem;
    color: var(--light-text);
}

/* Panah kecil pada kotak konten */
.timeline-item:nth-child(even) .timeline-content::before {
    content: " ";
    height: 0;
    position: absolute;
    top: 22px;
    width: 0;
    z-index: 1;
    left: -16px;
    border: medium solid var(--white-color);
    border-width: 10px 10px 10px 0;
    border-color: transparent var(--white-color) transparent transparent;
}
.timeline-item:nth-child(odd) .timeline-content::before {
    content: " ";
    height: 0;
    position: absolute;
    top: 22px;
    width: 0;
    z-index: 1;
    right: -16px;
    border: medium solid white;
    border-width: 10px 0 10px 10px;
    border-color: transparent transparent transparent var(--white-color);
}

/* Responsive untuk Timeline */
@media (max-width: 768px) {
    .timeline-container::after {
        left: 31px;
    }
    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }
    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        left: 0;
        text-align: left;
    }
    .timeline-icon {
        left: 6px;
    }
    .timeline-item:nth-child(odd) .timeline-content::before,
    .timeline-item:nth-child(even) .timeline-content::before {
         left: -16px;
         border-width: 10px 10px 10px 0;
         border-color: transparent var(--white-color) transparent transparent;
    }
}

/* Pusat Unduhan */
.download-list {
    max-width: 800px;
    margin: 0 auto;
}
.download-item {
    background: var(--white-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    transition: box-shadow 0.3s;
}
.download-item:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}
.download-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.download-info i {
    font-size: 1.5rem;
    color: var(--primary-blue);
}
.download-info span {
    font-weight: 600;
}
.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

/* STYLES UNTUK HALAMAN KONTAK */

/* Grid Info Kontak */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: -80px; /* Trik agar kartu sedikit menumpuk di atas section berikutnya */
    position: relative;
    z-index: 10;
}
.contact-card {
    background-color: var(--white-color);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-top: 5px solid var(--primary-blue);
}
.contact-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem auto;
    border-radius: 50%;
    background-color: var(--light-blue-bg);
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact-icon-wrapper i {
    font-size: 2.5rem;
    color: var(--primary-blue);
}
.contact-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.contact-card p {
    color: var(--light-text);
    line-height: 1.8;
}

/* Layout Peta dan Formulir */
.map-form-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: flex-start;
}
.map-container iframe {
    width: 100%;
    height: 100%;
    min-height: 450px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}
.contact-form-container h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--dark-text);
}

/* Formulir Kontak */
.form-group {
    margin-bottom: 1.5rem;
}
.form-group label {
    display: none; /* Label disembunyikan, tapi ada untuk aksesibilitas */
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(13, 71, 161, 0.15);
}
.form-group textarea {
    resize: vertical;
    min-height: 120px;
}
form .btn {
    width: 100%;
}

/* Responsive untuk Halaman Kontak */
@media (max-width: 992px) {
    .contact-info-grid {
        margin-top: 0;
    }
    .map-form-layout {
        grid-template-columns: 1fr;
    }
}

/* STYLES UNTUK HALAMAN PROGRAM */

/* Grid Fitur (Ciri-ciri rokok ilegal) */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}
.feature-item-card {
    background-color: var(--white-color);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    text-align: center;
}
.feature-icon-wrapper {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.feature-icon-wrapper.icon-danger {
    background-color: #FFEBEE; /* Merah muda */
}
.feature-icon-wrapper.icon-danger i {
    font-size: 2.2rem;
    color: #D32F2F; /* Merah tua */
}
.feature-item-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

/* Daftar Dampak Negatif */
.impact-list {
    list-style: none;
    padding: 0;
}
.impact-list li {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
}
.impact-list i {
    font-size: 2rem;
    color: var(--primary-blue);
    margin-top: 5px;
    flex-shrink: 0;
    width: 40px;
    text-align: center;
}
.impact-list h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}
.impact-list p {
    color: var(--light-text);
}
.reverse-on-mobile .image-content {
    order: -1; /* Pindahkan gambar ke atas pada mobile */
}

/* Galeri Penindakan */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}
.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 250px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.gallery-item:hover img {
    transform: scale(1.1);
}
.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: var(--white-color);
    padding: 2rem 1rem 1rem 1rem;
    font-weight: 700;
    transition: opacity 0.3s;
}
.gallery-item:hover .gallery-caption {
    opacity: 1;
}


/* Seksi CTA untuk Melapor */
.report-cta-section {
    background-color: #1c2331; /* Warna gelap seperti footer */
    color: var(--white-color);
    text-align: center;
    padding: 4rem 2rem;
}
.report-cta-section i.fa-bullhorn {
    font-size: 3rem;
    color: var(--accent-yellow);
    margin-bottom: 1.5rem;
}
.report-cta-section h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 1rem;
}
.report-cta-section p {
    max-width: 600px;
    margin: 0 auto 2rem auto;
    opacity: 0.9;
}
.report-contact {
    display: inline-block;
    background-color: var(--accent-yellow);
    color: var(--dark-text);
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-size: 1.5rem;
    font-weight: 800;
}

/* Responsive tambahan */
@media (max-width: 768px) {
    .reverse-on-mobile .image-content {
        order: 0; /* Kembalikan urutan normal di mobile jika diperlukan */
    }
}