/* Import Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* Pilihan 1: Maritim Profesional */
:root {
    --primary-color: #0B4F6C;
    --accent-color: #FF6F61;
    --background-color: #FFFFFF;
    --section-bg-color: #F7F9F9;
    --text-color: #5a6470;
    --heading-color: #3A4042;
    --border-color: #dee2e6;
    --footer-bg-color: #042A3E;
    --footer-text-color: #adb5bd;
    --primary-color-rgb: 11, 79, 108;
}

/* Reset & Pengaturan Global */
* { 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.8;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.container { max-width: 1140px; margin: 0 auto; padding: 0 20px; }

/* Header & Navigasi Final - OPSI 1: BERWIBAWA */
.main-header {
    background-color: var(--primary-color);
    padding: 1.25rem 0;
    box-shadow: 0 2px 12px rgba(0,0,0,0.1);
    position: sticky; top: 0; z-index: 1000;
    border-bottom: 2px solid var(--accent-color); /* Aksen emas/oranye di bawah */
}
.main-header .container { display: flex; justify-content: space-between; align-items: center; }

/* Logo di header gelap */
.logo-container { display: flex; align-items: center; text-decoration: none; color: #FFFFFF; }
.logo { height: 40px; margin-right: 35px; transform: scale(2.2);}
.logo-text {
  display: flex;
  align-items: baseline;
  font-family: 'Poppins', sans-serif; /* Optional: Google Fonts */
}

.logo-text span:first-child {
  font-weight: 600;
  font-size: 1.35rem;
  color: #ffffff;
  letter-spacing: 0.3px;
  margin-right: 4px;
}

.logo-text span:last-child {
  font-weight: 400;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.5px;
  position: relative;
  top: 1px;
}


/* Navigasi di header gelap */
.main-nav ul { display: flex; list-style: none; gap: 1rem; }
.main-nav a {
    text-decoration: none;
    color: rgba(255,255,255,0.85); /* Teks putih transparan */
    font-weight: 500;
    padding: 0.75rem 1rem;
    position: relative;
    transition: color 0.3s ease;
}
.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 5px; left: 50%;
    transform: translateX(-50%);
    width: 0; height: 2px;
    background-color: var(--accent-color);
    transition: width 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}
.main-nav a:hover, .main-nav a.active { color: #FFFFFF; } /* Teks putih solid saat aktif/hover */
.main-nav a:hover::after, .main-nav a.active::after { width: 50%; }

/* Tombol hamburger di header gelap */
.menu-toggle { display: none; background: none; border: none; cursor: pointer; color: #FFFFFF; }


/* Slider */
@keyframes kenburns { 0% { transform: scale(1); } 100% { transform: scale(1.1); } }
.slider-container { position: relative; width: 100%; height: 75vh; max-height: 650px; overflow: hidden; background-color: #222; }
.slider-container::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(90deg, rgba(var(--primary-color-rgb), 0.5) 0%, rgba(var(--primary-color-rgb), 0.1) 60%, transparent 100%); z-index: 1; }
.slide { position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: 0; transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1); }
.slide.active { opacity: 1; z-index: 2; }
.slide img { width: 100%; height: 100%; object-fit: cover; }
.slide.active img { animation: kenburns 12s ease-out forwards; }
.slide-caption {
    position: absolute;
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
    width: 45%;
    max-width: 550px;
    color: #fff;
    z-index: 5;
    
    /* --- PENAMBAHAN UNTUK KETERBACAAN TEKS --- */
    background: rgba(var(--primary-color-rgb), 0.75); /* Latar belakang semi-transparan */
    padding: 2.5rem; /* Memberi nafas pada teks */
    border-radius: 8px; /* Sudut lebih lembut */
    border-left: 4px solid var(--accent-color); /* Aksen tetap ada */
    backdrop-filter: blur(5px); /* Efek blur modern di belakang kotak */
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2); /* Bayangan halus */
}

/* Kita juga tambahkan sedikit bayangan pada teks untuk efek maksimal */
.slide-caption h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3); /* Bayangan teks */
}

