/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* --- CSS Variables --- */
:root {
    --primary-color: #0D47A1;
    --secondary-color: #1976D2;
    --accent-color: #FFC107;
    --background-color: #f8f9fa;
    --text-color: #343a40;
    --light-text-color: #FFFFFF;
    --card-bg-color: #FFFFFF;
    --shadow-color: rgba(0, 0, 0, 0.08);
    --success-color: #2E7D32;
    --border-color: #dee2e6;
}

/* --- General & Global Enhancements --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html { scroll-behavior: smooth; }
body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.7;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Custom Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--background-color); }
::-webkit-scrollbar-thumb { background: var(--secondary-color); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary-color); }

/* Animation */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- Header & Navigation (Slightly adjusted) --- */
.site-header {
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 10px 0;
    color: var(--light-text-color);
    box-shadow: 0 4px 10px var(--shadow-color);
    position: sticky; top: 0; z-index: 1000;
}
.site-header .container { display: flex; justify-content: space-between; align-items: center; }
.logo-container { display: flex; align-items: center; text-decoration: none; }
.logo-container img { height: 55px; margin-right: 35px; transition: transform 0.3s ease; transform: scale(2.0);}
.logo-container:hover img { transform: rotate(-10deg); }
.logo-text { color: var(--light-text-color); }
.logo-text .main-title { font-size: 1.6rem; font-weight: 700; line-height: 1.2; display: block; }
.logo-text .sub-title { font-size: 1.1rem; font-weight: 400; color: var(--accent-color); display: block; }
.main-nav { background-color: #ffffff; box-shadow: 0 2px 5px rgba(0,0,0,0.05); }
.main-nav ul { list-style: none; display: flex; justify-content: center; }
.main-nav ul li a {
    display: block; padding: 15px 25px; color: var(--primary-color);
    text-decoration: none; font-weight: 600; position: relative; transition: color 0.3s ease;
}
.main-nav ul li a::after {
    content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
    width: 0; height: 3px; background-color: var(--accent-color); transition: width 0.3s ease;
}
.main-nav ul li a:hover::after, .main-nav ul li a.active::after { width: 60%; }
.main-nav ul li a:hover, .main-nav ul li a.active { color: var(--secondary-color); }

/* --- General Content Styling --- */
.page-header {
    background: var(--secondary-color);
    color: white;
    padding: 3rem 0;
    text-align: center;
    margin-bottom: 50px;
}
.page-header h1 { font-size: 2.8rem; font-weight: 700; }
.page-header p { font-size: 1.1rem; opacity: 0.9; }

.content-section {
    padding: 50px 0;
    animation: fadeInUp 1s ease-out forwards;
}
.section-title {
    font-size: 2.2rem; text-align: center; color: var(--primary-color);
    margin-bottom: 15px; position: relative; display: inline-block;
    left: 50%; transform: translateX(-50%);
}
.section-title::after {
    content: ''; position: absolute; bottom: -10px; left: 50%; transform: translateX(-50%);
    width: 80px; height: 4px; background-color: var(--accent-color); border-radius: 2px;
}
.section-subtitle {
    max-width: 700px; margin: 0 auto 40px auto; color: #555;
    font-size: 1.1rem; text-align: center;
}

/* === HOMEPAGE SPECIFIC === */
.page-intro { text-align: center; padding: 4rem 0; animation: fadeInUp 0.8s ease-out; }
.page-intro h2 { font-size: 2.8rem; font-weight: 700; margin-bottom: 10px; color: var(--primary-color); }
.page-intro p.slogan { color: #555; font-size: 1.2rem; font-weight: 300; }
.link-card {
    background-color: var(--card-bg-color); border-radius: 15px; box-shadow: 0 5px 20px rgba(0,0,0,0.07);
    text-decoration: none; color: var(--text-color); transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex; flex-direction: column; text-align: center; opacity: 0; animation: fadeInUp 0.5s ease-out forwards;
}
.page-links-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; margin-bottom: 60px; }
.link-card:nth-child(1) { animation-delay: 0.2s; }
.link-card:nth-child(2) { animation-delay: 0.4s; }
.link-card:nth-child(3) { animation-delay: 0.6s; }
.link-card:nth-child(4) { animation-delay: 0.8s; }
.link-card:hover { transform: translateY(-10px); box-shadow: 0 12px 30px rgba(0, 91, 187, 0.15); }
.card-icon { font-size: 3.5rem; padding: 40px 20px 20px 20px; color: var(--primary-color); transition: transform 0.3s ease; }
.link-card:hover .card-icon { transform: scale(1.1); }
.card-content { padding: 0 25px 35px 25px; }
.card-content h3 { font-size: 1.5rem; color: var(--secondary-color); }

/* Stats Counter Section */
.stats-section { background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url(https://via.placeholder.com/1500x400.png/0D47A1/FFFFFF?Text=Bea+Cukai+Ambon) center center/cover no-repeat fixed; padding: 80px 0; text-align: center; }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 30px; }
.stat-item { color: white; }
.stat-item .icon { font-size: 3rem; color: var(--accent-color); margin-bottom: 10px; }
.stat-item .counter { font-size: 2.5rem; font-weight: 700; }
.stat-item p { font-size: 1rem; opacity: 0.9; }

/* === PROFILE PAGE === */
.profile-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; margin-bottom: 50px; }
.profile-grid img { max-width: 100%; border-radius: 10px; box-shadow: 0 10px 30px var(--shadow-color); }
.leadership-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
.leader-card { background: #fff; text-align: center; padding: 30px; border-radius: 10px; box-shadow: 0 5px 20px var(--shadow-color); }
.leader-card img { width: 150px; height: 150px; border-radius: 50%; object-fit: cover; border: 5px solid var(--accent-color); margin-bottom: 20px; }
.leader-card h4 { font-size: 1.3rem; color: var(--primary-color); }
.leader-card p { color: var(--secondary-color); font-weight: 500; }

/* === SERVICES PAGE === */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.service-card {
    background: #fff; border: 1px solid var(--border-color); border-radius: 10px;
    padding: 30px; display: flex; flex-direction: column; transition: box-shadow 0.3s, border-color 0.3s;
}
.service-card:hover { border-color: var(--secondary-color); box-shadow: 0 10px 30px var(--shadow-color); }
.service-card .icon { font-size: 3rem; color: var(--secondary-color); margin-bottom: 20px; }
.service-card h3 { font-size: 1.5rem; color: var(--primary-color); margin-bottom: 15px; }
.service-card p { flex-grow: 1; }
.service-card .btn-learn-more {
    margin-top: 20px; text-decoration: none; color: var(--primary-color);
    font-weight: 600; align-self: flex-start;
}
.service-card .btn-learn-more i { transition: transform 0.3s; }
.service-card:hover .btn-learn-more i { transform: translateX(5px); }

/* === INFORMATION PAGE (ACCORDION/FAQ) === */
.accordion-item {
    background: #fff; margin-bottom: 10px; border-radius: 8px;
    box-shadow: 0 2px 10px var(--shadow-color); overflow: hidden;
}
.accordion-header {
    width: 100%; background: none; border: none; text-align: left; padding: 20px;
    font-size: 1.1rem; font-weight: 600; color: var(--primary-color);
    cursor: pointer; display: flex; justify-content: space-between; align-items: center;
}
.accordion-header:hover { background-color: #f1f7fe; }
.accordion-content {
    padding: 0 20px; max-height: 0; overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}
.accordion-content p { padding-bottom: 20px; }
.accordion-header .icon { font-size: 1.2rem; transition: transform 0.4s ease; }
.accordion-item.active .accordion-header .icon { transform: rotate(45deg); }

/* === CONTACT PAGE === */
.contact-grid {
    display: grid; grid-template-columns: 1fr 1.5fr; gap: 50px;
    background: #fff; padding: 40px; border-radius: 15px; box-shadow: 0 5px 30px var(--shadow-color);
}
.contact-info-item { display: flex; align-items: center; margin-bottom: 25px; }
.contact-info-item .icon { font-size: 1.8rem; color: var(--secondary-color); margin-right: 20px; width: 40px; }
.contact-form label { display: block; margin-bottom: 8px; font-weight: 600; }
.contact-form .form-group { margin-bottom: 20px; }
.contact-form .form-control {
    width: 100%; padding: 12px; border: 1px solid var(--border-color);
    border-radius: 8px; font-family: 'Poppins', sans-serif; transition: border-color 0.3s, box-shadow 0.3s;
}
.contact-form .form-control:focus {
    outline: none; border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(25, 118, 210, 0.2);
}
.btn-submit {
    width: 100%; padding: 15px; border: none; background-color: var(--primary-color);
    color: white; font-size: 1.1rem; font-weight: 600; border-radius: 8px;
    cursor: pointer; transition: background-color 0.3s;
}
.btn-submit:hover { background-color: #0b3a82; }

/* === ENHANCED FOOTER === */
.site-footer {
    background-color: #0b3a82; color: var(--light-text-color);
    padding: 60px 0 20px 0; margin-top: 60px;
}
.footer-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px; margin-bottom: 40px;
}
.footer-col h4 {
    font-size: 1.2rem; margin-bottom: 20px; color: var(--accent-color);
    position: relative; padding-bottom: 10px;
}
.footer-col h4::after {
    content: ''; position: absolute; left: 0; bottom: 0;
    width: 40px; height: 2px; background-color: var(--secondary-color);
}
.footer-col p, .footer-col ul, .footer-col li {
    font-size: 0.95rem; color: rgba(255, 255, 255, 0.8);
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { color: rgba(255, 255, 255, 0.8); text-decoration: none; transition: color 0.3s, padding-left 0.3s; }
.footer-col ul a:hover { color: var(--accent-color); padding-left: 5px; }
.social-links a {
    display: inline-block; width: 40px; height: 40px; line-height: 40px;
    background-color: rgba(255,255,255,0.1); color: white; margin-right: 10px;
    text-align: center; border-radius: 50%; transition: background-color 0.3s, transform 0.3s;
}
.social-links a:hover { background-color: var(--accent-color); transform: translateY(-3px); }
.footer-bottom {
    text-align: center; padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.2);
}

/* --- Tambahan untuk Hero Slider --- */

.hero-slider-section {
    width: 100%;
    height: 480px; /* Anda bisa sesuaikan tinggi slider di sini */
    margin-bottom: 2rem; /* Jarak antara slider dan konten di bawahnya */
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative; /* Diperlukan untuk overlay */
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ini memastikan gambar menutupi area tanpa distorsi */
}

/* Overlay gelap agar teks (jika ada) lebih mudah dibaca */
.swiper-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 50%);
}

/* Kustomisasi Tombol Navigasi & Paginasi */
.swiper-button-next,
.swiper-button-prev {
    color: var(--accent-color) !important; /* Menggunakan warna aksen kuning */
    background-color: rgba(13, 71, 161, 0.5); /* Latar belakang semi-transparan */
    width: 50px !important;
    height: 50px !important;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
     background-color: rgba(13, 71, 161, 0.8);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 20px !important;
    font-weight: 700;
}

.swiper-pagination-bullet {
    background-color: rgba(255, 255, 255, 0.7) !important;
    width: 10px !important;
    height: 10px !important;
    opacity: 1 !important;
}

.swiper-pagination-bullet-active {
    background-color: var(--accent-color) !important;
    transform: scale(1.2);
}

/* ========================================= */
/* === KHUSUS HALAMAN PROFIL YANG UNIK === */
/* ========================================= */

/* Seksi Quote/Motto */
.motto-section {
    text-align: center;
    padding: 40px 20px;
}

.motto-section blockquote {
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--primary-color);
    border-left: 5px solid var(--accent-color);
    padding-left: 25px;
    display: inline-block;
    max-width: 800px;
    margin: 0 auto;
    font-style: italic;
}

/* Struktur Linimasa Sejarah */
.timeline-section {
    background-color: #eef5ff; /* Biru sangat muda untuk memisahkan seksi */
    padding: 60px 0;
}

.timeline-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

/* Garis vertikal di tengah */
.timeline-container::after {
    content: '';
    position: absolute;
    width: 4px;
    background-color: var(--secondary-color);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
    border-radius: 2px;
}

/* Kontainer untuk setiap item di linimasa */
.timeline-item {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
    opacity: 0;
    animation: fadeInUp 1s ease-out forwards;
}
.timeline-item:nth-child(1) { animation-delay: 0.2s; }
.timeline-item:nth-child(2) { animation-delay: 0.4s; }
.timeline-item:nth-child(3) { animation-delay: 0.6s; }
.timeline-item:nth-child(4) { animation-delay: 0.8s; }


/* Titik di linimasa */
.timeline-item::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    right: -10px;
    background-color: white;
    border: 4px solid var(--accent-color);
    top: 25px;
    border-radius: 50%;
    z-index: 1;
}

