/* ========================================= */
/* TEMPLATE V5 - KONTEN LENGKAP              */
/* ========================================= */

/* Variabel Warna dan Pengaturan Dasar (Sama) */
:root {
    --dark-green: #1B5E20;
    --accent-green: #4CAF50;
    --light-green-bg: #E8F5E9;
    --page-bg: #f8f9fa;
    --dark-text: #212121;
    --light-text: #FFFFFF;
    --border-color: #e0e0e0;
    --header-height: 70px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Poppins', sans-serif; background-color: var(--page-bg); color: var(--dark-text); }

/* Header & Navigasi (Tidak berubah) */
.site-header { background-color: var(--light-text); height: var(--header-height); width: 100%; position: fixed; top: 0; left: 0; z-index: 1000; box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); display: flex; justify-content: center; border-bottom: 3px solid var(--dark-green); }
.header-container { display: flex; justify-content: space-between; align-items: center; width: 100%; max-width: 1200px; padding: 0 1.5rem; }
.logo-link { display: flex; align-items: center; text-decoration: none; color: var(--dark-green); }
.logo-link .logo-image {
  height: 45px; /* <-- ATUR TINGGI LOGO ANDA DI SINI */
  width: auto;  /* Biarkan auto agar lebar menyesuaikan */
  margin-right: 1.0rem;
  transform: scale(1.8);
}
.logo-link .logo-text { font-size: 1.25rem; font-weight: 700; }
.main-nav .nav-menu { display: flex; list-style: none; }
.main-nav li { margin-left: 2rem; }
.main-nav a { text-decoration: none; color: var(--dark-text); font-weight: 600; font-size: 1rem; padding: 0.5rem 0; position: relative; transition: color 0.3s ease; }
.main-nav a:hover { color: var(--accent-green); }
.main-nav a::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 3px; background-color: var(--accent-green); transition: width 0.3s ease-out; }
.main-nav a:hover::after { width: 100%; }
.nav-toggle { display: none; font-size: 1.5rem; background: transparent; border: none; cursor: pointer; color: var(--dark-green); }

/* Hero Section (Tidak berubah) */
.hero-section { margin-top: var(--header-height); height: calc(100vh - var(--header-height)); min-height: 500px; display: flex; justify-content: center; align-items: center; text-align: center; padding: 0 1.5rem; position: relative; background-image: url('/img/banner.jpg'); background-size: cover; background-position: center; }
.hero-section::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.55); z-index: 1; }
.hero-content { position: relative; z-index: 2; color: var(--light-text); }
.hero-content h1 { font-size: 3.5rem; font-weight: 700; margin-bottom: 1rem; text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5); }
.hero-content p { font-size: 1.3rem; max-width: 700px; margin: 0 auto 2.5rem auto; line-height: 1.7; color: rgba(255, 255, 255, 0.9); }
.hero-content .cta-button { display: inline-block; background-color: var(--accent-green); color: var(--light-text); padding: 1rem 2.5rem; border-radius: 50px; text-decoration: none; font-weight: 600; font-size: 1.1rem; border: 2px solid var(--accent-green); transition: all 0.3s ease; }
.hero-content .cta-button:hover { background-color: transparent; border-color: var(--light-text); transform: translateY(-3px); }


/* == GAYA UNTUK KONTEN BARU == */

