/* --- Konfigurasi Dasar dan Variabel Warna --- */
:root {
    --primary-color: #005A9C; /* Biru Tua Profesional */
    --secondary-color: #2E8B57; /* Hijau Laut (Sea Green) */
    --accent-color: #4A90E2; /* Biru Cerah untuk Aksen */
    --bg-color: #F4F7FC; /* Latar Belakang Abu-abu Sangat Muda */
    --text-color: #333333; /* Abu-abu Tua untuk Teks */
    --white-color: #FFFFFF;
    --light-gray: #EAEAEA;
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 8px 25px rgba(0, 90, 156, 0.15);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
}
main { max-width: 1200px; margin: 0 auto; padding: 2rem 5%; }

/* --- Utility Class --- */
.section-title {
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 2.5rem;
    position: relative;
}
.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--secondary-color);
    border-radius: 2px;
    margin: 10px auto 0;
}

/* --- Header --- */
header { background-color: var(--white-color); padding: 1rem 5%; box-shadow: 0 2px 8px rgba(0,0,0,0.08); position: sticky; top: 0; z-index: 1000; }
.header-content { display: flex; justify-content: space-between; align-items: center; max-width: 1200px; margin: 0 auto; }
.logo-container { display: flex; align-items: center; }
.logo-container img { height: 50px; margin-right: 35px; transform: scale(1.5);}
.title-container h1 { font-size: 1.5rem; color: var(--primary-color); font-weight: 700; margin: 0; }
.title-container h2 { font-size: 1rem; color: var(--text-color); font-weight: 400; margin: 0; }
header nav ul { list-style: none; display: flex; gap: 2rem; }
header nav a { text-decoration: none; color: var(--text-color); font-weight: 600; padding-bottom: 5px; border-bottom: 2px solid transparent; transition: all 0.3s ease; }
header nav a:hover, header nav a.active { color: var(--primary-color); border-bottom-color: var(--primary-color); }

/* --- Welcome Section --- */
.welcome-section { text-align: center; margin: 2rem 0 4rem; }
.welcome-section h2 { font-family: 'Montserrat', sans-serif; font-size: 2.5rem; color: var(--primary-color); margin-bottom: 0.5rem; }
.welcome-section p { font-size: 1.1rem; max-width: 800px; margin: 0 auto; color: #555; }

/* --- SEKSI BARU: Statistik Counter --- */
.stats-counter-section {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 3rem 2rem;
    border-radius: 12px;
    margin-bottom: 4rem;
}
.stat-card { text-align: center; color: var(--white-color); flex: 1; min-width: 150px; }
.stat-card i { font-size: 2.5rem; opacity: 0.8; }
.stat-card .stat-number { font-size: 2.8rem; font-weight: 700; margin: 0.5rem 0; }
.stat-card .stat-label { font-size: 1rem; font-weight: 400; text-transform: uppercase; letter-spacing: 1px; }

/* --- Main Menu Grid --- */
.main-menu { margin-bottom: 4rem; }
.menu-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.menu-card { background-color: var(--white-color); padding: 2.5rem 2rem; border-radius: 12px; box-shadow: var(--shadow); text-align: center; text-decoration: none; color: var(--text-color); border-top: 5px solid var(--secondary-color); transition: transform 0.3s ease, box-shadow 0.3s ease; }
.menu-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); border-top-color: var(--primary-color); }
.menu-card i { font-size: 3rem; color: var(--secondary-color); margin-bottom: 1.5rem; display: block; transition: color 0.3s ease; }
.menu-card:hover i { color: var(--primary-color); }
.menu-card h3 { font-size: 1.4rem; margin-bottom: 0.5rem; color: var(--primary-color); }
.menu-card p { font-size: 0.95rem; color: #666; }

/* --- SEKSI BARU: Fokus Program --- */
.focus-section {
    margin-bottom: 4rem;
    padding: 3rem 0;
    background-color: var(--white-color);
    border-radius: 12px;
}

.focus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 0 2rem;
}

.focus-card {
    background-color: var(--bg-color);
    border: 1px solid var(--light-gray);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.focus-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--secondary-color);
}

.focus-icon {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    line-height: 1;
}

