/* ================= VARIABEL WARNA & RESET ================= */
:root {
    --navy: #073763;    /* Primary Brand Color */
    --teal: #007B89;    /* Secondary/Hover Color */
    --gold: #cea400;    /* Accent/Button Color */
    --black-overlay: #000000d8; /* Overlay Transparan */
    --white: #ffffff;     /* Text & Background */
    --gray-light: #f4f4f4; /* Background alternatif */
    --text-dark: #333333;

	--f-spinner-color: var(--gold);      /* Warna loading spinner */
    --f-button-color: var(--white);      /* Warna ikon tombol */
    --f-button-bg: rgba(7, 55, 99, 0.5); /* Background tombol (Navy transparan) */
    --f-button-hover-bg: var(--gold);    /* Warna hover tombol */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
	overflow-x: hidden; /* Memotong kelebihan lebar layar */
    font-family: 'Roboto', sans-serif;
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.6;
}

a { text-decoration: none; }
ul { list-style: none; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Tombol */
.btn-primary {
    background-color: var(--navy);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    border: none;
    cursor: pointer;
    display: inline-block; /* PENTING: Agar transform scale bekerja sempurna */
    
}

.btn-primary:hover {
    background-color: #0a4b87; 
    color: var(--white);
    
    
    /* 3. Shadow disamakan agar elegan */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary-stroke {
    display: inline-block;
    background-color: var(--gold);
    color: #FFF; /* Teks gelap kontras */
    padding: 14px 40px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.btn-primary-stroke:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3); /* Bayangan lebih dalam saat hover */
}

.btn-secondary {
    background-color: var(--navy);
    color: var(--white); /* Teks Navy di atas Emas agar kontras */
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 700;
    display: inline-block;
    transition: 0.3s;
}
.btn-secondary:hover {
    background-color: #007B89; /* Emas sedikit lebih gelap */
    transform: translateY(-2px);
}
.info-text-content p, 
.info-text-content a {
    word-wrap: break-word;      /* Standar lama */
    overflow-wrap: break-word;  /* Standar baru */
    word-break: break-all;      /* Paksa potong jika masih membandel (untuk email/url) */
    max-width: 100%;            /* Pastikan tidak melebihi container */
}
/* ================= HEADER ================= */
header {
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
}

/* Top Bar */
.top-bar {
    background-color: var(--white);
    border-bottom: 1px solid #eee;
    padding: 8px 0;
    font-size: 13px;
}
.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}
/* Garis biru di bawah Top Bar */
.top-bar-inner::after {
    content: '';
    position: absolute;
    bottom: -9px; /* Menempel di border bawah */
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--teal);
    opacity: 0.5;
}

.contact-info {
    display: flex;
    gap: 20px;
}
.contact-info a {
    color: #666;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s;
}
.contact-info a:hover { color: var(--navy); }
.contact-info i { color: var(--teal); }
.social-media a { color: var(--teal); font-size: 16px; }

/* Main Nav */
.main-nav {
    padding: 15px 0;
    background-color: var(--white);
}
.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo img {
    height: 50px;
    width: auto;
}

/* Menu Links */
.nav-links ul {
    display: flex;
    gap: 30px;
}
.nav-links a {
    color: var(--navy);
    font-weight: 500;
    font-size: 16px;
    padding-bottom: 5px;
    border-bottom: 2px solid transparent;
    transition: 0.3s;
}
.nav-links a:hover, 
.nav-links a.active {
    color: var(--gold);
    border-bottom-color: var(--gold);
}

.hamburger {
    display: none;
    font-size: 24px;
    color: var(--navy);
    cursor: pointer;
}

.nav-cta .btn-primary {
    background-color: var(--navy); /* Tombol Contact Us Navy */
}

.nav-cta .btn-primary:hover {
    background-color: #0a4b87 !important; /* Warna Teal saat hover */
}

/* ================= HERO SLIDER ================= */
.hero-slider {
    position: relative;
    height: 100vh; /* Tinggi Hero */
    width: 100%;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease;
    
    /* REVISI: Flexbox untuk posisi Tengah-Bawah */
    display: flex;
    justify-content: center; /* Horizontal Tengah */
    align-items: flex-end;   /* Vertikal Bawah */
    
    /* Padding Bawah: Mengatur jarak agar teks berada di atas tombol slider */
    /* Tombol ada di bottom: 30px, jadi kita beri ruang lebih */
    padding-bottom: 130px;   
    z-index: 1;
}

.slide.active { opacity: 1; z-index: 1; }

/* Kontainer Konten Slide */
.slide-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

/* Kotak Teks (Kiri) */
.text-box {
    padding: 30px 40px;
    
    /* Lebar & Posisi */
    max-width: 800px; /* Sedikit lebih lebar agar teks 1 baris jika memungkinkan */
    width: 90%;       /* Responsif di layar kecil */
    margin: 0 auto;   /* Center box */
    border-radius: 8px;
    color: var(--white);
    margin-bottom: 100px;
    /* Teks Rata Tengah */
    text-align: center;
    
    /* Animasi masuk */
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.8s ease 0.5s;
}

.slide.active .text-box {
    transform: translateY(0);
    opacity: 1;
}

.text-box h1 {
	font-family: 'Arial Black', sans-serif;
    font-size: 48px; /* Saya perbesar sedikit agar outline lebih jelas terbaca */
    margin-bottom: 15px;
    line-height: 1.2;
    font-weight: 800; /* Font harus tebal (Bold/ExtraBold) agar efek outline bagus */
    /* === STYLE OUTLINE ONLY (NAVY) === */
    color: transparent; /* Isi teks jadi transparan/tembus pandang */
    -webkit-text-stroke: 3px var(--navy); /* Garis tepi setebal 2px warna Navy */
    /* Opsional: Jika ingin outline Emas, ganti var(--navy) jadi var(--gold) */
    text-shadow: 0 2px 4px rgba(225,225,225,1); /* Bayangan agar terbaca di background terang */
    white-space: nowrap;
    text-transform: uppercase; /* Opsional: Huruf besar semua agar lebih gagah */
}

.text-box p {
    font-size: 24px;       /* Diperbesar (dari 16px) agar imbang dengan H1 */
    font-weight: 400;      /* Font tipis agar kontras dengan H1 yang tebal */
    letter-spacing: 3px;   /* Jarak antar huruf diperlebar agar elegan */
    text-transform: uppercase; /* Huruf besar semua menyesuaikan gaya H1 */
    color: var(--white);   /* Warna putih solid agar mudah dibaca */
    margin-top: 10px;      /* Jarak sedikit dari H1 */
    margin-bottom: 0;      /* Hapus margin bawah berlebih */
    text-shadow: 0 2px 4px rgba(0,0,0,1); /* Bayangan agar terbaca di background terang */
}

/* Tombol Navigasi (Kiri Kanan Tengah) */
.slider-btn {
    position: absolute;
    top: auto;             /* Hapus centering vertikal lama */
    bottom: 30px;          /* Posisikan di bawah (sedikit di atas dots) */
    transform: none;       /* Reset transform lama */
    z-index: 20;           /* Pastikan di atas layer lain */
    
    /* STYLE TRANSPARAN (Default) */
    background-color: transparent; 
    color: var(--white);
    border: 2px solid var(--white); /* Border putih tipis agar terlihat */
    
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background-color: rgb(7 55 99 / 50%);
    color: var(--white);
    transform: scale(1.1); /* Efek membesar sedikit saat hover */
}

/* Posisi Tombol PREV (Kiri dari tengah) */
.prev-btn { 
    left: 50%; 
    right: auto; 
    /* Geser ke kiri: 
       (Lebar Area Dots estimasi 80px / 2) + (Jarak Aman 20px) + (Lebar Tombol 50px) 
       = Sekitar -100px dari titik tengah */
    margin-left: -100px; 
}

/* Posisi Tombol NEXT (Kanan dari tengah) */
.next-btn { 
    left: 50%; 
    right: auto;
    /* Geser ke kanan:
       (Lebar Area Dots estimasi 80px / 2) + (Jarak Aman 20px) 
       = Sekitar +60px dari titik tengah */
    margin-left: 50px; 
}

/* Dots Pagination (Bawah Tengah) */
.slider-dots {
    position: absolute;
    bottom: 45px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 10px;
}
.dot {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}
.dot.active, .dot:hover {
    background-color: var(--white);
    transform: scale(1.2);
}

/* ================= INTRO SECTION ================= */
.section-intro {
	color: var(--navy);
}
.section-intro-sub {
	color: #000;
	font-size: 18px;
}
.intro-section {
    /* Pindahkan background ke sini agar lebar penuh */
    background-image: url('../images/intro-background.webp');
    background-size: cover;
    background-position: center;
    background-color: var(--navy); /* Fallback color */
    
    padding: 20px 0; 
    position: relative;
    z-index: 1;
    margin-top: 0; 
}