/* Item di sebelah kiri */
.timeline-left {
    left: 0;
    padding-right: 30px;
}

/* Item di sebelah kanan */
.timeline-right {
    left: 50%;
    padding-left: 30px;
}

/* Posisikan panah penunjuk (segitiga) */
.timeline-left::before {
    content: " ";
    height: 0;
    position: absolute;
    top: 28px;
    width: 0;
    z-index: 1;
    right: 20px;
    border: medium solid white;
    border-width: 10px 0 10px 10px;
    border-color: transparent transparent transparent white;
}
.timeline-right::before {
    content: " ";
    height: 0;
    position: absolute;
    top: 28px;
    width: 0;
    z-index: 1;
    left: 20px;
    border: medium solid white;
    border-width: 10px 10px 10px 0;
    border-color: transparent white transparent transparent;
}

/* Atur posisi titik untuk item di kanan */
.timeline-right::after {
    left: -10px;
}

/* Konten di dalam item linimasa */
.timeline-content {
    padding: 20px;
    background-color: white;
    position: relative;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.timeline-content h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
}
.timeline-content p {
    font-size: 0.95rem;
}

/* Media Query untuk tampilan di mobile */
@media screen and (max-width: 768px) {
    .timeline-container::after {
        left: 20px;
    }
    .timeline-item {
        width: 100%;
        padding-left: 60px;
        padding-right: 15px;
    }
    .timeline-item::before {
        left: 50px;
        border: medium solid white;
        border-width: 10px 10px 10px 0;
        border-color: transparent white transparent transparent;
    }
    .timeline-left::after, .timeline-right::after {
        left: 10px;
    }
    .timeline-right {
        left: 0%;
    }
}