.focus-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.focus-card p {
    color: #666;
    margin-bottom: 2rem;
}

.btn-learn-more {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--white-color);
    padding: 10px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-learn-more:hover {
    background-color: var(--primary-color);
}

/* --- SEKSI BARU: Sambutan Kepala Dinas --- */
.leader-section { display: flex; align-items: center; gap: 3rem; background: var(--white-color); padding: 4rem; border-radius: 12px; margin-bottom: 4rem; flex-wrap: wrap; }
.leader-photo { flex-basis: 300px; }
.leader-photo img { width: 100%; border-radius: 50%; border: 8px solid var(--light-gray); }
.leader-quote { flex: 1; }
.leader-quote .section-title { text-align: left; margin-bottom: 1.5rem; }
.leader-quote .section-title::after { margin: 10px 0 0; }
.leader-quote blockquote { font-family: 'Montserrat', serif; font-size: 1.2rem; font-style: italic; color: #555; border-left: 4px solid var(--secondary-color); padding-left: 1.5rem; margin-bottom: 1.5rem; }
.leader-name { font-weight: 700; font-size: 1.2rem; color: var(--primary-color); }
.leader-title { color: #777; }

/* --- SEKSI BARU: Mitra --- */
.partner-section { margin-bottom: 4rem; }
.partner-logos { display: flex; justify-content: center; align-items: center; gap: 3rem; flex-wrap: wrap; }
.partner-logos img { height: 130px; opacity: 1; transition: all 0.3s ease; }
.partner-logos img:hover { filter: grayscale(0); opacity: 1; transform: scale(1.1); }

/* --- Footer --- */
footer { background-color: var(--primary-color); color: var(--white-color); padding-top: 3rem; }
.footer-content { display: flex; justify-content: space-between; flex-wrap: wrap; max-width: 1200px; margin: 0 auto; padding: 0 5%; gap: 2rem; }
.footer-section { flex: 1; min-width: 250px; }
.footer-section h4 { font-size: 1.2rem; margin-bottom: 1rem; border-bottom: 1px solid var(--accent-color); padding-bottom: 0.5rem; display: inline-block; }
.footer-section.social a { color: var(--white-color); font-size: 1.5rem; margin-right: 15px; transition: color 0.3s ease; }
.social-links {
    margin-top: 0.75rem; /* Memberi jarak ke bawah dari judul */
}
.footer-section.social a:hover { color: var(--accent-color); }
.footer-bottom { text-align: center; padding: 1.5rem 0; margin-top: 2rem; border-top: 1px solid #004a80; font-size: 0.9rem; }

/* --- Responsif --- */
@media (max-width: 992px) {
    .leader-section { flex-direction: column; text-align: center; }
    .leader-quote .section-title { text-align: center; }
    .leader-quote .section-title::after { margin: 10px auto 0; }
}
@media (max-width: 768px) {
    body { font-size: 14px; }
    .header-content { flex-direction: column; gap: 1rem; }
    header nav ul { gap: 1.5rem; }
    .welcome-section h2 { font-size: 2rem; }
    .menu-grid, .news-grid { grid-template-columns: 1fr; }
    .leader-section { padding: 2rem; }
    .leader-photo { flex-basis: 200px; }
}

/* ==============================================
   STYLING KHUSUS UNTUK HALAMAN PROFIL
   ============================================== */

/* Warna Tambahan untuk Halaman Profil */
:root {
    --profil-bg-light: #F8F9FA; /* Latar belakang seksi yang sangat terang */
    --profil-accent-1: #1ABC9C; /* Warna Teal untuk aksen */
    --profil-accent-2: #F39C12; /* Warna Oranye untuk aksen */
}

/* Penyesuaian Body & Main */
.profil-main {
    padding-top: 0; /* Hapus padding atas agar banner menempel di header */
}

/* --- 1. Banner Halaman --- */
.page-header {
    position: relative;
    padding: 5rem 1.5rem;
    text-align: center;
    color: var(--white-color);
    background-image: linear-gradient(rgba(0, 90, 156, 0.8), rgba(46, 139, 87, 0.7)), url('https://images.unsplash.com/photo-1538933230605-645b35762d98?q=80&w=2070');
    background-size: cover;
    background-position: center;
}
.page-header h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
}
.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0.5rem auto 0;
}

/* --- 2. Visi & Misi --- */
.vision-mission-section {
    padding: 4rem 1.5rem;
    background: var(--white-color);
}
.vision-mission-section .container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}
.vision-card, .mission-card {
    background-color: var(--profil-bg-light);
    border-radius: 12px;
    padding: 2rem;
    flex: 1;
    min-width: 300px;
    border-left: 5px solid var(--secondary-color);
}
.mission-card {
    border-left-color: var(--primary-color);
}
.vision-card i, .mission-card i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}
.mission-card i {
    color: var(--primary-color);
}
.vision-card h2, .mission-card h2 {
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 1rem;
    color: var(--text-color);
}
.mission-card ul {
    list-style: none;
    padding-left: 0;
}
.mission-card ul li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
}
.mission-card ul li::before {
    content: '\f058'; /* Ikon centang dari Font Awesome */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

/* --- Judul Seksi Umum di Halaman Profil --- */
.section-title-profil {
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
    position: relative;
}
.section-title-profil::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--profil-accent-2); /* Aksen Oranye */
    border-radius: 2px;
    margin: 10px auto 0;
}

