/* ==========================================================================
   A. CORE & RESET STYLES
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f5f5f5;
    padding-top: 100px; /* Menjaga konten tidak tertutup header v0.2 */
    overflow-x: hidden;
}

/* ==========================================================================
   PERBAIKAN TOTAL LAYOUT HEADER (INTEGRASI MULTI-PAGE & SEARCH)
   ========================================================================== */
.main-header {
    width: 100%;
    background-color: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
}

/* Alternatif perbaikan langsung dari sisi tinggi header */
.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 8px 24px; /* Diturunkan dari 12px menjadi 8px agar lebih ramping dan menutup celah */
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* SISI KIRI: Penataan Logo, Divider, dan Teks */
.logo-area {
    display: flex;
    align-items: center;
    gap: 15px; /* Jarak antar elemen kiri */
}

.site-logo {
    height: 45px;
    width: auto;
    object-fit: contain;
}

/* Mengembalikan Garis Pembatas Vertikal (Divider) */
.header-divider {
    width: 2px;
    height: 35px;
    background-color: #00bcd4; /* Warna Tosca Khas Tema Kita */
}

/* Mengembalikan Susunan Teks Samping Logo */
.header-company-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.info-top {
    font-size: 16px;
    font-weight: 800;
    color: #1a237e; /* Biru Tua */
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.info-bottom {
    font-size: 11px;
    font-weight: 600;
    color: #00bcd4; /* Tosca */
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 2px;
}

/* SISI KANAN: Daftar Menu List */
.nav-list {
    display: flex;
    align-items: center; 
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 25px;
}

.nav-list > li {
    position: relative;
}

.nav-list > li > a {
    color: #1a237e;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: color 0.3s ease;
}

.nav-list > li > a:hover {
    color: #00bcd4;
}

/* --- STYLE UNTUK DROPDOWN MENU LIST --- */
.dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.dropdown-arrow {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.dropdown-menu-list {
    position: absolute;
    top: calc(100% + 15px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background-color: #ffffff;
    min-width: 220px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(11, 18, 58, 0.1);
    border-top: 3px solid #00bcd4;
    padding: 8px 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.dropdown-menu-list li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    color: #1a237e !important;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.dropdown-menu-list li a i {
    color: #00bcd4;
    font-size: 12px;
    width: 15px;
    text-align: center;
}

.dropdown-menu-list li a:hover {
    background-color: rgba(0, 188, 212, 0.04);
    color: #00bcd4 !important;
    padding-left: 22px;
}

.dropdown-item:hover .dropdown-menu-list {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-item:hover .dropdown-arrow {
    transform: rotate(180deg);
}

/* --- STYLE UNTUK BUTTON SEARCH BAR --- */
.search-trigger-item {
    display: flex;
    align-items: center;
}

.btn-search-trigger {
    background: none;
    border: none;
    color: #1a237e;
    font-size: 17px;
    cursor: pointer;
    padding: 4px;
    transition: all 0.3s ease;
}

.btn-search-trigger:hover {
    color: #00bcd4;
    transform: scale(1.1);
}
/* ==========================================================================
   C. HERO SECTION / CAROUSEL STYLES (Optimal Resolusi 1920x1080)
   ========================================================================== */
.hero-carousel {
    position: relative;
    width: 100%;
    aspect-ratio: 1920 / 1080; 
    max-height: 75vh; 
    min-height: 480px;
    margin-top: -15px !important; /* Menaikkan carousel sebanyak 15px untuk menutupi celah */
    position: relative;
    z-index: 1; /* Memastikan carousel tetap berada di bawah lapisan putih header */
    overflow: hidden;
    background-color: #000;
}

.carousel-track {
    display: flex;
    width: 500%; 
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.carousel-slide {
    width: 20%; 
    height: 100%;
    position: relative;
    background-size: cover; 
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}

/* Gradasi Warna Biru & Putih (Overlay Gambar) */
.carousel-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(13, 71, 161, 0.85) 0%, rgba(255, 255, 255, 0.15) 100%);
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 50px;
    margin-left: 10%;
    color: #ffffff;
}

.slide-content h1 {
    font-size: 44px;
    font-weight: 800; /* Font Bold Jelas */
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 5px rgba(0,0,0,0.4);
    line-height: 1.2;
}

.slide-content p {
    font-size: 18px;
    line-height: 1.6;
    text-shadow: 0 1px 3px rgba(0,0,0,0.4);
    opacity: 0.95;
}

/* Tombol Navigasi Manual */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: background 0.3s;
}

.carousel-arrow:hover { background: rgba(13, 71, 161, 0.8); }
.arrow-left { left: 25px; }
.arrow-right { right: 25px; }

/* Indikator Bulat Pojok Kiri Bawah */
.carousel-dots {
    position: absolute;
    bottom: 35px;
    left: calc(10% + 50px); 
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Berubah Biru Saat Slide Aktif */
.dot.active {
    background-color: #00bcd4; 
    border-color: #00bcd4;
    transform: scale(1.2);
}

/* Responsif Carousel Mobile */
@media (max-width: 768px) {
    .hero-carousel { 
        aspect-ratio: auto; 
        height: 55vh; 
    }
    .slide-content { padding: 0 20px; margin-left: 5%; }
    .slide-content h1 { font-size: 26px; margin-bottom: 10px; }
    .slide-content p { font-size: 14px; }
    .carousel-arrow { width: 38px; height: 38px; font-size: 14px; }
    .arrow-left { left: 10px; }
    .arrow-right { right: 10px; }
    .carousel-dots { left: 5%; bottom: 20px; }
}

/* ==========================================================================
   D. INTRO SECTION (Energizing You + Bayangan Modern + Efek Scroll)
   ========================================================================== */
.intro-section {
    width: 100%;
    padding: 90px 24px;
    background-color: #ffffff;
}

.intro-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

/* --- Sisi Kiri: Layout Gambar Premium --- */
.intro-image-wrapper {
    flex: 1;
    position: relative;
    padding-left: 20px; 
}

.intro-img {
    width: 100%;
    height: 420px; 
    object-fit: cover;
    border-radius: 16px; 
    
    /* Layered Deep Soft Shadow */
    box-shadow: 0 20px 40px rgba(13, 71, 161, 0.08), 
                0 5px 15px rgba(0, 0, 0, 0.05);
    
    position: relative;
    z-index: 2;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Hover Interaktif Gambar Terangkat */
.intro-img:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 50px rgba(13, 71, 161, 0.15), 
                0 10px 20px rgba(0, 0, 0, 0.08);
}

/* Aksen Garis Vertikal Ramping (Pengganti Kotak Kaku) */
.intro-img-accent {
    position: absolute;
    top: 15%;
    left: 0;
    width: 6px; 
    height: 70%; 
    background: linear-gradient(to bottom, #0d47a1, #00bcd4); 
    border-radius: 10px;
    z-index: 1;
}

/* --- Sisi Kanan: Teks & Fitur --- */
.intro-content {
    flex: 1;
}

/* KONDISI AWAL ANIMASI: Teks Hilang & Turun */
.scroll-reveal {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), 
                transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

/* KONDISI SETELAH DI-SCROLL: Teks Muncul Muncul Sempurna */
.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Jeda Beruntun Animasi (Staggered Delay Effect) */
.intro-title.scroll-reveal { transition-delay: 0.1s; }
.title-underline.scroll-reveal { transition-delay: 0.2s; }
.intro-text.scroll-reveal { transition-delay: 0.3s; }
.intro-features.scroll-reveal { transition-delay: 0.4s; }

.section-tag {
    font-size: 14px;
    font-weight: 700;
    color: #00bcd4;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.intro-title {
    font-size: 38px;
    font-weight: 800;
    color: #1a237e;
    line-height: 1.2;
    margin-bottom: 15px;
}

.intro-title span {
    color: #0d47a1;
}

.title-underline {
    width: 60px;
    height: 4px;
    background-color: #0d47a1;
    border-radius: 2px;
    margin-bottom: 25px;
}

.intro-text {
    font-size: 16px;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 30px;
}

/* Jajaran Kapsul Fitur (Muat 3 Kolom di PC) */
.intro-features {
    display: flex;
    flex-wrap: wrap; 
    gap: 15px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f4f7fc;
    padding: 12px 18px;
    border-radius: 30px;
    font-weight: 600;
    color: #0d47a1;
    font-size: 13px; 
    border: 1px solid rgba(13, 71, 161, 0.05);
    white-space: nowrap; 
}

.feature-item i {
    font-size: 15px;
    color: #00bcd4;
}

/* --- Responsif Intro Section Mobile --- */
@media (max-width: 991px) {
    .intro-section { padding: 50px 20px; }
    .intro-container { flex-direction: column; gap: 40px; }
    .intro-image-wrapper { padding-left: 0; }
    .intro-img { height: 300px; }
    .intro-img-accent { display: none; }
    .intro-title { font-size: 30px; }
    .intro-text { font-size: 15px; }
    .intro-features { flex-direction: column; gap: 12px; }
    .feature-item { width: 100%; }
}

/* ==========================================================================
   G. ABOUT US SECTION (Background Image + Pop-up Buttons)
   ========================================================================== */
.about-us-section {
    position: relative;
    width: 100%;
    padding: 100px 24px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed; /* Memberikan efek parallax elegan saat di-scroll di PC */
    overflow: hidden;
}

/* Overlay Gelap untuk memastikan teks putih di atasnya sangat kontras dan mudah dibaca */
.about-us-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 35, 126, 0.9) 0%, rgba(13, 71, 161, 0.75) 100%);
    z-index: 1;
}

.about-us-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2; /* Menempatkan konten di atas overlay */
    display: flex;
    justify-content: flex-start; /* Mengarahkan teks di sisi kiri/tengah secara proporsional */
}