/* Overlay Gelap */
.intro-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(7, 55, 99, 0.8); /* Navy transparan */
    z-index: -1; 
}

/* Box Teks Intro */
.intro-box {
    background: none; 
    box-shadow: none; 
    border-radius: 0;
    padding: 0; 
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.intro-box .intro-title {
    color: var(--gold); 
    text-shadow: none;
    font-size: 32px; 
    margin-bottom: 25px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.intro-box .intro-text {
    color: var(--white); 
    text-shadow: none;
    font-size: 18px; 
    line-height: 1.8;
    margin: 0 auto;
}

/* ================= COMPANY OVERVIEW ================= */
.company-overview {
    padding: 80px 0;
    background-color: var(--white);
}

.overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 2 Kolom */
    gap: 60px;
    align-items: center;
}

/* --- Kolom Teks --- */
.pill-label {
    display: inline-block;
    background-color: #e0e0e0; 
    color: var(--navy);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}
.pill-label i {
    color: var(--navy);
    margin-right: 5px;
}

.overview-text h2 {
    font-size: 36px;
    color: var(--navy);
    margin-bottom: 5px;
    font-weight: 700;
}

.divider-line {
    width: 100px;
    height: 4px;
    background-color: var(--gold);
    margin-bottom: 15px;
}

.overview-text p {
    color: #555;
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.btn-primary i { margin-left: 8px; font-size: 12px; }

/* --- Kolom Gambar --- */
.overview-image-wrapper {
    position: relative;
    padding: 20px; 
}

.overview-img {
    position: relative;
    z-index: 2;
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.image-bg-accent {
    position: absolute;
    top: 0;
    left: 0; 
    width: 100%; 
    height: 100%;
    background-color: var(--navy); 
    border-radius: 10px;
    z-index: 1;
    transform: rotate(-3deg) scale(0.95); 
}

/* ================= PRODUCT INTRODUCTION ================= */
.product-intro {
    padding: 80px 0;
    background-color: var(--gray-light); 
}

.text-center { text-align: center; }

.pill-label-center {
    display: inline-block;
    background-color: #e0e0e0;
    color: var(--navy);
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}
.pill-label-center i { margin-right: 5px; }

.intro-header h2 {
    font-size: 36px;
    color: var(--navy);
    margin-bottom: 0px;
    font-weight: 700;
}

.divider-line-center {
    width: 100px;
    height: 4px;
    background-color: var(--gold);
    margin: 0 auto 10px auto; 
}

.intro-header p {
    color: #555;
    font-size: 18px;
    margin-bottom: 50px;
}

/* Grid Kartu */
.product-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 30px;
    margin-bottom: 40px;
}

.prod-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    border: 1px solid #eee; 
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.prod-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* Ikon Kotak */
.prod-icon-box {
    width: 60px;
    height: 60px;
    background-color: var(--navy); 
    border-radius: 10px; 
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 24px;
    margin-bottom: 25px;
}

.prod-card h4 {
    font-size: 20px;
    color: var(--navy);
    margin-bottom: 15px;
    font-weight: 700;
}

.prod-card p {
    color: #666;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 0;
}

.mt-40 { margin-top: 40px; }

/* ================= OUR FACILITY (UPDATED FROM YOUR SCRIPT) ================= */
.facility-overview {
    padding: 80px 0;
    background-color: var(--white);
}

.facility-modern-card {
    position: relative;
    width: 100%;
    min-height: 500px; /* Tinggi kartu */
    border-radius: 20px; /* Sudut membulat seperti contoh */
    overflow: hidden;
    background-size: cover;
    background-position: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15); /* Bayangan halus di bawah kartu */
    display: flex;
    align-items: center; /* Vertikal center konten */
}

/* Layer Gradasi Biru di atas Gambar */
.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Gradasi dari transparan (atas) ke Navy pekat (bawah) sesuai gambar referensi */
    background: linear-gradient(180deg, rgba(255,255,255,0.1) 0%, rgba(7, 55, 99, 0.6) 40%, rgba(7, 55, 99, 1) 100%);
    z-index: 1;
}

/* Wrapper Konten */
.card-content {
    position: relative;
    z-index: 2;
    padding: 60px;
    max-width: 800px; /* Batasi lebar teks agar tidak terlalu panjang */
    color: var(--white);
}

/* Pill Label (Kaca Transparan) */
.pill-label-glass {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.2); /* Efek transparan */
    backdrop-filter: blur(5px);
    color: var(--gold); /* Teks/Icon Kuning */
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.pill-label-glass i {
    margin-right: 8px;
}

/* Judul Besar */
.card-content h2 {
    font-size: 42px;
    margin-bottom: 5px;
    font-weight: 400; /* Font sedikit lebih tipis agar elegan */
    letter-spacing: 0.5px;
}

/* Garis Kuning di Bawah Judul */
.title-underline {
    width: 100px;
    height: 4px;
    background-color: var(--gold);
    margin-bottom: 10px;
    border-radius: 2px;
}

/* Paragraf */
.card-content p {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9); /* Putih sedikit transparan agar tidak menyilaukan */
    margin-bottom: 10px;
}

/* Tombol Emas (Sesuai Referensi) */
.btn-gold {
    display: inline-block;
    background-color: var(--gold);
    color: var(--navy); /* Teks gelap agar kontras */
    padding: 12px 35px;
    border-radius: 8px;
    font-weight: 700;
    margin-top: 20px;
    transition: all 0.3s ease;
    border: none;
}

.btn-gold:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.btn-gold i {
    margin-left: 8px;
    font-size: 12px;
}

.facility-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 500px;
}

/* Background Image Besar */
.facility-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%; /* Updated: Full width */
    height: 100%;
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* Overlay Gradien pada Gambar */
.facility-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(7, 55, 99, 0.9), rgba(7, 55, 99, 0.3));
    z-index: 1;
}

/* Card Overlay (Putih/Transparan) */
.facility-card-overlay {
    position: relative;
    z-index: 2;
    margin-left: auto;
    width: 100%; /* Updated: Full width */
    background-color: rgba(255, 255, 255, 0.1);
    padding: 40px;
    color: var(--white);
}

.pill-label-accent {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--gold);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}
.pill-label-accent i { margin-right: 5px; }

.facility-card-overlay h2 {
    font-size: 42px;
    color: var(--white);
    margin-bottom: 15px;
    font-weight: 700;
}

.facility-card-overlay p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* ================= FOOTER ================= */
.main-footer {
    background-color: var(--navy);
    color: #ccc;
    padding: 60px 0 20px 0;
    margin-top: auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    height: 40px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1); /* Membuat logo putih jika aslinya berwarna */
}