/* --- 3. Struktur Organisasi --- */
.org-structure-section {
    padding: 4rem 1.5rem;
    background-color: var(--profil-bg-light);
}
.org-structure-section .container { max-width: 1200px; margin: 0 auto; }
.structure-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}
.leader-card {
    background: var(--white-color);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.leader-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}
.leader-card img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 4px solid var(--light-gray);
}
.leader-card h3 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}
.leader-card p {
    font-size: 0.9rem;
    color: #666;
}

/* --- 4. Nilai-Nilai Inti --- */
.core-values-section {
    padding: 4rem 1.5rem;
    background: var(--white-color);
}
.core-values-section .container { max-width: 1200px; margin: 0 auto; }
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}
.value-card {
    text-align: center;
    padding: 1.5rem;
}
.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--white-color);
    transition: transform 0.3s ease;
}
.value-card:hover .value-icon {
    transform: scale(1.1);
}
.value-card h3 {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}
.value-card:nth-child(1) .value-icon { background-color: var(--primary-color); }
.value-card:nth-child(2) .value-icon { background-color: var(--secondary-color); }
.value-card:nth-child(3) .value-icon { background-color: var(--profil-accent-2); } /* Oranye */
.value-card:nth-child(4) .value-icon { background-color: var(--profil-accent-1); } /* Teal */
.value-card:nth-child(5) .value-icon { background-color: #E74C3C; } /* Merah lembut */


/* --- 5. Tugas Pokok & Fungsi (Accordion) --- */
.tupoksi-section {
    padding: 4rem 1.5rem;
    background-color: var(--profil-bg-light);
}
.tupoksi-section .container { max-width: 900px; margin: 0 auto; }
.accordion details {
    background: var(--white-color);
    margin-bottom: 1rem;
    border-radius: 8px;
    border: 1px solid var(--light-gray);
}
.accordion summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    list-style: none; /* Hapus panah default */
}
.accordion summary::-webkit-details-marker {
    display: none; /* Hapus panah default untuk Chrome */
}
.accordion summary i {
    transition: transform 0.3s ease;
}
.accordion details[open] summary i {
    transform: rotate(45deg);
}
.accordion details p, .accordion details ul {
    padding: 0 1.5rem 1.5rem 1.5rem;
    color: #555;
    line-height: 1.8;
}
.accordion details ul {
    padding-left: 3rem;
}

/* ==============================================
   STYLING KHUSUS UNTUK HALAMAN PROGRAM UNGGULAN
   ============================================== */

/* -- Warna Tambahan -- */
:root {
    --program-bg-light: #F8F9FA;
    --program-text: #555;
}

/* -- Penyesuaian Main Content -- */
.program-main {
    padding-top: 0;
}

/* -- 1. Banner Halaman -- */
.page-header.program-header-bg {
    background-image: linear-gradient(rgba(46, 139, 87, 0.8), rgba(0, 90, 156, 0.7)), url('https://images.unsplash.com/photo-1477346611705-65d1883cee1e?q=80&w=2070');
}
.page-header {
    position: relative;
    padding: 5rem 1.5rem;
    text-align: center;
    color: var(--white-color);
    background-size: cover;
    background-position: center;
}
.page-header h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
}
.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0.5rem auto 0;
}