.about-us-content {
    max-width: 750px; /* Membatasi lebar teks agar nyaman dibaca */
    color: #ffffff;
}

.about-us-title {
    font-size: 42px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 15px;
}

.about-us-title span {
    color: #00bcd4; /* Aksen warna biru muda terang */
}

.about-us-text {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
}

/* Container Desain Tombol */
.about-us-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Base Style Tombol Elegan */
.btn-main {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

/* Desain Khusus Tombol Read More (Solid Blue) */
.btn-readmore {
    background-color: #00bcd4;
    color: #ffffff;
}

.btn-readmore:hover {
    background-color: #0097a7;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 188, 212, 0.4);
}

/* Desain Khusus Tombol Organization Structure (Outline / Transparan Premium) */
.btn-structure {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-structure:hover {
    background-color: #ffffff;
    color: #0d47a1;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.25);
}

/* Penyesuaian Jeda Animasi Muncul Khusus untuk Section Ini */
.about-us-content .about-us-text.scroll-reveal { transition-delay: 0.2s; }
.about-us-content .about-us-buttons.scroll-reveal { transition-delay: 0.3s; }

/* --- Responsif Mobile Layout --- */
@media (max-width: 768px) {
    .about-us-section {
        padding: 70px 20px;
        background-attachment: scroll; /* Mematikan efek parallax di mobile agar performa ringan */
    }
    
    .about-us-title {
        font-size: 32px;
    }
    
    .about-us-text {
        font-size: 15px;
    }
    
    .about-us-buttons {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }
    
    .btn-main {
        width: 100%;
        justify-content: center; /* Tombol melebar penuh dan teks di tengah saat dibuka di HP */
    }
}

/* ==========================================================================
   H. SERVICES SECTION (Grid Layout + Premium Hover Lift)
   ========================================================================== */
.services-section {
    width: 100%;
    padding: 90px 24px;
    background-color: #f8fafc; /* Abu-abu ultra-terang agar kartu putih menonjol */
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Header Teks Tengah */
.services-header {
    text-align: center;
    margin-bottom: 55px;
}

.services-main-title {
    font-size: 34px;
    font-weight: 800;
    color: #1a237e; /* Biru Tua */
    margin-top: 5px;
}

/* Grid System untuk 3 Kolom Sejajar */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Desain Premium Kartu Layanan (Text Box) */
.service-card {
    background-color: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(13, 71, 161, 0.05);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), 
                box-shadow 0.4s cubic-bezier(0.25, 1, 0.5, 1),
                border-color 0.4s ease;
}

/* Area Gambar di Dalam Kartu */
.card-image-wrapper {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

/* Badge Kecil Estetik di Atas Gambar */
.card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: rgba(26, 35, 126, 0.85);
    color: #ffffff;
    padding: 4px 12px;
    font-size: 11px;
    font-weight: 700;
    border-radius: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
    backdrop-filter: blur(4px);
}

/* Area Isi Konten Kartu */
.card-content {
    padding: 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.card-title {
    font-size: 20px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.card-text {
    font-size: 14px;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 25px;
    min-height: 44px; /* Menjaga tinggi teks seragam */
}

/* Tombol Learn More Bergaya Pill Outlined */
.btn-learn-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    border: 2px solid #0d47a1; /* Border Biru Tua */
    color: #0d47a1;
    font-weight: 600;
    font-size: 13px;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.btn-learn-more i {
    transition: transform 0.3s ease;
}

/* --- INTERAKSI HOVER (EFEK MENGANGKAT KARTU) --- */
.service-card:hover {
    transform: translateY(-10px); /* Mengangkat kartu ke atas */
    box-shadow: 0 20px 35px rgba(13, 71, 161, 0.12); /* Bayangan melebar lembut ke bawah */
    border-color: #00bcd4; /* Batas tepi berubah warna tosca */
}

/* Zoom tipis pada gambar saat kartu di-hover */
.service-card:hover .card-img {
    transform: scale(1.05);
}

.service-card:hover .card-title {
    color: #0d47a1;
}

/* Efek tombol terisi penuh saat kartu atau tombol di-hover */
.service-card:hover .btn-learn-more,
.btn-learn-more:hover {
    background-color: #0d47a1;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(13, 71, 161, 0.3);
}

.service-card:hover .btn-learn-more i {
    transform: translateX(4px); /* Efek panah bergeser maju */
}

/* Staggered Delay untuk Efek Muncul Berurutan dari Kiri ke Kanan */
.services-grid .service-card:nth-child(1) { transition-delay: 0.1s; }
.services-grid .service-card:nth-child(2) { transition-delay: 0.2s; }
.services-grid .service-card:nth-child(3) { transition-delay: 0.3s; }

/* --- Penyesuaian Responsif Layar --- */
@media (max-width: 991px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 Kolom di Tablet */
        gap: 20px;
    }
    .services-main-title { font-size: 28px; }
}

@media (max-width: 768px) {
    .services-section { padding: 60px 20px; }
    .services-grid {
        grid-template-columns: 1fr; /* 1 Kolom Penuh di HP */
    }
    .card-image-wrapper { height: 180px; }
}

/* ==========================================================================
   I. NEWS & MEDIA SECTION
   ========================================================================== */
.news-section {
    width: 100%;
    padding: 90px 24px;
    background-color: #ffffff; /* Latar putih bersih kontras dengan area services */
}

.news-container {
    max-width: 1200px;
    margin: 0 auto;
}

.news-header {
    text-align: center;
    margin-bottom: 50px;
}

.news-main-title {
    font-size: 34px;
    font-weight: 800;
    color: #1a237e;
    margin-top: 5px;
}

/* Pembagian Layout Utama: 55% Kiri, 45% Kanan */
.news-layout-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
}

/* --- SISI KIRI: KARTU BERITA BESAR --- */
.news-big-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(13, 71, 161, 0.06);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.news-big-img-wrapper {
    position: relative;
    width: 100%;
    height: 340px;
    overflow: hidden;
}

.news-big-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-category-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: #0d47a1;
    color: #ffffff;
    padding: 5px 14px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 4px;
}

.news-big-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.news-big-title {
    font-size: 24px;
    font-weight: 800;
    color: #1a237e;
    line-height: 1.4;
    margin-bottom: 12px;
}

.news-meta {
    font-size: 13px;
    color: #888888;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.news-big-excerpt {
    font-size: 15px;
    color: #555555;
    line-height: 1.7;
    margin-bottom: 25px;
}

/* --- SISI KANAN: DAFTAR BERITA KECIL --- */
.news-list-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.news-list-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #ffffff;
    padding: 15px;
    border-radius: 12px;
    border: 1px solid rgba(13, 71, 161, 0.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.01);
    transition: all 0.3s ease;
}