.footer-col h4 {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background-color: var(--gold);
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col a {
    color: #ccc;
    transition: 0.3s;
}

.footer-col a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.footer-contact i {
    color: var(--gold);
    margin-top: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 14px;
}

/* =========================================
   NEWS PAGE WITH SIDEBAR LAYOUT
========================================= */

/* Wrapper Utama (Grid 2 Kolom: Konten & Sidebar) */
.news-layout-sidebar {
    display: grid;
    grid-template-columns: 2fr 1fr; /* Konten 2 bagian, Sidebar 1 bagian */
    gap: 40px;
    align-items: flex-start;
}

/* Grid Berita (2 Kolom Kartu) */
.news-grid-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

/* Penyesuaian Kartu Berita di Halaman News */
.news-card-minimal {
    height: 100%; /* Agar tinggi kartu seragam */
}

/* --- SIDEBAR STYLES --- */
.news-sidebar {
    position: sticky;
    top: 100px; /* Sticky saat scroll */
}

.sidebar-widget {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #eee;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}

.widget-title {
    font-size: 18px;
    color: var(--navy);
    margin-bottom: 20px;
    font-weight: 700;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

/* Search Widget */
.search-form {
    display: flex;
}
.search-form input {
    flex: 1;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px 0 0 4px;
    font-size: 14px;
    outline: none;
    transition: 0.3s;
}
.search-form input:focus {
    border-color: var(--navy);
}
.search-form button {
    background: var(--navy);
    color: var(--white);
    border: none;
    padding: 0 15px;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: 0.3s;
}
.search-form button:hover {
    background: var(--gold);
    color: var(--navy);
}

/* Categories Widget */
.cat-list {
    padding: 0;
    margin: 0;
    list-style: none;
}
.cat-list li {
    border-bottom: 1px solid #f5f5f5;
}
.cat-list li:last-child {
    border-bottom: none;
}
.cat-list a {
    display: flex;
    justify-content: space-between;
    padding: 12px 5px;
    color: #555;
    font-size: 14px;
    font-weight: 500;
    transition: 0.3s;
}
.cat-list a span {
    color: #999;
    font-size: 12px;
}
.cat-list a:hover {
    color: var(--navy);
    background-color: #f9f9f9;
    padding-left: 10px; /* Efek geser */
}

/* Recent Posts Widget */
.recent-post-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.recent-item {
    display: flex;
    gap: 15px;
    align-items: center;
    transition: 0.3s;
}
.recent-item:hover .ri-text h6 {
    color: var(--gold);
}
.recent-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
    background-color: #eee;
}
.ri-text h6 {
    font-size: 14px;
    color: var(--navy);
    margin-bottom: 5px;
    line-height: 1.4;
    font-weight: 600;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.ri-text span {
    font-size: 12px;
    color: #888;
}

/* Tags Widget */
.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.tag-cloud a {
    display: inline-block;
    background: #f5f5f5;
    color: #666;
    padding: 6px 14px;
    font-size: 12px;
    border-radius: 4px;
    transition: 0.3s;
    text-transform: uppercase;
    font-weight: 500;
}
.tag-cloud a:hover {
    background: var(--navy);
    color: var(--white);
}

/* Pagination Adjustments */
.pagination-wrapper {
    display: flex;
    justify-content: center; /* Center pagination */
    margin-top: 20px;
}

/* ================= LATEST NEWS (Minimalist Style) ================= */
.latest-news-section {
    padding: 80px 0;
    background-color: var(--white); /* Background Putih Bersih */
}

/* Grid Layout */
.news-grid-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 Kolom */
    gap: 30px;
    margin-top: 40px;
}

/* Gaya Kartu Berita */
.news-card-minimal {
    background-color: var(--white);
    border-left: 5px solid var(--navy); /* Garis Biru Vertikal di Kiri (Kunci Desain) */
    box-shadow: 0 5px 20px rgba(0,0,0,0.05); /* Bayangan sangat halus */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.news-card-minimal:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Placeholder Gambar (Abu-abu) */
.news-thumb-placeholder {
    width: 100%;
    height: 200px;
    background-color: #f4f6f8; /* Warna abu-abu muda sesuai gambar */
}

/* Konten Teks */
.news-body {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

/* Tanggal & Aksen Garis Kecil */
.news-date {
    font-size: 12px;
    font-weight: 700;
    color: var(--teal);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.news-date .bar-accent {
    font-size: 14px;
    font-weight: 900;
    color: var(--navy); /* Garis kecil pemisah berwarna Navy */
}

.news-body h3 {
    font-size: 20px;
    color: var(--navy);
    margin-bottom: 10px;
    font-weight: 600;
}

.news-excerpt {
    font-size: 15px;
    color: #666;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* Link 'LOADING' / Read More */
.news-read-more {
    font-size: 12px;
    font-weight: 700;
    color: var(--teal);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s;
    margin-top: auto; /* Memaksa link ke bawah */
}

.news-read-more:hover {
    color: var(--navy);
}

/* ================= GALLERY SECTION ================= */
.gallery-section {
    padding: 80px 0;
    background-color: #f9fbfd; /* Background sedikit kebiruan sangat muda agar beda dengan News */
}

/* Grid Foto */
.gallery-preview-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 Kolom Foto */
    gap: 20px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 250px; /* Tinggi seragam */
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* Efek Hover Zoom */
.gallery-item:hover img {
    transform: scale(1.1);
}

/* Overlay Ikon saat Hover */
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(7, 55, 99, 0.6); /* Navy transparan */
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    color: var(--gold);
    font-size: 24px;
}

/* ================= CONTACT CTA SECTION ================= */
.contact-cta-section {
    /* Background Radial tetap sama */
    background: radial-gradient(circle at center, #007B89 0%, #073763 50%, #011d2e 100%);
    
    /* REVISI 1: Padding dikurangi dari 100px ke 60px agar background lebih "kecil/pendek" */
    padding: 60px 0;
    
    color: var(--white);
    position: relative;
    overflow: hidden;
}

/* Pill Label Khusus (Background Biru Transparan) */
.pill-label-glass-blue {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--gold);
    
    /* REVISI: Padding label sedikit diperbesar */
    padding: 10px 30px; 
    border-radius: 50px;
    font-size: 16px; /* Font label naik dari 14px */
    font-weight: 500;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(4px);
}

.pill-label-glass-blue i {
    margin-right: 8px;
}

.contact-cta-section h2 {
    /* REVISI 2: Judul diperbesar dari 42px ke 54px */
    font-size: 54px; 
    color: var(--white);
    margin-bottom: 15px;
    font-weight: 700; /* Ditebalkan sedikit */
    line-height: 1.2;
}

.contact-cta-section p {
    color: rgba(255, 255, 255, 0.9);
    /* REVISI 3: Deskripsi diperbesar dari 16px ke 20px */
    font-size: 20px; 
    margin-bottom: 40px;
    max-width: 800px; /* Batasi lebar agar baris teks enak dibaca */
    margin-left: auto;
    margin-right: auto;
}

/* Tombol CTA Kuning */
.btn-gold-cta {
    display: inline-block;
    background-color: var(--gold);
    color: #FFF;
    
    /* REVISI 4: Tombol diperbesar */
    padding: 18px 50px; /* Padding tombol ditambah */
    border-radius: 8px;
    font-weight: 700;
    font-size: 18px; /* Font tombol naik dari 15px */
    
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.btn-gold-cta:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.btn-gold-cta i {
    margin-left: 12px;
    font-size: 14px;
}

/* ================= MINIMAL FOOTER ================= */
.minimal-footer {
    background-color: #222222; /* Abu-abu sangat gelap */
    color: #888888; /* Teks abu-abu */
    padding: 25px 0;
    text-align: center;
    font-size: 14px;
    border-top: none;
}

.minimal-footer p {
    margin: 0;
}

/* ================= SIMPLE BREADCRUMB (REVISI: Gambar via HTML) ================= */
.simple-breadcrumb {
    /* Gunakan background-image spesifik, bukan shorthand 'background' */
    /* Opacity diturunkan ke 0.6 agar gambar lebih terlihat */
    background-image: linear-gradient(rgba(7, 55, 99, 0.6), rgba(0, 107, 125, 0.6)), var(--bg-img);
    
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    
    padding: 100px 0;
    color: var(--white);
    text-align: center;
    position: relative;
    
    /* Fallback warna jika gambar gagal loading */
    background-color: var(--navy); 
}

/* Sisanya tetap sama... */
.simple-breadcrumb h1 {
    color: #00c8ca;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 1px;
    text-shadow: 0 2px 10px rgba(0,0,0,1);
}

.simple-breadcrumb p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
    text-shadow: 0 1px 5px rgba(0,0,0,0.3);
}

/* ================= COMPANY PROFILE DETAILS ================= */
.company-profile-details {
    padding: 80px 0;
    background-color: var(--white);
    color: #333;
}

/* Header Bagian Profile */
.profile-header {
    margin-bottom: 50px;
}

.profile-header h2 {
    color: var(--navy);
    font-size: 28px;
    margin-bottom: 5px;
    font-weight: 700;
}

.sub-header-ggl {
    color: var(--teal);
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 20px;
}

.profile-desc {
    color: #555;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 800px;
	font-size: 18px;
}

.divider-line-light {
    height: 1px;
    background-color: #eee;
    width: 100%;
    margin-bottom: 40px;
}

/* Tabel Info (Establishment, Industry, dll) */
.profile-info-table {
    margin-bottom: 60px;
}

.info-row {
    display: flex;
    border-bottom: 1px solid #f0f0f0;
    padding: 15px 0;
}

.info-row:first-child {
    border-top: 1px solid #f0f0f0;
}

.info-label {
    width: 200px; /* Lebar kolom kiri tetap */
    color: #888;
    font-weight: 500;
    font-size: 15px;
    flex-shrink: 0;
}

.info-value {
    color: #333;
    font-weight: 500;
}

/* Section Titles (Locations, Management, etc) */
.profile-section-block {
    margin-bottom: 60px;
}

.section-title {
    color: var(--navy);
    font-size: 20px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-title i {
    color: var(--navy); /* Ikon warna biru navy */
    opacity: 0.7;
}

/* Locations */
.location-item {
    margin-bottom: 25px;
}

.location-item h4 {
    font-size: 18px;
    color: #444;
    margin-bottom: 5px;
    font-weight: 600;
}

.location-item p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

/* Management Team Grid */
.management-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 Kolom */
    gap: 20px;
}

.mgmt-card {
    border: 1px solid #eee;
    padding: 30px 20px;
    border-radius: 8px;
    text-align: center;
    transition: 0.3s;
}

.mgmt-card:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-color: var(--teal);
}

.mgmt-role {
    display: block;
    font-size: 12px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.mgmt-name {
    color: var(--navy);
    font-size: 18px;
    font-weight: 700;
    margin: 0;
}

/* Associated Companies List */
.associated-list {
    list-style: none;
    padding: 0;
}

.associated-list li {
    margin-bottom: 15px;
    padding-left: 20px;
    position: relative;
}

/* Bullet Point Kotak Kecil */
.associated-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background-color: var(--teal);
    border-radius: 2px;
}

.associated-list li strong {
    color: var(--navy);
    display: block;
    margin-bottom: 2px;
}

.associated-list li span {
    font-size: 14px;
    color: #999;
    display: block;
}

/* ================= MISSION & VISION SECTION ================= */
.mission-vision-section {
    padding-bottom: 80px;
    background-color: var(--white);
}

/* Kartu Utama (Background Biru Gelap) */
.mv-main-card {
    /* Gradasi Biru-Teal Gelap */
    background: linear-gradient(135deg, #053f5e 0%, #006b7d 100%);
    border-radius: 15px;
    
    /* REVISI: Padding diperkecil & Lebar dibatasi agar kotak terlihat lebih kecil */
    padding: 40px; 
    max-width: 1050px; /* Membatasi lebar kotak (tadinya full width) */
    margin: 0 auto;   /* Posisi tengah otomatis */
    
    color: var(--white);
    box-shadow: 0 15px 40px rgba(7, 55, 99, 0.15);
}

.mv-title {
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 10px;
    color: var(--gold);
}

.mv-subtitle {
    opacity: 0.9;
    margin-bottom: 30px;
    font-size: 18px; /* Diperbesar sedikit */
}

/* Helper spacing */
.mb-5 { margin-bottom: 2.5rem; } 

/* Kotak Dalam (Mission & Vision) */
.mv-box {
    background-color: rgba(255, 255, 255, 0.1); /* Transparan Putih */
    border-radius: 10px;
    
    /* REVISI: Padding dalam diperkecil agar pas dengan kotak luar */
    padding: 25px 30px; 
    
    margin-bottom: 25px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.mv-box:last-child {
    margin-bottom: 0;
}

/* Header Label dengan Ikon Kuning */
.mv-label {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.icon-box-yellow {
    width: 45px; /* Ikon sedikit lebih besar */
    height: 45px;
    background-color: var(--gold);
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 20px;
}

.label-text {
    font-size: 22px; /* TEKS DIPERBESAR (Judul Box) */
    font-weight: 600;
    color: var(--gold);
}

/* Teks Statement Misi */
.mission-statement {
    font-size: 34px; /* TEKS DIPERBESAR (Isi Misi) */
    font-weight: 500;
    letter-spacing: 1px;
    margin: 15px 0;
    color: var(--white);
    line-height: 1.3;
}

/* List Visi dengan Dot Kuning */
.vision-list-dots {
    list-style: none;
    padding: 0;
}

.vision-list-dots li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    
    /* TEKS DIPERBESAR (Isi Visi) */
    font-size: 17px; 
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95); /* Lebih terang agar terbaca jelas */
}

/* Custom Bullet Point */
.vision-list-dots li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px; /* Disesuaikan dengan ukuran font baru */
    width: 7px;
    height: 7px;
    background-color: var(--gold);
    border-radius: 50%;
}

/* ================= BUSINESS DETAILS (Zig-Zag) ================= */
.business-details-section {
    padding: 80px 0;
    background-color: var(--white);
}

.biz-row {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px; /* Jarak antar baris */
}

.biz-row:last-child {
    margin-bottom: 0;
}

/* Kolom Gambar */
.biz-image-col {
    flex: 1;
}

/* Gambar Business Details (Rounded & Shadow) */
.biz-img {
    width: 100%;
    height: auto; /* Tinggi otomatis proporsional */
    border-radius: 20px; /* Sudut membulat */
    box-shadow: 0 15px 40px rgba(0,0,0,0.1); /* Bayangan halus */
    display: block;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.biz-img:hover {
    transform: translateY(-5px); /* Efek naik sedikit saat hover */
}

/* Kolom Teks */
.biz-text-col {
    flex: 1;
}

/* Ikon Kotak Biru */
.biz-icon-box {
    width: 50px;
    height: 50px;
    background-color: var(--navy); /* Background Biru Navy */
    color: var(--gold); /* Ikon Emas */
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(7, 55, 99, 0.2);
}

/* Judul */
.biz-text-col h3 {
    font-size: 28px;
    color: var(--navy);
    margin-bottom: 20px;
    font-weight: 600;
}

/* Paragraf */
.biz-text-col p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 18px;
}

/* ================= SUSTAINABILITY SECTION ================= */
.sustainability-section {
    padding: 80px 0;
    background-color: var(--white);
    text-align: center;
}

/* Ikon Header (Teal Box) */
.sust-header-icon {
    width: 60px;
    height: 60px;
    background-color: #073763; /* Teal Gelap */
    color: var(--gold);
    font-size: 28px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px auto; /* Center horizontal */
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.sust-content h2 {
    font-size: 32px;
    color: var(--navy);
    margin-bottom: 25px;
    font-weight: 600;
}

.sust-content p {
    max-width: 805px;
    margin: 0 auto 15px auto;
	font-size: 18px;
    color: #666;
    line-height: 1.8;
}

/* GGL Badge (Kotak Sertifikasi) */
.ggl-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #073763 0%, #073763 100%); /* Gradasi Teal Gelap */
    padding: 15px 30px;
    border-radius: 10px;
    margin-top: 40px;
    margin-bottom: 60px;
    box-shadow: 0 10px 20px rgba(0, 91, 112, 0.2);
    border: 1px solid rgba(255,255,255,0.1);
}

.ggl-icon {
    width: 45px;
    height: 45px;
    background-color: var(--gold);
    color: #004353;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-right: 20px;
}

.ggl-text {
    text-align: left;
    color: var(--white);
}

.ggl-text strong {
    display: block;
    font-size: 16px;
    margin-bottom: 2px;
    color: var(--gold); /* Teks Judul Emas */
}

.ggl-text span {
    font-size: 13px;
    opacity: 0.9;
}

/* Document Viewer */
.document-viewer-container {
    background-color: #f8f9fa; /* Latar abu-abu muda */
    padding: 40px;
    border-radius: 20px;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: inset 0 0 20px rgba(0,0,0,0.05); /* Shadow ke dalam */
}

.doc-wrapper {
    background-color: var(--white);
    padding: 10px;
    display: inline-block;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    border-radius: 5px;
}

.doc-image {
    max-width: 100%;
    height: auto;
    display: block;
    max-height: 600px; /* Batasi tinggi agar tidak terlalu panjang */
}

/* Controls (Navigasi Dokumen) */
.doc-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.doc-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background-color: var(--navy);
    color: var(--white);
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.doc-btn:hover {
    background-color: #0a4b87;
    color: var(--white);
}

.doc-dots {
    display: flex;
    gap: 8px;
}

.doc-dots span {
    width: 10px;
    height: 10px;
    background-color: #ccc;
    border-radius: 50%;
    cursor: pointer;
}

.doc-dots span.active {
    background-color: var(--navy);
    transform: scale(1.2);
}

/* ================= PRODUCT OVERVIEW SECTION ================= */
.product-overview-section {
    padding: 80px 0;
    background-color: var(--white);
}

/* Judul Tengah */
.overview-title {
    text-align: left;
    font-size: 32px;
    color: var(--navy);
    margin-bottom: 20px;
    font-weight: 500;
}

/* Wrapper Layout (Flexbox) */
.overview-wrapper {
    display: flex;
    align-items: center; /* Vertikal center */
    gap: 0px; /* Jarak antara gambar dan teks */
}

/* Kolom Gambar */
.overview-img-col {
    flex: 1; /* Mengambil 50% lebar */
}

.prod-overview-img {
    width: 70%;
    /* height: auto; <--- Hapus atau ganti dengan aspect-ratio di bawah ini */
    aspect-ratio: 1 / 1; /* KUNCI: Membuat gambar jadi kotak presisi (1:1) */
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.75);
    object-fit: cover; /* Agar gambar ter-crop rapi dan tidak gepeng */
	margin-left: 100px;
}

/* Kolom Teks */
.overview-text-col {
    flex: 1; /* Mengambil 50% lebar */
}

.overview-text-col p {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 25px;
}

.overview-text-col p:last-child {
    margin-bottom: 0;
}

/* ================= PRODUCT SPECIFICATIONS SECTION ================= */
.product-specs-section {
    padding-bottom: 100px; /* Jarak bawah yang cukup */
    background-color: var(--white);
}

/* Judul Section */
.specs-title {
    text-align: center;
    font-size: 36px;
    color: var(--navy);
    margin-bottom: 50px;
    font-weight: 500; /* Font sedikit tipis sesuai referensi */
}

/* Kartu Spesifikasi */
.specs-card {
    /* Gradasi Vertikal: Atas Gelap (#053f5e) -> Bawah Terang (#007B89) */
    background: linear-gradient(180deg, #053f5e 0%, #007B89 100%);
    border-radius: 20px;
    padding: 60px;
    color: var(--white);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15); /* Bayangan lembut */
    max-width: 1000px; /* Membatasi lebar agar tidak terlalu lebar di layar besar */
    margin: 0 auto; /* Center horizontal */
}

/* Baris Spesifikasi */
.spec-row {
    display: flex;
    align-items: center; /* Teks vertikal center */
    padding: 25px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15); /* Garis pemisah transparan */
}

.spec-row:first-child {
    padding-top: 0;
}

.spec-row:last-child {
    border-bottom: none; /* Hilangkan garis di item terakhir */
    padding-bottom: 0;
}

/* Label (Kiri - Warna Emas) */
.spec-label {
    width: 30%; /* Lebar kolom kiri */
    color: var(--gold);
    font-size: 18px;
    font-weight: 500;
}

/* Nilai (Kanan - Warna Putih) */
.spec-value {
    width: 70%; /* Lebar kolom kanan */
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
}

/* ================= KEY FEATURES SECTION ================= */
.key-features-section {
    padding: 0 0 100px 0; /* Padding bawah saja karena atasnya sudah ada section lain */
    background-color: var(--white);
}

.features-title {
    text-align: center;
    font-size: 32px;
    color: var(--navy);
    margin-bottom: 50px;
    font-weight: 500;
}

/* Kartu Fitur */
.feature-card {
    display: flex;
    gap: 30px;
    background-color: var(--white);
    border: 1px solid #e0e0e0; /* Border abu-abu tipis */
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02); /* Bayangan sangat halus */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-color: var(--teal); /* Border berubah warna saat hover */
}

/* Kotak Nomor (Kiri) */
.feature-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background-color: #073763; /* Warna Teal Gelap */
    color: var(--gold);
    font-size: 24px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 91, 112, 0.3);
}