/* -- 2. Pengantar -- */
.program-intro {
    padding: 3rem 1.5rem;
    text-align: center;
    background-color: var(--white-color);
}
.program-intro .container {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: var(--program-text);
}

/* -- 3. Detail Program -- */
.program-item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 3rem;
    padding: 4rem 1.5rem;
}
.program-item:nth-child(odd) {
    background-color: var(--program-bg-light);
}
.program-item:nth-child(even) {
    background-color: var(--white-color);
    flex-direction: row-reverse; /* Ini kunci untuk layout selang-seling */
}

.program-image, .program-content {
    flex: 1;
    min-width: 320px;
}
.program-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    object-fit: cover;
    height: 400px;
}

.program-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    color: var(--white-color);
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.program-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}
.program-content p {
    color: var(--program-text);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.program-goals {
    list-style: none;
    padding-left: 0;
    margin-bottom: 2rem;
}
.program-goals li {
    color: var(--text-color);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: flex-start;
}
.program-goals li i {
    color: var(--secondary-color);
    margin-right: 10px;
    margin-top: 4px;
}

.program-content h4 {
    font-weight: 600;
    color: var(--text-color);
    border-top: 2px solid var(--light-gray);
    padding-top: 1rem;
}
.program-content h4 i {
    margin-right: 8px;
    color: var(--primary-color);
}


/* --- Media Query untuk Responsif --- */
@media (max-width: 768px) {
    .program-item:nth-child(even) {
        flex-direction: row; /* Kembalikan ke normal di mobile */
    }
    .page-header h1 {
        font-size: 2.2rem;
    }
    .program-content h2 {
        font-size: 1.8rem;
    }
}

/* ==============================================
   STYLING KHUSUS UNTUK HALAMAN TENTANG KAMI
   ============================================== */

:root {
    --tentang-bg-light: #F8F9FA;
    --tentang-text: #555;
}

/* -- Penyesuaian Main Content -- */
.tentang-main {
    padding-top: 0;
}

/* -- 1. Banner Halaman -- */
.page-header.tentang-header-bg {
    background-image: linear-gradient(rgba(0, 90, 156, 0.7), rgba(46, 139, 87, 0.8)), url('https://images.unsplash.com/photo-1576091160550-2173dba999ef?q=80&w=2070');
}
.page-header {
    position: relative;
    padding: 5rem 1.5rem;
    text-align: center;
    color: var(--white-color);
    background-size: cover;
    background-position: center;
}
.page-header h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
}
.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0.5rem auto 0;
}

/* -- Judul Seksi Umum -- */
.section-title-custom {
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
    position: relative;
}
.section-title-custom::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--secondary-color);
    border-radius: 2px;
    margin: 10px auto 0;
}

/* -- 2. Cerita Kami -- */
.our-story-section {
    padding: 4rem 1.5rem;
    background-color: var(--white-color);
}
.our-story-section .container { max-width: 800px; margin: 0 auto; text-align: center; }
.story-content i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}
.story-content h2 {
    font-family: 'Montserrat', sans-serif;
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1rem;
}
.story-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--tentang-text);
}

/* -- 3. Filosofi Pelayanan -- */
.philosophy-section {
    padding: 4rem 1.5rem;
    background-color: var(--tentang-bg-light);
}
.philosophy-section .container { max-width: 1200px; margin: 0 auto; }
.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
.philosophy-card {
    background: var(--white-color);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    border-bottom: 5px solid transparent;
    transition: all 0.3s ease;
}
.philosophy-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-bottom-color: var(--primary-color);
}
.philosophy-icon {
    width: 80px; height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--white-color);
}
.philosophy-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}
.philosophy-card p {
    color: var(--tentang-text);
}

/* -- 4. Temui Tim Kami -- */
.team-section {
    padding: 4rem 1.5rem;
    background-color: var(--white-color);
}
.team-section .container { max-width: 1200px; margin: 0 auto; }
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    justify-content: center;
}
.team-card {
    background: var(--tentang-bg-light);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #eee;
}
.team-card img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 4px solid var(--white-color);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.team-card h3 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}
.team-card p {
    font-size: 0.9rem;
    color: #666;
}