.news-thumb-wrapper {
    width: 160px;
    height: 110px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid rgba(13, 71, 161, 0.8); /* Border Biru Tebal Sesuai Gambar */
}

.news-thumb-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-item-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.news-item-title {
    font-size: 16px;
    font-weight: 700;
    color: #222222;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* Batasi maksimal 2 baris agar rapi */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* --- TOMBOL DAN LINK BERITA (TEMA DANANTARA) --- */
.btn-news-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-news-link i {
    transition: transform 0.3s ease;
}

/* Tipe 1: Tombol Outlined Pill (Untuk Berita Utama) */
.main-btn {
    align-self: flex-start;
    padding: 10px 24px;
    border: 2px solid #0d47a1;
    color: #0d47a1;
    border-radius: 25px;
    font-size: 13px;
    margin-top: auto; /* Memaksa tombol selalu berada di paling bawah */
}

/* Tipe 2: Link Teks Minimalis (Untuk Berita Kanan) */
.text-btn {
    color: #0d47a1;
    font-size: 13px;
}

/* --- INTERAKSI HOVER PREMIUM --- */
.news-big-card:hover .news-big-img,
.news-list-item:hover .news-thumb-img {
    transform: scale(1.05);
}

.news-big-card:hover .main-btn,
.main-btn:hover {
    background-color: #0d47a1;
    color: #ffffff;
}

.news-list-item:hover {
    transform: translateX(5px);
    border-color: #00bcd4;
    box-shadow: 0 5px 15px rgba(13, 71, 161, 0.08);
}

.news-list-item:hover .news-item-title,
.btn-news-link:hover {
    color: #00bcd4; /* Berubah tosca saat di-hover */
}

.btn-news-link:hover i {
    transform: translateX(4px);
}

/* Efek Muncul Berurutan Kanan */
.news-list-col .news-list-item:nth-child(1) { transition-delay: 0.2s; }
.news-list-col .news-list-item:nth-child(2) { transition-delay: 0.3s; }
.news-list-col .news-list-item:nth-child(3) { transition-delay: 0.4s; }

/* --- RESPONSIF DESAIN MOBILE --- */
@media (max-width: 991px) {
    .news-layout-grid {
        grid-template-columns: 1fr; /* Menumpuk vertikal pada tablet/HP */
        gap: 30px;
    }
    .news-big-img-wrapper { height: 26px; height: 260px; }
    .news-main-title { font-size: 28px; }
}

@media (max-width: 576px) {
    .news-list-item {
        flex-direction: column; /* Gambar di atas teks khusus layar HP kecil */
        align-items: flex-start;
    }
    .news-thumb-wrapper {
        width: 100%;
        height: 160px;
    }
}

/* ==========================================================================
   J. STRATEGIC ALLIANCES SECTION (Infinite Slider Marquee)
   ========================================================================== */
.alliances-section {
    width: 100%;
    padding: 70px 24px;
    background-color: #f8fafc; /* Latar abu-abu sangat muda agar logo putih kontras */
    border-top: 1px solid rgba(13, 71, 161, 0.05);
}

.alliances-container {
    max-width: 1200px;
    margin: 0 auto;
}

.alliances-header {
    text-align: center;
    margin-bottom: 45px;
}

.alliances-main-title {
    font-size: 34px;
    font-weight: 800;
    color: #1a237e; /* Biru Tua */
    margin-top: 5px;
}

/* Jendela Pembungkus Marquee (Menyembunyikan elemen yang keluar jalur) */
.marquee-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
}

/* Efek Gradasi Memudar Sisi Kiri & Kanan (Membuat transiasi logo masuk-keluar terlihat halus) */
.marquee-wrapper::before,
.marquee-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 5;
    pointer-events: none;
}

.marquee-wrapper::before {
    left: 0;
    background: linear-gradient(to right, #f8fafc 0%, rgba(248, 250, 252, 0) 100%);
}

.marquee-wrapper::after {
    right: 0;
    background: linear-gradient(to left, #f8fafc 0%, rgba(248, 250, 252, 0) 100%);
}

/* Rel Utama Gerakan Animasi */
.marquee-track {
    display: flex;
    width: max-content; /* Membiarkan lebar memanjang otomatis sesuai jumlah komponen */
    align-items: center;
    gap: 80px; /* Jarak antar logo perusahaan */
    animation: marquee-scroll 25s linear infinite; /* Kecepatan jalan konstan */
}

/* Berhenti berjalan sejenak saat kursor ditaruh di atas logo */
.marquee-wrapper:hover .marquee-track {
    animation-play-state: paused;
}

/* Desain Komponen Wadah Gambar */
.marquee-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 70px;
}

.marquee-slide img {
    height: 100%;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%) opacity(70%); /* Logo default abu-abu elegan */
    transition: all 0.3s ease;
}

/* EFEK INTERAKTIF: Logo kembali berwarna asli dan tajam saat di-hover */
.marquee-slide img:hover {
    filter: grayscale(0%) opacity(100%);
    transform: scale(1.08); /* Sedikit membesar halus */
}

/* KEYFRAMES LOGIC: Menggerakkan track sebesar 50% panjang total duplikasi */
@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* --- Penyesuaian Responsif Layar Mobile --- */
@media (max-width: 768px) {
    .alliances-section { padding: 50px 20px; }
    .alliances-main-title { font-size: 28px; }
    .marquee-track { gap: 40px; } /* Jarak dipersempit di HP */
    .marquee-slide { height: 50px; } /* Ukuran logo dikecilkan di HP */
    .marquee-wrapper::before, .marquee-wrapper::after { width: 50px; }
}

/* ==========================================================================
   K. TALK WITH US SECTION (Premium Curved CTA + Custom WhatsApp Button)
   ========================================================================== */
.talk-us-section {
    width: 100%;
    padding: 80px 24px;
    background: linear-gradient(135deg, #0d47a1 0%, #1a237e 100%); /* Gradasi Biru Tua Premium Danantara */
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* Pola Vektor Melengkung Abstrak di Latar Belakang (Meniru Gambar Contoh) */
.talk-bg-curve-1 {
    position: absolute;
    top: -50%;
    left: -10%;
    width: 60%;
    height: 200%;
    border: 1px solid rgba(0, 188, 212, 0.15); /* Aksen warna Tosca transparan */
    border-radius: 50%;
    pointer-events: none;
}

.talk-bg-curve-2 {
    position: absolute;
    top: -20%;
    right: -20%;
    width: 50%;
    height: 150%;
    background: radial-gradient(circle, rgba(0, 188, 212, 0.12) 0%, rgba(0, 0, 0, 0) 70%); /* Pendaran Tosca */
    border-radius: 50%;
    pointer-events: none;
}

.talk-us-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between; /* Membagi teks di kiri, tombol di kanan */
    position: relative;
    z-index: 5;
    gap: 40px;
}

/* Konten Teks Sisi Kiri */
.talk-us-content {
    flex: 1;
    color: #ffffff;
}

.talk-us-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.talk-us-text {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

/* Konten Aksi Sisi Kanan */
.talk-us-action {
    flex-shrink: 0;
}

/* Tombol Hijau WhatsApp Khas Sesuai Gambar Contoh */
.btn-whatsapp-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: #62d26f; /* Warna hijau cerah sesuai contoh gambar kedua */
    color: #ffffff;
    text-decoration: none;
    padding: 16px 36px;
    border-radius: 14px; /* Sudut tumpul melengkung sesuai gambar */
    font-size: 18px;
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(98, 210, 111, 0.3);
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), 
                background-color 0.3s ease, 
                box-shadow 0.3s ease;
}