/* Konten Teks */
.feature-content {
    flex-grow: 1;
}

.feature-content h3 {
    font-size: 22px;
    color: var(--navy);
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.feature-content h3 i {
    color: #cea400; /* Ikon Teal */
    margin-top: 3px;
    font-size: 20px;
}

.feature-content p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
    font-size: 16px;
}

.feature-content p:last-child {
    margin-bottom: 0;
}

/* ================= FACILITY DETAIL SECTION ================= */
.facility-detail-section {
    padding: 80px 0;
    background-color: var(--white);
}

.facility-row {
    display: flex;
    align-items: center; /* Vertikal center */
    gap: 60px; /* Jarak antara teks dan gambar */
    margin-bottom: 80px; /* Jarak jika ada section facility lain di bawahnya */
}

/* Kolom Teks */
.facility-text {
    flex: 1; /* Mengambil 50% lebar */
}

.facility-title {
    font-size: 32px;
    color: var(--navy);
    margin-bottom: 25px;
    font-weight: 500;
}

.facility-text p {
    color: #555;
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    
}

/* Kolom Gambar */
.facility-image {
    flex: 1; /* Mengambil 50% lebar */
}

.img-rounded-shadow {
    width: 100%;
    height: auto;
    border-radius: 20px; /* Sudut membulat */
    box-shadow: 0 15px 40px rgba(0,0,0,0.1); /* Bayangan halus */
    object-fit: cover;
    display: block;
}