/* Pengaturan Dasar Section */
.page-section { padding: 5rem 1.5rem; }
.page-section.bg-light { background-color: #fff; }
.container { max-width: 1200px; margin: 0 auto; }
.section-title { text-align: center; margin-bottom: 3rem; }
.section-title h2 { font-size: 2.2rem; color: var(--dark-green); margin-bottom: 0.5rem; }
.section-title p { font-size: 1.1rem; color: #666; max-width: 700px; margin: 0 auto; }

/* Layanan Unggulan */
.layanan-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.layanan-card { background-color: #fff; border-radius: 10px; padding: 2.5rem 2rem; text-align: center; box-shadow: 0 4px 25px rgba(0,0,0,0.07); transition: transform 0.3s ease, box-shadow 0.3s ease; }
.layanan-card:hover { transform: translateY(-10px); box-shadow: 0 8px 30px rgba(0,0,0,0.12); }
.layanan-card .icon { font-size: 3rem; color: var(--accent-green); margin-bottom: 1.5rem; }
.layanan-card h3 { font-size: 1.4rem; margin-bottom: 1rem; color: var(--dark-green); }
.layanan-card p { color: #555; font-size: 0.95rem; line-height: 1.6; }

/* Kurs & Berita Section */
.berita-kurs-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 3rem; align-items: flex-start; }

/* Berita Terkini */
.berita-card { display: flex; align-items: center; margin-bottom: 2rem; background: #fff; padding: 1.5rem; border-radius: 8px; box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
.berita-card .berita-img { width: 150px; height: 100px; border-radius: 5px; background-color: #e0e0e0; margin-right: 1.5rem; overflow: hidden; }
.berita-card .berita-img img { width: 100%; height: 100%; object-fit: cover; }
.berita-content .info { font-size: 0.85rem; color: #777; margin-bottom: 0.5rem; }
.berita-content h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.berita-content h3 a { text-decoration: none; color: var(--dark-green); transition: color 0.3s ease; }
.berita-content h3 a:hover { color: var(--accent-green); }
.berita-content .selengkapnya { font-weight: 600; text-decoration: none; color: var(--accent-green); }

/* Modul Kurs Pajak */
.kurs-module { background-color: var(--dark-green); color: #fff; padding: 2rem; border-radius: 10px; }
.kurs-module h3 { text-align: center; margin-bottom: 1.5rem; font-size: 1.5rem; }
.kurs-list li { display: flex; justify-content: space-between; padding: 0.75rem 0; border-bottom: 1px solid rgba(255,255,255,0.2); list-style: none; }
.kurs-list li:last-child { border-bottom: none; }
.kurs-list .currency { font-weight: 600; }
.kurs-module .sumber { font-size: 0.8rem; text-align: center; margin-top: 1.5rem; opacity: 0.7; }
.kurs-module .sumber a { color: #fff; }

/* Statistik Kinerja */
.statistik-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; text-align: center; color: #fff; }
.stat-item .stat-number { font-size: 3.5rem; font-weight: 700; }
.stat-item .stat-label { font-size: 1.1rem; opacity: 0.9; }

/* Call to Action (CTA) Section */
.cta-section { background-color: var(--dark-green); color: #fff; text-align: center; }
.cta-section h2 { font-size: 1.8rem; margin-bottom: 1rem; }
.cta-section p { max-width: 600px; margin: 0 auto 1.5rem auto; opacity: 0.9; }
.cta-button { background: var(--accent-green); color: #fff; padding: 0.8rem 1.8rem; border-radius: 50px; text-decoration: none; font-weight: 600; transition: background 0.3s; }
.cta-button:hover { background: #388E3C; }

/* Footer */
.site-footer { background-color: var(--dark-text); color: var(--light-text); text-align: center; padding: 2rem 1rem; }

/* ========================================= */
/* PERBAIKAN WARNA SECTION PENGADUAN         */
/* ========================================= */

.pengaduan-cta {
    background-color: #1d3557; /* Biru tua yang profesional */
    color: var(--light-text);
    text-align: center;
}

.pengaduan-cta h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--light-text); /* Pastikan warna putih */
}

.pengaduan-cta p {
    max-width: 600px;
    margin: 0 auto 1.5rem auto;
    opacity: 0.9;
    color: rgba(255, 255, 255, 0.9); /* Putih sedikit transparan */
}

.pengaduan-cta .cta-button {
    background: var(--accent-green);
    color: #fff;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.pengaduan-cta .cta-button:hover {
    background: #388E3C; /* Warna hijau sedikit lebih gelap saat disentuh */
    transform: translateY(-2px);
}

/* Alur Layanan (Timeline) */
.timeline-container {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-top: 3rem;
}

.timeline-item {
    flex: 1;
    text-align: center;
    position: relative;
    padding: 0 1rem;
}

/* Garis Penghubung */
.timeline-item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 25px; /* Sesuaikan dengan posisi vertikal lingkaran */
    left: 50%;
    width: 100%;
    height: 3px;
    background-color: var(--border-color);
    z-index: 1;
}

.timeline-step {
    width: 50px;
    height: 50px;
    background-color: var(--accent-green);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 auto 1.5rem auto;
    border: 5px solid #fff;
    position: relative;
    z-index: 2;
}

.timeline-content h3 {
    font-size: 1.2rem;
    color: var(--dark-green);
    margin-bottom: 0.5rem;
}

/* Tanya Jawab (Accordion) */
.accordion-container {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    background-color: #fff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 0.8rem;
    overflow: hidden;
}

.accordion-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.25rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-text);
}

.accordion-question i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.accordion-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.accordion-answer p {
    padding: 0 1.5rem 1.25rem 1.5rem;
    line-height: 1.7;
    color: #555;
}

/* Gaya saat accordion aktif */
.accordion-item.active .accordion-question {
    color: var(--accent-green);
}

.accordion-item.active .accordion-question i {
    transform: rotate(45deg);
}

.accordion-item.active .accordion-answer {
    max-height: 200px; /* Sesuaikan jika jawaban lebih panjang */
}

/* Penyesuaian Responsif untuk Timeline */
@media (max-width: 768px) {
    .timeline-container {
        flex-direction: column;
    }
    .timeline-item {
        display: flex;
        text-align: left;
        margin-bottom: 2rem;
    }
    .timeline-item:not(:last-child)::after {
        top: 50px;
        left: 25px;
        width: 3px;
        height: 100%;
    }
    .timeline-step {
        margin: 0 1.5rem 0 0;
    }
}

/* == MEDIA QUERIES UNTUK RESPONSIVE == */
@media (max-width: 992px) {
    .layanan-grid { grid-template-columns: 1fr; }
    .berita-kurs-grid { grid-template-columns: 1fr; }
    .kurs-module { margin-top: 3rem; }
    .statistik-grid { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 900px) {
    .nav-toggle { display: block; }
    .main-nav .nav-menu { position: fixed; top: var(--header-height); right: -100%; width: 280px; height: calc(100vh - var(--header-height)); background-color: #fdfdfd; flex-direction: column; padding: 2rem; transition: right 0.4s ease-in-out; box-shadow: -5px 0 15px rgba(0,0,0,0.1); }
    .main-nav .nav-menu.active { right: 0; }
    .main-nav li { margin: 1rem 0; }
    .hero-content h1 { font-size: 2.5rem; }
    .hero-content p { font-size: 1.1rem; }
}

/* ========================================= */
/* GAYA UNTUK HALAMAN PROFIL                 */
/* ========================================= */

/* Header Halaman Profil */
.page-header-profile {
    margin-top: 70px; /* Sesuai tinggi header */
    padding: 3rem 1.5rem;
    background-color: #1d3557; /* Warna biru tua yang elegan */
    color: #fff;
    text-align: center;
}

.page-header-profile h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

.page-header-profile p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Bagian Sejarah */
.history-section {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: center;
}

.history-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.history-text h2 {
    font-size: 2rem;
    color: var(--dark-green);
    margin-bottom: 1rem;
}

.history-text p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: #555;
}

/* Bagian Visi & Misi */
.vision-mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.vm-card {
    background-color: #fff;
    padding: 2.5rem;
    border-radius: 8px;
    border-left: 5px solid var(--accent-green);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.vm-card .icon {
    font-size: 2.5rem;
    color: var(--accent-green);
    margin-bottom: 1rem;
}

.vm-card h3 {
    font-size: 1.5rem;
    color: var(--dark-green);
    margin-bottom: 1rem;
}
.vm-card p {
    font-size: 1.05rem;
}

.mission-list {
    list-style: none;
    padding-left: 0;
}

.mission-list li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
}

.mission-list li::before {
    content: '\f00c'; /* Font Awesome check icon */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 4px;
    color: var(--accent-green);
}


/* ========================================= */
/* GAYA UNTUK TIMELINE PRESTASI              */
/* ========================================= */

.vertical-timeline {
    position: relative;
    max-width: 800px;
    margin: 3rem auto;
}

/* Garis vertikal di tengah */
.vertical-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background-color: var(--border-color);
}

.timeline-event {
    position: relative;
    width: 50%;
    padding: 10px 40px;
    margin-bottom: 2rem;
}

/* Posisi item: Kiri */
.timeline-event:nth-child(odd) {
    left: 0;
    text-align: right;
}

/* Posisi item: Kanan */
.timeline-event:nth-child(even) {
    left: 50%;
    text-align: left;
}

.timeline-icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: var(--accent-green);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    border: 3px solid #fff;
}

.timeline-event:nth-child(odd) .timeline-icon {
    right: -20px;
}
.timeline-event:nth-child(even) .timeline-icon {
    left: -20px;
}

.timeline-event-content {
    background-color: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.07);
    position: relative;
}

/* Panah kecil penunjuk ke timeline */
.timeline-event-content::before {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-style: solid;
}
.timeline-event:nth-child(odd) .timeline-event-content::before {
    right: -10px;
    border-width: 10px 0 10px 10px;
    border-color: transparent transparent transparent #fff;
}
.timeline-event:nth-child(even) .timeline-event-content::before {
    left: -10px;
    border-width: 10px 10px 10px 0;
    border-color: transparent #fff transparent transparent;
}


.timeline-date {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-green);
    margin-bottom: 0.5rem;
    display: block;
}

.timeline-event-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--dark-green);
}

/* Penyesuaian Responsif untuk Timeline Prestasi */
@media (max-width: 768px) {
    .vertical-timeline::before {
        left: 20px; /* Pindahkan garis ke kiri */
    }
    .timeline-event {
        width: 100%;
        padding-left: 70px; /* Beri ruang dari garis */
        padding-right: 15px;
        text-align: left; /* Semua teks rata kiri */
    }
    .timeline-event:nth-child(even) {
        left: 0; /* Semua item mulai dari kiri */
    }
    .timeline-icon {
        left: 20px; /* Posisikan ikon di atas garis */
        transform: translateX(-50%);
    }
    .timeline-event:nth-child(odd) .timeline-icon,
    .timeline-event:nth-child(even) .timeline-icon {
        left: 20px;
    }
    .timeline-event-content::before {
        left: -10px;
        border-width: 10px 10px 10px 0;
        border-color: transparent #fff transparent transparent;
    }
     .timeline-event:nth-child(odd) .timeline-event-content::before {
        left: -10px;
        border-width: 10px 10px 10px 0;
        border-color: transparent #fff transparent transparent;
    }
}

/* Bagian Motto */
.motto-section {
    padding: 4rem 1.5rem;
    background-color: var(--dark-green);
    color: #fff;
    text-align: center;
}

.motto-section h2 {
    font-size: 2rem;
    font-weight: 600;
    max-width: 800px;
    margin: 1rem auto;
    line-height: 1.5;
}

.motto-section .fa-quote-left,
.motto-section .fa-quote-right {
    font-size: 1.5rem;
    color: var(--accent-green);
}

/* Penyesuaian Responsif untuk Halaman Profil */
@media (max-width: 768px) {
    .history-section {
        grid-template-columns: 1fr;
    }
}

/* ========================================= */
/* GAYA UNTUK HALAMAN LAYANAN                */
/* ========================================= */

/* Header Halaman Layanan */
.page-header-layanan {
    margin-top: 70px; /* Sesuai tinggi header */
    padding: 3rem 1.5rem;
    background-color: var(--accent-green); /* Warna hijau cerah */
    color: #fff;
    text-align: center;
}

.page-header-layanan h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

.page-header-layanan p {
    font-size: 1.1rem;
    opacity: 0.95;
}

/* Grid Layanan */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: #fff;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border-color: var(--accent-green);
}