/* Ukuran Icon FontAwesome WhatsApp */
.btn-whatsapp-cta i {
    font-size: 26px;
}

/* Efek Interaktif Tombol */
.btn-whatsapp-cta:hover {
    background-color: #52be5f; /* Sedikit lebih gelap saat ditekan */
    transform: translateY(-4px); /* Efek terangkat khas tema kita */
    box-shadow: 0 12px 30px rgba(98, 210, 111, 0.45);
}

.btn-whatsapp-cta:active {
    transform: translateY(-1px);
}

/* --- Penyesuaian Responsif Layar Mobile --- */
@media (max-width: 991px) {
    .talk-us-container {
        flex-direction: column; /* Teks dan tombol menumpuk vertikal di tablet/HP */
        text-align: center;
        gap: 30px;
    }
    
    .talk-us-title {
        font-size: 30px;
    }
    
    .talk-us-text {
        font-size: 15px;
    }
    
    .btn-whatsapp-cta {
        width: 100%;
        max-width: 350px; /* Membatasi agar tombol tidak terlalu lebar di HP */
        justify-content: center;
    }
    
    .talk-bg-curve-1, .talk-bg-curve-2 {
        display: none; /* Menyembunyikan dekorasi berat di HP untuk menghemat performa */
    }
}

/* ==========================================================================
   L. FOOTER SECTION (Multi-Column Business Footer + Back to Top)
   ========================================================================== */
.main-footer {
    width: 100%;
    background-color: #0b123a; /* Dasar Biru Tua Sangat Gelap */
    background-image: linear-gradient(135deg, rgba(11, 18, 58, 0.95) 0%, rgba(26, 35, 126, 0.95) 100%), 
                      url('assets/footer-bg.jpg'); /* Gambar Background tersambung ke assets */
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    color: #ffffff;
    padding-top: 80px;
    position: relative;
    border-top: 4px solid #00bcd4; /* Batas atas aksen warna Tosca */
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px 50px 24px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr; /* Pembagian 3 kolom proporsional */
    gap: 50px;
}

/* --- KOLOM 1: BRANDING & SOSMED --- */
.footer-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 20px;
}

.footer-brand-desc {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background-color: rgba(255, 255, 255, 0.06);
    color: #ffffff;
    border-radius: 50%;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-socials a:hover {
    background-color: #00bcd4; /* Sorotan warna Tosca */
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 188, 212, 0.4);
}

/* --- JUDUL KOLOM FOOTER --- */
.footer-title {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: #00bcd4; /* Garis bawah mini warna Tosca */
    border-radius: 2px;
}

/* --- KOLOM 2: MENU LINKS --- */
.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 12px;
}

.footer-menu a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-menu a i {
    font-size: 10px;
    color: #00bcd4; /* Icon panah tosca */
    transition: transform 0.3s ease;
}

.footer-menu a:hover {
    color: #00bcd4;
}

.footer-menu a:hover i {
    transform: translateX(4px);
}

/* --- KOLOM 3: DETAIL DATA KONTAK --- */
.footer-contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-info li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 18px;
    line-height: 1.5;
}

.footer-contact-info li.align-start {
    align-items: flex-start; /* Posisi icon sejajar baris pertama untuk alamat panjang */
}

.footer-contact-info li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-info li a:hover {
    color: #00bcd4;
}

.color-tosca {
    color: #00bcd4; /* Penyeragaman warna icon get contact */
    font-size: 16px;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}

/* --- AREA BAWAH & TOMBOL BACK TO TOP --- */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 25px 24px;
    background-color: rgba(0, 0, 0, 0.2);
}

.footer-bottom-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.copyright-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