/* ================= STOCKPILE FEATURES SECTION ================= */
.stockpile-features-section {
    padding: 0 0 100px 0; /* Jarak bawah */
    background-color: var(--white);
}

.features-header-title {
    text-align: center;
    font-size: 32px;
    color: var(--navy);
    margin-bottom: 50px;
    font-weight: 500;
}

/* Grid Layout (2 Kolom) */
.features-grid-2col {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 Kolom Seimbang */
    gap: 30px; /* Jarak antar kartu */
}

/* Kartu Fitur */
.feature-box-card {
    background-color: var(--white);
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05); /* Bayangan lembut */
    display: flex;
    align-items: flex-start; /* Ikon dan teks sejajar di atas */
    gap: 25px;
    border: 1px solid #f0f0f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-box-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-color: var(--teal); /* Aksen warna saat hover */
}

/* Kotak Ikon (Biru Tua) */
.feat-icon-box {
    width: 60px;
    height: 60px;
    background-color: var(--navy);
    color: var(--gold);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0; /* Agar ikon tidak mengecil */
}

/* Konten Teks */
.feat-content h4 {
    color: var(--navy);
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 600;
}

.feat-content p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

/* ================= QUALITY CONTROL SYSTEM SECTION ================= */
.quality-control-section {
    padding: 0 0 100px 0; /* Jarak bawah konsisten */
    background-color: var(--white);
}

.qc-title {
    text-align: center;
    font-size: 32px;
    color: var(--navy);
    margin-bottom: 50px;
    font-weight: 500;
}

/* Grid Layout (3 Kolom) */
.qc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 Kolom Rata */
    gap: 30px;
}

/* Kartu QC */
.qc-card {
    background-color: var(--white);
    border: 1px solid #f0f0f0; /* Border sangat tipis */
    border-radius: 15px; /* Sudut membulat */
    padding: 40px 30px;
    text-align: center; /* Teks Rata Tengah */
    box-shadow: 0 5px 20px rgba(0,0,0,0.03); /* Bayangan halus */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.qc-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-color: var(--teal);
}

/* Wrapper Ikon (Teal Gradient) */
.qc-icon-wrapper {
    width: 70px;
    height: 70px;
    /* Gradasi Teal Gelap seperti di gambar */
    background: linear-gradient(135deg, #073763 0%, #073763 100%);
    color: var(--gold); /* Ikon Kuning/Emas */
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 25px auto; /* Center horizontal */
    box-shadow: 0 8px 20px rgba(0, 91, 112, 0.2);
}

.qc-card h3 {
    font-size: 20px;
    color: var(--navy);
    margin-bottom: 15px;
    font-weight: 600;
}

.qc-card p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

/* ================= EQUIPMENT GALLERY SECTION ================= */
.equipment-gallery-section {
    padding: 0 0 100px 0;
    background-color: var(--white);
}

.mb-50 {
    margin-bottom: 50px;
}

.equip-title {
    font-size: 32px;
    color: var(--navy);
    margin-bottom: 10px;
    font-weight: 500;
}

.equip-subtitle {
    color: #666;
    font-size: 18px;
}

/* Grid Layout (3 Kolom) */
.equipment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Gaya Kartu */
.equip-card {
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden; /* Agar gambar tidak keluar dari radius */
    box-shadow: 0 5px 20px rgba(0,0,0,0.05); /* Bayangan soft */
    border: 1px solid #f0f0f0;
    transition: transform 0.3s ease;
}

.equip-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Area Gambar */
.equip-img-box {
    width: 100%;
    height: 220px; /* Tinggi gambar seragam */
    background-color: #f4f6f8; /* Placeholder abu-abu jika gambar loading */
}

.equip-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Crop gambar agar rapi memenuhi kotak */
}

/* Area Teks */
.equip-content {
    padding: 20px;
    text-align: center;
}

.equip-content h4 {
    color: var(--navy);
    font-size: 18px;
    margin-bottom: 5px;
    font-weight: 600;
}

.equip-content p {
    color: #555;
    font-size: 14px;
    margin: 0;
}

/* ================= GALLERY PAGES ================= */

/* --- 1. Album List Page --- */
.album-list-section {
    padding: 80px 0;
    background-color: var(--white);
}

.album-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 Kolom */
    gap: 30px;
    margin-top: 40px;
}

.album-card {
    display: block;
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}

.album-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

