/* Import Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;700&display=swap');

/* ======================= PENGATURAN DASAR & BODY ======================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #02040a; /* Warna dasar biru sangat gelap */
    color: #e0e0e0;
    overflow-x: hidden; /* Mencegah scroll horizontal */
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ======================= HEADER & NAVIGASI UTAMA ======================= */
.main-header {
    width: 100%;
    background: #02040a88; /* Latar belakang transparan dengan sedikit warna */
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(0, 191, 255, 0.2);
    padding: 1rem 0;
    position: sticky; /* Membuat navigasi menempel di atas saat scroll */
    top: 0;
    z-index: 1000;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

    .logo-container {
        display: flex; /* Ini adalah perintah kuncinya! */
        align-items: center; /* Membuat logo dan teks sejajar di tengah secara vertikal */
        gap: 23px; /* Memberi jarak 15px antara logo dan teks */
        
        /* Hiasan tambahan agar terlihat seperti contoh Anda */
        background-color: #121212;
        padding: 20px;
        border-radius: 8px;
        display: inline-flex; /* Agar background membungkus kontennya saja */
        margin-left: -90px;
        
    }

    /* Style untuk gambar logo */
    .logo-img {
        height: 50px; /* Atur tinggi logo */
        width: auto;  /* Lebar akan menyesuaikan */
        transform: scale(1.5);
    }

    /* Style untuk tulisan */
    .logo-text {
        font-family: sans-serif;
        font-size: 22px;
        color: white;
        font-weight: 500;
        color: #ffffff; 
        text-shadow: 0 0 15px rgba(0, 191, 255, 0.9);
    }

.logo img {
    height: 45px; /* Sesuaikan tinggi logo */
    transition: transform 0.3s ease;
}
.logo img:hover {
    transform: scale(1.05);
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.main-nav ul li a {
    text-decoration: none;
    color: #e0e0e0;
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.main-nav ul li a:hover {
    color: #ffffff;
    text-shadow: 0 0 8px rgba(0, 191, 255, 0.8);
}

/* Garis bawah animasi pada menu */
.main-nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0%;
    height: 2px;
    background-color: #00bfff;
    transition: width 0.4s ease;
}

.main-nav ul li a:hover::after {
    width: 100%;
}

/* ======================= BANNER ======================= */
.banner-wrapper {
    width: 100%;
    height: 450px; /* Tinggi banner */
    background: #0a0c10;
    position: relative;
}

.banner {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Gambar menutupi area tanpa distorsi */
    opacity: 0.5; /* Membuat gambar lebih gelap */
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, #02040a 0%, transparent 70%); /* Efek gradien dari bawah */
}

.banner-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    width: 90%;
}

.banner-text h2 {
    font-size: 3rem;
    font-weight: 700;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.7);
}

.banner-text p {
    font-size: 1.2rem;
    font-weight: 300;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.7);
    margin-top: 0.5rem;
}

/* ======================= KONTEN UTAMA & GRID LAYANAN ======================= */
.main-container {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.page-header {
    text-align: center;
    margin-bottom: 3rem;
}

.page-header h1 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 0 15px rgba(0, 191, 255, 0.7);
}

.page-header .subtitle {
    font-size: 1.1rem;
    color: #87ceeb; /* Sky Blue */
    max-width: 600px;
    margin: 0.5rem auto 0;
}

.navigation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

/* Kartu Navigasi (Efek Glassmorphism) */
.nav-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    text-align: left;
    text-decoration: none;
    color: #e0e0e0;
    transition: all 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
}

.nav-card:hover {
    transform: translateY(-12px) scale(1.02);
    background: rgba(0, 191, 255, 0.1);
    border-color: rgba(0, 191, 255, 0.5);
    box-shadow: 0 15px 40px rgba(0, 191, 255, 0.2);
}

/* Efek kilatan cahaya saat hover */
.nav-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 70%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: skewX(-30deg);
    transition: left 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.nav-card:hover::before {
    left: 120%;
}