/* ========================================= */
/* === KHUSUS HALAMAN LAYANAN YANG UNIK === */
/* ========================================= */

/* Sistem Tab */
.tabs-container {
    width: 100%;
    margin: 40px 0;
}

.tab-buttons {
    display: flex;
    border-bottom: 2px solid var(--border-color);
    margin-bottom: 30px;
}

.tab-btn {
    padding: 15px 30px;
    cursor: pointer;
    background: none;
    border: none;
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--secondary-color);
    opacity: 0.7;
    position: relative;
    transition: opacity 0.3s ease;
}

.tab-btn::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--accent-color);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.tab-btn.active {
    opacity: 1;
    color: var(--primary-color);
}

.tab-btn.active::after {
    transform: scaleX(1);
}

.tab-content {
    display: none;
    animation: fadeInUp 0.6s ease-out;
}

.tab-content.active {
    display: block;
}

/* Kartu Layanan Detail */
.detailed-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card-detailed {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 25px var(--shadow-color);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}
.service-card-detailed:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 91, 187, 0.12);
}

.service-card-header {
    display: flex;
    align-items: center;
    padding: 25px;
    background-color: #f1f7fe;
}
.service-card-header .icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-right: 20px;
}
.service-card-header h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin: 0;
}

.service-card-body {
    padding: 25px;
    flex-grow: 1;
}
.service-card-body p {
    margin-bottom: 20px;
}
.service-card-body ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 25px;
}
.service-card-body ul li {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
}
.service-card-body ul li i {
    color: var(--success-color);
    margin-right: 10px;
    margin-top: 5px;
}