/* Cover Album */
.album-cover {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.album-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.album-card:hover .album-cover img {
    transform: scale(1.1); /* Zoom effect */
}

/* Overlay saat Hover */
.album-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(7, 55, 99, 0.7); /* Navy transparan */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.album-card:hover .album-overlay {
    opacity: 1;
}

.album-overlay i {
    font-size: 32px;
    margin-bottom: 10px;
    color: var(--gold);
}

.album-overlay span {
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 14px;
}

/* Badge Jumlah Foto */
.album-count {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background-color: rgba(0,0,0,0.6);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

/* Info Album (Judul) */
.album-info {
    padding: 20px;
    border-top: 1px solid #f0f0f0;
}

.album-info h3 {
    font-size: 18px;
    color: var(--navy);
    margin-bottom: 5px;
    font-weight: 600;
}

.album-info p {
    font-size: 13px;
    color: #888;
    margin: 0;
}

/* --- 2. Gallery Details Page --- */
.gallery-details-section {
    padding: 60px 0 100px 0;
    background-color: var(--white);
}

.mb-40 { margin-bottom: 40px; }

/* Tombol Kembali */
.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--navy);
    font-weight: 600;
    transition: 0.3s;
}

.btn-back:hover {
    color: var(--teal);
    transform: translateX(-5px);
}

/* Grid Foto Detail */
.photo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.photo-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 300px; /* Tinggi seragam */
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    cursor: pointer;
}

.photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.photo-item:hover img {
    transform: scale(1.05);
}

/* Caption Foto (Muncul di bawah saat hover atau selalu ada kecil) */
.photo-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.photo-item:hover .photo-caption {
    opacity: 1;
    transform: translateY(0);
}

/* ================= NEWS PAGES ================= */

/* --- 1. News List Page --- */
.news-list-page {
    padding: 80px 0;
    background-color: var(--white);
}

/* Modifikasi Kartu Berita untuk Halaman List (Ada Gambar) */
.news-img-box {
    width: 100%;
    height: 220px;
    background-color: #f0f0f0;
    overflow: hidden;
}

.news-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-card-minimal:hover .news-img-box img {
    transform: scale(1.1);
}

/* Pagination */
.pagination-wrapper {
    margin-top: 60px;
}

.pagination-v2 {
    display: flex;
    justify-content: center; /* Selalu di tengah */
    align-items: center;
    gap: 8px; /* Jarak antar tombol yang pas */
    margin-top: 50px;
    flex-wrap: wrap; /* Izinkan turun baris jika layar sangat sempit */
}

.page-link {
    width: 40px; 
    height: 40px;
    display: flex; 
    justify-content: center; 
    align-items: center;
    background: #fff; 
    border: 1px solid #e0e0e0;
    color: #555;
    border-radius: 50%; /* Bulat sempurna */
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.page-link.active, 
.page-link:hover {
    background: #073763; /* Main Gold */
    border-color: #073763;
    color: #fff;
    transform: translateY(-2px); /* Efek naik sedikit */
    box-shadow: 0 4px 10px rgba(212, 175, 55, 0.3);
}

.page-link i {
    font-size: 12px; /* Ukuran ikon panah */
}

/* --- 2. News Details Page --- */
.news-detail-section {
    padding: 60px 0 100px 0;
    background-color: #f9fbfd; /* Background sedikit beda agar konten menonjol */
}

.single-news-wrapper {
    max-width: 900px; /* Lebar konten baca ideal */
    margin: 0 auto;
    background-color: var(--white);
    padding: 60px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
}

.mb-30 { margin-bottom: 30px; }
.mb-10 { margin-bottom: 10px; }

/* Article Header */
.article-title {
    font-size: 36px;
    color: var(--navy);
    margin-bottom: 20px;
    line-height: 1.3;
}

.article-meta {
    font-size: 14px;
    color: #888;
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.article-meta i {
    color: var(--gold);
    margin-right: 5px;
}

/* Featured Image */
.article-featured-img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 40px;
}

.article-featured-img img {
    width: 100%;
    height: auto;
    display: block;
}

/* Article Content Typography */
.article-content {
    color: #333;
    font-size: 18px;
    line-height: 1.8;
}

.article-content p {
    margin-bottom: 25px;
}

.article-content h3 {
    color: var(--navy);
    font-size: 24px;
    margin-top: 40px;
    margin-bottom: 20px;
}

.article-content blockquote {
    border-left: 5px solid var(--gold);
    padding-left: 20px;
    margin: 40px 0;
    font-style: italic;
    font-size: 20px;
    color: #555;
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 0 10px 10px 0;
}

/* Article Footer (Share) */
.article-footer {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.share-links {
    display: flex;
    align-items: center;
    gap: 15px;
}

.share-links span {
    font-weight: 600;
    color: #555;
}

.share-links a {
    width: 35px;
    height: 35px;
    background-color: #eee;
    color: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.share-links a:hover {
    background-color: var(--navy);
    color: var(--gold);
}

/* ================= CONTACT CONTENT SECTION ================= */
.contact-content-section {
    padding: 80px 0;
    background-color: #f9fbfd; /* Background halaman sedikit abu-abu agar kartu putih menonjol */
}

.contact-layout-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr; /* Kolom Kiri lebih lebar (Form) */
    gap: 40px;
}

/* --- General Card Style --- */
.contact-card {
    background-color: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05); /* Shadow halus */
}

.form-title {
    font-size: 24px;
    color: var(--navy);
    margin-bottom: 30px;
    font-weight: 600;
}

/* --- Left Col: Form --- */
.sky-contact-form .form-group {
    margin-bottom: 25px;
}

.sky-contact-form label {
    display: block;
    font-size: 14px;
    color: #333;
    margin-bottom: 8px;
    font-weight: 500;
}

/* Input Style (Light Gray Background) */
.sky-contact-form input,
.sky-contact-form textarea {
    width: 100%;
    padding: 15px;
    background-color: #f4f6f8; /* Warna abu-abu muda sesuai gambar */
    border: 1px solid transparent;
    border-radius: 8px;
    font-family: inherit;
    font-size: 15px;
    color: #333;
    transition: 0.3s;
}

.sky-contact-form input:focus,
.sky-contact-form textarea:focus {
    background-color: var(--white);
    border-color: var(--navy); /* Border biru saat aktif */
    outline: none;
}

/* Tombol Submit Navy */
.btn-submit-navy {
    width: 100%;
    background-color: #0d3b66; /* Navy agak gelap */
    color: var(--white);
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-submit-navy:hover {
    background-color: #0a4b87;
    color: var(--white);
}

/* --- Right Col: Info --- */
.info-item-row {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.info-item-row:last-child {
    margin-bottom: 0;
}

/* Icon Box (Navy Square) */
.info-icon-box {
    width: 50px;
    height: 50px;
    background-color: var(--navy);
    color: var(--gold);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.info-text-content h4 {
    font-size: 16px;
    color: var(--navy);
    margin-bottom: 5px;
    font-weight: 600;
}

.info-text-content p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.info-text-content a {
    color: #666;
    transition: 0.3s;
}

.info-text-content a:hover {
    color: var(--navy);
}

/* --- Right Col: Business Hours (Dark Card) --- */
.business-hours-card {
    /* Gradasi Biru Gelap ke Teal Gelap */
    background: linear-gradient(135deg, #053f5e 0%, #006b7d 100%);
    padding: 40px;
    border-radius: 15px;
    color: var(--white);
    margin-top: 30px;
    box-shadow: 0 10px 30px rgba(5, 63, 94, 0.2);
}

.hours-title {
    color: var(--gold);
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 600;
}

.hours-content p {
    margin-bottom: 5px;
    font-size: 15px;
    opacity: 0.95;
}

.hours-note {
    font-size: 14px;
    opacity: 0.7;
    margin-top: 15px;
    font-style: italic;
}

/* ================= BUSINESS TRANSACTIONS SECTION ================= */
.business-transactions-section {
    padding: 80px 0;
    background-color: var(--white); /* Latar Putih agar beda dengan section sebelumnya */
}

.trans-title {
    font-size: 32px;
    color: var(--navy);
    margin-bottom: 30px;
    font-weight: 500;
}

.trans-desc p {
    color: #555;
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 5px;
}

/* Grid Layout */
.transactions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 Kolom */
    gap: 30px;
    margin-top: 50px;
}

/* Desain Kartu Transaksi */
.trans-card {
    background-color: #f9fbfd; /* Abu-abu sangat muda (hampir putih kebiruan) */
    padding: 50px 30px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid transparent;
}

.trans-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-color: #e0e0e0;
}

.trans-card h3 {
    color: var(--navy);
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;
}

.trans-card p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

/* ================= FAQ SECTION ================= */
.faq-section {
    padding: 80px 0;
    background-color: #f9fbfd; /* Background abu-abu sangat muda */
}

.faq-title {
    text-align: center;
    font-size: 32px;
    color: var(--navy);
    margin-bottom: 50px;
    font-weight: 500;
}

.faq-list {
    max-width: 900px; /* Batasi lebar agar enak dibaca */
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* Kartu Pertanyaan */
.faq-card {
    background-color: var(--white);
    padding: 30px 40px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03); /* Bayangan sangat halus */
    border: 1px solid #eee;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

/* Teks Pertanyaan (Q.) */
.faq-question {
    font-size: 18px;
    color: #073763; /* Warna Teal Gelap untuk pertanyaan */
    margin-bottom: 10px;
    font-weight: 600;
}

/* Teks Jawaban */
.faq-answer {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin: 0;
    padding-left: 25px; /* Sedikit menjorok ke dalam */
}

/* Responsive */
@media (max-width: 900px) {
	.transactions-grid {
        grid-template-columns: 1fr; /* 1 Kolom di HP */
    }
    
    .trans-title {
        font-size: 28px;
    }
	.contact-layout-grid {
        grid-template-columns: 1fr; /* Tumpuk jadi 1 kolom */
    }
	.album-grid, .photo-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 Kolom di Tablet */
    }
	.equipment-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 Kolom di Tablet */
    }
	.qc-grid {
        grid-template-columns: 1fr; /* Jadi 1 kolom di HP */
        max-width: 500px; /* Batasi lebar agar tidak terlalu lebar di HP */
        margin: 0 auto;
    }
	.features-grid-2col {
        grid-template-columns: 1fr; /* Jadi 1 kolom di Tablet/HP */
    }
    
    .feature-box-card {
        padding: 25px;
    }
	.facility-row {
        flex-direction: column; /* Teks di atas, Gambar di bawah */
        gap: 30px;
    }
    
    .facility-title {
        font-size: 28px;
        text-align: left;
    }
	.overview-wrapper {
        flex-direction: column; 
        align-items: center; /* Pastikan container berusaha menengahkan isi */
        gap: 30px;
    }
	
	/* REVISI PENTING: Reset margin gambar agar benar-benar di tengah */
    .prod-overview-img {
        margin-left: 0;   /* Hapus margin kiri desktop (100px) */
        margin-right: 0;  /* Pastikan kanan juga 0 */
        width: 100%;      /* Atau sesuaikan, misal 90% */
        max-width: 500px; /* Batasi agar tidak terlalu raksasa di HP */
    }

    .overview-title {
        text-align: center; /* Judul juga kita tengahkan di HP agar rapi */
    }
	
	.biz-row {
        flex-direction: column; /* Tumpuk vertikal di layar kecil */
        gap: 30px;
        margin-bottom: 60px;
    }

    /* Membalik urutan agar Gambar selalu di atas Teks pada Mobile */
    .biz-row.reverse-layout {
        flex-direction: column-reverse; 
    }

    .biz-img-placeholder {
        padding-top: 60%; /* Sedikit lebih pendek di HP */
    }
    .gallery-preview-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 Kolom di Tablet */
    }
    .news-grid-wrapper {
        grid-template-columns: repeat(2, 1fr); /* 2 Kolom di Tablet */
    }
}

/* Pastikan Grid Aktif */
.news-grid-2col {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 2 Kolom */
    gap: 30px;
    margin-bottom: 40px;
}

/* Desain Kartu Box */
.news-card-boxed {
    background-color: var(--white);
    border: 1px solid #eee; /* Border tipis */
    border-radius: 8px;     /* Sudut sedikit membulat */
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: 0.3s;
}

.news-card-boxed:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transform: translateY(-3px);
}