.service-icon {
    font-size: 2.8rem;
    color: var(--dark-green);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.3rem;
    color: var(--dark-green);
    margin-bottom: 1rem;
}

/* Bagian Dokumen & Jadwal */
.docs-schedule-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.documents-section h3, .schedule-section h3 {
    font-size: 1.5rem;
    color: var(--dark-green);
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--accent-green);
    padding-bottom: 0.5rem;
}

.documents-section h3 i, .schedule-section h3 i {
    margin-right: 0.75rem;
}

.document-list {
    list-style: none;
    padding-left: 0;
}

.document-list li {
    padding-left: 1.8rem;
    position: relative;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.document-list li::before {
    content: '\f14a'; /* Font Awesome check-square icon */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--accent-green);
}

/* Tabel Jadwal */
.schedule-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.schedule-table th, .schedule-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.schedule-table th {
    background-color: var(--dark-green);
    color: #fff;
}

.schedule-table tbody tr:last-child td {
    border-bottom: none;
}

/* Gaya untuk hari ini */
.schedule-table tr.today {
    background-color: var(--light-green-bg);
    font-weight: 700;
    color: var(--dark-green);
}

/* Bagian CTA Bantuan */
.help-cta-section {
    background-color: #1d3557; /* Biru tua */
    color: #fff;
    text-align: center;
}
.help-cta-section h2 {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 1rem;
}
.help-cta-section p {
    max-width: 600px;
    margin: 0 auto 1.5rem auto;
    opacity: 0.9;
}
.help-cta-section .cta-button {
    background: var(--accent-green);
    color: #fff;
}