.service-card-footer {
    padding: 0 25px 25px 25px;
}
.btn-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
}
.btn-primary:hover {
    background-color: #0b3a82;
}

/* Visualisasi Alur Proses */
.process-flow-section {
    background-color: #fff;
    padding: 60px 0;
    border-radius: 15px;
    margin-top: 60px;
}
.process-flow {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
}
.process-step {
    text-align: center;
    width: 22%;
    position: relative;
}
.process-step .step-number {
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    background-color: var(--accent-color);
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 15px auto;
    border: 4px solid #fff;
    box-shadow: 0 0 0 4px var(--accent-color);
}
.process-step h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 5px;
}
.process-step p {
    font-size: 0.9rem;
}

/* Panah penghubung */
.process-step:not(:last-child)::after {
    content: '\f061';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 25px;
    left: 90%;
    font-size: 1.5rem;
    color: var(--secondary-color);
    opacity: 0.5;
}

/* Responsive untuk alur proses dan tabs */
@media screen and (max-width: 768px) {
    .tab-buttons {
        font-size: 1rem;
    }
    .tab-btn {
        padding: 12px 15px;
        font-size: 1rem;
    }
    .process-flow {
        flex-direction: column;
        align-items: center;
    }
    .process-step {
        width: 80%;
        margin-bottom: 40px;
    }
    .process-step:not(:last-child)::after {
        transform: rotate(90deg);
        top: 110%;
        left: 50%;
        margin-left: -12px;
    }
}