/* Gambar (Thumbnail Abu-abu) */
.nc-box-img {
    height: 200px;
    background-color: #e0e0e0;
    overflow: hidden;
}

.nc-box-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.news-card-boxed:hover .nc-box-img img {
    transform: scale(1.05);
}

/* Body Kartu */
.nc-box-body {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Rata kiri */
}

/* Meta Info (Tanggal | Kategori) */
.nc-box-meta {
    font-size: 14px;
    color: #999;
    margin-bottom: 10px;
}

/* Judul Berita */
.nc-box-body h3 {
    font-size: 18px;
    color: var(--navy); /* Warna Judul Navy */
    margin-bottom: 10px;
    font-weight: 700;
    line-height: 1.4;
}

/* Deskripsi Singkat */
.nc-box-body p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3; /* Batasi 3 baris */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Tombol Read More (Kotak Solid) */
.btn-read-more-box {
	transition: all 0.3s ease;
    display: inline-block; /* Wajib agar bisa di-zoom */
    background-color: var(--navy); /* Background Biru Navy */
    color: #fff;
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px; /* Sedikit rounded */
    transition: 0.3s;
    margin-top: auto; /* Dorong ke bawah jika konten pendek */
}

.btn-read-more-box:hover {
    /* Pastikan warna background jadi/tetap Navy */
    background-color: #0a4b87; 
    color: var(--white);
    
    /* EFEK BAYANGAN */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Background Overlay Gelap */
.fancybox__backdrop {
    background: rgba(0, 0, 0, 0.9);
}

/* Teks Caption */
.fancybox__caption {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    color: #eee;
}

/* Thumbnail Grid di Lightbox */
.fancybox__thumbs .carousel__slide .fancybox__thumb::after {
    border-color: var(--gold);
}

/* ================= BREADCRUMB NAVIGATION ================= */

/* Container Navigasi */
.breadcrumb-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px; /* Jarak antar elemen */
    margin-top: 10px;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Link Home */
.breadcrumb-nav a {
    color: #ffffff !important; /* Paksa warna Putih murni */
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.breadcrumb-nav a:hover {
    color: #00c8ca !important;
    transform: translateY(-2px); /* Efek naik sedikit */
}

.breadcrumb-nav a i {
    font-size: 16px; /* Ukuran ikon rumah */
    margin-top: -2px; /* Penyesuaian vertikal sedikit */
}

/* Pemisah (Panah >) */
.breadcrumb-nav .separator {
    color: #fff;
    font-size: 16px;
}

/* Halaman Saat Ini (Teks Terakhir) */
.breadcrumb-nav .current {
    color: #00c8ca;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0,0,0,1);
}

/* RESPONSIVE NEWS PAGE */
@media (max-width: 991px) {
    .news-layout-sidebar {
        grid-template-columns: 1fr; /* Stack Sidebar di bawah konten */
    }
    
    .news-sidebar {
        position: static; /* Hilangkan sticky di mobile */
        margin-top: 40px;
    }
    
    .news-grid-2col {
        grid-template-columns: 1fr 1fr; /* Tablet tetap 2 kolom */
    }
}

/* ================= MOBILE MENU CONTACT BUTTON ================= */

/* Default: Sembunyikan di Desktop/Laptop */
.mobile-menu-cta {
    display: none;
}

/* Tampilkan HANYA di Mobile */
@media (max-width: 768px) {
    .mobile-menu-cta {
        display: block; /* Munculkan */
        margin-top: 10px; /* Jarak sedikit dari menu atasnya */
    }

    .mobile-menu-cta a {
        color: var(--white) !important; /* Warna Emas agar beda */
        font-weight: 700 !important;
        background-color: var(--navy); /* Latar abu sangat muda */
        border-bottom: none !important; /* Hilangkan garis bawah default */
        text-align: center; /* Teks di tengah */
        border-radius: 5px;
        margin: 0 20px 20px 20px; /* Margin agar tidak mepet pinggir */
        border: 1px solid #eee;
    }

    .mobile-menu-cta a:hover {
        background-color: #0a4b87;
        color: var(--white) !important;
    }
	
/* Kurangi Padding Kartu yang terlalu tebal di HP */
    .contact-card, 
    .business-hours-card, 
    .trans-card, 
    .faq-card {
        padding: 25px !important; /* Kurangi dari 40px/50px ke 25px */
    }

    /* Pastikan Grid Transaksi & FAQ 1 Kolom Penuh */
    .transactions-grid, 
    .faq-list {
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    /* Pastikan Container Grid Kontak 1 Kolom */
    .contact-layout-grid {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    /* Atur Ulang Flexbox pada Info Kontak (Icon + Teks) agar tidak melebar */
    .info-item-row {
        gap: 15px; /* Kurangi jarak icon dan teks */
    }
    
    .info-icon-box {
        width: 40px; /* Perkecil icon sedikit */
        height: 40px;
        font-size: 18px;
    }

	.breadcrumb-nav {
        gap: 10px;
        font-size: 12px;
    }
	.simple-breadcrumb {
        padding: 70px 0;
    }
    .simple-breadcrumb h1 {
        font-size: 28px;
    }
	.contact-cta-section {
        padding: 50px 0; /* Padding lebih kecil di HP */
    }
    .contact-cta-section h2 {
        font-size: 32px; /* Sesuaikan font di HP agar tidak terlalu besar */
    }
    .contact-cta-section p {
        font-size: 16px;
    }
    .btn-gold-cta {
        padding: 15px 35px;
        font-size: 16px;
    }
	/* 1. Reset Posisi Tombol dari Tengah Layar ke Bawah */
    .slider-btn {
        top: auto !important;          /* Matikan posisi vertikal desktop */
        bottom: 25px !important;       /* Posisikan di bawah */
        transform: none !important;    /* Matikan transform translateY desktop */
        z-index: 20 !important;        /* Pastikan di atas elemen lain */
        
        /* Opsional: Sesuaikan ukuran tombol mobile */
        width: 40px;
        height: 40px;
        font-size: 16px;
        
        /* Opsional: Ubah warna agar lebih terlihat (Emas) */
        background-color: transparent;
        border-color: var(--white);
        color: var(--white);
    }

    /* 2. Posisikan Tombol PREV di Sebelah Kiri Dots */
    .prev-btn {
        left: 50% !important;
        right: auto !important;
        /* Geser ke kiri dari titik tengah: 
           (1/2 lebar dots ~30px) + (Jarak ~10px) + (Lebar tombol 40px) = 80px */
        margin-left: -85px !important; 
    }

    /* 3. Posisikan Tombol NEXT di Sebelah Kanan Dots */
    .next-btn {
        left: 50% !important;
        right: auto !important;
        /* Geser ke kanan dari titik tengah:
           (1/2 lebar dots ~30px) + (Jarak ~10px) = 40px */
        margin-left: 45px !important; 
    }

    /* 4. Pastikan Dots Berada di Tengah & Sejajar */
    .slider-dots {
        bottom: 35px !important; /* Sesuaikan tinggi agar sejajar tombol */
        width: auto;
        z-index: 15;
    }
	.text-wrap {
        width: 90% !important;      /* Lebar hampir penuh */
        max-width: none !important; /* Hapus batasan max-width desktop */
        
        position: absolute !important;
        top: 50% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) !important; /* KUNCI: Centering presisi */
        
        text-align: center !important;
        z-index: 20 !important;     /* Pastikan di atas segalanya */
        padding: 0 15px;            /* Jarak aman kiri-kanan */
    }
	
	.line1 {
        font-size: 26px !important; /* Perkecil agar muat */
        line-height: 1.3 !important;
        white-space: normal !important; /* Biarkan turun baris */
        margin-bottom: 10px !important;
    }

    /* 3. Sesuaikan Sub-judul */
    .line-group .line2, 
    .line-group .line3 {
        font-size: 16px !important;
        margin-bottom: 5px !important;
    }

    /* 4. Sesuaikan Tagline */
    .tagline {
        font-size: 13px !important;
        line-height: 1.5 !important;
        margin-top: 10px !important;
        width: 100% !important;
    }

    /* 5. Rapikan Barisan Ikon */
    .icon-row {
        gap: 10px !important;
        flex-wrap: wrap !important; /* Turun baris jika sempit */
        justify-content: center !important;
        margin-top: 20px !important;
    }
    
    .icon-item {
        font-size: 12px !important;
    }
    
    .icon-box {
        width: 30px !important; 
        height: 30px !important;
    }
    
    .icon-box i {
        font-size: 14px !important;
    }

    /* 6. Pastikan Overlay Gelap Muncul */
    .dark-overlay {
        display: block !important;
        background: rgba(0, 0, 0, 0.6) !important; /* Gelapkan sedikit agar teks terbaca */
    }
	
	.faq-card {
        padding: 25px;
    }
    .faq-question {
        font-size: 16px;
    }
    .faq-answer {
        font-size: 14px;
        padding-left: 0;
    }
	.single-news-wrapper {
        padding: 30px;
    }
    .article-title {
        font-size: 28px;
    }
    .article-content {
        font-size: 16px;
    }
	.feature-card {
        flex-direction: column; /* Nomor di atas teks */
        gap: 20px;
        padding: 25px;
    }

    .feature-number {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .features-title {
        font-size: 26px;
    }
	.specs-card {
        padding: 30px;
    }

    .spec-row {
        flex-direction: column; /* Tumpuk vertikal di HP */
        align-items: flex-start;
        gap: 8px;
    }

    .spec-label {
        width: 100%;
        font-size: 16px;
        opacity: 0.8;
    }

    .spec-value {
        width: 100%;
        font-size: 16px;
    }
	.ggl-badge {
        flex-direction: column;
        padding: 20px;
        width: 100%;
    }
    .ggl-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
    .ggl-text {
        text-align: center;
    }
    .document-viewer-container {
        padding: 20px;
    }
	.mv-main-card {
        padding: 30px 20px;
        width: 100%; /* Di HP tetap full width */
    }
    .mv-box {
        padding: 20px;
    }
    .mission-statement {
        font-size: 24px;
    }
	.label-text {
        font-size: 18px;
    }
    .vision-list-dots li {
        font-size: 15px;
    }
	.management-grid {
        grid-template-columns: 1fr; /* Jadi 1 kolom di HP */
    }
    
    .info-row {
        flex-direction: column; /* Label di atas value di HP */
    }
    
    .info-label {
        width: 100%;
        margin-bottom: 5px;
    }
	.simple-breadcrumb {
        padding: 60px 0;
    }
    .simple-breadcrumb h1 {
        font-size: 28px;
    }
	.facility-modern-card {
        min-height: auto; /* Tinggi otomatis di HP */
    }
    .card-content {
        padding: 40px 25px;
    }
    .card-content h2 {
        font-size: 28px;
    }
    /* Gradasi lebih pekat di HP agar teks lebih terbaca */
    .card-overlay {
        background: linear-gradient(180deg, rgba(7, 55, 99, 0.4) 0%, rgba(7, 55, 99, 1) 80%);
    }
	.footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .top-bar { display: none; } 
    .hamburger { display: block; }
    .nav-cta { display: none; } 

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--white);
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
    }
    .nav-links.open { max-height: 500px; }
    .nav-links ul { flex-direction: column; gap: 0; }
    .nav-links a { display: block; padding: 15px 20px; border-bottom: 1px solid #eee; }

    .hero-slider { height: 500px; }
    .text-box { margin: 0 20px; padding: 25px; margin-bottom: 50px;}
    .text-box h1 {
        /* PENTING: Turunkan ketebalan font agar lebih luwes di HP */
        /* Sebelumnya 900, kita ubah jadi 700 (Bold biasa) atau 600 */
        font-weight: 700; 
        
        /* Pastikan garis tepi (outline) tipis saja di HP agar tidak menambah kesan tebal */
        -webkit-text-stroke: 2px var(--navy); /* Atau 1px */

        /* Settingan sebelumnya (biarkan tetap ada) */
        white-space: normal;
        font-size: 28px;
        line-height: 1.3;
        letter-spacing: 2px;
        margin-bottom: 15px;
    }

    /* Sesuaikan juga subtitle P agar seimbang */
    .text-box p {
        font-size: 14px;
        letter-spacing: 1px;
        line-height: 1.5;
    }
    .slider-btn { width: 40px; height: 40px; font-size: 16px; }
    .prev-btn { left: 10px; }
    .next-btn { right: 10px; }

    .overview-grid { grid-template-columns: 1fr; gap: 40px; }
    .overview-text { order: 2; }
    .overview-image-wrapper { order: 1; }

    .product-cards-grid { grid-template-columns: 1fr; gap: 20px; }
    .intro-header h2 { font-size: 28px; }

    /* Facility Responsive */
    .facility-wrapper { flex-direction: column; }
    .facility-bg-image {
        width: 100%;
        height: 300px;
        position: relative;
        margin-bottom: -50px; /* Overlap efek */
        z-index: 1;
    }
    .facility-card-overlay {
        width: 90%;
        margin: 0 auto;
        background-color: var(--navy); /* Background solid agar terbaca di HP */
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    }
}

/* Responsive Mobile */
@media (max-width: 700px) {
    .lightbox-content {
        width: 95%;
    }
    .close-lightbox {
        top: 15px;
        right: 20px;
    }
}

@media (max-width: 600px) {
	.news-grid-2col {
        grid-template-columns: 1fr;
    }
	.album-grid, .photo-grid {
        grid-template-columns: 1fr; /* 1 Kolom di HP */
    }
    
    .photo-item {
        height: 250px;
    }
	.equipment-grid {
        grid-template-columns: 1fr; /* 1 Kolom di HP */
    }
	.gallery-preview-grid {
        grid-template-columns: 1fr; /* 1 Kolom di HP */
    }
    .news-grid-wrapper {
        grid-template-columns: 1fr; /* 1 Kolom di HP */
    }
}

@media (max-width: 576px) {
    .pagination-v2 {
        gap: 5px; /* Rapatkan jarak di HP */
        margin-top: 30px;
    }
    
    .page-link {
        width: 35px;   /* Perkecil ukuran tombol di HP */
        height: 35px;
        font-size: 13px;
    }
}