/* Penyesuaian Responsif Halaman Layanan */
@media (max-width: 768px) {
    .docs-schedule-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================= */
/* GAYA UNTUK HALAMAN PUSAT INFORMASI        */
/* ========================================= */

/* Header Halaman Informasi */
.page-header-info {
    margin-top: 70px; /* Sesuai tinggi header */
    padding: 3rem 1.5rem;
    background: linear-gradient(45deg, #eef2f3, #dce9f0); /* Latar belakang gradien lembut */
    color: var(--dark-text);
    text-align: center;
    border-bottom: 1px solid #d1dbe1;
}

.page-header-info h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1d3557; /* Biru Tua */
}

/* Header Halaman Informasi (Sama) */
.page-header-info {
    margin-top: 70px;
    padding: 3rem 1.5rem;
    background: linear-gradient(45deg, #eef2f3, #dce9f0);
    color: var(--dark-text);
    text-align: center;
    border-bottom: 1px solid #d1dbe1;
}

.page-header-info h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1d3557;
}

/* Grid Kalkulator & Kurs */
.calculator-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    align-items: flex-start;
}
.calculator-wrapper h3, .kurs-wrapper h3 {
    font-size: 1.5rem;
    color: var(--dark-green);
    margin-bottom: 1.5rem;
}
.calculator-wrapper h3 i, .kurs-wrapper h3 i {
    margin-right: 0.75rem;
    color: var(--accent-green);
}