/* =============================================== */
/* === KHUSUS HALAMAN INFORMASI & FAQ YANG UNIK === */
/* =============================================== */

/* Kotak Pencarian FAQ */
.faq-search-container {
    max-width: 800px;
    margin: 0 auto 40px auto;
    position: relative;
}

.faq-search-container .icon {
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    color: var(--secondary-color);
    font-size: 1.2rem;
}

#faqSearch {
    width: 100%;
    padding: 15px 20px 15px 50px;
    font-size: 1.1rem;
    font-family: 'Poppins', sans-serif;
    border: 2px solid var(--border-color);
    border-radius: 50px;
    transition: border-color 0.3s, box-shadow 0.3s;
}

#faqSearch:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 4px rgba(25, 118, 210, 0.2);
}

/* Pustaka Digital */
.pustaka-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.pustaka-item {
    background: #fff;
    border: 1px solid var(--border-color);
    padding: 25px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.pustaka-item:hover {
    transform: translateY(-5px);
    border-color: var(--secondary-color);
    box-shadow: 0 8px 25px var(--shadow-color);
}

.pustaka-item .icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}
.pustaka-item h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 8px;
}
.pustaka-item p {
    font-size: 0.9rem;
    flex-grow: 1;
    margin-bottom: 20px;
}
.btn-download {
    text-decoration: none;
    font-weight: 600;
    color: var(--secondary-color);
    align-self: flex-start;
}
.btn-download i {
    margin-right: 8px;
}

/* Glosarium */
.glosarium-list {
    margin-top: 50px;
    column-count: 2; /* Membuat 2 kolom */
    column-gap: 40px;
}
.glosarium-item {
    margin-bottom: 20px;
    break-inside: avoid-column; /* Mencegah item terpotong antar kolom */
}
.glosarium-item dt {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
}
.glosarium-item dd {
    font-size: 0.95rem;
    padding-left: 10px;
    border-left: 3px solid var(--border-color);
    margin-top: 5px;
}

/* Responsive untuk Glosarium */
@media screen and (max-width: 768px) {
    .glosarium-list {
        column-count: 1;
    }
}

/* ========================================= */
/* === KHUSUS HALAMAN KONTAK YANG UNIK === */
/* ========================================= */

/* Split Hero Section */
.split-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    height: 400px;
    margin-bottom: 60px;
}
.split-hero-text {
    background-color: var(--primary-color);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 50px;
    animation: fadeInUp 1s ease-out;
}
.split-hero-text h1 {
    font-size: 3rem;
    font-weight: 700;
}
.split-hero-text p {
    font-size: 1.2rem;
    opacity: 0.9;
}
.split-hero-image {
    background-image: url('/img/kontak.jpg');
    background-size: cover;
    background-position: center;
}

/* Kartu Saluran Komunikasi */
.contact-channels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}
.channel-card {
    background: var(--card-bg-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 25px var(--shadow-color);
    text-align: center;
    border-top: 5px solid var(--accent-color);
    transition: transform 0.3s, box-shadow 0.3s;
}
.channel-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}
.channel-card .icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}
.channel-card h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 15px;
}
.channel-card p {
    font-size: 1rem;
    color: var(--text-color);
    font-weight: 500;
}
.channel-card a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
}

/* Grid untuk Lokasi & Form */
.location-form-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: flex-start;
}
.location-details ul {
    list-style: none;
    padding: 0;
}
.location-details ul li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    font-size: 1rem;
}
.location-details ul li .icon {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-right: 20px;
    width: 25px;
    text-align: center;
    margin-top: 3px;
}
/* Placeholder Peta */
.map-placeholder {
    height: 250px;
    border-radius: 10px;
    background-image: url('https://www.map-generator.net/maps/2d_37.4988,14.7679_6_300_400_ff0000_212121_9e9e9e_dcdcdc.jpg'); /* Ganti dengan screenshot peta lokasi Anda */
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    margin-top: 30px;
}
.map-placeholder a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(13, 71, 161, 0.7);
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.map-placeholder:hover a {
    opacity: 1;
}

/* Responsive */
@media screen and (max-width: 992px) {
    .split-hero {
        grid-template-columns: 1fr;
        height: auto;
    }
    .split-hero-image {
        height: 250px;
    }
    .location-form-grid {
        grid-template-columns: 1fr;
    }
}