.slide-caption p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 90%;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3); /* Bayangan teks */
}
.slide.active .slide-caption h2, .slide.active .slide-caption p, .slide.active .slide-caption .cta-button { opacity: 1; transform: translateY(0); }
.slide.active .slide-caption h2 { transition-delay: 0.5s; }
.slide.active .slide-caption p { transition-delay: 0.7s; }
.slide.active .slide-caption .cta-button { transition-delay: 0.9s; }
.slider-controls { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 20; display: flex; align-items: center; gap: 1.5rem; background: rgba(0, 0, 0, 0.3); padding: 0.5rem 1.5rem; border-radius: 50px; }
.slider-button { background: none; border: none; color: rgba(255, 255, 255, 0.7); font-size: 1.5rem; cursor: pointer; transition: color 0.3s ease; }
.slider-button:hover { color: #fff; }
.slider-nav { display: flex; align-items: center; gap: 1rem; }
.nav-indicator { font-size: 1rem; font-weight: 500; color: rgba(255, 255, 255, 0.6); cursor: pointer; transition: color 0.3s ease; }
.nav-indicator.active, .nav-indicator:hover { color: #fff; }
.slider-progress { position: absolute; bottom: 0; left: 0; width: 100%; height: 4px; background-color: rgba(255, 255, 255, 0.2); z-index: 15; }
.progress-bar { width: 0%; height: 100%; background-color: var(--accent-color); }

/* Seksi Konten */
.content-section { padding: 6rem 0; opacity: 0; transform: translateY(50px); transition: opacity 0.8s ease-out, transform 0.8s ease-out; }
.content-section.is-visible { opacity: 1; transform: translateY(0); }
.content-section:nth-of-type(odd) { background-color: var(--section-bg-color); }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-tagline { color: var(--primary-color); font-weight: 600; letter-spacing: 1.5px; }
.section-title { font-size: 2.8rem; font-weight: 700; color: var(--heading-color); margin-top: 0.5rem; }

/* Seksi Layanan */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; }
.service-card { text-align: center; padding: 2.5rem; background-color: #fff; border: 1px solid var(--border-color); border-radius: 8px; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.service-card:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(var(--primary-color-rgb), 0.1); }
.service-icon { display: inline-flex; justify-content: center; align-items: center; width: 60px; height: 60px; background-color: rgba(var(--primary-color-rgb), 0.1); border-radius: 50%; margin-bottom: 1.5rem; color: var(--primary-color); }
.service-icon svg { width: 28px; height: 28px; }
.service-card h3 { font-size: 1.4rem; color: var(--heading-color); margin-bottom: 0.75rem; }

/* Seksi Split */
.split-section .container { display: flex; align-items: center; gap: 4rem; }
.split-section.reverse .container { flex-direction: row-reverse; }
.split-image { flex: 1; position: relative; }
.split-image::before { content: ''; position: absolute; top: -20px; left: -20px; width: 100%; height: 100%; background-image: radial-gradient(var(--border-color) 1.5px, transparent 1.5px); background-size: 20px 20px; z-index: -1; opacity: 0.5; border-radius: 8px; }
.split-section.reverse .split-image::before { left: auto; right: -20px; }
.split-image img { width: 100%; border-radius: 8px; box-shadow: 0 20px 40px rgba(var(--primary-color-rgb), 0.15); }
.split-content { flex: 1; }
.split-content .section-tagline, .split-content .section-title { text-align: left; }
.split-content h3 { font-size: 1.3rem; color: var(--primary-color); margin-top: 1.5rem; margin-bottom: 0.5rem; }
.split-content .cta-button.secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    margin-top: 1.5rem; /* Tambahkan margin-top */
    display: inline-block; /* Pastikan dia inline-block */
}

.checklist { list-style: none; padding-left: 0; margin: 2rem 0; }
.checklist li { display: flex; align-items: flex-start; margin-bottom: 1rem; font-size: 1.05rem; }
.checklist-icon { display: inline-flex; margin-right: 0.75rem; flex-shrink: 0; width: 24px; height: 24px; background-color: var(--accent-color); color: #fff; border-radius: 50%; padding: 4px; }
.checklist-icon svg { fill: currentColor; }

/* Tombol CTA */
.cta-button, .cta-button.secondary { padding: 14px 32px; font-size: 0.95rem; border-radius: 50px; text-transform: uppercase; letter-spacing: 0.5px; transition: all 0.3s ease; }
.cta-button { background-color: var(--accent-color); color: #fff; }
.cta-button:hover { background-color: #ff8a80; transform: translateY(-3px); box-shadow: 0 5px 15px rgba(255, 111, 97, 0.3); }
.cta-button.secondary { background-color: transparent; color: var(--primary-color); border: 2px solid var(--primary-color); }
.cta-button.secondary:hover { background-color: var(--primary-color); color: #fff; box-shadow: 0 5px 15px rgba(var(--primary-color-rgb), 0.2); }

/* Footer */
.main-footer { background-color: var(--footer-bg-color); color: var(--footer-text-color); padding: 4rem 0 2rem 0; }
.footer-content { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 2rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
.footer-about .logo-container { margin-bottom: 1.5rem; color: #fff; }
.footer-address { line-height: 1.6; }
.footer-social h3 { font-size: 1.1rem; color: #fff; margin-bottom: 1rem; }
.social-links { display: flex; gap: 1rem; }
.social-links a { display: inline-flex; justify-content: center; align-items: center; width: 40px; height: 40px; background-color: rgba(255, 255, 255, 0.1); color: #fff; border-radius: 50%; transition: background-color 0.3s ease; }
.social-links a:hover { background-color: var(--accent-color); }
.social-links svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2; }
.footer-bottom { text-align: center; padding-top: 2rem; font-size: 0.9rem; }

/* Media Queries (Responsive) */
@media (max-width: 992px) {
    .services-grid { grid-template-columns: 1fr 1fr; }
    .split-section .container { gap: 2rem; }
}
@media (max-width: 768px) {
    .main-nav { position: absolute; /* ... */ }
    .slide-caption { width: 90%; }
    .section-title { font-size: 2rem; }
    .services-grid, .split-section .container { grid-template-columns: 1fr; flex-direction: column; }
    .split-section.reverse .container { flex-direction: column; }
    .split-image::before { display: none; }
    .split-content .section-tagline, .split-content .section-title { text-align: center; }
    .footer-content { flex-direction: column; text-align: center; align-items: center; }
}

/* ================================================== */
/* === GAYA FINAL UNTUK HALAMAN LAYANAN (POLISHED) === */
/* ================================================== */

/* Animasi Masuk untuk Judul Halaman */
@keyframes fadeInSlideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Banner Halaman yang Disempurnakan */
.page-hero {
    background: linear-gradient(rgba(var(--primary-color-rgb), 0.7), rgba(var(--primary-color-rgb), 0.7)), url('/img/banner-layanan.jpg') no-repeat center center/cover;
    color: #fff;
    padding: 6rem 0;
    text-align: center;
    overflow: hidden; /* Mencegah elemen animasi keluar batas */
}
.page-hero h1 {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    animation: fadeInSlideUp 0.8s 0.3s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    opacity: 0; /* Mulai dari transparan */
}
.page-hero p {
    font-size: 1.15rem;
    max-width: 700px;
    margin: 0 auto;
    animation: fadeInSlideUp 0.8s 0.5s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    opacity: 0; /* Mulai dari transparan */
}

/* Kartu Layanan Detail (Sama seperti sebelumnya) */
.services-detail .service-card { display: flex; flex-direction: column; height: 100%; }
.services-detail .service-card p { flex-grow: 1; }
.details-link { margin-top: 1.5rem; color: var(--primary-color); font-weight: 600; text-decoration: none; transition: color 0.3s ease; }
.details-link span { transition: transform 0.3s ease; display: inline-block; }
.details-link:hover { color: var(--accent-color); }
.details-link:hover span { transform: translateX(5px); }

/* ================================================== */
/* === KODE FINAL ALUR PELAYANAN (BERSIH) === */
/* ================================================== */

/* Transformasi Alur Pelayanan (Struktur Unik) */
.service-flow {
    background-color: var(--section-bg-color);
}
.flow-steps {
    display: grid;
    /* LOGIKA FINAL: Otomatis menyesuaikan jumlah kolom berdasarkan ruang yang tersedia */
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    position: relative;
}
.flow-step {
    text-align: center;
    padding: 2rem;
    background-color: #fff;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.flow-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(var(--primary-color-rgb), 0.08);
}

/* Pastikan kode untuk garis penghubung ::after SUDAH DIHAPUS */

.step-number {
    position: absolute;
    top: -10px;
    left: 10px;
    font-size: 3rem;
    font-weight: 700;
    color: rgba(var(--primary-color-rgb), 0.08);
    z-index: 0;
}
.step-icon {
    position: relative;
    z-index: 1;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), #3c699e);
    border-radius: 50%;
    margin-bottom: 1.5rem;
    color: #fff;
    box-shadow: 0 5px 15px rgba(var(--primary-color-rgb), 0.3);
}
.step-icon svg { width: 32px; height: 32px; }
.flow-step h4 { font-size: 1.25rem; color: var(--heading-color); margin-bottom: 0.5rem; position: relative; z-index: 1; }
.flow-step p { position: relative; z-index: 1; }


/* Penyesuaian Responsif untuk Halaman Layanan */
/* Pastikan TIDAK ADA @media (max-width: 992px) di sini */

@media (max-width: 768px) {
    /* Untuk HP, kita tetap paksa menjadi 1 kolom agar rapi */
    .flow-steps {
        grid-template-columns: 1fr;
    }
}

.step-number {
    position: absolute;
    top: -10px;
    left: 10px;
    font-size: 3rem;
    font-weight: 700;
    color: rgba(var(--primary-color-rgb), 0.08);
    z-index: 0;
}
.step-icon {
    position: relative; /* Agar di atas nomor */
    z-index: 1;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), #3c699e);
    border-radius: 50%;
    margin-bottom: 1.5rem;
    color: #fff;
    box-shadow: 0 5px 15px rgba(var(--primary-color-rgb), 0.3);
}
.step-icon svg { width: 32px; height: 32px; }
.flow-step h4 { font-size: 1.25rem; color: var(--heading-color); margin-bottom: 0.5rem; position: relative; z-index: 1; }
.flow-step p { position: relative; z-index: 1; }


/* Penyesuaian Responsif untuk Halaman Layanan */
/* KODE @media untuk 992px SUDAH DIHAPUS */

@media (max-width: 768px) {
    /* Untuk HP, kita tetap paksa menjadi 1 kolom agar rapi */
    .flow-steps {
        grid-template-columns: 1fr;
    }
}


/* Tanya Jawab (FAQ) yang disempurnakan */
.faq-section {
    background-color: #fff;
}
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border-color); }
.faq-question {
    width: 100%; background: none; border: none;
    display: flex; justify-content: space-between; align-items: center;
    padding: 1.5rem 1rem;
    font-family: 'Poppins', sans-serif; font-size: 1.15rem; font-weight: 500;
    color: var(--heading-color);
    text-align: left;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.faq-question:hover {
    background-color: var(--section-bg-color);
}
.faq-icon {
    color: var(--primary-color);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.25, 1, 0.5, 1), padding 0.5s ease;
    font-size: 1rem;
}
.faq-answer p {
    padding: 0 1rem 1.5rem 1rem;
    border-top: 1px dashed var(--border-color);
    padding-top: 1.5rem;
}
.faq-item.active .faq-question {
    color: var(--primary-color);
}
.faq-item.active .faq-answer { max-height: 200px; }
.faq-item.active .faq-icon { transform: rotate(180deg); color: var(--accent-color); }

/* Ajakan Bertindak (CTA) dengan Tekstur */
.cta-section {
    background-color: var(--primary-color);
    background-image:
        linear-gradient(45deg, rgba(255, 255, 255, 0.03) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(255, 255, 255, 0.03) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, rgba(255, 255, 255, 0.03) 75%),
        linear-gradient(-45deg, transparent 75%, rgba(255, 255, 255, 0.03) 75%);
    background-size: 20px 20px;
    color: #fff;
    padding: 5rem 0;
    text-align: center;
}
.cta-section h2 { font-size: 2.5rem; margin-bottom: 1rem; }
.cta-section p { max-width: 600px; margin: 0 auto 2.5rem auto; opacity: 0.9; }
.cta-section .cta-button:hover { background-color: #fff; color: var(--primary-color); }


/* Penyesuaian Responsif untuk Halaman Layanan */
@media (max-width: 992px) {
    .flow-steps { grid-template-columns: repeat(2, 1fr); }
    .flow-step:nth-child(2)::after { display: none; } /* Sembunyikan garis setelah step ke-2 */
}
@media (max-width: 768px) {
    .page-hero h1 { font-size: 2.2rem; }
    .flow-steps { grid-template-columns: 1fr; }
    .flow-step::after { display: none; } /* Sembunyikan semua garis di mobile */
}

/* ======================================= */
/* === GAYA UNTUK HALAMAN INTEGRITAS    === */
/* ======================================= */

/* Hero Section Halaman Integritas */
.integrity-hero {
    background: linear-gradient(rgba(var(--primary-color-rgb), 0.8), rgba(var(--primary-color-rgb), 0.8)), url('/img/banner-integritas.jpg') no-repeat center center/cover;
}

/* Pilar Integritas */
.integrity-pillars {
    background-color: var(--background-color);
}
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
.pillar-card {
    text-align: center;
    padding: 2.5rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background-color: #fff;
}
.pillar-icon {
    margin: 0 auto 1.5rem auto;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
}
.pillar-icon svg {
    width: 32px;
    height: 32px;
    stroke-width: 2;
    fill: none;
    stroke: currentColor;
}
.pillar-icon.style-1 { background: var(--primary-color); }
.pillar-icon.style-2 { background: var(--accent-color); }
.pillar-icon.style-3 { background: #FFC107; } /* Warna Kuning Emas baru */

.pillar-card h3 {
    font-size: 1.4rem;
    color: var(--heading-color);
    margin-bottom: 0.75rem;
}

/* Seksi Penghargaan (Recognition) */
.recognition-section {
    background-color: var(--section-bg-color);
    padding: 5rem 0;
}
.recognition-content {
    background-color: #fff;
    border-radius: 8px;
    padding: 3rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.recognition-logo {
    max-height: 100px;
    margin-bottom: 2rem;
    transform: scale(2.0);
}
.recognition-content h2 {
    font-size: 2.2rem;
    color: var(--heading-color);
    margin-bottom: 1rem;
}

/* Zona Tolak Gratifikasi */
.gratification-zone {
    background-color: var(--primary-color);
    color: #fff;
    padding: 5rem 0;
    text-align: center;
}
.gratification-zone svg {
    width: 80px;
    height: 80px;
    stroke: var(--accent-color);
    stroke-width: 2;
    margin-bottom: 2rem;
}
.gratification-zone h2 {
    font-size: 2.5rem;
    max-width: 600px;
    margin: 0 auto 1rem auto;
}
.gratification-zone p {
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Seksi WBS (Whistleblowing System) */
.wbs-section {
    background-color: #fff;
}
.wbs-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}
.wbs-text, .wbs-image {
    flex: 1;
}
.wbs-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}
.wbs-text .section-title, .wbs-text .section-tagline {
    text-align: left;
}

/* Penyesuaian Responsif untuk Halaman Integritas */
@media (max-width: 768px) {
    .wbs-content {
        flex-direction: column;
    }
    .wbs-text .section-title, .wbs-text .section-tagline {
        text-align: center;
    }
    .gratification-zone h2, .recognition-content h2 {
        font-size: 2rem;
    }
}

/* ======================================= */
/* === GAYA UNTUK HALAMAN PROFIL        === */
/* ======================================= */

/* Hero Section Halaman Profil */
.profile-hero {
    background: linear-gradient(rgba(var(--primary-color-rgb), 0.75), rgba(var(--primary-color-rgb), 0.75)), url('/img/banner-profil.jpg') no-repeat center center/cover;
}

/* Seksi Visi Misi */
.vision-mission-section {
    background-color: var(--section-bg-color);
}
.vision-mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
.vm-card {
    background-color: #fff;
    padding: 2.5rem;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}
.vm-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    border-radius: 50%;
    margin-bottom: 1.5rem;
    color: #fff;
}
.vm-icon svg { width: 28px; height: 28px; stroke: currentColor; fill: none; }
.vm-card h3 { font-size: 1.5rem; color: var(--heading-color); margin-bottom: 0.5rem; }

/* Timeline Sejarah */
.timeline-section { background-color: #fff; }
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}
.timeline::after {
    content: '';
    position: absolute;
    width: 3px;
    background-color: var(--border-color);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1.5px;
}
.timeline-item {
    padding: 1rem 3rem;
    position: relative;
    background-color: inherit;
    width: 50%;
}
.timeline-item::after { /* Titik pada timeline */
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    right: -10px;
    background-color: #fff;
    border: 4px solid var(--accent-color);
    top: 30px;
    border-radius: 50%;
    z-index: 1;
}
.timeline-item:nth-child(odd) { left: 0; }
.timeline-item:nth-child(even) { left: 50%; }
.timeline-item:nth-child(even)::after { left: -10px; }
.timeline-content {
    padding: 1.5rem;
    background-color: var(--section-bg-color);
    position: relative;
    border-radius: 6px;
    border-left: 4px solid var(--primary-color);
}
.timeline-content h3 { color: var(--primary-color); }

/* Profil Pimpinan */
.leader-profile-section { background-color: var(--section-bg-color); }
.leader-profile {
    display: flex;
    align-items: center;
    gap: 3rem;
    background-color: #fff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.leader-photo {
    flex-shrink: 0;
}
.leader-photo img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid var(--primary-color);
}
.leader-info .section-title, .leader-info .section-tagline { text-align: left; }
.leader-info .quote {
    font-size: 1.1rem;
    font-style: italic;
    border-left: 3px solid var(--accent-color);
    padding-left: 1.5rem;
    margin: 1.5rem 0;
}
.leader-name { font-weight: 700; font-size: 1.2rem; color: var(--heading-color); }
.leader-title { font-size: 1rem; color: var(--text-color); }

/* Nilai-Nilai Kemenkeu */
.values-section { background-color: #fff; }
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
}
.value-card { text-align: center; }
.value-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 1rem auto;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.value-card:hover .value-icon {
    transform: scale(1.1);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}
.value-card span { font-size: 1.1rem; font-weight: 600; color: var(--heading-color); }
.value-icon.c1 { background: #0B4F6C; } /* Integritas - Biru */
.value-icon.c2 { background: #FF6F61; } /* Profesionalisme - Oranye */
.value-icon.c3 { background: #00A896; } /* Sinergi - Hijau Tosca */
.value-icon.c4 { background: #FFC107; } /* Pelayanan - Kuning */
.value-icon.c5 { background: #7A63FF; } /* Kesempurnaan - Ungu */

/* Responsif untuk halaman profil */
@media (max-width: 768px) {
    .timeline::after { left: 15px; }
    .timeline-item { width: 100%; padding-left: 50px; padding-right: 1rem; }
    .timeline-item:nth-child(even) { left: 0; }
    .timeline-item::after { left: 5px; }
    .leader-profile { flex-direction: column; text-align: center; }
    .leader-info .section-title, .leader-info .section-tagline { text-align: center; }
    .leader-info .quote { border: none; border-top: 3px solid var(--accent-color); padding: 1.5rem 0 0 0;}
}

/* ======================================= */
/* === GAYA UNTUK HALAMAN KONTAK        === */
/* ======================================= */

/* Hero Section Halaman Kontak */
.contact-hero {
    background: linear-gradient(rgba(var(--primary-color-rgb), 0.7), rgba(var(--primary-color-rgb), 0.7)), url('/img/banner-kontak.jpg') no-repeat center center/cover;
}

/* Kartu Info Kontak */
.contact-info-section {
    background-color: var(--section-bg-color);
}
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
.contact-card {
    background-color: #fff;
    padding: 2.5rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.04);
    border-top: 4px solid transparent;
    transition: transform 0.3s ease, border-top-color 0.3s ease;
}
.contact-card:hover {
    transform: translateY(-5px);
}
.contact-card .contact-icon {
    margin: 0 auto 1.5rem auto;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
}
.contact-card .contact-icon.style-1 { background-color: var(--primary-color); }
.contact-card:hover .contact-icon.style-1 { border-color: var(--primary-color); }

.contact-card .contact-icon.style-2 { background-color: var(--accent-color); }
.contact-card:hover .contact-icon.style-2 { border-color: var(--accent-color); }

.contact-card .contact-icon.style-3 { background-color: #FFC107; }
.contact-card:hover .contact-icon.style-3 { border-color: #FFC107; }

.contact-icon svg { width: 28px; height: 28px; stroke: currentColor; fill: none; stroke-width: 2; }
.contact-card h3 { font-size: 1.3rem; color: var(--heading-color); margin-bottom: 0.5rem; }

/* Peta dan Formulir */
.map-form-section {
    background-color: #fff;
}
.map-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: flex-start;
}
.map-container {
    border-radius: 8px;
    overflow: hidden;
    height: 100%;
    min-height: 500px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}
.contact-form .form-group {
    margin-bottom: 1.5rem;
}
.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--heading-color);
}
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(var(--primary-color-rgb), 0.15);
}
.contact-form .cta-button {
    width: 100%;
    border: none;
    cursor: pointer;
}

/* Responsif untuk Halaman Kontak */
@media (max-width: 992px) {
    .map-form-grid {
        grid-template-columns: 1fr;
    }
    .map-container {
        min-height: 350px;
        margin-bottom: 2rem;
    }
}