/* Form Kalkulator */
.calculator-form {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
}
.calculator-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}
.calculator-form input {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    margin-bottom: 1rem;
    font-size: 1rem;
}
.calc-button {
    width: 100%;
    padding: 1rem;
    background: var(--accent-green);
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}
.calc-button:hover {
    background: var(--dark-green);
}
.disclaimer {
    font-size: 0.85rem;
    text-align: center;
    margin-top: 1rem;
    color: #777;
}

/* Kurs Pajak (Sama seperti sebelumnya) */
.kurs-module { background-color: var(--dark-green); color: #fff; padding: 2rem; border-radius: 10px; }
.kurs-module h3 { text-align: center; margin-bottom: 1.5rem; font-size: 1.5rem; color: #fff; }
.kurs-list { padding: 0; }
.kurs-list li { display: flex; justify-content: space-between; padding: 0.75rem 0; border-bottom: 1px solid rgba(255,255,255,0.2); list-style: none; }
.kurs-list li:last-child { border-bottom: none; }
.kurs-list .currency { font-weight: 600; }
.kurs-module .sumber { font-size: 0.8rem; text-align: center; margin-top: 1.5rem; opacity: 0.7; }
.kurs-module .sumber a { color: #fff; }

/* Grid Panduan */
.guides-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
.guide-card {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
    text-align: center;
    border-top: 4px solid var(--accent-green);
}
.guide-icon {
    font-size: 2.5rem;
    color: var(--accent-green);
    margin-bottom: 1rem;
}
.guide-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--dark-green);
}

/* Glosarium & Peraturan */
.docs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    align-items: start;
}
.glossary-section h3, .regulation-section h3 {
    font-size: 1.5rem;
    color: var(--dark-green);
    margin-bottom: 1.5rem;
}
.glossary-list dt {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--dark-text);
}
.glossary-list dd {
    margin-left: 0;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px dashed var(--border-color);
    color: #555;
}
.glossary-list dd:last-child {
    border-bottom: none;
}