.nav-card .nav-title {
    display: block;
    font-size: 1.5rem;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.nav-card .nav-description {
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.5;
}

/* ======================= FOOTER ======================= */
.page-footer {
    width: 100%;
    text-align: center;
    padding: 2rem 0;
    margin-top: 2rem;
    border-top: 1px solid rgba(0, 191, 255, 0.2);
    background: #02040a;
}
.page-footer p {
    color: #888;
    font-size: 0.9rem;
}

/* ======================= RESPONSIVE (MOBILE) ======================= */
@media (max-width: 768px) {
    .container { padding: 0 1rem; }
    
    .main-nav { flex-direction: column; gap: 1rem; }
    
    .banner-wrapper { height: 300px; }
    .banner-text h2 { font-size: 1.8rem; }
    .banner-text p { font-size: 1rem; }

    .page-header h1 { font-size: 2.2rem; }
}


/* ======================= STYLE UNTUK SEKSI FITUR/KEUNGGULAN ======================= */
.feature-section {
    width: 100%;
    padding: 4rem 0;
    background-color: #040811; /* Sedikit berbeda untuk memisahkan seksi */
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-item {
    background: linear-gradient(145deg, #1e2a53, #111829);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(0, 191, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.feature-icon {
    font-size: 3rem;
    color: #00bfff;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 15px rgba(0, 191, 255, 0.7);
}

.feature-item h3 {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.feature-item p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #c0c0c0;
}

/* ======================= STYLE UNTUK SEKSI INTEGRITAS (ANTI CALO & KORUPSI) ======================= */
.integrity-section {
    width: 100%;
    padding: 5rem 0;
    background: radial-gradient(circle at top, #1a0a0a, #02040a 70%); /* Latar belakang dengan nuansa merah gelap */
}

.integrity-section .page-header h1 {
    color: #ff4d4d; /* Warna merah sebagai peringatan */
    text-shadow: 0 0 15px rgba(255, 77, 77, 0.7);
}

.integrity-content {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.integrity-warning, .integrity-report {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 77, 77, 0.4);
    padding: 2rem;
    border-radius: 15px;
    height: 100%;
}

.warning-icon {
    font-size: 4rem;
    text-align: center;
    margin-bottom: 1.5rem;
    color: #ff4d4d;
}

.integrity-warning h3 {
    text-align: center;
    font-size: 1.6rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.integrity-warning p {
    text-align: center;
    line-height: 1.7;
    color: #c0c0c0;
}

.integrity-report h3 {
    font-size: 1.6rem;
    color: #87ceeb; /* Warna biru untuk kontras */
    margin-bottom: 1rem;
}

.integrity-report p {
    line-height: 1.7;
    color: #c0c0c0;
    margin-bottom: 1.5rem;
}

.report-details {
    background-color: rgba(0, 191, 255, 0.1);
    border-radius: 10px;
    padding: 1rem;
    border: 1px solid rgba(0, 191, 255, 0.2);
}

.report-details p {
    margin-bottom: 0.5rem;
    font-size: 1rem;
    color: #ffffff;
}

.report-details p:last-child {
    margin-bottom: 0;
}

/* Penyesuaian responsive untuk seksi integritas */
@media (max-width: 768px) {
    .integrity-content {
        grid-template-columns: 1fr; /* Stack di mobile */
    }
}

/* ======================= STYLE UNTUK SEKSI ALUR PERMOHONAN (VERSI UPGRADE) ======================= */
.flow-section {
    width: 100%;
    padding: 5rem 0;
    /* Menambahkan gradien radial untuk fokus cahaya di tengah */
    background: radial-gradient(ellipse at center, #0e1a30 0%, #02040a 75%);
}

.flow-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem; /* Memberi sedikit lebih banyak ruang */
    margin-top: 4rem;
    position: relative;
}

.flow-step {
    /* Mengganti background solid dengan gradien dan efek kaca */
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    
    padding: 2.5rem;
    padding-left: 3.5rem;
    border-radius: 15px; /* Membuat sudut lebih modern */
    position: relative;
    
    /* Mengganti border solid dengan border-image gradien yang glowing */
    border: 2px solid transparent;
    border-image-slice: 1;
    border-image-source: linear-gradient(to bottom, rgba(0, 191, 255, 0.5), rgba(0, 191, 255, 0.1));

    /* Transisi untuk semua animasi agar halus */
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* EFEK HOVER (Saat kursor di atas kotak) */
.flow-step:hover {
    transform: translateY(-12px) scale(1.03);
    background: linear-gradient(135deg, rgba(0, 191, 255, 0.15), rgba(0, 191, 255, 0.05));
    border-image-source: linear-gradient(to bottom, #87ceeb, #00bfff); /* Border lebih terang saat hover */
    box-shadow: 0 15px 40px rgba(0, 191, 255, 0.2);
}

.step-number {
    position: absolute;
    left: -25px;
    top: 2.5rem; /* Menyesuaikan posisi */
    width: 50px;
    height: 50px;
    background-color: #00bfff;
    color: #02040a;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 0 20px rgba(0, 191, 255, 0.6);
    /* Transisi untuk animasi pada nomor */
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Nomor akan sedikit berputar dan bersinar saat kotak di-hover */
.flow-step:hover .step-number {
    transform: scale(1.15) rotate(15deg);
    box-shadow: 0 0 30px #00bfff;
}

.flow-step h3 {
    font-size: 1.6rem; /* Sedikit lebih besar */
    color: #ffffff;
    margin-bottom: 0.75rem;
    transition: color 0.4s ease;
}

/* Judul akan berubah warna saat di-hover */
.flow-step:hover h3 {
    color: #87ceeb; /* Sky blue */
}

.flow-step p {
    line-height: 1.7;
    color: #c0c0c0;
    font-size: 0.95rem;
}

/* =================================================================== */
/* === STYLE KHUSUS UNTUK HALAMAN DETAIL LAYANAN (SEPERTI PASPOR) === */
/* =================================================================== */

/* Hero Section di Atas Halaman */
.page-hero {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1d2b64, #0a0c10);
    text-align: center;
    border-bottom: 1px solid rgba(0, 191, 255, 0.2);
}

.page-hero h1 {
    font-size: 2.8rem;
    color: #ffffff;
    text-shadow: 0 0 15px rgba(0, 191, 255, 0.7);
}

.page-hero p {
    font-size: 1.2rem;
    color: #87ceeb;
    margin-top: 0.5rem;
}

/* Wrapper untuk konten utama di halaman detail */
.content-wrapper {
    background-color: #02040a;
}

.section-padding {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

/* Kartu untuk Jenis Layanan */
.service-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    background: rgba(0, 191, 255, 0.1);
    border-color: #00bfff;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.service-card p {
    color: #c0c0c0;
    line-height: 1.6;
}

/* Kontainer untuk Tabs Persyaratan */
.tabs-container {
    background-color: rgba(14, 33, 67, 0.3);
    border: 1px solid rgba(0, 191, 255, 0.2);
    border-radius: 15px;
    overflow: hidden; /* Agar radius terlihat */
    margin-top: 3rem;
}

.tab-buttons {
    display: flex;
    background-color: rgba(2, 4, 10, 0.5);
}

.tab-button {
    flex: 1;
    padding: 1rem;
    font-size: 1.1rem;
    font-weight: 500;
    color: #c0c0c0;
    background-color: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-button:hover {
    background-color: rgba(0, 191, 255, 0.1);
    color: #ffffff;
}

.tab-button.active {
    color: #ffffff;
    border-bottom: 3px solid #00bfff;
}

.tab-content {
    display: none;
    padding: 2rem;
    padding-left: 3rem;
}

.tab-content.active {
    display: block;
}

.tab-content ul {
    list-style-type: none;
    padding: 0;
}

.tab-content ul li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 1rem;
    color: #e0e0e0;
    line-height: 1.6;
}

.tab-content ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00bfff;
    font-weight: bold;
}

/* Tabel Biaya */
.fees-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 2rem;
    text-align: left;
}

.fees-table th, .fees-table td {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(0, 191, 255, 0.2);
}

.fees-table thead {
    background-color: rgba(0, 191, 255, 0.1);
}

.fees-table th {
    font-size: 1.1rem;
    color: #ffffff;
}

.fees-table td {
    color: #e0e0e0;
}

.fees-table tbody tr:last-child td {
    border-bottom: none;
}

/* FAQ Accordion */
.faq-accordion {
    max-width: 800px;
    margin: 3rem auto 0;
}

.faq-item {
    background: rgba(14, 33, 67, 0.3);
    border: 1px solid rgba(0, 191, 255, 0.2);
    border-radius: 10px;
    margin-bottom: 1rem;
}

.faq-question {
    padding: 1.5rem;
    font-size: 1.2rem;
    font-weight: 500;
    color: #ffffff;
    cursor: pointer;
    list-style: none; /* Menghilangkan panah default */
    position: relative;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: rgba(0, 191, 255, 0.1);
}

.faq-question::-webkit-details-marker {
    display: none; /* Chrome */
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 1.5rem;
    font-size: 1.5rem;
    color: #00bfff;
    transition: transform 0.3s ease;
}

.faq-item[open] > .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.5rem 1.5rem 1.5rem;
    color: #c0c0c0;
    line-height: 1.7;
    border-top: 1px solid rgba(0, 191, 255, 0.2);
}

/* Call to Action Section */
.cta-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1d2b64, #0a0c10);
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    color: #ffffff;
}

.cta-section p {
    font-size: 1.1rem;
    color: #c0c0c0;
    margin: 1rem 0 2rem 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #00bfff;
    color: #02040a;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 191, 255, 0.4);
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 191, 255, 0.6);
}

/* =================================================================== */
/* === STYLE KHUSUS UNTUK HALAMAN INFORMASI & KONTAK === */
/* =================================================================== */

/* Layout 2 Kolom Utama */
.contact-layout {
    display: grid;
    grid-template-columns: 2fr 1fr; /* Kolom peta lebih lebar */
    gap: 2rem;
}

.map-container h3, .info-container h4 {
    font-size: 1.5rem;
    color: #87ceeb; /* Sky blue */
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(0, 191, 255, 0.2);
}

/* Kontainer Peta Responsif */
.map-responsive {
    overflow: hidden;
    padding-bottom: 75%; /* Rasio aspek untuk peta */
    position: relative;
    height: 0;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.map-responsive iframe {
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    position: absolute;
}

/* Blok Informasi di Kolom Kanan */
.info-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-block {
    background: rgba(14, 33, 67, 0.3);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.info-block p {
    color: #e0e0e0;
    line-height: 1.7;
}

/* Daftar Jam Operasional */
.hours-list {
    list-style: none;
    padding: 0;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    color: #e0e0e0;
}

.hours-list li span {
    font-weight: 500;
    color: #ffffff;
}

/* Seksi Media Sosial */
.social-media-section {
    padding: 5rem 0;
    background-color: #040811;
}

.social-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    border-radius: 15px;
    text-decoration: none;
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-10px);
    border-color: #ffffff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.social-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

/* Mewarnai link sosial media */
.social-link.instagram:hover { border-color: #E1306C; }
.social-link.facebook:hover { border-color: #1877F2; }
.social-link.twitter:hover { border-color: #1DA1F2; }
.social-link.youtube:hover { border-color: #FF0000; }

/* Seksi Pengaduan */
.feedback-section {
    background: linear-gradient(135deg, #1d2b64, #0a0c10);
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #00bfff;
    box-shadow: 0 0 30px rgba(0, 191, 255, 0.2);
}

.feedback-section h3 {
    font-size: 2rem;
    color: #ffffff;
}

.feedback-section p {
    max-width: 700px;
    margin: 1rem auto 2rem;
    line-height: 1.7;
    color: #c0c0c0;
}

/* Responsive untuk Layout Kontak */
@media (max-width: 992px) {
    .contact-layout {
        grid-template-columns: 1fr; /* Stack di tablet dan mobile */
    }
}

/* =================================================================== */
/* === STYLE KHUSUS UNTUK HALAMAN TENTANG KAMI === */
/* =================================================================== */

/* Layout Visi & Misi */
.vision-mission-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr; /* Kolom misi sedikit lebih lebar */
    gap: 3rem;
    align-items: start;
}

.vision-block, .mission-block {
    background: rgba(14, 33, 67, 0.3);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.vision-block h3, .mission-block h3 {
    font-size: 1.8rem;
    color: #87ceeb; /* Sky blue */
    margin-bottom: 1rem;
}

.vision-block p {
    font-size: 1.1rem;
    line-height: 1.7;
    font-style: italic;
    color: #e0e0e0;
}

.mission-block ul {
    list-style: none;
    padding-left: 0;
}

.mission-block ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: #e0e0e0;
}

.mission-block ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #00bfff;
}

/* Seksi Sejarah & Timeline */
.history-section {
    padding: 5rem 0;
    background-color: #040811;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 3rem auto 0;
}

/* Garis tengah timeline */
.timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background-color: rgba(0, 191, 255, 0.3);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
    border-radius: 2px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
}

/* Lingkaran pada timeline */
.timeline-item::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    right: -10px;
    background-color: #02040a;
    border: 4px solid #00bfff;
    top: 20px;
    border-radius: 50%;
    z-index: 1;
}

/* Posisi item di kiri */
.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

/* Posisi item di kanan */
.timeline-item:nth-child(even) {
    left: 50%;
}

/* Mengatur posisi lingkaran untuk item di kiri dan kanan */
.timeline-item:nth-child(odd)::after {
    right: -10px;
}
.timeline-item:nth-child(even)::after {
    left: -10px;
}

.timeline-content {
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    border-radius: 10px;
}

.timeline-content h4 {
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

/* Grid untuk Nilai Inti */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}
.value-card { /* Mirip dengan service-card tapi bisa dimodifikasi */
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
}
.value-icon { font-size: 3rem; margin-bottom: 1rem; }
.value-card h3 { font-size: 1.5rem; color: #ffffff; margin-bottom: 0.5rem; }
.value-card p { color: #c0c0c0; line-height: 1.6; }

/* Seksi Sambutan Pimpinan */
.leader-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1d2b64, #0a0c10);
}

.leader-profile {
    display: flex;
    align-items: center;
    gap: 3rem;
    background-color: rgba(2, 4, 10, 0.5);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 191, 255, 0.2);
}

.leader-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #00bfff;
    box-shadow: 0 0 25px rgba(0, 191, 255, 0.5);
}

.leader-info h3 {
    font-size: 1.2rem;
    font-weight: 400;
    color: #87ceeb;
    margin-bottom: 1rem;
}

.leader-info blockquote {
    font-size: 1.3rem;
    font-style: italic;
    line-height: 1.7;
    color: #e0e0e0;
    border-left: 4px solid #00bfff;
    padding-left: 1.5rem;
    margin: 0 0 1.5rem 0;
}

.leader-name {
    font-weight: 700;
    font-size: 1.1rem;
    color: #ffffff;
}
.leader-title {
    color: #c0c0c0;
}

/* Responsive untuk Timeline dan Leader */
@media (max-width: 768px) {
    .vision-mission-grid { grid-template-columns: 1fr; }
    .timeline::after { left: 15px; }
    .timeline-item { width: 100%; padding-left: 50px; padding-right: 0; }
    .timeline-item:nth-child(odd), .timeline-item:nth-child(even) { left: 0; text-align: left; }
    .timeline-item::after { left: 5px; }
    .leader-profile { flex-direction: column; text-align: center; }
    .leader-info blockquote { border-left: none; padding-left: 0; border-top: 2px solid #00bfff; padding-top: 1rem; }
}

.pulse-text {
  animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
  0% {
    text-shadow: 0 0 10px rgb(255, 197, 5);
  }
  50% {
    text-shadow: 0 0 25px rgb(255, 197, 5), 0 0 35px rgb(255, 197, 5);
  }
  100% {
    text-shadow: 0 0 10px rgb(255, 197, 5);
  }
}

/* =================================================================== */
/* ============== CSS RESPONSIVE UNTUK TAMPILAN MOBILE =============== */
/* =================================================================== */
@media (max-width: 768px) {

    /* === PENGATURAN GLOBAL & TIPOGRAFI === */
    .container {
        /* Mengurangi padding di sisi kiri-kanan agar konten lebih lega */
        padding: 0 1rem;
    }

    .section-padding {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    /* Ukuran font diperkecil agar tidak terlalu mendominasi layar */
    .page-header h1, .page-hero h1, .cta-section h2 {
        font-size: 2rem;
    }
    .page-header h2, .leader-info h3, .feedback-section h3 {
        font-size: 1.6rem;
    }
    .page-hero p, .page-header .subtitle, .banner-text p {
        font-size: 1rem;
    }


    /* === HEADER & NAVIGASI === */
    .main-nav {
        /* Logo dan menu akan ditumpuk ke bawah (vertikal) */
        flex-direction: column;
        gap: 1rem;
    }
    .main-nav ul {
        /* Menu juga dibuat vertikal */
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        width: 100%;
    }
    .main-nav ul li a {
        /* Membuat area klik lebih besar */
        display: block;
        padding: 0.5rem 0;
        text-align: center;
    }


    /* === BANNER & HERO SECTION === */
    .banner-wrapper {
        height: 300px; /* Tinggi banner dikurangi */
    }
    .banner-text h2 {
        font-size: 1.8rem;
    }


    /* === HALAMAN UTAMA & LAYANAN (GRID) === */
    .navigation-grid, .service-cards-grid, .values-grid {
        /* Grid akan otomatis menjadi 1 kolom karena minmax, tapi kita pastikan gap tidak terlalu besar */
        gap: 1rem;
    }


    /* === HALAMAN INFORMASI (KONTAK) === */
    .contact-layout {
        /* Layout 2 kolom diubah menjadi 1 kolom */
        grid-template-columns: 1fr;
    }


    /* === HALAMAN TENTANG KAMI (TIMELINE, DLL) === */
    .vision-mission-grid {
        /* Visi & Misi ditumpuk ke bawah */
        grid-template-columns: 1fr;
    }

    .leader-profile {
        /* Foto dan info pimpinan ditumpuk ke bawah */
        flex-direction: column;
        text-align: center;
    }
    .leader-info blockquote {
        border-left: none;
        padding-left: 0;
        border-top: 2px solid #00bfff;
        padding-top: 1rem;
        margin-top: 1rem;
    }

    /* Penyesuaian Timeline Sejarah agar menjadi satu sisi */
    .timeline::after {
        /* Garis timeline dipindah ke paling kiri */
        left: 20px; 
    }
    .timeline-item {
        /* Semua item dibuat full width dan berada di kanan garis */
        width: 100%;
        padding-left: 60px;
        padding-right: 1rem;
    }
    /* Mengatur ulang posisi untuk semua item agar tidak lagi bolak-balik */
    .timeline-item:nth-child(odd), .timeline-item:nth-child(even) {
        left: 0;
        text-align: left;
    }
    .timeline-item::after {
        /* Titik lingkaran dipindah ke garis kiri */
        left: 10px;
    }
    

    /* === KOMPONEN LAINNYA === */
    .flow-grid {
        gap: 1.5rem;
    }
    .flow-step {
        padding-left: 2.5rem;
    }
    .step-number {
        transform: scale(0.9);
        left: -20px;
    }

    .integrity-content {
        grid-template-columns: 1fr;
    }

}