/* Desain Premium Tombol Back To Top */
.btn-back-to-top {
    width: 45px;
    height: 45px;
    background-color: #0d47a1; /* Biru Tua */
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.btn-back-to-top:hover {
    background-color: #00bcd4; /* Berubah Tosca */
    border-color: #00bcd4;
    color: #ffffff;
    transform: translateY(-4px);
    box-shadow: 0 5px 15px rgba(0, 188, 212, 0.4);
}

/* --- RESPONSIF FOOTER TAB/HP --- */
@media (max-width: 991px) {
    .footer-container {
        grid-template-columns: 1fr; /* Menumpuk satu kolom vertikal */
        gap: 40px;
    }
    .footer-title { margin-bottom: 15px; }
}

@media (max-width: 576px) {
    .main-footer { padding-top: 50px; }
    .footer-bottom-container {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/* ==========================================================================
   M. DROPDOWN MENU & POPUP INTERAKTIF SEARCH BAR
   ========================================================================== */

/* --- LOGIK DROPDOWN MENU ABOUT US --- */
.dropdown-item {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
}

.dropdown-arrow {
    font-size: 11px;
    transition: transform 0.3s ease;
}

/* Kotak Sub Menu List (Default: Sembunyi & Geser Sedikit ke Bawah) */
.dropdown-menu-list {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    min-width: 240px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(11, 18, 58, 0.08);
    border: 1px solid rgba(13, 71, 161, 0.05);
    border-top: 3px solid #00bcd4; /* Batas atas aksen warna Tosca */
    padding: 10px 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 1000;
}

.dropdown-menu-list li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: #1a237e !important; /* Warna teks biru tua */
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.dropdown-menu-list li a i {
    color: #00bcd4; /* Icon mini berwarna Tosca */
    font-size: 14px;
    width: 16px;
    text-align: center;
}

/* Hover Efek Sub Menu Item */
.dropdown-menu-list li a:hover {
    background-color: rgba(0, 188, 212, 0.05);
    color: #00bcd4 !important;
    padding-left: 25px; /* Efek bergeser ke kanan yang elegan */
}

/* Pemicu Hover Dropdown Aktif */
.dropdown-item:hover .dropdown-menu-list {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item:hover .dropdown-arrow {
    transform: rotate(180deg); /* Panah berputar balik saat dibuka */
}

/* Responsif Mobile Layout */
@media (max-width: 768px) {
    .dropdown-menu-list {
        position: static;
        box-shadow: none;
        border: none;
        padding-left: 15px;
        visibility: visible;
        opacity: 1;
        display: none; /* Dikelola toggle click pada layar HP */
        transform: none;
        background-color: rgba(255, 255, 255, 0.03);
    }
    .search-modal-box { padding: 20px; }
    .search-modal-title { font-size: 22px; }
}

/* ==========================================================================
   N. REVISI HEADER & FIXED DROPDOWN POSITIONING
   ========================================================================== */
.main-header {
    width: 100%;
    background-color: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
}

/* Mengunci barisan menu agar selalu lurus horizontal */
.nav-list {
    display: flex;
    align-items: center; 
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 28px;
}

.nav-list > li {
    position: relative; /* Jangkar untuk letak absolut sub-menu */
}

.nav-list > li > a {
    color: #1a237e; /* Biru Tua */
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: color 0.3s ease;
}

.nav-list > li > a:hover {
    color: #00bcd4; /* Tosca */
}

/* --- GAYA SELEKTOR BAHASA (BENDERA & TEKS) --- */
.lang-selector-item {
    display: flex;
    align-items: center;
    padding-left: 5px;
    border-left: 1px solid rgba(26, 35, 126, 0.15); /* Memberi batas garis tipis vertikal sebelum tombol search */
    padding-left: 15px;
}

.lang-switcher {
    display: flex;
    align-items: center;
    gap: 8px; /* Jarak antara bendera dan tulisan teks */
    cursor: pointer;
}

.flag-icon {
    width: 22px;
    height: auto;
    object-fit: contain;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.15); /* Efek bayangan tipis pada bendera agar tegas */
}

.lang-text {
    font-size: 14px;
    font-weight: 700;
    color: #1a237e; /* Biru Tua seragam dengan menu lain */
    user-select: none;
}

/* Jarak penyesuaian khusus untuk ikon search bar di ujung kanan */
.search-trigger-item {
    display: flex;
    align-items: center;
    margin-left: 5px;
}

/* Komponen Dropdown */
.dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.dropdown-arrow {
    font-size: 10px;
    transition: transform 0.3s ease;
}

/* Posisi Absolut Sub-Menu List Supaya Tidak Menggeser Konten Lain */
.dropdown-menu-list {
    position: absolute;
    top: calc(100% + 15px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background-color: #ffffff;
    min-width: 230px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(11, 18, 58, 0.1);
    border-top: 3px solid #00bcd4;
    padding: 10px 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 1000;
}

.dropdown-menu-list li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: #1a237e !important;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.dropdown-menu-list li a i {
    color: #00bcd4;
    font-size: 13px;
    width: 15px;
    text-align: center;
}

.dropdown-menu-list li a:hover {
    background-color: rgba(0, 188, 212, 0.04);
    color: #00bcd4 !important;
    padding-left: 25px;
}

/* Aksi Hover Aktif Dropdown */
.dropdown-item:hover .dropdown-menu-list {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-item:hover .dropdown-arrow {
    transform: rotate(180deg);
}

/* --- TOMBOL SEARCH MODAL --- */
.search-trigger-item {
    display: flex;
    align-items: center;
}

.btn-search-trigger {
    background: none;
    border: none;
    color: #1a237e;
    font-size: 17px;
    cursor: pointer;
    padding: 4px;
    transition: all 0.3s ease;
}

.btn-search-trigger:hover {
    color: #00bcd4;
    transform: scale(1.1);
}

/* Jendela Overlay Penggelap Layar */
/* Pastikan ketika modal sedang TIDAK aktif, dia benar-benar hilang dari jangkauan klik */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    
    /* KUNCI PERBAIKAN: */
    display: none; /* Atau gunakan kombinasi: opacity: 0; visibility: hidden; pointer-events: none; */
}

/* Hanya ketika ada kelas active, modal boleh muncul menutupi layar */
.search-overlay.active-search {
    display: flex; /* Atau: opacity: 1; visibility: visible; pointer-events: auto; */
}
Lakukan hal yang sam

.search-modal-box {
    width: 100%;
    max-width: 600px;
    padding: 20px;
    text-align: center;
    position: relative;
    transform: scale(0.8);
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.search-overlay.active .search-modal-box {
    transform: scale(1);
}

.btn-close-search {
    position: absolute;
    top: -30px;
    right: 20px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 32px;
    cursor: pointer;
}

.btn-close-search:hover { color: #00bcd4; }
.search-modal-title { color: #ffffff; font-size: 26px; font-weight: 800; margin-bottom: 8px; }
.search-modal-subtitle { color: rgba(255, 255, 255, 0.5); font-size: 14px; margin-bottom: 25px; }

.search-form-wrapper {
    display: flex;
    background: #ffffff;
    border-radius: 30px;
    overflow: hidden;
    padding: 5px;
}

.search-input-field {
    flex: 1;
    border: none;
    outline: none;
    padding: 10px 20px;
    font-size: 15px;
    color: #222222;
}

.btn-search-submit {
    background-color: #0d47a1;
    color: #ffffff;
    border: none;
    padding: 0 24px;
    border-radius: 25px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.btn-search-submit:hover { background-color: #00bcd4; }

/* ==========================================================================
   O. FOOTER VISUAL STYLE WITH BACKGROUND ASSETS
   ========================================================================== */
.main-footer {
    width: 100%;
    background-color: #0b123a;
    background-image: linear-gradient(135deg, rgba(11, 18, 58, 0.96) 0%, rgba(26, 35, 126, 0.96) 100%), 
                      url('assets/footer-bg.jpg');
    background-size: cover;
    background-position: center;
    color: #ffffff;
    padding-top: 70px;
    border-top: 4px solid #00bcd4;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px 40px 24px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 40px;
}

.footer-logo {
    width: 70px;
    height: 70px;
    object-fit: contain;
    margin-bottom: 15px;
}

.footer-brand-desc {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 20px;
}

.footer-socials { display: flex; gap: 12px; }
.footer-socials a {
    display: flex; align-items: center; justify-content: center;
    width: 40px; height: 40px;
    background-color: rgba(255, 255, 255, 0.05);
    color: #ffffff; border-radius: 50%; text-decoration: none;
    transition: all 0.3s ease; border: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-socials a:hover {
    background-color: #00bcd4; transform: translateY(-3px);
    box-shadow: 0 5px 12px rgba(0, 188, 212, 0.4);
}

.footer-title {
    font-size: 19px; font-weight: 700; color: #ffffff;
    margin-bottom: 20px; position: relative; padding-bottom: 8px;
}
.footer-title::after {
    content: ""; position: absolute; bottom: 0; left: 0;
    width: 35px; height: 3px; background-color: #00bcd4; border-radius: 2px;
}

.footer-menu { list-style: none; padding: 0; margin: 0; }
.footer-menu li { margin-bottom: 10px; }
.footer-menu a {
    color: rgba(255, 255, 255, 0.65); text-decoration: none;
    font-size: 14px; transition: all 0.2s ease; display: inline-flex; align-items: center; gap: 6px;
}
.footer-menu a i { font-size: 9px; color: #00bcd4; transition: transform 0.2s ease; }
.footer-menu a:hover { color: #00bcd4; }
.footer-menu a:hover i { transform: translateX(3px); }

.footer-contact-info { list-style: none; padding: 0; margin: 0; }
.footer-contact-info li {
    display: flex; align-items: center; gap: 12px; font-size: 14px;
    color: rgba(255, 255, 255, 0.65); margin-bottom: 15px; line-height: 1.5;
}
.footer-contact-info li.align-start { align-items: flex-start; }
.footer-contact-info li a { color: rgba(255, 255, 255, 0.65); text-decoration: none; transition: color 0.2s ease; }
.footer-contact-info li a:hover { color: #00bcd4; }
.color-tosca { color: #00bcd4; font-size: 15px; width: 18px; text-align: center; flex-shrink: 0; }

.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.06); padding: 20px 24px; background-color: rgba(0, 0, 0, 0.15); }
.footer-bottom-container { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }
.copyright-text { font-size: 13px; color: rgba(255, 255, 255, 0.4); }

.btn-back-to-top {
    width: 42px; height: 42px; background-color: #0d47a1; color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 6px; cursor: pointer;
    display: flex; align-items: center; justify-content: center; font-size: 15px;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}
.btn-back-to-top:hover {
    background-color: #00bcd4; border-color: #00bcd4;
    transform: translateY(-4px); box-shadow: 0 4px 12px rgba(0, 188, 212, 0.3);
}

/* Responsif Mobile Layout */
@media (max-width: 991px) {
    .footer-container { grid-template-columns: 1fr; gap: 35px; }
    .nav-list { display: none; } /* Tersembunyi di mobile, dikelola tombol menu hamburger */
}

/* ==========================================================================
   P. PAGES STYLING: MULTI-PAGE APPLICATION (MPA) HOOKS
   ========================================================================== */

/* Spacing khusus body agar tidak tertutup header fixed */
.mpa-page {
    padding-top: 70px;
    background-color: #fafbfc;
}

/* --- INNER HERO BANNER BREADCRUMB --- */
.inner-hero-banner {
    width: 100%;
    height: 250px;
    background-image: linear-gradient(135deg, rgba(11, 18, 58, 0.9) 0%, rgba(26, 35, 126, 0.85) 100%), 
                      url('assets/inner-hero-bg.jpg'); /* Siapkan aset background jika ingin variasi */
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
}

.inner-hero-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 24px;
}

.inner-title {
    color: #ffffff;
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 10px;
}

.breadcrumb-trail {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb-trail a {
    color: #00bcd4;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.breadcrumb-trail a:hover { color: #ffffff; }
.breadcrumb-sep { font-size: 10px; color: rgba(255, 255, 255, 0.4); }
.current-page { color: #ffffff; font-weight: 600; }

/* --- SECTION CORPORATE OVERVIEW CONTENT --- */
.section-padding { padding: 80px 0; }
.overview-grid-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 50px;
}

.sub-badge {
    display: inline-block;
    background-color: rgba(0, 188, 212, 0.08);
    color: #00bcd4;
    font-weight: 700;
    font-size: 12px;
    padding: 6px 14px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.section-title-dark {
    font-size: 28px;
    color: #1a237e;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 25px;
}

.paragraph-lead {
    font-size: 16px;
    font-weight: 600;
    color: #333d79;
    line-height: 1.6;
    margin-bottom: 15px;
}

.paragraph-text {
    font-size: 15px;
    color: #555555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.corporate-quote-box {
    background-color: #ffffff;
    border-left: 4px solid #00bcd4;
    padding: 20px 25px;
    border-radius: 0 8px 8px 0;
    margin: 25px 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}

.quote-icon { font-size: 24px; color: rgba(0, 188, 212, 0.3); margin-bottom: 10px; }
.quote-text { font-size: 15px; font-weight: 600; font-style: italic; color: #1a237e; line-height: 1.5; }

/* --- SIDEBAR STAT CARDS --- */
.overview-sidebar-metrics { display: flex; flex-direction: column; gap: 20px; }
.metric-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.02);
    border: 1px solid rgba(26, 35, 126, 0.03);
    display: flex;
    gap: 20px;
}

.metric-icon-box {
    width: 50px; height: 50px; background-color: rgba(13, 71, 161, 0.05);
    color: #0d47a1; border-radius: 8px; display: flex; align-items: center;
    justify-content: center; font-size: 20px; flex-shrink: 0;
}

.metric-card:hover .metric-icon-box {
    background-color: #00bcd4; color: #ffffff; transition: all 0.3s ease;
}

.metric-info h3 { font-size: 16px; font-weight: 700; color: #1a237e; margin-bottom: 5px; }
.metric-info p { font-size: 13.5px; color: #666666; line-height: 1.5; }

/* --- VISION & MISSION BOX SPLIT GRID --- */
.vision-mission-section { background-color: #f4f6f9; padding: 70px 0; }
.vision-mission-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.vision-box, .mission-box {
    padding: 40px;
    border-radius: 12px;
    background-color: #ffffff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

.border-accent-tosca { border-top: 4px solid #00bcd4; }
.bg-navy-dark { background-color: #0b123a; color: #ffffff; }

.box-header { display: flex; align-items: center; gap: 15px; margin-bottom: 20px; }
.vision-mission-icon { font-size: 24px; color: #0d47a1; }
.box-header h3 { font-size: 20px; font-weight: 700; color: #1a237e; }
.vision-box p { font-size: 15px; color: #555555; line-height: 1.7; }
.mission-box p, .mission-box li { font-size: 15px; color: rgba(255, 255, 255, 0.75); line-height: 1.7; }

.mission-list { list-style: none; padding: 0; margin: 0; }
.mission-list li { display: flex; gap: 12px; margin-bottom: 15px; align-start: flex-start; }
.mission-bullet { color: #00bcd4; font-size: 14px; margin-top: 4px; flex-shrink: 0; }

/* Responsive Grid */
@media (max-width: 768px) {
    .overview-grid-container, .vision-mission-container { grid-template-columns: 1fr; gap: 30px; }
    .inner-title { font-size: 28px; }
}

/* --- PERBAIKAN WARNA KONTRAST UTK MISI (ANTI-TABRAKAN) --- */
.bg-navy-dark .box-header h3 {
    color: #ffffff !important; /* Memaksa teks judul menjadi putih bersih */
}

.bg-navy-dark .box-header .vision-mission-icon {
    color: #00bcd4 !important; /* Memaksa ikon target menyala warna Tosca premium agar kontras */
}

/* ==========================================================================
   Q. ORGANIZATION STRUCTURE LAYOUT GRID STYLING
   ========================================================================== */
.org-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-center { text-align: center; }
.org-header { margin-bottom: 60px; }
.section-subtitle {
    font-size: 15px;
    color: #666666;
    max-width: 700px;
    margin: 15px auto 0 auto;
    line-height: 1.6;
}

/* Pengatur Alur Tingkatan (Tiered Hierarchical Framework) */
.tier-wrapper {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

/* Tingkat Atas: 1 Kolom Utama */
.tier-top .team-card {
    max-width: 320px;
    width: 100%;
}

/* Tingkat Tengah & Bawah Grid */
.tier-middle .team-card { width: calc(33.333% - 20px); max-width: 300px; }
.tier-bottom .team-card { width: calc(33.333% - 20px); max-width: 280px; }

/* Desain Kartu Tim Premium */
.team-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(11, 18, 58, 0.03);
    border: 1px solid rgba(26, 35, 126, 0.04);
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    text-align: center;
}

.team-img-wrapper {
    width: 100%;
    height: 320px;
    overflow: hidden;
    background-color: #f4f6f9;
    position: relative;
}

.team-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.team-info-box {
    padding: 22px 15px;
    background: #ffffff;
}

.team-name {
    font-size: 17px;
    font-weight: 700;
    color: #1a237e; /* Biru Tua */
    margin-bottom: 6px;
}

.team-role {
    font-size: 13.5px;
    font-weight: 600;
    color: #00bcd4; /* Tosca */
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Efek Hover Kartu Premium */
.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(11, 18, 58, 0.08);
}

.team-card:hover .team-img {
    transform: scale(1.05); /* Gambar sedikit nge-zoom mewah saat di-hover */
}

/* Aksen Khusus untuk CEO Card */
.premium-border {
    border-top: 4px solid #0d47a1; /* Garis biru tua solid khusus pimpinan puncak */
}

.text-gradient-tosca {
    color: #0d47a1;
    font-weight: 700;
}

/* Responsif untuk Layar Tablet dan Handphone */
@media (max-width: 991px) {
    .tier-middle .team-card, .tier-bottom .team-card {
        width: calc(50% - 15px);
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .tier-wrapper { gap: 20px; }
    .tier-middle .team-card, .tier-bottom .team-card {
        width: 100%;
    }
    .team-img-wrapper { height: 280px; }
}

/* ==========================================================================
   R. MOBILE HAMBURGER & SLIDING NAVIGATION STYLING
   ========================================================================== */

/* Tombol garis tiga (Hamburger) - Default Sembunyi di Desktop */
.btn-hamburger {
    display: none;
    background: none;
    border: none;
    color: #1a237e;
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
    transition: color 0.3s ease;
}

/* Kanvas Pembungkus Menu Mobile (Overlay Backdrop) */
.mobile-navigation-overlay {
    position: fixed;
    top: 0;
    right: -100%; /* Sembunyi di sebelah kanan layar */
    width: 100%;
    height: 100%;
    background-color: rgba(11, 18, 58, 0.5); /* Efek gelap transparan */
    backdrop-filter: blur(4px);
    z-index: 10000;
    transition: right 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Ketika Menu Aktif Terbuka */
.mobile-navigation-overlay.active {
    right: 0;
}

/* Kotak Menu Putih yang Bergeser */
.mobile-menu-box {
    width: 280px;
    height: 100%;
    background-color: #ffffff;
    margin-left: auto; /* Mendorong kotak ke sisi kanan */
    padding: 25px 20px;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding-bottom: 15px;
}

.mobile-menu-title { font-weight: 800; color: #1a237e; font-size: 18px; }
.btn-close-mobile { background: none; border: none; color: #1a237e; font-size: 24px; cursor: pointer; }
.btn-close-mobile:hover { color: #00bcd4; }

/* Daftar List Menu di Mobile */
.mobile-nav-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 15px; }
.mobile-nav-list li a, .mobile-dropdown-toggle {
    display: block;
    color: #1a237e;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    padding: 10px 0;
    cursor: pointer;
    transition: color 0.2s;
}

.mobile-nav-list li a:hover, .mobile-dropdown-toggle:hover { color: #00bcd4; }

/* Sub Menu Dropdown Mobile */
.mobile-dropdown-toggle { display: flex; align-items: center; justify-content: space-between; }
.mobile-arrow { font-size: 12px; transition: transform 0.3s; }
.mobile-sub-menu {
    list-style: none;
    padding-left: 15px;
    margin-top: 5px;
    display: none; /* Sembunyi bawaan, dibuka via JS toggle */
    border-left: 2px solid #00bcd4;
}
.mobile-sub-menu li a { font-size: 14.5px; font-weight: 600; display: flex; align-items: center; gap: 10px; }

/* Baris Tambahan untuk Bendera */
.mobile-extra-row {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(0,0,0,0.05);
}

/* MEDIA QUERIES: MEMUNCUKKAN HAMBURGER DI LAYAR KECIL */
@media (max-width: 991px) {
    .nav-list { display: none !important; } /* Sembunyikan menu desktop */
    .btn-hamburger { display: block; } /* Munculkan tombol garis tiga */
}
/* ==========================================================================
   S. DETAILED SERVICES PAGE STYLING (Z-PATTERN & CTA BANNER)
   ========================================================================== */

/* Indikator Aktif Menu Navigasi */
.active-nav {
    color: #00bcd4 !important; /* Otomatis menyala tosca saat di halaman services */
    font-weight: 700;
}

/* Blok Layout Berseling (Alternating Rows) */
.service-row-block {
    padding: 90px 0;
    border-bottom: 1px solid rgba(11, 18, 58, 0.04);
}

.bg-light-gradient {
    background: linear-gradient(180deg, #f8fafd 0%, #ffffff 100%);
}

.service-grid-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Membalik Arah Kolom untuk Baris Kedua (Efek Z-Pattern) */
.row-reverse {
    direction: rtl;
}
.row-reverse .service-text-pane {
    direction: ltr; /* Mengembalikan arah teks normal dari kiri ke kanan */
}
.row-reverse .service-visual-pane {
    direction: ltr;
}

/* Sisi Gambar & Lencana Sektor */
.service-visual-pane {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(11, 18, 58, 0.06);
}

.service-main-img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.service-visual-pane:hover .service-main-img {
    transform: scale(1.03);
}

.accent-badge-box {
    position: absolute;
    bottom: 20px;
    left: 20px;
    padding: 12px 20px;
    border-radius: 8px;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.bg-navy-solid { background-color: #0b123a; }
.bg-tosca-solid { background-color: #00bcd4; }

/* Sisi Teks Deskripsi & Fitur */
.service-text-pane { display: flex; flex-direction: column; }
.service-block-title {
    font-size: 28px;
    color: #1a237e;
    font-weight: 800;
    margin-bottom: 18px;
    line-height: 1.3;
}

.service-block-desc {
    font-size: 15px;
    color: #555555;
    line-height: 1.7;
    margin-bottom: 25px;
}

/* List Centang Fitur */
.service-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-bottom: 35px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.service-features-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14.5px;
    color: #444444;
    line-height: 1.5;
}

.service-features-list li i {
    color: #00bcd4; /* Centang Tosca */
    font-size: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}

/* Tombol Aksi */
.service-cta-btn {
    align-self: flex-start;
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.btn-navy { background-color: #0b123a; color: #ffffff; }
.btn-navy:hover { background-color: #00bcd4; transform: translateY(-2px); }
.btn-tosca { background-color: #00bcd4; color: #ffffff; }
.btn-tosca:hover { background-color: #0b123a; transform: translateY(-2px); }

/* --- SECTION CALL TO ACTION GLOBAL (CTA BANNER) --- */
.global-cta-section {
    background-image: linear-gradient(135deg, #0b123a 0%, #1a237e 100%);
    padding: 80px 0;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.cta-inner-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

.cta-inner-container h2 {
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.3;
}

.cta-inner-container p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 35px;
}

.cta-btn-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-primary-btn {
    background-color: #00bcd4; /* Tosca */
    color: #ffffff;
    padding: 14px 32px;
    border-radius: 30px;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 5px 20px rgba(0, 188, 212, 0.3);
    transition: all 0.3s ease;
}

.cta-primary-btn:hover { background-color: #ffffff; color: #0b123a; transform: translateY(-3px); }

.cta-secondary-btn {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 12px 32px;
    border-radius: 30px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-secondary-btn:hover { border-color: #ffffff; background-color: rgba(255,255,255,0.05); transform: translateY(-3px); }

/* RESPONSIVE LAYOUT */
@media (max-width: 768px) {
    .service-grid-container { grid-template-columns: 1fr; gap: 40px; }
    .row-reverse { direction: ltr; }
    .service-main-img { height: 280px; }
    .cta-inner-container h2 { font-size: 24px; }
}

/* ==========================================================================
   T. CORPORATE NEWS GRID & MEDIA ARCHIVE STYLING
   ========================================================================== */

.archive-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Toolbar Panel: Filters and Local Search Field */
.archive-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 45px;
    flex-wrap: wrap;
    border-bottom: 1px solid rgba(11, 18, 58, 0.06);
    padding-bottom: 20px;
}

.category-filters {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-btn {
    background-color: #f4f6fa;
    border: none;
    padding: 10px 22px;
    border-radius: 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13.5px;
    font-weight: 600;
    color: #444444;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover, .category-filters .filter-btn.active {
    background-color: #1a237e; /* Navy theme */
    color: #ffffff;
}

.inline-search-box {
    position: relative;
    width: 280px;
}

.inline-search-input {
    width: 100%;
    padding: 11px 40px 11px 16px;
    border: 1px solid rgba(11, 18, 58, 0.15);
    border-radius: 25px;
    font-size: 14px;
    outline: none;
    font-family: 'Open Sans', sans-serif;
    transition: border-color 0.3s;
}

.inline-search-input:focus {
    border-color: #00bcd4; /* Tosca active border */
}

.search-icon-inside {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #1a237e;
    font-size: 14px;
    pointer-events: none;
}

/* 3-Column Corporate News Grid Layout */
.corporate-news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.news-grid-card {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(11, 18, 58, 0.04);
    border: 1px solid rgba(11, 18, 58, 0.03);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-grid-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(11, 18, 58, 0.08);
}

.card-thumbnail-pane {
    position: relative;
    height: 210px;
    overflow: hidden;
}

.news-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-cat-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #00bcd4; /* Tosca Category Badge */
    color: #ffffff;
    padding: 5px 12px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
    letter-spacing: 0.5px;
}

.card-body-pane {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.news-meta-row {
    display: flex;
    gap: 15px;
    font-size: 12px;
    color: #888888;
    margin-bottom: 12px;
}

.news-meta-row span i {
    color: #00bcd4;
    margin-right: 4px;
}

.news-card-title {
    font-size: 17px;
    color: #1a237e;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 12px;
}

.news-card-title a {
    color: #1a237e;
    text-decoration: none;
    transition: color 0.2s;
}

.news-card-title a:hover {
    color: #00bcd4;
}

.news-card-excerpt {
    font-size: 13.5px;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.news-readmore-link {
    margin-top: auto;
    font-size: 13px;
    font-weight: 700;
    color: #1a237e;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s;
}

.news-readmore-link i {
    transition: transform 0.2s;
}

.news-readmore-link:hover {
    color: #00bcd4;
}

.news-readmore-link:hover i {
    transform: translateX(4px);
}

/* Pagination Control Layout */
.pagination-wrapper {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.page-nav-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: #ffffff;
    border: 1px solid rgba(11, 18, 58, 0.08);
    color: #1a237e;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s ease;
}

.page-nav-link:hover, .pagination-wrapper .page-nav-link.active-page {
    background-color: #1a237e;
    color: #ffffff;
    border-color: #1a237e;
}

.disabled-nav {
    background-color: #f4f6fa;
    color: #bbbbbb;
    cursor: not-allowed;
    pointer-events: none;
}

/* RESPONSIF GRID BERITA */
@media (max-width: 991px) {
    .corporate-news-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 650px) {
    .corporate-news-grid { grid-template-columns: 1fr; }
    .archive-toolbar { flex-direction: column; align-items: flex-start; }
    .inline-search-box { width: 100%; }
}

/* ==========================================================================
   MOBILE NAVIGATION ANIMATION INTERACTIVE
   ========================================================================== */

/* Menyembunyikan menu mobile di sebelah kanan layar saat tidak aktif */
.mobile-navigation-overlay {
    position: fixed;
    top: 0;
    right: -100%; /* Sembunyi di luar kanan */
    width: 100%;
    height: 100%;
    background-color: rgba(11, 18, 58, 0.5); /* Backdrop transparan gelap */
    z-index: 9999;
    transition: right 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    display: flex;
    justify-content: flex-end;
}

/* Kelas pemicu dari JavaScript untuk menggeser menu masuk ke layar */
.mobile-navigation-overlay.active-menu {
    right: 0; /* Geser masuk ke dalam layar */
}

/* Gaya kotak menu di dalam overlay */
.mobile-menu-box {
    width: 300px;
    height: 100%;
    background-color: #ffffff;
    padding: 30px 24px;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
}

/* Memaksa sub-menu mobile dan isinya terlihat jelas saat display block */
.mobile-sub-menu {
    opacity: 1 !important;
    visibility: visible !important;
    height: auto !important;
    overflow: visible !important;
}

.mobile-sub-menu .mobile-link {
    color: #111111 !important; /* Mengubah warna teks menjadi hitam/gelap */
    display: block !important;
    padding: 8px 0;
}

/* ==========================================================================
   KODE TAMBAHAN UNTUK HALAMAN CONTACT US 
   ========================================================================== */

/* --- Banner Hero Section --- */
.page-hero-banner {
    background: linear-gradient(105deg, #162247 0%, #202b54 40%, #1a3c6d 100%);
    padding: 120px 20px 70px;
    text-align: left;
    color: #ffffff;
}
.banner-container {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
}
.banner-title {
    font-size: 3.2rem;
    font-weight: 700;
    margin: 0 0 10px 0;
    letter-spacing: 0.5px;
}
.banner-breadcrumbs {
    font-size: 1.05rem;
    margin: 0;
    opacity: 0.85;
    font-weight: 400;
}
.banner-breadcrumbs a {
    color: #ffffff;
    text-decoration: none;
    opacity: 0.7;
}
.banner-breadcrumbs i {
    font-size: 0.75rem;
    margin: 0 12px;
    opacity: 0.6;
}

/* --- Layout Konten Utama --- */
.contact-main-content {
    background-color: #ffffff;
    padding: 70px 20px;
}
.contact-grid-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

/* --- WhatsApp Call To Action Box --- */
.whatsapp-cta-block {
    background: linear-gradient(135deg, #0b1d3a 0%, #162a4a 100%);
    padding: 50px 40px;
    border-radius: 12px;
    text-align: center;
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(11,29,58,0.15);
    border-bottom: 5px solid #00a896;
    position: relative;
    overflow: hidden;
}
.bg-circle-1 {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(0, 168, 150, 0.1);
    border-radius: 50%;
    pointer-events: none;
}
.bg-circle-2 {
    position: absolute;
    bottom: -80px;
    left: -50px;
    width: 250px;
    height: 250px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    pointer-events: none;
}
.cta-inner-content {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}
.cta-badge {
    background: rgba(0, 168, 150, 0.2);
    color: #00a896;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 20px;
}
.cta-heading {
    font-size: 2.3rem;
    margin: 0 0 15px 0;
    font-weight: 700;
}
.cta-description {
    font-size: 1.05rem;
    opacity: 0.8;
    margin: 0 0 35px 0;
    line-height: 1.6;
}
.btn-wa-hero {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border: 1px solid rgba(0, 168, 150, 0.4);
    background: linear-gradient(135deg, #00a896 0%, #0b1d3a 100%);
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(0, 168, 150, 0.3);
}
.btn-wa-hero:hover {
    background: linear-gradient(135deg, #0b1d3a 0%, #00a896 100%);
    transform: scale(1.03);
    box-shadow: 0 8px 25px rgba(0, 168, 150, 0.5);
}

/* --- Info Cards Grid --- */
.info-cards-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}
.contact-card {
    flex: 1;
    min-width: 300px;
    background: #ffffff;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}
.card-tosca-top { border-top: 4px solid #00a896; }
.card-blue-top { border-top: 4px solid #0b1d3a; }
.card-slate-bg { 
    background: #f8fafc; 
    border-top: 4px solid #162a4a; 
    border-left: 1px solid #e2e8f0;
    border-right: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.icon-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 20px;
}
.bg-tosca-light { background: rgba(0, 168, 150, 0.1); }
.text-tosca { color: #00a896; }
.bg-blue-light { background: rgba(11, 29, 58, 0.1); }
.text-blue { color: #0b1d3a; }
.bg-slate-light { background: rgba(22, 42, 74, 0.08); }

.card-title {
    color: #0b1d3a;
    margin: 0 0 15px 0;
    font-size: 1.4rem;
    font-weight: 600;
}
.card-text {
    margin: 0 0 15px 0;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.7;
}
.card-footer-info {
    border-top: 1px solid #eee;
    padding-top: 15px;
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    color: #666;
    font-size: 0.9rem;
}
.card-footer-info i {
    width: 20px;
}

/* --- Tabel Jam Kerja --- */
.hours-table {
    width: 100%;
    font-size: 0.9rem;
    color: #555;
    border-collapse: collapse;
}
.hours-table td {
    padding: 6px 0;
}
.text-right { text-align: right; }
.font-semibold { font-weight: 600; }
.text-red, .text-red td { color: #dc2626; font-weight: 600; }

/* ==========================================================================
   ANIMASI PRELOADER (LOADING SCREEN)
   ========================================================================== */

/* Kontainer Utama Menutupi Layar penuh */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0b1d3a; /* Biru Tua Formal Website Anda */
    z-index: 99999; /* Memastikan berada di paling atas objek lain */
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

/* Bungkus Konten Loading */
.loader-content {
    text-align: center;
}

/* Spinner Putar (Aksen Tosca) */
.spinner {
    width: 60px;
    height: 60px;
    border: 5px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    border-top-color: #00a896; /* Warna Tosca Ciri Khas Anda */
    margin: 0 auto 20px;
    animation: spin 1s linear infinite;
}

/* Teks Efek Berkedip Halus (Fade) */
.loading-text {
    color: #ffffff;
    font-family: inherit;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin: 0;
    animation: pulse 1.5s ease-in-out infinite;
}

/* Penyembunyian Preloader setelah selesai */
#preloader.fade-out {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* Keyframes untuk Animasi Berputar */
@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Keyframes untuk Animasi Teks Berdenyut */
@keyframes pulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}