.regulation-list { list-style: none; padding: 0; }
.regulation-list li a { display: flex; justify-content: space-between; padding: 1rem; background: #fff; margin-bottom: 0.8rem; border-radius: 5px; text-decoration: none; color: var(--dark-text); transition: background-color 0.3s ease; border: 1px solid var(--border-color); }
.regulation-list li a:hover { background-color: var(--light-green-bg); color: var(--dark-green); }
.regulation-list li i { color: #c0392b; font-size: 1.2rem; }

/* Penyesuaian Responsif */
@media (max-width: 900px) {
    .calculator-grid {
        grid-template-columns: 1fr;
    }
}

/* Bagian Dokumen */
.docs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    align-items: start;
}
.publication-section h3, .regulation-section h3 {
    font-size: 1.5rem;
    color: var(--dark-green);
    margin-bottom: 1.5rem;
}
.publication-item {
    display: flex;
    gap: 1.5rem;
    background: #fff;
    padding: 1rem;
    border-radius: 8px;
}
.publication-cover {
    width: 100px;
    height: 140px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.download-button {
    display: inline-block;
    background: var(--accent-green);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    margin-top: 1rem;
}
.regulation-list {
    list-style: none;
    padding: 0;
}
.regulation-list li a {
    display: flex;
    justify-content: space-between;
    padding: 1rem;
    background: #fff;
    margin-bottom: 0.8rem;
    border-radius: 5px;
    text-decoration: none;
    color: var(--dark-text);
    transition: background-color 0.3s ease;
}
.regulation-list li a:hover {
    background-color: var(--light-green-bg);
    color: var(--dark-green);
}
.regulation-list li i {
    color: #c0392b; /* Warna ikon PDF */
    font-size: 1.2rem;
}

/* Bagian Info Grafis */
.infographic-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}
.infographic-item img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}
.infographic-item img:hover {
    transform: scale(1.03);
}

/* ========================================= */
/* GAYA UNTUK HALAMAN KONTAK                 */
/* ========================================= */

/* Header Halaman Kontak */
.page-header-kontak {
    margin-top: 70px; /* Sesuai tinggi header */
    padding: 3rem 1.5rem;
    background-color: var(--dark-green);
    color: #fff;
    text-align: center;
}

.page-header-kontak h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

/* Grid Info Kontak & Peta */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: center;
}

.contact-card {
    display: flex;
    align-items: center;
    background-color: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}

.contact-icon {
    font-size: 1.8rem;
    color: var(--accent-green);
    margin-right: 1.5rem;
    min-width: 40px;
    text-align: center;
}

.contact-text h4 {
    font-size: 1.2rem;
    color: var(--dark-green);
    margin-bottom: 0.25rem;
}

.contact-text p {
    color: #555;
    line-height: 1.6;
}

/* Tautan Media Sosial */
.social-links a {
    color: var(--dark-green);
    font-size: 1.5rem;
    margin-right: 1.2rem;
    transition: color 0.3s ease;
}
.social-links a:hover {
    color: var(--accent-green);
}

/* Kontainer Peta */
.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border: none;
}

/* Formulir Kontak */
.contact-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
}
.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}
.contact-form .form-group {
    margin-bottom: 1.5rem;
}
.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}
.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
}
.contact-form input:focus, .contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-green);
    box-shadow: 0 0 0 2px var(--light-green-bg);
}
.submit-button {
    display: block;
    width: 100%;
    padding: 1rem;
    background: var(--accent-green);
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}
.submit-button:hover {
    background: var(--dark-green);
}
.form-disclaimer {
    text-align: center;
    font-size: 0.85rem;
    color: #777;
    margin-top: 1rem;
}

/* Penyesuaian Responsif Halaman Kontak */
@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .map-container {
        margin-top: 2rem;
    }
    .contact-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}