/* -- 5. Komitmen Kami -- */
.commitment-section {
    padding: 4rem 1.5rem;
    background-color: var(--tentang-bg-light);
}
.commitment-section .container { max-width: 1200px; margin: 0 auto; }
.commitment-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 3rem;
}
.commitment-image, .commitment-list {
    flex: 1;
    min-width: 320px;
}
.commitment-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.commitment-list p {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}
.commitment-list ul {
    list-style: none;
    padding: 0;
}
.commitment-list li {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}
.commitment-list li i {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-right: 15px;
}

/* ==============================================
   STYLING KHUSUS UNTUK HALAMAN KONTAK
   ============================================== */

:root {
    --kontak-bg-light: #F8F9FA;
    --kontak-text: #555;
    --form-border: #ccc;
    --form-focus-border: var(--primary-color);
}

.kontak-main {
    padding-top: 0;
}

/* --- 1. Banner Halaman --- */
.page-header.kontak-header-bg {
    background-image: linear-gradient(rgba(0, 90, 156, 0.7), rgba(46, 139, 87, 0.7)), url('https://images.unsplash.com/photo-1586769852836-bc069f19e1b6?q=80&w=2070');
}
.page-header {
    position: relative;
    padding: 5rem 1.5rem;
    text-align: center;
    color: var(--white-color);
    background-size: cover;
    background-position: center;
}
.page-header h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
}
.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0.5rem auto 0;
}

/* --- Judul Seksi Umum -- */
.section-title-custom {
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
    position: relative;
}
.section-title-custom::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--secondary-color);
    border-radius: 2px;
    margin: 10px auto 0;
}

/* --- 2. Kartu Informasi --- */
.contact-info-section {
    padding: 4rem 1.5rem;
    background-color: var(--white-color);
}
.contact-info-section .container { max-width: 1200px; margin: 0 auto; }
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
.info-card {
    background-color: var(--kontak-bg-light);
    padding: 2.5rem 2rem;
    text-align: center;
    border-radius: 12px;
    border: 1px solid #eee;
}
.info-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}
.info-card h3 {
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}
.info-card p {
    color: var(--kontak-text);
    line-height: 1.6;
}

/* --- 3. Peta & Formulir --- */
.form-map-section {
    padding: 4rem 1.5rem;
    background-color: var(--kontak-bg-light);
}
.form-map-section .container { max-width: 1200px; margin: 0 auto; }
.form-map-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: flex-start;
}
.contact-form h2 {
    font-family: 'Montserrat', sans-serif;
    color: var(--primary-color);
    margin-bottom: 2rem;
}
.form-group {
    margin-bottom: 1.5rem;
}
.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border-radius: 8px;
    border: 1px solid var(--form-border);
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--form-focus-border);
    box-shadow: 0 0 0 3px rgba(0, 90, 156, 0.15);
}
.btn-submit {
    background: var(--primary-color);
    color: var(--white-color);
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.btn-submit:hover {
    background: var(--secondary-color);
}
.map-container {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border-radius: 12px;
    overflow: hidden;
}
.map-container iframe {
    width: 100%;
    height: 100%;
}

/* --- 4. FAQ --- */
.faq-section {
    padding: 4rem 1.5rem;
    background-color: var(--white-color);
}
.faq-section .container { max-width: 900px; margin: 0 auto; }
.accordion details {
    background: var(--kontak-bg-light);
    margin-bottom: 1rem;
    border-radius: 8px;
    border: 1px solid #eee;
}
.accordion summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
}
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary i { transition: transform 0.3s ease; }
.accordion details[open] summary i { transform: rotate(45deg); }
.accordion details p {
    padding: 0 1.5rem 1.5rem 1.5rem;
    color: var(--kontak-text);
    line-height: 1.8;
    border-top: 1px solid #ddd;
    margin-top: 1rem;
}

/* -- Responsif -- */
@media (max-width: 992px) {
    .form-map-grid {
        grid-template-columns: 1fr;
    }
}