/* ==========================================================================
   PT. THE SAKURA GREEN INDONESIA - STYLE V1.1
   Palette: 
   - Main Gold: #D4AF37
   - Accent Gold: #E8C547
   - Brown: #8B4513
   - Dark Gray: #4A4A4A
   - Medium Gray: #6B6B6B
========================================================================== */
* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    color: #4A4A4A; /* Dark Gray untuk teks utama */
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 10;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

a {
    text-decoration: none;
    transition: 0.3s;
}

/* =========================================
   LANGUAGE DROPDOWN STYLES (FIXED)
   ========================================= */
.lang-dropdown {
    position: relative;
    display: inline-block;
    height: 100%; /* Pastikan tinggi container pas */
    display: flex;
    align-items: center;
}

/* Tombol Dropdown */
.lang-drop-btn {
    background: transparent;
    color: #333;
    border: 1px solid #ddd;
    padding: 8px 15px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
    
    /* FIX 1: Tambahkan z-index agar tombol tetap di atas */
    position: relative;
    z-index: 2; 
}

.lang-drop-btn:hover {
    background: #f8f9fa;
    border-color: #D4AF37;
}

/* Kotak Isi Dropdown */
.lang-drop-content {
    display: none;
    position: absolute;
    top: 100%; /* Muncul tepat dibawah container */
    right: 0;
    background-color: #fff;
    min-width: 140px; /* Sedikit dilebarkan agar teks tidak sesak */
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.1);
    z-index: 1000;
    border-radius: 8px;
    overflow: visible; /* PENTING: Ubah hidden jadi visible agar bridge terbaca */
    
    /* Jarak Visual (Gap) */
    margin-top: 10px; 
}

/* --- SOLUSI HOVER GAP (JEMBATAN) --- */
/* Ini membuat lapisan transparan di antara tombol dan menu */
.lang-drop-content::before {
    content: "";
    position: absolute;
    top: -20px; /* Tarik ke atas sejauh jarak gap */
    left: 0;
    width: 100%;
    height: 20px; /* Ketebalan jembatan */
    background: transparent; /* Tidak terlihat */
    z-index: 1;
}

/* Tampilkan saat di-hover */
.lang-dropdown:hover .lang-drop-content {
    display: block;
    animation: fadeIn 0.3s ease;
}

/* Item dalam dropdown */
.lang-drop-content a {
    color: #333;
    padding: 10px 16px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    transition: 0.2s;
    
    /* Agar sudut rounded ikut border-radius parent */
    position: relative;
    z-index: 2; 
}

/* Styling border radius untuk item pertama dan terakhir */
.lang-drop-content a:first-child { border-radius: 8px 8px 0 0; }
.lang-drop-content a:last-child { border-radius: 0 0 8px 8px; }

.lang-drop-content a:hover {
    background-color: #f1f1f1;
    color: #D4AF37;
}

.lang-drop-content a.active {
    font-weight: bold;
    background-color: #fffcf0; /* Background kuning tipis */
    color: #D4AF37;
}

/* Bendera */
.flag-icon {
    border-radius: 2px; 
    box-shadow: 0 0 2px rgba(0,0,0,0.2);
}

/* Animasi Muncul (Diperhalus) */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
/* =========================================
   HEADER (V1.1 - Transparent & Elegant)
========================================= */
.site-header {
    /* 1. KUNCI STICKY: Gunakan fixed */
    position: fixed; 
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000; /* Pastikan selalu di atas elemen lain */
    
    /* 2. Tampilan Tetap */
    padding: 15px 0;
    background: #ffffff; /* Pastikan Putih Solid agar konten di belakang tidak tembus */
    
    /* 3. Aksen Visual */
    border-bottom: 1px solid rgba(0, 0, 0, 0.05); /* Border halus */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);   /* Bayangan lembut agar terpisah dari konten */
    
    /* 4. Transisi Halus (Persiapan jika nanti mau pakai efek scroll JS) */
    transition: all 0.3s ease-in-out;
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo img {
    height: 50px;
}

/* Menu Desktop */
.main-nav .menu-list {
    display: flex;
    align-items: center;
    gap: 20px;
}

.menu-link {
    color: #4A4A4A;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    padding: 8px 12px;
    text-transform: uppercase;
}

.menu-link:hover {
    color: #D4AF37; /* Main Gold */
}

.menu-link i {
    font-size: 10px;
    margin-left: 3px;
    vertical-align: middle;
}

/* Tombol Home Aktif (Emas) */
.btn-home-active {
    background-color: #D4AF37;
    color: #fff !important;
    border-radius: 4px;
    font-weight: 600;
    padding: 8px 18px;
    box-shadow: 0 4px 10px rgba(212, 175, 55, 0.3);
}

.btn-home-active:hover {
    background-color: #E8C547; /* Accent Gold */
    color: #fff !important;
}

/* Hamburger Menu (Hidden on Desktop) */
.hamburger-menu {
    display: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
}

/* =========================================
   HERO SECTION (V1.1 - Dark Theme)
========================================= */
.hero-section-v1 {
    position: relative;
    width: 100%;
    height: 110vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #222;
    overflow: hidden;
}

/* =========================================
   HERO BACKGROUND SLIDER (AUTO FADE)
========================================= */

/* Wrapper Slider */
.hero-bg-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1; 
    overflow: hidden; /* Mencegah gambar bocor keluar saat zoom */
}

/* Individual Slide */
.hero-slide {
        position: absolute;
        top: 0; left: 0;
        width: 100%; height: 100%;
        background-size: cover;
        background-position: center;
        
        /* Default State: Sembunyi & Di Bawah */
        opacity: 0;
        z-index: 0;
        transform: scale(1);
        
        /* Transisi Opacity (2 detik) & Zoom (15 detik) */
        transition: opacity 2s ease-in-out, transform 15s linear;
    }

/* State Aktif (Slide yang Sedang Muncul) */
.hero-slide.active {
        opacity: 1;
        z-index: 2; /* Paling Atas */
        transform: scale(1.1);
    }
	
	.hero-slide.last-active {
        opacity: 1 !important; /* Paksa tetap terlihat */
        z-index: 1; /* Di belakang gambar active */
        transition: none; /* Jangan ada animasi saat jadi background */
    }

/* Keyframes untuk Zoom Effect */
@keyframes slowZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

/* Overlay Gradient */
.hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: radial-gradient(circle at center, rgba(60,60,60,0.3) 0%, rgba(20,20,20,0.1) 100%);
    z-index: 2;
}

.feature-box span{
   text-shadow:
    /* Offset X | Offset Y | Blur | Color */
    -1px -1px 0 #000,
     1px -1px 0 #000,
    -1px  1px 0 #000,
     1px  1px 0 #000; /* Warna stroke (hitam) */
}

.hero-content-center {
    position: relative;
    z-index: 5;
    margin-top: -20px;
}

/* Typography Hero */
.hero-main-title {
    font-size: 50px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0 0 20px;
    color: transparent;
    -webkit-text-stroke: 1.5px #d4af37;
    text-shadow: 0 0 #f5f5f526;
}

.hero-divider {
    width: 150px;
    height: 2px;
    background-color: #D4AF37; /* Main Gold */
    margin: 0 auto 30px;
}

.hero-subtitle {
    font-size: 24px;
    color: #f0f0f0;
    font-weight: 400;
    margin: 0 0 25px;
}

.hero-description {
    font-size: 18px;
    color: #ccc;
    line-height: 1.3;
    max-width: 750px;
    margin: 0 auto 50px;
}

/* Feature Icons Row */
.hero-features-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.feature-box {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #D4AF37; /* Emas */
    font-size: 20px;
    font-weight: 500;
}

.feature-icon {
    /* 1. Paksa Ukuran Kotak Tetap */
    width: 50px !important;  /* Sedikit saya besarkan biar lega */
    height: 50px !important;
    
    /* 2. SENJATA PAMUNGKAS CENTERING: CSS GRID */
    display: grid !important; 
    place-items: center !important; /* Perintah mutlak: Tengah Vertikal & Horizontal */
    
    /* 3. Reset Gaya Pengganggu */
    padding: 0 !important;   /* Hapus padding yang bikin geser */
    margin: 0 !important;    /* Hapus margin jika ada */
    
    /* 4. Styling Tampilan */
    background: #D4AF37;
    color: #ffffff;
    border-radius: 8px;
    flex-shrink: 0;          /* Agar kotak tidak gepeng di layar kecil */
    transition: 0.3s;
}

/* 5. Pastikan Ikon di dalamnya 'nurut' */
.feature-icon i {
    font-size: 22px !important; /* Ukuran ikon pas */
    line-height: 1 !important;  /* Hapus spasi baris extra */
    margin: 0 !important;
    padding: 0 !important;
    display: block !important;
}

.feature-box:hover .feature-icon {
    background: #D4AF37;
    color: #fff;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

.feature-separator {
    width: 1px;
    height: 30px;
    background-color: #666;
}

/* Wave Shape */
.hero-bottom-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 10;
}

.hero-bottom-wave svg {
    width: 100%;
    height: 80px;
    fill: #ffffff;
}

/* =========================================
   WHY CHOOSE US (Updated Colors)
========================================= */
.choose-section {
    padding: 80px 20px;
    background: #ffffff;
    text-align: center;
}

.choose-section h2 {
    font-size: 32px;
    color: #4A4A4A; /* Dark Gray */
    margin-bottom: 50px;
    font-weight: 600;
}

.choose-wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 50px;
    flex-wrap: wrap;
}

.choose-card {
    width: 250px;
    text-align: center;
}

.icon-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    background: #D4AF37; /* Main Gold Default */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
}

.choose-card:hover .icon-circle {
    transform: translateY(-5px);
    background: #8B4513; /* Brown saat hover */
}

.icon-circle i {
    color: white;
    font-size: 40px;
}

/* Check kecil */
.icon-check {
    width: 32px;
    height: 32px;
    background: #4A4A4A; /* Dark Gray */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: -5px;
    right: -5px;
    border: 3px solid #fff;
}

.icon-check i {
    font-size: 14px;
}

.choose-title {
    margin-top: 20px;
    font-size: 18px;
    color: #4A4A4A;
    font-weight: 700;
}

.choose-desc {
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.6;
    color: #6B6B6B; /* Medium Gray */
}

/* =========================================
   ABOUT US SECTION (Updated)
========================================= */
.about-section {
    padding: 80px 20px;
    display: flex;
    gap: 50px;
    align-items: center;
    background-color: #f9f9f9;
}

.about-left, .about-right {
    flex: 1;
}

.about-image-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.about-image-wrapper img {
    width: 100%;
    display: block;
}

.about-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(74, 74, 74, 0.8), transparent);
}

.about-caption {
    position: absolute;
    bottom: 20px; left: 20px;
    color: #fff;
    font-weight: 600;
    z-index: 2;
}

.about-right .sub-title {
    color: #D4AF37; /* Gold */
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
}

.about-right .main-title {
    font-size: 32px;
    color: #4A4A4A;
    margin: 10px 0 20px;
}

.about-desc {
    color: #6B6B6B;
    line-height: 1.7;
    margin-bottom: 30px;
}

.about-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.icon-sq {
    width: 40px; height: 40px;
    background: #D4AF37; /* Gold */
    color: #fff;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.about-item h4 {
    margin: 0 0 5px;
    color: #4A4A4A;
    font-weight: 600;
}

.btn-learn {
    display: inline-block;
    background: #D4AF37; /* Gold */
    color: #fff;
    padding: 12px 25px;
    border-radius: 6px;
    font-weight: 600;
    margin-top: 20px;
    transition: 0.3s;
}

.btn-learn:hover {
    background: #8B4513; /* Brown */
    transform: translateY(-3px);
}

/* =========================================
   SERVICES SECTION (Updated)
========================================= */
.services-section-2 {
    padding: 80px 20px;
    background: #fff;
    text-align: center;
}

.section-subtitle { color: #D4AF37; font-weight: 700; letter-spacing: 1px; }
.section-title { font-size: 32px; color: #4A4A4A; margin-top: 5px; }
.section-desc { color: #6B6B6B; margin-bottom: 50px; }

.services-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.service-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    width: 350px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid #eee;
    transition: 0.3s;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: #D4AF37;
}

.service-image {
    position: relative;
    height: 200px;
}

.service-image img {
    width: 100%; height: 100%; object-fit: cover;
}

.service-icon-float {
    position: absolute;
    top: 15px; left: 15px;
    background: #D4AF37; /* Gold */
    color: #fff;
    width: 45px; height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    font-size: 20px;
    z-index: 5;
}

.service-content {
    padding: 25px;
    text-align: left;
}

.service-content h4 {
    color: #4A4A4A;
    font-size: 20px;
    margin: 0 0 10px;
}

.service-content ul {
    margin-top: 15px;
}

.service-content ul li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    color: #6B6B6B;
    font-size: 14px;
}

.service-content ul li::before {
    content: "✓";
    color: #D4AF37;
    font-weight: bold;
}

.service-btn-wrapper { margin-top: 40px; }
.service-btn {
    background: #4A4A4A; /* Dark Gray */
    color: #fff;
    padding: 12px 30px;
    border-radius: 6px;
    transition: 0.3s;
}
.service-btn:hover { background: #D4AF37; }

/* =========================================
   PAGE HEADER (Breadcrumb)
========================================= */
.page-header {
    margin-top: 80px; /* Header Height */
    padding: 100px 0;
    background: linear-gradient(to right, #4A4A4A, #2c2c2c); /* Dark Gray Gradient */
    text-align: center;
    color: #fff;
}

.page-subtitle { color: #D4AF37; font-weight: 600; letter-spacing: 1px; }
.page-title { font-size: 36px; font-weight: 300; margin: 10px 0 0; }

/* =========================================
   FOOTER (Updated Colors)
========================================= */
.site-footer {
    background-color: #2c2c2c; /* Hampir Hitam */
    color: #fff;
    padding: 60px 0 20px;
    border-top: 4px solid #D4AF37; /* Gold Border */
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4, .footer-brand-name {
    color: #D4AF37; /* Gold Title */
    margin-bottom: 20px;
}

.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: #ccc; }
.footer-col ul li a:hover { color: #D4AF37; padding-left: 5px; }

.contact-list li {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    color: #ccc;
}

.contact-list li i { color: #D4AF37; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 25px;
    text-align: right;
    font-size: 13px;
    color: #999;
}

/* =========================================
   OTHER SECTIONS (News, Gallery, Contact)
   Adapted to new Palette
========================================= */

/* News */
.news-home-title { color: #D4AF37; }
.news-badge.gold { background: #D4AF37; }
.read-more-gold { color: #D4AF37; }
.btn-read-more { background: #D4AF37 !important; color: #fff; }
.btn-read-more:hover { background: #8B4513 !important; }

/* Contact Form */
.contact-left { background: #4A4A4A; } /* Dark Gray */
.contact-subtitle { color: #D4AF37; }
.btn-contact-form, .btn-submit { 
    background-color: #D4AF37; color: #fff; 
}
.btn-contact-form:hover, .btn-submit:hover { 
    background-color: #8B4513; 
}

/* Affiliation */
.aff-card-full::before { background: #D4AF37; }
.aff-title { color: #4A4A4A; }
.aff-badge { background: #FFF8E1; color: #D4AF37; }

/* Gallery */
.gallery-overlay {
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(74,74,74,0.9));
}
.photo-badge { background: #D4AF37; }
.filter-btn.active, .filter-btn:hover { background: #D4AF37; color: #fff; }

/* =========================================
   WHY CHOOSE US (V1.1 - New Design)
========================================= */
.choose-us-v2 {
    padding: 80px 0;
    background-color: #fff;
    text-align: center;
}

.section-title-v2 {
    font-size: 32px;
    color: #D4AF37; /* Main Gold sesuai gambar */
    margin-bottom: 60px;
    font-weight: 600;
}

.choose-grid-v2 {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.choose-item-v2 {
    width: 250px; /* Lebar per item */
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Lingkaran Ikon Utama */
.icon-circle-v2 {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-bottom: 25px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    color: #fff;
    font-size: 40px;
    transition: transform 0.3s ease;

    /* --- TAMBAHKAN BARIS INI --- */
    /* Ini mencegah ikon menyusut/gepeng di layar sempit */
    flex-shrink: 0; 
}

.choose-item-v2:hover .icon-circle-v2 {
    transform: translateY(-5px);
}

/* Badge Centang Kecil */
.check-badge-v2 {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 30px;
    height: 30px;
    background-color: inherit; /* Warna sama dengan induknya */
    border: 3px solid #fff; /* Border putih pemisah */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    color: #fff;
    /* Filter brightness agar badge sedikit lebih gelap dari ikon utama (opsional) */
    filter: brightness(0.9); 
}

/* Variasi Warna Ikon */
.icon-circle-v2.gold-main {
    background-color: #D4AF37; /* Emas Utama */
}

.icon-circle-v2.brown {
    background-color: #8B4513; /* Coklat */
}

.icon-circle-v2.gold-accent {
    background-color: #E8C547; /* Emas Aksen (Lebih Terang) */
}

.icon-circle-v2.gray {
    background-color: #6B6B6B; /* Abu-abu Medium */
}

/* Typography Item */
.choose-item-v2 h3 {
    font-size: 18px;
    color: #4A4A4A; /* Dark Gray */
    margin: 0 0 10px;
    font-weight: 600;
}

.choose-item-v2 p {
    font-size: 16px;
    color: #6B6B6B; /* Medium Gray */
    line-height: 1.6;
    margin: 0;
}

/* =========================================
   ABOUT US SECTION (V1.1)
========================================= */
.about-section-v2 {
    padding: 80px 0;
    background-color: #fcfcfc; /* Latar sedikit abu sangat muda */
}

.about-wrapper-v2 {
    display: flex;
    align-items: flex-start; /* Sejajar atas */
    gap: 60px;
}

/* --- Kiri: Gambar --- */
.about-image-v2 {
    flex: 1;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.about-image-v2 img {
    width: 100%;
    display: block;
    height: auto;
    object-fit: cover;
}

/* Caption di dalam gambar */
.img-caption-v2 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px 25px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    box-sizing: border-box;
}

/* --- Kanan: Konten --- */
.about-content-v2 {
    flex: 1;
}

.sub-heading-v2 {
    font-size: 28px;
    color: #D4AF37; /* Main Gold */
    letter-spacing: 1px;
    margin: 0 0 5px;
    text-transform: uppercase;
    font-weight: 600;
}

.sub-heading-v22 {
    font-size: 14px;
    color: #4A4A4A; /* Main Gold */
    letter-spacing: 1px;
    margin: 0 0 5px;
    text-transform: uppercase;
    font-weight: 600;
}

.heading-v2 {
    font-size: 28px;
    color: #D4AF37; /* Main Gold */
    margin: 0 0 25px;
    font-weight: 500;
    text-transform: uppercase;
}

.desc-v2 {
    font-size: 18px;
    color: #4A4A4A; /* Dark Gray */
    line-height: 1.7;
    margin-bottom: 35px;
}

/* 1. Container Utama: Gunakan GRID 3 Kolom */
.about-features-list {
    display: grid;
    /* PAKSA jadi 3 kolom dengan lebar rata */
    grid-template-columns: repeat(3, 1fr); 
    gap: 30px; /* Jarak antar kartu */
    margin-top: 60px;
    padding-top: 50px;
    width: 100%; /* Pastikan lebar penuh */
}

/* 2. Item Fitur (Mode Kartu) */
.feat-item-v2 {
    display: flex;
    flex-direction: column; /* Ikon atas, Teks bawah */
    align-items: center;    /* Isi rata tengah */
    text-align: center;     /* Teks rata tengah */
    
    background: #fff;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border: 1px solid #f0f0f0;
    transition: 0.3s;
    
    /* Hapus min-width/max-width agar mengikuti grid */
    width: auto; 
    height: 100%; /* Agar tinggi kartu seragam */
}

.feat-item-v2:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-color: #D4AF37;
}

/* 3. Styling Ikon */
.icon-sq-v2 {
    width: 70px;
    height: 70px;
	margin: 0;
    margin-bottom: 20px;
    font-size: 28px;
    background-color: #FFF8E1;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #D4AF37;
}

/* 4. Styling Teks */
.feat-text-v2 h4 {
    font-size: 18px;
    margin: 0 0 10px;
    color: #4A4A4A;
    font-weight: 700;
}

.feat-text-v2 p {
    font-size: 16px;
    line-height: 1.6;
    color: #6B6B6B;
    margin: 0;
}

.icon-sq-v2 i {
    color: #D4AF37; /* Main Gold */
    font-size: 22px;
}

.feat-text-v2 {
    width: 100%;
}

/* Button Gold */
.btn-gold-v2 {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #D4AF37; /* Main Gold */
    color: #fff;
    padding: 14px 35px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.btn-gold-v2:hover {
    background-color: #6B6B6B; /* Brown saat hover */
    transform: translateY(-3px);
}

/* =========================================
   SERVICES SECTION V1.1
========================================= */
.services-section-v2 {
    padding: 80px 0;
    background-color: #fff;
}

/* Header Utilities */
.sub-heading-v22.center { text-align: center; }
.sub-heading-v2.center { text-align: center; }
.heading-v2.center { text-align: center; }
.desc-v2.center { 
    text-align: center; 
    max-width: 600px; 
    margin: 0 auto 50px; 
}

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

/* Service Card Style */
.service-card-v2 {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
}

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

/* Image Box with Overlay & Icon */
.svc-img-box-v2 {
    position: relative;
    height: 220px;
    background: #ddd;
    overflow: hidden;
}

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

.service-card-v2:hover .svc-img-box-v2 img {
    transform: scale(1.1);
}

/* Gradient Overlay pada Gambar */
.svc-img-box-v2::after {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    /* Gradasi dari transparan ke abu gelap di bawah */
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(74,74,74,0.7) 100%);
}

/* Floating Icon Box */
.svc-icon-float-v2 {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
    background-color: #D4AF37; /* Main Gold */
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 5;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.svc-icon-float-v2 i {
    color: #fff;
    font-size: 22px;
}

/* Content Area */
.svc-content-v2 {
    padding: 30px;
    flex: 1; /* Agar tinggi kartu seragam */
    display: flex;
    flex-direction: column;
    background: #fdfdfd; /* Putih sangat sedikit abu */
}

.svc-content-v2 h4 {
    font-size: 20px;
    color: #4A4A4A; /* Dark Gray */
    margin: 0 0 15px;
    font-weight: 600;
}

.svc-content-v2 p {
    font-size: 16px;
    color: #6B6B6B; /* Medium Gray */
    line-height: 1.6;
    margin-bottom: 20px;
}

/* List Styling */
.svc-content-v2 ul {
    margin-top: auto; /* Dorong list ke bawah jika teks pendek */
    padding: 0;
    list-style: none;
}

.svc-content-v2 ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 16px;
    color: #555;
}

.svc-content-v2 ul li::before {
    content: "\f058"; /* FontAwesome Check Circle Solid */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #D4AF37; /* Icon Centang Emas */
    font-size: 16px;
    margin-top: 2px;
}

/* Button Wrapper */
.btn-center-wrapper {
    text-align: center;
}

/* =========================================
   NEWS SECTION V1.1
========================================= */
.hz-body-v2 h3 a,
.hz-body-v2 h4 a,
.news-grid-v2 h3 a,
.news-grid-v2 h4 a {
    color: #333; /* Warna Hitam/Gelap (sesuaikan dengan warna judul aslimu) */
    text-decoration: none; /* Hilangkan garis bawah */
    transition: color 0.3s ease;
}

/* Warna saat mouse diarahkan (Hover) */
.hz-body-v2 h3 a:hover,
.hz-body-v2 h4 a:hover,
.news-grid-v2 h3 a:hover,
.news-grid-v2 h4 a:hover {
    color: #D4AF37; /* Berubah jadi Emas saat disorot */
}

.news-section-v2 {
    padding: 80px 0;
    background-color: #fcfcfc;
}

/* Header */
.news-header-v2 {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}

.view-all-v2 {
    color: #D4AF37;
    font-weight: 500;
    font-size: 14px;
    transition: 0.3s;
}

.view-all-v2:hover {
    color: #4A4A4A;
    transform: translateX(5px);
}

/* Grid Layout */
.news-grid-v2 {
    display: grid;
    grid-template-columns: 1.2fr 1fr; /* Kolom kiri sedikit lebih lebar */
    gap: 30px;
}

/* --- Featured Card (Kiri) --- */
.feat-news-card-v2 {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
}

.feat-img-wrap {
    position: relative;
    height: 300px;
    background: #aaa; /* Fallback */
    overflow: hidden;
}

.feat-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- NEWS TAGS (STYLE: SOLID GOLD BOX) --- */

.post-tags {
    display: flex;       /* Agar tag bisa berjejer rapi */
    flex-wrap: wrap;     /* Agar tag turun ke bawah kalau penuh */
    gap: 0;
}

.post-tags a {
    /* 1. Layout Kotak */
    display: inline-block !important;
    padding: 8px 15px !important;      /* Memberi ruang dalam (atas-bawah, kiri-kanan) */
    margin: 0 8px 10px 0 !important;   /* Memberi jarak antar kotak */
    border-radius: 5px !important;     /* Sudut tumpul */
    border: none !important;

    /* 2. Warna (KUNCI PERUBAHAN) */
    background-color: #D4AF37 !important; /* Background EMAS */
    color: #ffffff !important;            /* Teks PUTIH */
    
    /* 3. Typography */
    text-decoration: none !important;
    font-weight: 500 !important;
    font-size: 13px !important;

    /* 4. Transisi */
    transition: all 0.3s ease !important;
}

/* Style saat Mouse Hover */
.post-tags a:hover {
    /* Background jadi lebih gelap sedikit */
    background-color: #B58B00 !important; 
    
    /* Teks tetap putih */
    color: #ffffff !important;
    
    /* Efek naik sedikit (bukan membesar heboh) agar elegan */
    transform: translateY(-3px) !important; 
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3) !important;
}

/* Mencegah warna berubah ungu/biru setelah diklik */
.post-tags a:visited,
.post-tags a:active {
    color: #ffffff !important; /* Pastikan selalu Putih */
}

/* Badge Kuning di Gambar */
.badge-v2 {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: #D4AF37; /* Main Gold */
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 5;
}

.feat-body-v2 {
    padding: 30px;
}

.news-date-v2 {
    color: #6B6B6B;
    font-size: 13px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.feat-body-v2 h3 {
    font-size: 24px;
    color: #4A4A4A;
    margin: 0 0 0px;
    font-weight: 600;
}

.feat-body-v2 p {
    color: #6B6B6B;
    font-size: 15px;
    margin-bottom: 10px;
}

.read-more-link-v2 {
    color: #D4AF37; /* Emas */
    font-weight: 600;
    font-size: 14px;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.read-more-link-v2:hover {
    color: #4A4A4A; /* Brown */
    padding-left: 5px;
}

/* --- Recent List (Kanan) --- */
.recent-news-col-v2 {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hz-news-card-v2 {
    display: flex;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
    height: 140px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.03);
    transition: 0.3s;
}

.hz-news-card-v2:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.news-list-thumb {
    width: 180px;      /* Lebar tetap (Desktop) */
    height: 100%;      /* Tinggi mengikuti kartu */
    flex-shrink: 0;    /* Mencegah kotak mengecil/gepeng */
    position: relative;
    overflow: hidden;  /* Memotong sisa gambar */
    background: #ccc;  /* Warna cadangan */
}

.news-list-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* KUNCI: Gambar dipotong rapi agar pas (tidak gepeng) */
    position: absolute;
    top: 0;
    left: 0;
    display: block;
}

/* Memastikan tidak ada overlay gelap di kelas baru ini */
.news-list-thumb::after {
    display: none !important;
}

/* Placeholder Gambar Abu-abu (Gradient) */
.hz-img-wrap {
	position: relative; /* Agar gambar absolute mengacu ke kotak ini */
    overflow: hidden;   /* Potong bagian gambar yang berlebih */
    width: 180px; /* Lebar tetap */
	height: 100%;
    flex-shrink: 0;
    background: linear-gradient(135deg, #bbb, #888); /* Efek gradient abu-abu seperti gambar */
    display: flex;
    justify-content: center;
    align-items: center;
    color: rgba(255,255,255,0.3);
    font-weight: 600;
    font-size: 14px;
}

.hz-img-wrap img {
    width: 100%;        /* Lebar penuh mengikuti wadah */
    height: 100%;       /* Tinggi penuh mengikuti wadah */
    object-fit: cover;  /* Memastikan gambar tidak gepeng/terdistorsi */
    position: absolute; /* Memaksa gambar menimpa background abu-abu/placeholder */
    top: 0;
    left: 0;
    display: block;
}

.hz-img-wrap::after {
    display: none !important;
}

.hz-content {
    padding: 15px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1; /* Isi sisa ruang */
}

.hidden-img {
    display: none; /* Menyembunyikan img asli jika ingin pakai placeholder CSS saja */
}

.hz-body-v2 {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hz-meta-v2 {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.badge-sm-v2 {
    background: #D4AF37; /* Abu terang untuk badge kecil */
    color: #fff;
    font-size: 11px;
    padding: 3px 10px;
    border-radius: 12px;
    font-weight: 600;
}

.date-sm {
    font-size: 12px;
    color: #888;
}

.hz-body-v2 h4 {
    font-size: 16px;
    color: #4A4A4A;
    margin: 0 0 5px;
    font-weight: 600;
}

.hz-body-v2 p {
    font-size: 13px;
    color: #6B6B6B;
    margin: 0;
}

/* =========================================
   GALLERY SECTION V1.1
========================================= */
.gallery-section-v2 {
    padding: 80px 0;
    background-color: #fff;
}

/* Header (Menggunakan style V1.1 yang sudah ada) */
.gallery-header-v2 {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}

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

/* Card Style */
.gallery-card-v2 {
    position: relative;
    height: 240px; /* Tinggi fix */
    border-radius: 12px;
    overflow: hidden;
    display: block;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: 0.3s;
}

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

.gallery-card-v2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;  /* Memotong gambar agar pas tanpa gepeng */
    position: absolute; /* Mengunci posisi agar tidak bergeser */
    top: 0;
    left: 0;
    display: block;
    opacity: 1 !important; /* Pastikan terlihat (menimpa aturan hidden lama) */
    z-index: 1; /* Di atas background placeholder */
}

.gallery-card-v2 .gal-bg-placeholder {
    display: none;
}

/* Placeholder Background (Gradient Abu-abu seperti referensi) */
.gal-bg-placeholder {
    width: 100%;
    height: 100%;
    /* Gradasi dari kiri atas (terang) ke kanan bawah (gelap) */
    background: linear-gradient(135deg, #bfbfbf 0%, #666 100%);
}

/* Jika nanti pakai gambar asli */
.hidden-img-v2 {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0; /* Ubah ke 1 jika ingin menampilkan gambar asli */
    transition: 0.4s;
}

/* Overlay Content Wrapper */
.gal-overlay-v2 {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    padding: 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 2;
    /* Sedikit gradasi hitam di bawah agar teks putih terbaca jelas */
    background: linear-gradient(to bottom, rgba(0,0,0,0) 50%, rgba(0,0,0,0.6) 100%);
}

/* Badge Pojok Kanan Atas */
.count-badge-v2 {
    align-self: flex-end;
    background-color: rgba(50, 50, 50, 0.6); /* Abu gelap transparan */
    color: #fff;
    font-size: 11px;
    padding: 4px 12px;
    border-radius: 20px;
    backdrop-filter: blur(2px);
}

/* Teks Bawah Kiri */
.gal-text-v2 h4 {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    margin: 0 0 5px 0;
}

.gal-text-v2 p {
    color: #ddd; /* Abu terang */
    font-size: 14px;
    margin: 0;
    font-weight: 400;
}

/* Icon Tengah (Placeholder Image Icon) */
.center-icon-v2 {
    position: absolute;
    top: 50%; left: 50%;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    opacity: 0.3;
}

.center-icon-v2 i {
    font-size: 40px;
    color: #333; /* Icon gelap di atas background abu */
}

/* =========================================
   CONTACT SECTION V1.1
========================================= */
.contact-section-v2 {
    padding: 60px 0;
    background-color: #fcfcfc; /* Sama dengan section sebelumnya agar menyatu */
}

.contact-card-v2 {
    display: flex;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    min-height: 450px;
}

/* --- Sisi Kiri (Dark Gray) --- */
.contact-left-v2 {
    flex: 1;
    background-color: #4A4A4A; /* Dark Gray Palette V1.1 */
    padding: 50px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-sub-v2 {
    color: #D4AF37; /* Main Gold */
    font-size: 13px;
    letter-spacing: 1px;
    margin: 0 0 10px;
    font-weight: 600;
}

.contact-title-v2 {
    font-size: 32px;
    margin: 0 0 10px;
    font-weight: 400; /* Font tipis elegan */
    color: #fff;
}

.contact-desc-v2 {
    font-size: 15px;
    line-height: 1.6;
    color: #ccc; /* Abu terang */
    margin-bottom: 40px;
    max-width: 90%;
}

/* Contact List Items */
.contact-list-v2 {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.c-item-v2 {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.c-icon-box-v2 {
    width: 45px;
    height: 45px;
    background-color: #D4AF37; /* Main Gold */
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    color: #fff; /* Ikon putih */
    font-size: 18px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.c-text-v2 {
    display: flex;
    flex-direction: column;
}

.c-label-v2 {
    font-size: 13px;
    color: #D4AF37; /* Main Gold text */
    margin-bottom: 4px;
    font-weight: 500;
}

.c-value-v2 {
    font-size: 16px;
    color: #eee;
    line-height: 1.5;
}

/* --- Sisi Kanan (Gradient Gray) --- */
.contact-right-v2 {
    flex: 1.2;
    /* Ganti URL gambar di bawah sesuai nama file yang kamu mau (misal: p1.jpg atau banner.JPG) */
    background: url('../images/banner.webp') center/cover no-repeat; 
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1; /* Membuat stacking context baru */
}

/* Overlay Gelap di atas Gambar */
.contact-right-v2::before {
    content: "";
    position: absolute;
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%;
    /* Ubah angka 0.5 untuk mengatur kegelapan (0.1 terang - 0.9 gelap) */
    background: rgba(0, 0, 0, 0.5); 
    z-index: -1; /* Pastikan di belakang tombol tapi di atas gambar */
    pointer-events: none;
}

/* Tombol Contact Form */
.btn-contact-gold-v2 {
    position: relative;
    background-color: #D4AF37; /* Main Gold */
    color: #fff;
    padding: 18px 50px;
    font-size: 18px;
    font-weight: 500;
    border-radius: 10px;
    text-decoration: none;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    transition: 0.3s;
    z-index: 2;
}

.btn-contact-gold-v2:hover {
    background-color: #E8C547; /* Accent Gold */
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

/* =========================================
   FOOTER V1.1 (Minimalist)
========================================= */
.footer-v2 {
    background-color: #333; /* Darker than contact card to separate */
    padding: 25px 0;
    margin-top: 0; /* Nempel langsung dengan section atas */
    border-top: 1px solid rgba(255,255,255,0.05); /* Garis pemisah sangat halus */
}

.copyright-text-v2 {
    text-align: center; /* Sesuai gambar referensi terakhir */
    color: #999; /* Abu-abu soft */
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.5px;
}

/* =========================================
   PAGE HEADER V1.1 (Breadcrumb Dark)
========================================= */
.page-header-v2 {
    position: relative;
    width: 100%;
    
    /* Padding disesuaikan agar proporsional */
    padding: 140px 0 60px; 
    margin-top: 0;
    
    /* BACKGROUND IMAGE DENGAN OVERLAY GELAP */
    /* Layer 1: Linear Gradient Hitam Transparan (0.7) */
    /* Layer 2: URL Gambar (Ganti 'p2.jpg' dengan nama file yang kamu mau) */
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/p2.jpg');
    
    /* Pengaturan Posisi Gambar */
    background-size: cover;      /* Memenuhi area */
    background-position: center; /* Selalu di tengah */
    background-repeat: no-repeat;
    
    text-align: center;
    color: #fff;
}

.page-subtitle-v2 {
    font-size: 18px; /* Sedikit diperkecil agar elegan */
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px; /* Jarak ke judul utama dikurangi */
    color: #e0e0e0; 
}

.page-title-v2 {
    font-size: 32px; /* Ukuran judul disesuaikan */
    font-weight: 400; 
    letter-spacing: 1px;
    margin: 0;
    text-transform: uppercase;
    color: #ffffff;
}

/* =========================================
   COMPANY OVERVIEW V1.1
========================================= */
.company-overview-v2 {
    padding: 80px 0;
    background-color: #fff;
}

/* Intro Text */
.overview-intro-v2 {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
}

.overview-intro-v2 p {
    font-size: 16px;
    line-height: 1.8;
    color: #6B6B6B; /* Medium Gray */
    margin-bottom: 20px;
}

/* Card Style */
.company-info-card-v2 {
    max-width: 1000px;
    margin: 0 auto;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    border: 1px solid #eee;
}

.card-header-v2 {
    background-color: #4A4A4A; /* Dark Gray sesuai gambar */
    color: #fff;
    padding: 20px;
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.card-body-v2 {
    padding: 40px;
}

/* Grid Layouts inside card */
.info-grid-v2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.info-item-v2 {
	display: block !important; /* Timpa display: flex dari Contact page */
    margin-bottom: 20px;
}

.info-item-v2 label {
    font-size: 14px;
    color: #D4AF37; /* Main Gold */
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
    display: block;
    margin-bottom: 8px;
}

.info-item-v2 .value {
    font-size: 16px;
    color: #4A4A4A; /* Dark Gray */
    line-height: 1.6;
}

.info-item-v2 .value.bold {
    font-weight: 600;
}

.divider-line-v2 {
    height: 1px;
    background-color: #eee;
    margin: 25px 0;
    width: 100%;
}

/* Affiliated Grid */
.aff-grid-v2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.aff-box-v2 {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    min-height: 80px;
}

.aff-box-v2 h6 {
    font-size: 16px;
    color: #4A4A4A;
    font-weight: 700;
    margin: 0 0 5px;
}

.small-meta {
    font-size: 14px;
    color: #888;
    line-height: 1.4;
    margin: 0;
}

/* =========================================
   VISION & MISSION V1.1
========================================= */
.vision-mission-v2 {
    padding: 0 0 80px; /* Nempel dengan section atas */
    background-color: #fff;
}

.vm-header-v2 {
    text-align: center;
    margin-bottom: 50px;
}

/* Grid Layout */
.vm-grid-v2 {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 2 Kolom Seimbang */
    gap: 30px;
}

/* Card Style */
.vm-card-v2 {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    transition: 0.3s;
    height: 100%; /* Agar tinggi sama */
    box-sizing: border-box;
}

.vm-card-v2:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-color: #D4AF37; /* Border Emas saat hover */
}

/* Bagian Atas Kartu (Ikon + Judul) */
.vm-card-top {
    display: flex;
    align-items: center; /* KUNCI UTAMA: Sejajarkan vertikal di tengah */
    gap: 20px;
    margin-bottom: 25px;
    
    /* Tambahan untuk debug jika perlu: pastikan tidak ada tinggi aneh */
    line-height: normal; 
}

/* Menggunakan style icon-sq-v2 yang sudah ada, tambah variasi gold solid */
	.icon-sq-v2.gold {
        width: 50px; height: 50px;
        background: #D4AF37;   /* Warna Emas Solid */
        color: #fff;           /* Icon Putih */
        display: flex; align-items: center; justify-content: center;
        border-radius: 8px;    /* Sudut tumpul */
        font-size: 22px;
        flex-shrink: 0;        /* Agar kotak tidak gepeng */
    }
.icon-sq-v2.gold i {
    color: #fff; /* Ikon Putih */
}

.vm-card-top h4 {
    font-size: 20px;
    color: #4A4A4A; 
    font-weight: 600;
    
    /* Reset semua margin bawaan browser yang mungkin mengganggu */
    margin: 0; 
    padding: 0;
    
    /* Pastikan tinggi baris netral */
    line-height: 1.2; 
    
    /* Trik Optik: Kadang font terlihat 'turun' sedikit. 
       Gunakan margin-top negatif SANGAT KECIL jika masih kurang pas. */
    /* margin-top: -2px; */ 
}

/* Teks Visi */
.vm-text-v2 {
    font-size: 16px;
    line-height: 1.7;
    color: #6B6B6B;
    margin: 0;
}

/* List Misi */
.vm-list-v2 {
    padding: 0;
    margin: 0;
    list-style: none;
}

.vm-list-v2 li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 1.6;
    color: #6B6B6B;
}

.vm-list-v2 li:last-child {
    margin-bottom: 0;
}

.vm-list-v2 li i {
    color: #D4AF37; /* Ikon Emas */
    font-size: 18px;
    margin-top: 3px;
    min-width: 20px; /* Jaga lebar ikon tetap */
}

/* =========================================
   CORE VALUES V1.1
========================================= */
.values-section-v2 {
    padding: 0 0 80px; /* Nempel dengan section atas */
    background-color: #fff;
}

/* Intro Card Besar */
.values-intro-v2 {
    background-color: #fcfcfc; /* Abu sangat muda */
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 40px;
}

.values-intro-v2 p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.values-intro-v2 p:last-child {
    margin-bottom: 0;
}

/* Grid Layout 4 Values (2 Baris) */
	.values-grid-v2 {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        margin-top: 40px;
    }

/* Value Item Card */
	.value-item-v2 {
        background: #fff;
        padding: 40px 30px;
        border-radius: 12px;
        border: 1px solid #eee;
        box-shadow: 0 5px 20px rgba(0,0,0,0.05); /* Shadow halus */
        transition: transform 0.3s ease;
        
        display: flex;
        flex-direction: column;
        align-items: center; /* Konten Rata Tengah */
        text-align: center;  /* Teks Rata Tengah */
        height: 100%;
    }

.values-grid-v2 .value-item-v2:last-child {
    /* Suruh dia mengambil lebar 2 kolom sekaligus */
    grid-column: span 2; 
    
    /* Batasi lebarnya supaya tidak terlalu panjang (agar terlihat kotak seperti yg lain) */
    width: 50%; 
    
    /* Posisikan di tengah secara horizontal */
    margin: 0 auto; 
}

	.value-item-v2:hover {
        transform: translateY(-5px);
        border-color: #D4AF37;
    }
	
	.values-grid-v2 .value-item-v2:last-child:nth-child(odd) {
        grid-column: span 2;
        width: 60%; /* Lebar item tengah */
        margin: 0 auto;
    }

	.val-header {
        display: flex;
        flex-direction: row;     /* KUNCI: Sejajar Samping */
        align-items: center;     /* Vertikal Center */
        justify-content: center; /* Horizontal Center */
        gap: 15px;               /* Jarak Icon ke Teks */
        margin-bottom: 20px;
        width: 100%;
    }
/* Style ikon menggunakan class global .icon-sq-v2 yang sudah dibuat sebelumnya */


	.val-header h4 {
        font-size: 20px;       /* Ukuran font judul */
        font-weight: 700;
        color: #333;
        margin: 0;
    }

	.value-item-v2 p {
        color: #666;
        line-height: 1.6;
        font-size: 15px;
        margin: 0;
    }

/* =========================================
   HELP SECTION V1.1
========================================= */
.help-section-v2 {
    padding: 0 0 80px; /* Nempel section atas */
    background-color: #fff;
}

.help-card-v2 {
    background-color: #595959; /* Warna abu gelap solid sesuai gambar */
    border-radius: 16px;
    padding: 20px 40px;
    text-align: center;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Icon Atas */
.help-icon-box {
    width: 60px;
    height: 60px;
    background-color: #D4AF37; /* Main Gold */
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
    font-size: 28px;
    color: #fff;
}

/* Typography */
.help-subtitle {
    color: #D4AF37; /* Main Gold */
    font-size: 15px;
    letter-spacing: 1px;
    font-weight: 600;
    margin: 0 0 10px;
    text-transform: uppercase;
}

.help-title {
    font-size: 32px;
    font-weight: 400;
    margin: 0 0 20px;
    color: #fff;
}

.help-desc {
    font-size: 16px;
    line-height: 1.6;
    color: #ddd;
    max-width: 600px;
    margin: 0 auto 40px;
}

/* Info Grid (Transparan) */
.help-info-grid {
    display: flex;
    gap: 30px;
    margin-bottom: 25px;
    width: 100%;
    max-width: 800px;
    justify-content: center;
}

.help-info-item {
    flex: 1;
    background-color: rgba(255,255,255,0.1); /* Putih transparan */
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: left;
}

/* Menggunakan .icon-sq-v2 yang sudah ada, override sedikit */
.help-info-item .icon-sq-v2 {
    width: 45px;
    height: 45px;
    font-size: 18px;
}

.help-text-content {
    display: flex;
    flex-direction: column;
}

.help-text-content .label {
    font-size: 14px;
    color: #D4AF37;
    font-weight: 600;
    margin-bottom: 2px;
}

.help-text-content .value {
    font-size: 16px;
    color: #fff;
    font-weight: 500;
}

/* Button khusus section ini */
.help-btn {
    padding: 16px 40px;
    font-size: 16px;
}

/* =========================================
   BUSINESS CONSULTING V1.1 (Updated Style)
========================================= */
.biz-consulting-v2 {
    padding: 100px 0; /* Tambah padding agar lebih lega */
    background-color: #fff;
}

/* Layout Atas */
.biz-top-v2 {
    display: flex;
    gap: 80px; /* Jarak antar kolom lebih lebar */
    align-items: center;
    margin-bottom: 80px;
}

/* Kiri */
.biz-left-v2 {
    flex: 0.8; /* Sedikit lebih kecil dari kanan */
    padding-top: 0px; /* Turunkan sedikit agar sejajar visual */
}

.biz-title-wrap {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 0px;
}

/* Icon Bulat Kiri */
.icon-circle-v2.small {
    width: 65px;
    height: 65px;
    font-size: 26px;
    background-color: #D4AF37; /* Emas */
    border-radius: 50%;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3); /* Glow halus emas */
}

.biz-title-v2 {
    font-size: 28px;
    color: #D4AF37;
    font-weight: 500;
    margin: 0;
}

.biz-desc-v2 {
    font-size: 16px;
    line-height: 1.8;
    color: #6B6B6B;
}

/* Kanan: Kartu Area Layanan */
.biz-right-card-v2 {
    flex: 1.2;
    background-color: #ffffff; /* Putih Bersih */
    border: 1px solid #f0f0f0; /* Border sangat tipis */
    border-radius: 12px;
    padding: 50px;
    /* Bayangan lembut menyebar seperti di gambar */
    box-shadow: 0 20px 50px rgba(0,0,0,0.05); 
}

.card-title-v2 {
    font-size: 32px;
    color: #D4AF37;
    margin: 0 0 35px;
    font-weight: 600;
}

/* List Item */
.svc-list-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.svc-list-item:last-child {
    margin-bottom: 0;
}

/* Ikon Checklist Outline */
.svc-list-item i {
    color: #D4AF37; /* Emas */
    font-size: 22px;
    margin-top: 4px; /* Posisi sejajar judul */
    flex-shrink: 0;
}

.svc-list-item h5 {
    font-size: 18px;
    color: #4A4A4A;
    margin: 0 0 8px;
    font-weight: 600;
}

.svc-list-item p {
    font-size: 16px;
    color: #6B6B6B;
    line-height: 1.6;
    margin: 0;
}

/* =========================================
   BIZ BOTTOM GRID (Consulting Cards)
========================================= */

/* Layout Grid 3 Kolom */
.biz-bottom-grid-v2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px; /* Jarak dari konten atas */
}

/* Style Kartu */
.detail-card-v2 {
    background: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border: 1px solid #eee;
    position: relative;
    overflow: hidden;
    transition: 0.3s;
}

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

/* Garis Aksen Emas di Sisi Kiri */
.detail-card-v2::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background-color: #D4AF37; /* Main Gold */
}

/* Judul Kartu */
.detail-card-v2 h4 {
    font-size: 18px;
    color: #D4AF37; /* Dark Gray */
    margin: 0 0 20px;
    font-weight: 600;
}

/* List Item */
.detail-card-v2 ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.detail-card-v2 ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 12px;
    font-size: 16px;
    color: #6B6B6B; /* Medium Gray */
    line-height: 1.5;
}

/* Ikon Panah Kecil pada List */
.detail-card-v2 ul li::before {
    content: "→"; 
    position: absolute;
    left: 0;
    color: #D4AF37; /* Emas */
    font-weight: bold;
}

/* =========================================
   BIOMASS ENERGY V1.1
========================================= */
.biomass-section-v2 {
    padding: 80px 0;
    background-color: #fcfcfc; /* Sedikit beda background untuk selang-seling */
}

/* Top Layout */
.bio-top-v2 {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

/* Kiri: Kartu Features */
.bio-left-card-v2 {
    flex: 1.2; /* Sedikit lebih lebar */
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
}

/* Kanan: Deskripsi */
.bio-right-desc-v2 {
    flex: 1;
    padding-top: 0px;
}

/* Bottom Grid (4 Cards) */
.bio-bottom-grid-v2 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.bio-product-card-v2 {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    position: relative;
    overflow: hidden;
    transition: 0.3s;
    height: 100%; /* Tinggi sama */
}

.bio-product-card-v2:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* Garis Emas di Atas (Border Top) */
.bio-product-card-v2::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #D4AF37; /* Main Gold */
}

.bio-product-card-v2 h4 {
    font-size: 18px;
    color: #D4AF37;
    margin: 10px 0 15px; /* Margin atas menyesuaikan border */
    font-weight: 600;
}

.bio-product-card-v2 p {
    font-size: 16px;
    color: #6B6B6B;
    line-height: 1.5;
    margin: 0;
}

/* =========================================
   OFFICE SPACE V1.1
========================================= */
.office-section-v2 {
    padding: 80px 0 100px; /* Padding bawah lebih besar karena section terakhir */
    background-color: #fff;
}

/* Bottom Grid (3 Columns) */
.office-bottom-grid-v2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Card Style */
.office-card-v2 {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 35px 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.04);
    transition: 0.3s;
}

.office-card-v2:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-color: #D4AF37; /* Border Emas saat hover */
}

.office-card-v2 h4 {
    font-size: 18px;
    color: #D4AF37;
    margin: 0 0 10px;
    font-weight: 600;
}

.office-sub-v2 {
    font-size: 16px;
    color: #6B6B6B;
    margin-bottom: 25px;
    line-height: 1.5;
    min-height: 42px; /* Menjaga tinggi baris agar rata */
}

/* List Style */
.office-list-v2 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.office-list-v2 li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 16px;
    color: #555;
}

.office-list-v2 li i {
    color: #D4AF37; /* Ikon Check Emas */
    font-size: 16px;
}

/* =========================================
   NEWS PAGE V1.1
========================================= */
.news-section-v2 {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.news-layout-v2 {
    display: grid;
    grid-template-columns: 2fr 1fr; /* Kiri 2 bagian, Kanan 1 bagian */
    gap: 40px;
}

/* --- News Grid (Left) --- */
.news-grid-v2 {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 2 Kolom kartu berita */
    gap: 30px;
}

.news-card-v2 {
        display: flex;
        flex-direction: column; /* Susun atas ke bawah */
        height: 100%;           /* Paksa tinggi 100% mengikuti elemen tertinggi di baris itu */
        background: #fff;       /* Opsional: warna background */
        border: 1px solid #eee; /* Opsional: border */
        border-radius: 8px;     /* Opsional: radius */
        overflow: hidden;
    }

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

.nc-img-box {
    position: relative;
    height: 200px;
}

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

.nc-badge {
    position: absolute;
    top: 15px; left: 15px;
    background: #D4AF37; /* Main Gold */
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 4px;
}

.nc-body {
        padding: 20px;
        
        /* FLEXBOX MAGIC DISINI */
        flex: 1;                /* Mengisi sisa ruang kosong agar tinggi seragam */
        display: flex;          /* Aktifkan flex di dalam body */
        flex-direction: column; /* Susun elemen ke bawah */
    }

.nc-meta {
    font-size: 14px;
    color: #888;
    margin-bottom: 10px;
    display: flex;
    gap: 15px;
}

.nc-meta i { color: #D4AF37; margin-right: 5px; }

.nc-body h3 {
    font-size: 18px;
    color: #4A4A4A;
    margin: 0 0 10px;
	margin-bottom: 10px;
    line-height: 1.4;
    font-weight: 600;
}

.nc-body p {
    font-size: 16px;
    color: #6B6B6B;
    line-height: 1.6;
    margin-bottom: 20px;
}

.nc-read-more {
        /* INI KUNCINYA: */
        margin-top: auto; /* Dorong tombol mentok ke bawah */
        
        display: inline-block;
        font-weight: 600;
        color: #D4AF37; /* Sesuaikan warna emas kamu */
        text-decoration: none;
    }

.nc-read-more:hover {
    color: #b59226; /* Brown */
    padding-left: 5px;
}

/* Pagination */
.pagination-v2 {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.page-link {
    width: 40px; height: 40px;
    display: flex; justify-content: center; align-items: center;
    background: #fff; border: 1px solid #ddd;
    color: #555;
    border-radius: 50%;
    transition: 0.3s;
}

.page-link.active, .page-link:hover {
    background: #D4AF37;
    border-color: #D4AF37;
    color: #fff;
}

/* --- Sidebar (Right) --- */
.sidebar-widget-v2 {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #eee;
    margin-bottom: 30px;
}

.widget-title-v2 {
    font-size: 18px;
    color: #4A4A4A;
    margin: 0 0 20px;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

.widget-title-v2::after {
    content: ""; position: absolute; bottom: 0; left: 0;
    width: 40px; height: 2px; background: #D4AF37;
}

/* Search */
.search-form { display: flex; }
.search-form input {
    flex: 1; padding: 10px; border: 1px solid #ddd;
    border-radius: 4px 0 0 4px; font-size: 13px; outline: none;
}
.search-form button {
    background: #D4AF37; color: #fff; border: none;
    padding: 0 15px; border-radius: 0 4px 4px 0; cursor: pointer;
}

/* Categories */
.cat-list-v2 li {
    border-bottom: 1px solid #f5f5f5;
    padding: 10px 0;
}
.cat-list-v2 li:last-child { border: none; }
.cat-list-v2 a {
    color: #666; font-size: 14px;
    display: flex; justify-content: space-between;
}
.cat-list-v2 a:hover { color: #D4AF37; }

/* Recent Posts */
.recent-item-v2 {
    display: flex; gap: 15px; margin-bottom: 15px;
    align-items: center;
}
.recent-item-v2 img {
    width: 60px; height: 60px; object-fit: cover; border-radius: 6px;
}
.ri-text h6 {
    margin: 0 0 5px; color: #4A4A4A; font-size: 14px; line-height: 1.3;
}
.ri-text span { font-size: 14px; color: #999; }
.recent-item-v2:hover h6 { color: #D4AF37; }

/* Tags */
.tag-cloud-v2 a {
    display: inline-block;
    background: #f5f5f5;
    color: #666;
    padding: 6px 12px;
    font-size: 14px;
    border-radius: 4px;
    margin: 0 5px 5px 0;
    transition: 0.3s;
}
.tag-cloud-v2 a:hover {
    background: #D4AF37; color: #fff;
}

/* --- Detail Post Styles --- */
.single-post-v2 {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    border: 1px solid #eee;
}

.post-img-v2 {
    position: relative; margin-bottom: 30px; border-radius: 8px; overflow: hidden;
}
.post-img-v2 img { width: 100%; display: block; }

.post-date-badge {
    position: absolute; bottom: 20px; left: 20px;
    background: #D4AF37; color: #fff;
    padding: 10px 15px; text-align: center; border-radius: 6px;
}
.post-date-badge .day { display: block; font-size: 20px; font-weight: 700; line-height: 1; }
.post-date-badge .month { font-size: 12px; text-transform: uppercase; }

.post-meta-v2 { margin-bottom: 15px; color: #888; font-size: 13px; }
.post-meta-v2 span { margin-right: 15px; }
.post-meta-v2 i { color: #D4AF37; margin-right: 5px; }

.post-title-main { font-size: 28px; color: #4A4A4A; margin-bottom: 20px; }

.post-content-v2 p { font-size: 15px; color: #666; line-height: 1.7; margin-bottom: 20px; }
.post-content-v2 blockquote {
    background: #fffbf2; border-left: 4px solid #D4AF37;
    padding: 20px; margin: 30px 0; font-style: italic; color: #555;
}

.post-footer-v2 {
    border-top: 1px solid #eee; padding-top: 20px; margin-top: 30px;
    display: flex; justify-content: space-between; align-items: center;
}
.post-tags span, .post-share a { margin-right: 10px; font-size: 14px; color: #444; }
.post-share a { color: #888; transition: 0.3s; }
.post-share a:hover { color: #D4AF37; }

/* =========================================
   GALLERY PAGE V1.1 (ADDITIONAL)
========================================= */

/* Filter Buttons Container */
.gallery-filter-v2 {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

/* Filter Button Style */
.filter-btn-v2 {
    border: 1px solid #eee;
    background: #fff;
    padding: 10px 25px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    color: #666;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 2px 5px rgba(0,0,0,0.03);
}

.filter-btn-v2:hover,
.filter-btn-v2.active {
    background: #D4AF37; /* Main Gold */
    color: #fff;
    border-color: #D4AF37;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
    transform: translateY(-2px);
}

/* =========================================
   AFFILIATION PAGE V1.1
========================================= */
.affiliation-section-v2 {
    padding: 80px 0;
    background-color: #fcfcfc;
}

.aff-intro-v2 {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
}

.aff-intro-v2 p {
    font-size: 18px;
    line-height: 1.8;
    color: #6B6B6B;
    margin: 0;
}

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

/* Card Style */
.aff-card-v2 {
    display: flex;          /* Wajib: Aktifkan Flexbox */
    flex-direction: column; /* Wajib: Susun elemen ke bawah */
    height: 100%;           /* Wajib: Paksa tinggi kartu sama rata */
    
    /* Properti lain biarkan tetap ada (background, border-radius, dll) */
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 1px solid #eee;
    transition: 0.3s;
}

.aff-card-v2:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    border-color: #D4AF37;
}

/* Top Icon Area */
.aff-icon-box-v2 {
    background: linear-gradient(135deg, #f9f9f9, #eee);
    height: 250px;      /* Tinggi kotak tetap */
    padding: 30px;      /* Tambah padding agar logo tidak nempel di pinggir */
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid #f0f0f0;
    transition: 0.3s;
    overflow: hidden;
}

.aff-icon-box-v2 .aff-logo-img {
    width: 100%;        /* Lebar maksimal 100% dari area padding */
    height: 100%;       /* Tinggi maksimal 100% dari area padding */
    
    /* KUNCI PERBAIKAN: */
    object-fit: contain; /* Memastikan SELURUH logo terlihat, tidak terpotong */
    
    display: block;
    transition: transform 0.5s ease;
}

.aff-card-v2:hover .aff-logo-img {
    transform: scale(1.05); /* Zoom lebih halus */
}

.aff-icon-box-v2 i {
    font-size: 50px;
    color: #ccc;
	display: none;
    transition: 0.3s;
}

.aff-card-v2:hover .aff-icon-box-v2 i {
    color: #D4AF37; /* Emas saat hover */
}

.aff-body-v2 {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    padding: 25px;
    
    /* PERUBAHAN DISINI: */
    text-align: center;  /* Membuat semua teks rata tengah */
    align-items: center; /* Membuat elemen flex (Badge & Tombol) berada di tengah horizontal */
}

/* Badge */
.aff-badge-v2 {
    /* Agar ukuran box mengikuti panjang teks */
    display: inline-block; 
    
    /* Styling Badge */
    background: rgba(212, 175, 55, 0.1); /* Background Gold tipis */
    color: #D4AF37;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 5px 15px;      /* Padding agar teks tidak mepet */
    border-radius: 50px;    /* Membuat bentuk kapsul */
    margin-bottom: 15px;    /* Jarak ke judul */
}

.aff-badge-v2.gray {
    background: #f0f0f0;
    color: #888;
}

/* Name & Meta */
.aff-name-v2 {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
    width: 100%; /* Pastikan width penuh agar text-align center bekerja */
}

.aff-meta-v2 {
    font-size: 13px;
    color: #999;
    margin-bottom: 15px;
}

/* Divider */
.aff-divider-v2 {
    height: 2px;
    background: #f0f0f0;
    width: 50px;
    margin: 20px auto;
}

.aff-card-v2:hover .aff-divider-v2 {
    background: #D4AF37;
}

/* Description */
.aff-desc-v2 {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1; /* Dorong tombol ke bawah */
    width: 100%;
}

/* =========================================
   GALLERY DETAILS V1.1 (GOLD THEME)
========================================= */
.gallery-details-section {
    padding: 80px 0;
    background-color: #fff;
}

/* Album Header */
.album-header {
    max-width: 900px;
    margin: 0 auto 50px;
    text-align: center;
}

.album-meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 15px;
    color: #888;
    font-size: 14px;
}

/* Icon Meta jadi Emas */
.album-meta i {
    color: #D4AF37; /* Main Gold */
    margin-right: 6px;
}

.album-title {
    font-size: 28px;
    color: #4A4A4A; /* Dark Gray */
    margin: 0 0 20px 0;
    font-weight: 700;
}

.album-desc {
    font-size: 16px;
    line-height: 1.8;
    color: #6B6B6B;
}

/* Grid Foto (Desktop 4 Kolom) */
.album-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.album-item {
    position: relative;
    height: 200px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    display: block;
}

.album-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s;
}

.album-item:hover img {
    transform: scale(1.1);
}

/* Overlay saat Hover (Dark Gold/Brown) */
.album-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(212, 175, 55, 0.7); /* Emas Transparan */
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: 0.3s;
}

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

.album-overlay i {
    color: #fff;
    font-size: 24px;
}

/* Tombol Kembali */
.album-navigation {
    text-align: center;
}

.btn-back-gallery {
    display: inline-block;
	background-color: #D4AF37;
    color: #FFF; /* Teks Emas */
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn-back-gallery:hover {
    background-color: #6B6B6B; /* BG Emas */
    color: #FFF;
}

/* =========================================
   CONTACT PAGE V1.1
========================================= */
.contact-content-v2 {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.contact-grid-layout {
    display: grid;
    grid-template-columns: 1.4fr 1fr; /* Form lebih lebar */
    gap: 30px;
    align-items: flex-start;
}

/* --- Left: Contact Form --- */
.contact-form-card {
    background: #fff;
    padding: 40px;
    border: 1px solid #eee;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}

.card-title-v2 {
    font-size: 24px;
    color: #D4AF37; /* Dark Gray */
    margin: 0 0 25px;
    font-weight: 600;
}

.form-group-v2 {
    margin-bottom: 20px;
}

.form-group-v2 label {
    display: block;
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
    font-weight: 500;
}

.required { color: #d9534f; margin-left: 3px; }

.form-control-v2 {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    box-sizing: border-box;
    transition: 0.3s;
    font-family: inherit;
}

.form-control-v2:focus {
    outline: none;
    border-color: #D4AF37; /* Focus Emas */
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

textarea.form-control-v2 { resize: vertical; }

.btn-submit-gold {
    width: 100%;
    background-color: #D4AF37; /* Main Gold */
    color: #fff;
    border: none;
    padding: 15px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.btn-submit-gold:hover {
    background-color: #b58b00; /* Darker Gold */
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* =========================================
   FIX: CONTACT SIDEBAR ALIGNMENT (V1.1)
========================================= */

/* Target Spesifik ke Sidebar Contact untuk memastikan layout Menyamping */
.contact-sidebar-v2 .info-item-v2 {
    display: flex !important;        /* Paksa jadi Flexbox */
    flex-direction: row !important;  /* Paksa arah Kiri-Kanan */
    gap: 10px;                       /* Jarak antara Ikon dan Teks */
}

/* Memastikan Ikon tidak gepeng dan ukurannya pas */
.contact-sidebar-v2 .icon-sq-v2 {
    width: 50px;
    height: 50px;
    flex-shrink: 0;                  /* Ikon tidak akan mengecil */
    font-size: 20px;                 /* Ukuran ikon di dalam kotak */
    
    /* Pastikan centering ikon */
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Memastikan Teks Label & Value tersusun rapi */
.contact-sidebar-v2 .info-text-v2 {
    display: flex;
    flex-direction: column;          /* Label di atas, Value di bawah */
    justify-content: center;
}

/* Style Label (Company Name, Address, etc) */
.contact-sidebar-v2 .info-text-v2 .label {
    font-size: 14px;
    color: #999;
    font-weight: 500;
    margin-bottom: 4px;
    text-transform: uppercase;       /* Opsional: agar terlihat rapi seperti label */
}

/* Style Value (Isi data) */
.contact-sidebar-v2 .info-text-v2 .value {
    font-size: 16px;
    color: #4A4A4A;
    font-weight: 600;
    line-height: 1.4;
}

/* --- Right: Sidebar Info --- */
.contact-sidebar-v2 {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-card-v2 {
    background: #fff;
    padding: 30px;
    border: 1px solid #eee;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}

.info-list-v2 {
    display: flex;
    flex-direction: column;
    gap: 0px;
}

/* --- Style Default: Ikon di Samping (Untuk Contact Page) --- */
.info-item-v2 {
    display: flex;             /* Flexbox: Ikon Kiri, Teks Kanan */
    align-items: flex-start;   /* Rata atas */
    gap: 15px;                 /* Jarak antara Ikon & Teks */
    margin-bottom: 20px;
}

/* --- Override: Style Khusus Halaman About (Card Body) --- */
/* Memaksa layout menjadi Atas-Bawah hanya di dalam kartu About */
.card-body-v2 .info-item-v2 {
    display: block !important; 
    margin-bottom: 20px;
}

.card-body-v2 .info-item-v2 label {
    display: block;
    margin-bottom: 8px;
}

/* --- Style Elemen --- */
.icon-sq-v2 {
    width: 40px;
    height: 40px;
    font-size: 18px;
    border-radius: 8px;
	margin: 0;
    /* Properti flex & center sudah ada di definisi global icon-sq-v2 */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0; /* Agar ikon tidak gepeng */
}

.info-text-v2 {
    display: flex;
    flex-direction: column; /* Label di atas, Value di bawah */
}

.info-text-v2 .label {
    font-size: 12px;
    color: #999;
    margin-bottom: 3px;
    font-weight: 500;
}

.info-text-v2 .value {
    font-size: 14px;
    color: #4A4A4A;
    font-weight: 500;
    line-height: 1.5;
}

/* Map Placeholder */
.map-placeholder-v2 {
    background-color: #f5f5f5;
    height: 200px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #888;
    border: 1px solid #eee;
}

.map-placeholder-v2 i {
    font-size: 32px;
    margin-bottom: 10px;
    color: #aaa;
}

/* =========================================
   FAQ SECTION V1.1
========================================= */
.faq-section-v2 {
    padding: 60px 0 100px; /* Jarak bawah lebih besar sebelum footer */
    background-color: #fff;
}

.faq-title-v2 {
    text-align: center;
    font-size: 28px;
    color: #D4AF37; /* Medium Gray untuk judul section */
    font-weight: 500;
    margin: 0 0 40px;
}

.faq-wrapper-v2 {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Card Style */
.faq-card-v2 {
    background-color: #FFFBF2; /* Krem Muda */
    border: 1px solid #f0e6d0; /* Border krem sedikit gelap */
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    transition: 0.3s;
}

.faq-card-v2:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    transform: translateY(-2px);
    border-color: #D4AF37; /* Aksen Emas saat hover */
}

/* Question Text */
.faq-q-v2 {
    font-size: 18px;
    color: #4A4A4A; /* Dark Gray */
    font-weight: 600;
    margin: 0 0 10px;
}

/* Answer Text */
.faq-a-v2 {
    font-size: 16px;
    color: #6B6B6B; /* Medium Gray */
    line-height: 1.6;
    margin: 0;
}

/* ==========================
   GOOGLE MAPS STYLE
=========================== */
.map-container {
    width: 100%;
    height: 250px; /* Tinggi peta disesuaikan agar pas di kartu */
    border-radius: 8px;
    overflow: hidden; /* Memotong sudut tajam iframe */
    border: 1px solid #eee;
    background-color: #f0f0f0; /* Warna loading sebelum peta muncul */
}

.map-container iframe {
    width: 100%;
    height: 100%;
    display: block; /* Menghilangkan gap putih di bawah iframe */
}

/* =========================================
   SECTION SEPARATION & BACKGROUNDS (V1.1)
========================================= */

/* Section Ganjil (White) */
.choose-us-v2, 
.services-section-v2, 
.gallery-section-v2, 
.vision-mission-v2, 
.help-section-v2,
.faq-section-v2 {
    background-color: #ffffff;
    padding: 10px 0; /* Tambah padding agar lebih lega */
}

/* Section Genap (Light Gray/Cream) - Untuk membedakan */
.about-section-v2, 
.news-section-v2,
.biz-consulting-v2,
.biomass-section-v2,
.office-section-v2, 
.contact-content-v2,
.company-overview-v2,
.values-section-v2,
.affiliation-section-v2 {
    background-color: #fcfcfc; /* Abu sangat muda */
    border-bottom: 1px solid #f0f0f0; /* Garis pemisah halus di bawah */
    padding: 100px 0;
}

/* Khusus Section yang butuh background Krem (sesuai referensi Biomass/Contact) */
/* Kamu bisa override class tertentu jika ingin warna beda */
/* Contoh: .contact-content-v2 { background-color: #f9f9f9; } */

/* Margin antar elemen di dalam section agar tidak rapat */
.section-header-center, 
.news-header-v2, 
.gallery-header-v2,
.biz-top-v2,
.bio-top-v2 {
    margin-bottom: 60px !important; /* Jarak judul ke konten */
}

/* =========================================
   REPRESENTATIVE SECTION STYLE (UPDATED)
========================================= */

.rep-section {
    padding: 80px 0;
    background: #f8f9fa;
    position: relative;
}

/* Container Kartu */
.rep-card {
    background: #fff;
    padding: 60px 50px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
    border-top: 5px solid #D4AF37; /* Aksen garis emas */
}

/* Icon Kutipan (Dibuat di tengah atas, bukan background absolute lagi) */
.rep-bg-icon {
    display: block;
    position: static; /* Reset dari absolute */
    text-align: center;
    font-size: 60px; /* Ukuran disesuaikan agar proporsional */
    color: rgba(212, 175, 55, 0.2); /* Warna Emas Transparan */
    margin: 0 auto 30px auto; /* Posisi Tengah */
}

/* Layout Grid (Diubah dari Flex menjadi Block agar 1 Kolom) */
.rep-grid {
    display: block;
    width: 100%;
    position: relative;
    z-index: 1;
}

/* --- BAGIAN FOTO DIHAPUS (rep-img-col, avatar, dll) --- */

/* Kolom Teks (Dibuat Centered) */
.rep-content-col {
    margin: 0 auto;       /* Membuat posisi tengah secara horizontal */
    max-width: 800px;     /* Membatasi lebar agar teks rapi (tidak terlalu lebar) */
    text-align: center;   /* Rata tengah untuk seluruh isi */
}

/* JUDUL (#D4AF37 & Centered) */
.rep-title {
    color: #D4AF37;
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    display: block;       /* Ubah jadi block agar bisa di-center */
}

/* Isi Paragraf */
.rep-text p {
    color: #555;
    line-height: 1.8;
    font-size: 16px;
    margin-bottom: 20px;
    /* Opsional: gunakan 'center' atau 'justify' sesuai selera kerapian */
    text-align: justify; 
}

/* =========================================
   WHY INDO SECTION
========================================= */

	.why-indo-section {
        padding: 80px 0;
        background: #fff; /* Atau #f9f9f9 selang-seling */
    }
    
	.why-wrapper {
		display: block;
		width: 100%;
	}

    /* Bagian Gambar (Kiri) */
    .why-img-box {
        flex: 1;
        position: relative;
    }
    .why-img-box img {
        width: 100%;
        border-radius: 12px;
        box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        object-fit: cover;
    }

    /* Bagian Teks (Kanan) */
    .why-content {
		margin: 0 auto;      /* Membuat box berada di tengah secara horizontal */
		max-width: 800px;    /* Membatasi lebar agar teks tidak terlalu panjang kesamping (biar rapi) */
		text-align: center;  /* Membuat teks rata tengah */
		padding: 20px 0;
	}
    
    .why-title {
		font-size: 28px;
		color: #D4AF37;   
		margin-bottom: 20px; /* Jarak antara judul dan teks */
		text-align: center;
		font-weight: 500;
		text-transform: uppercase;
	}
	
	.why-text {
		line-height: 1.6;    /* Jarak antar baris agar mudah dibaca */
		color: #333;         /* Sesuaikan warna teks deskripsi jika perlu */
	}
	
    .why-text p {
        color: #666;
        line-height: 1.8;
        font-size: 18px;
        margin-bottom: 20px;
        text-align: justify;
    }

    /* Statistik Bar (Highlight Angka) */
    .why-stats {
        display: flex;
        gap: 20px;
        margin-top: 30px;
        padding-top: 20px;
        border-top: 1px solid #eee;
    }
    .stat-item {
        flex: 1;
        text-align: center;
    }
    .stat-num {
        font-size: 28px;
        font-weight: 800;
        color: #D4AF37;
        display: block;
    }
    .stat-label {
        font-size: 12px;
        color: #888;
        text-transform: uppercase;
        font-weight: 600;
        letter-spacing: 0.5px;
    }

/* =========================================
   AFFILIATION SOCIAL & BUTTONS
========================================= */

/* Container Social Icons */
.aff-social-row {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 25px;
    margin-bottom: 25px;
}

/* Social Icon Style */
.aff-soc-icon {
    width: 36px;
    height: 36px;
    background-color: #f5f5f5;
    color: #666;
    border-radius: 50%; /* Lingkaran */
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    transition: 0.3s;
    border: 1px solid transparent;
}

.aff-soc-icon:hover {
    background-color: #D4AF37; /* Emas */
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(212, 175, 55, 0.2);
}

/* Visit Website Button */
.btn-aff-visit {
    margin-top: auto; /* Dorong ke paling bawah */
    display: inline-block;
    padding: 10px 25px;
    background: transparent;
    color: #D4AF37;
    border: 2px solid #D4AF37;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: 0.3s;
}

.btn-aff-visit i {
    margin-left: 5px;
    font-size: 12px;
}

.btn-aff-visit:hover {
	background: #D4AF37;
    color: #fff;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
}


@media (max-width: 1024px) {
    
    /* 1. CONTAINER UTAMA */
    .recent-news-col-v2 {
        padding: 20px 15px !important;
        width: 100% !important;
        box-sizing: border-box !important;
        display: block !important;
    }

    /* 2. KARTU BERITA (WRAPPER) */
    .hz-news-card-v2 {
        display: flex !important;
        flex-direction: row !important; /* Kiri-Kanan */
        /* Hapus align-items stretch biar tinggi ngikutin konten tertinggi */
        align-items: flex-start !important; 
        
        background: #fff !important;
        margin-bottom: 25px !important;
        border: 1px solid #eee !important;
        border-radius: 12px !important;
        overflow: hidden !important;
        box-shadow: 0 4px 15px rgba(0,0,0,0.06) !important;
        position: relative !important;
        
        /* Pastikan tinggi minimal ada */
        min-height: 130px !important; 
    }

    /* 3. WADAH GAMBAR (KIRI) */
    .hz-img-wrap {
        /* Lebar Tetap */
        width: 140px !important;
        min-width: 140px !important;
        
        /* PENTING: Hapus absolute positioning logic disini */
        position: relative !important;
        height: auto !important;
        background-color: #ddd; /* Warna abu buat ngecek kalo img gagal load */
        margin: 0 !important;
        padding: 0 !important;
        
        /* Trik agar tinggi wadah minimal sama dengan kartu */
        align-self: stretch !important; 
        display: flex !important; /* Agar img bisa diatur flex */
    }

    /* 4. GAMBAR (IMG) - INI KUNCINYA */
    .hz-img-wrap img {
        /* KEMBALIKAN KE ALIRAN NORMAL (Hapus Absolute) */
        position: relative !important; 
        
        /* Paksa dimensi */
        width: 100% !important;
        height: 100% !important; 
        min-height: 130px !important; /* Paksa minimal setinggi kartu */
        
        object-fit: cover !important; /* Agar gambar tidak gepeng */
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        z-index: 10 !important; /* Pastikan di atas background */
    }

    /* 5. WADAH TEKS (KANAN) */
    .hz-body-v2 {
        flex: 1 !important;
        min-width: 0 !important;
        width: 0 !important;
        padding: 15px !important;
        
        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-start !important; /* Rata Atas */
    }

    /* Judul */
    .hz-body-v2 h4 {
        margin-top: 10px !important;
        font-size: 15px !important;
        line-height: 1.4 !important;
    }
    
    /* Sembunyikan P (Deskripsi) sesuai request */
    .hz-body-v2 p {
        display: none !important;
    }
}
@media (max-width: 991px) {
	
.rep-card {
        padding: 40px 20px; /* Mengurangi padding kartu agar tidak sempit di HP */
    }

    /* Grid sudah otomatis 1 kolom dari style utama, 
       jadi kita pastikan saja text alignment-nya */
    .rep-grid {
        text-align: center;
    }

    /* Icon Kutipan */
    .rep-bg-icon {
        /* Sesuaikan ukuran agar tidak terlalu besar menutupi layar HP */
        font-size: 50px; 
        
        /* Kita gunakan margin auto agar icon tetap di tengah (bukan di pojok kanan/top) */
        margin: 0 auto 20px auto; 
        
        /* Reset posisi jika ada sisa style lama */
        position: static; 
    }

    /* Judul */
    .rep-title {
        font-size: 22px; /* Sedikit mengecilkan font judul */
    }

    /* Garis Bawah Judul */
    .rep-title::after {
        margin: 10px auto 0 auto; /* Pastikan garis tetap di tengah */
    }

    /* Paragraf Teks */
    .rep-text p {
        text-align: center; /* Memaksa rata tengah (opsional: bisa ganti justify) */
        font-size: 14px;    /* Keterbacaan yang baik di mobile */
    }
	
        .why-wrapper {
            flex-direction: column;
        }
        .why-img-box {
            order: 1; /* Gambar di bawah teks di HP, atau ubah 0 untuk di atas */
            width: 100%;
        }
        .why-content {
            order: 0;
            width: 100%;
        }
        .why-title { font-size: 26px; }
        .why-stats { flex-wrap: wrap; }
	
	.about-features-list {
        grid-template-columns: 1fr; /* Stack 1 kolom di Tablet/HP */
        gap: 20px;
    }
	/* Sembunyikan Menu Desktop default */
    .main-nav { 
        display: none; 
    }
    
    /* Munculkan Tombol Hamburger */
    .hamburger-menu { 
        display: block; 
        z-index: 1001;
        color: #4A4A4A;
        font-size: 24px;
        cursor: pointer;
    }

    /* Tampilan Menu Mobile saat Aktif (Overlay Fullscreen) */
    .main-nav.active {
        display: flex; 
        position: fixed; 
        top: 0; 
        left: 0; 
        width: 100%; 
        height: 100vh;
        background: rgba(30, 30, 30, 0.98); /* Background Gelap Solid */
        flex-direction: column; 
        justify-content: center; 
        align-items: center; /* Tengahkan item menu */
        z-index: 999;
    }

    /* Styling List Menu di Mobile */
    .main-nav.active .menu-list { 
        flex-direction: column; 
        gap: 30px; 
        text-align: center;
    }

    /* Styling Link Menu di Mobile */
    .menu-link { 
        font-size: 20px; 
        color: #fff;
        display: block;
    }
    
    /* Penyesuaian lain di 991px */
    .header-logo img { 
		height: 40px; 
	}
	
	.contact-grid-layout {
        grid-template-columns: 1fr; /* Stack di Tablet/HP */
    }
	
	.album-grid {
        grid-template-columns: repeat(3, 1fr);
    }
	
	.aff-grid-v2 {
        grid-template-columns: 1fr; /* Stack 1 kolom */
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
	
	.news-layout-v2 {
        grid-template-columns: 1fr; /* Stack sidebar di bawah */
    }
    .news-grid-v2 {
        grid-template-columns: 1fr 1fr; /* Tablet tetap 2 kolom */
    }
	
	.office-bottom-grid-v2 {
        grid-template-columns: 1fr; /* 1 Kolom di Tablet/HP */
    }
	
	.bio-top-v2 {
        flex-direction: column-reverse; /* Agar di tablet Teks dulu baru Kartu */
    }
	
	.biz-left-v2 {
        padding-top: 0;
    }
    
    .biz-right-card-v2 {
        padding: 30px;
    }
    
    .bio-bottom-grid-v2 {
        grid-template-columns: 1fr 1fr; /* 2 Kolom di Tablet */
    }
	
	.biz-top-v2 {
        flex-direction: column;
        gap: 40px;
    }
    
    .biz-bottom-grid-v2 {
        grid-template-columns: 1fr; /* Stack 1 kolom */
    }
	
	.contact-card-v2 {
        flex-direction: column;
    }
    
    .contact-right-v2 {
        padding: 60px 20px;
        min-height: 200px;
    }
	
	.gallery-grid-v2 {
        grid-template-columns: 1fr; /* Stack 1 kolom di Tablet/HP */
    }
	
	.news-grid-v2 {
        grid-template-columns: 1fr; /* Stack 1 kolom */
    }
	
    .services-grid-v2 {
        grid-template-columns: 1fr; /* Stack 1 kolom di Tablet/HP */
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* =========================================
   BREADCRUMB NAVIGATION (NEW)
========================================= */
.breadcrumb-v2 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: 15px 0 0; /* Jarak dari judul utama */
    padding: 0;
    list-style: none;
}

/* Item Biasa */
.breadcrumb-v2 li {
    font-size: 14px;
    font-weight: 500;
    color: #e0e0e0; /* Warna abu terang */
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
}

/* Link Home */
.breadcrumb-v2 li a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 6px; /* Jarak ikon rumah ke teks */
}

.breadcrumb-v2 li a:hover {
    color: #D4AF37; /* Jadi Emas saat hover */
}

/* Ikon Rumah Sedikit Lebih Besar */
.breadcrumb-v2 li a i {
    font-size: 16px;
    margin-bottom: 2px; /* Penyesuaian vertikal */
}

/* Panah Pembatas (>) */
.breadcrumb-v2 .separator {
    font-size: 10px;
    color: #D4AF37; /* Warna Emas */
    margin: 0 5px;
    opacity: 0.8;
}

/* Halaman Aktif (Teks Kanan) */
.breadcrumb-v2 li.active {
    color: #D4AF37; /* Warna Emas */
    font-weight: 600;
    cursor: default;
}

/* =========================================
   RESPONSIVE RULES (Preserved Logic)
========================================= */

/* Tablet & Mobile (Max 768px) */
/* =========================================
   MOBILE RESPONSIVE FIX (SAFE VERSION)
========================================= */
@media (max-width: 768px) {
	.lang-switcher {
        margin-left: auto; /* Dorong ke kanan dekat hamburger */
        margin-right: 15px; 
    }
	
	/* 1. Pastikan Item Info memenuhi lebar tapi tetap aman */
    .help-info-item {
        width: 100% !important;
        box-sizing: border-box !important;
        /* Pastikan layout tetap flex agar ikon & teks berdampingan */
        display: flex !important; 
        gap: 15px !important;
    }

    /* 2. Container Teks (PENTING UNTUK FLEXBOX) */
    /* Kita harus set min-width: 0 agar flexbox mau mengecilkan elemen ini */
    .help-text-content {
        flex: 1 !important;    /* Ambil sisa ruang yang ada */
        min-width: 0 !important; /* Trik agar text-wrap berfungsi di dalam Flex */
    }

    /* 3. Teks Email (Value) */
    .help-text-content .value {
        word-break: break-word !important;  /* Potong kata panjang */
        overflow-wrap: anywhere !important; /* Support browser modern */
        white-space: normal !important;     /* Izinkan turun baris */
        display: block !important;
        line-height: 1.4 !important;        /* Jarak antar baris agar terbaca */
    }
	.contact-sidebar-v2 .info-text-v2 .value {
        /* PERINTAH WAJIB: Paksa potong kata panjang */
        word-break: break-word !important;  /* Standar umum */
        overflow-wrap: anywhere !important; /* Lebih kuat untuk email/URL */
        
        /* Pastikan dia bersifat blok agar bisa turun baris */
        display: block !important;
        width: 100% !important;
    }
	
	.values-grid-v2 {
            grid-template-columns: 1fr; /* Jadi 1 kolom */
        }
		
	.values-grid-v2 .value-item-v2:last-child:nth-child(odd) {
            grid-column: auto; /* Reset span */
            width: 100%;       /* Reset lebar */
        }
		
	/* Di HP, Icon dan Judul tetap rata kiri agar rapi, atau center (opsional) */
        .val-header {
            justify-content: flex-start; /* Ubah ke center jika ingin tengah di HP */
        }
        .value-item-v2 {
            align-items: flex-start; /* Ubah ke center jika ingin tengah di HP */
            text-align: left;
        }
	
    /* 1. Reset Grid Layout agar menumpuk rapi ke bawah */
    .contact-grid-layout {
        display: flex !important;
        flex-direction: column !important;
        gap: 30px !important;
        width: 100% !important;
    }

    /* 2. Fix Kartu Form (Penyebab Melebar) */
    .contact-form-card {
        width: 100% !important;
        
        /* Kurangi padding di HP agar konten lebih lega */
        padding: 30px 20px !important; 
        
        /* KUNCI: Hitung padding di dalam lebar, bukan di luar */
        box-sizing: border-box !important; 
    }

    /* 3. Fix Sidebar (Info di Kanan/Bawah) */
    .contact-sidebar-v2 {
        width: 100% !important;
        box-sizing: border-box !important;
    }
    
    /* 4. Safety untuk Container (Agar ada jarak kiri-kanan di semua halaman) */
    .container {
        padding-left: 20px !important;
        padding-right: 20px !important;
        box-sizing: border-box !important;
        width: 100% !important;
    }

    /* --- [BARU] PENGAMAN GLOBAL SECTION --- */
    /* Mencegah section apa pun meluap keluar layar */
    section, .hero-section-v1, footer {
        max-width: 100vw !important;
        overflow-x: hidden !important;
    }

    /* --- KODE ASLI KAMU (DIPERTAHANKAN) --- */

    /* Breadcrumb agar tidak melebar */
    .breadcrumb-v2 {
        flex-wrap: wrap; 
        padding: 0 10px; 
        justify-content: center;
    }
    
    .breadcrumb-v2 li {
        font-size: 12px; 
    }
    
    .choose-us-v2 {
        display: none !important;
    }
    
    .about-features-list {
        flex-direction: column; 
        align-items: center;    
    }
    
    .feat-item-v2 {
        width: 100%;       
        max-width: 100%;
        box-sizing: border-box !important; /* Tambahan safety */
    }

    /* 1. Reset Padding Container Utama */
    .contact-section-v2 {
        padding: 60px 0 !important; /* Saya ubah 80px ke 60px biar lebih pas di HP */
        background-color: #fcfcfc;
    }

    /* 2. Ubah Layout Kartu Menjadi Vertikal (Atas-Bawah) */
    .contact-card-v2 {
        flex-direction: column !important;
        min-height: auto !important; 
        height: auto !important;
        width: 100% !important; /* Pastikan kartu tidak lebih lebar dari container */
        box-sizing: border-box !important;
    }

    /* 3. Sesuaikan Area Kiri (Info Kontak) */
    .contact-left-v2 {
        padding: 30px 20px !important; 
        width: 100% !important;
        max-width: 100% !important; 
        box-sizing: border-box !important;
    }
    
    .c-value-v2 {
        font-size: 14px !important; 
        word-wrap: break-word;      
        word-break: break-word;     
        overflow-wrap: break-word;  
        display: block;             
        max-width: 100%;            
    }

    /* 4. Sesuaikan Ukuran Judul */
    .contact-title-v2 {
        font-size: 26px !important; 
        margin-bottom: 20px !important;
    }

    /* 5. Sesuaikan Area Kanan (Background Gambar & Tombol) */
    .contact-right-v2 {
        width: 100%;
        min-height: 250px !important; 
        padding: 40px 20px !important;
        order: 1; 
        box-sizing: border-box !important;
    }
    
    /* 6. Pastikan Item Kontak Rapi */
    .c-item-v2 {
        flex-direction: row;        
        align-items: flex-start;    
        width: 100%;                
    }
    
    .c-text-v2 {
        flex: 1;                    
        min-width: 0;               
    }
    
    /* GRID LAYOUTS (STACKING) */
    .album-grid {
        grid-template-columns: repeat(2, 1fr) !important; 
        gap: 10px;
    }
    
    .album-item {
        height: 150px;
    }
    
    /* Gabungkan grid 1 kolom agar lebih rapi kodenya */
    .bio-bottom-grid-v2,
    .values-grid-v2,
    .vm-grid-v2,
    .info-grid-v2, 
    .aff-grid-v2,
    .choose-grid-v2 {
        grid-template-columns: 1fr !important; /* 1 Kolom di HP */
        width: 100% !important;
        box-sizing: border-box !important;
    }
	
	.values-grid-v2 .value-item-v2:last-child {
        /* Reset settingan desktop */
        grid-column: auto; 
        width: 100%; 
    }
    
    .help-info-grid {
        flex-direction: column;
    }
    
    .help-card-v2 {
        padding: 40px 20px;
    }
    
    .values-intro-v2 {
        padding: 25px;
    }
    
    .vm-card-v2 {
        padding: 30px;
    }
    
    .card-body-v2 {
        padding: 25px;
    }
    
    .page-header-v2 {
        padding: 120px 0 50px; 
    }
    
    .page-title-v2 {
        font-size: 24px;
        line-height: 1.4;
        padding: 0 15px;
    }
    
    .news-header-v2 {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    /* NEWS CARD FIX */
    .hz-news-card-v2 {
        flex-direction: column !important; 
        height: auto !important;           
        max-height: none !important;       
    }
    
    .news-list-thumb {
        width: 100% !important;
        height: 200px !important; 
    }
    
    .hz-body-v2 {
        width: 100% !important;
        padding: 20px !important;
        display: block !important; 
        box-sizing: border-box !important;
    }
    
    .hz-img-wrap {
        width: 100%;
        height: 150px;
    }
    
    .about-wrapper-v2 {
        flex-direction: column; 
    }
    
    .about-image-v2, 
    .about-content-v2 {
        width: 100%;
    }
    
    /* Header Mobile */
    .main-nav { 
        display: none; 
        position: fixed;
        top: 0; left: 0; width: 100%; height: 100vh;
        background: rgba(30,30,30,0.98);
        flex-direction: column;
        justify-content: center;
        z-index: 999;
    }
    
    .main-nav.active { display: flex; } 
    
    .hamburger-menu { 
        display: block; 
        z-index: 1001;
    }

    /* Hero Section Fix */
    .hero-section-v1 {
        padding-top: 80px !important; 
        height: auto !important; 
        min-height: 100vh; 
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .hero-content-center {
        margin-top: 0 !important; 
        padding-bottom: 60px; 
    }

    .hero-main-title {
        font-size: 28px !important;
        line-height: 1.3;
        margin-bottom: 15px;
    }
    .hero-subtitle { font-size: 18px; }
    
    .hero-features-row {
        display: flex;
        flex-direction: column !important; 
        align-items: center !important; 
        width: 100% !important; 
        gap: 15px;
        margin-top: 20px;
    }
    
    /* Feature Box (KODE KAMU TETAP DISINI) */
    .feature-box {
        width: 300px !important; /* Lebar tetap agar ikon lurus */
        max-width: 100%; 
        display: flex;
        justify-content: flex-start !important; 
        align-items: center;
        text-align: left !important;
        margin: 0 auto; 
    }
    .feature-separator { display: none; }

    /* Layout Stack (1 Kolom) untuk Content */
    .about-section, 
    .biz-top-wrapper, 
    .bio-top-wrapper,
    .contact-layout-grid,
    .news-layout {
        flex-direction: column;
    }
    
    .about-left, .about-right, .biz-left, .biz-right-card, .bio-left-card, .bio-right-desc {
        width: 100%;
    }

    /* Grid 1 Kolom (Default Mobile) */
    .services-cards,
    .affiliation-grid,
    .office-bottom-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .service-card, .aff-card-full, .office-card {
        width: 100% !important;
        box-sizing: border-box !important;
    }

    /* Footer Center */
    .footer-top { flex-direction: column; text-align: center; }
    .footer-bottom { text-align: center; }
    .contact-list li { justify-content: center; }

    /* PENGECUALIAN: GALLERY TETAP 2 KOLOM */
    .gallery-grid,
    .album-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px;
    }
    
    .gallery-card, .album-item {
        width: 100% !important;
        height: 160px;
    }
    
    .gallery-info h4 { font-size: 11px; white-space: normal; }
}


/* Mobile Kecil (Max 576px) */
@media (max-width: 576px) {
	.news-list-thumb {
        width: 100%;       /* Lebar penuh di HP */
        height: 150px;     /* Tinggi fix di HP */
    }
	.map-container {
        height: 200px;
    }
	
	.faq-card-v2 {
        padding: 20px;
    }
    
    .faq-q-v2 {
        font-size: 16px;
    }
	
	.gallery-filter-v2 {
        gap: 10px;
    }
    
    .filter-btn-v2 {
        padding: 8px 15px;
        font-size: 12px;
    }
	
	.news-grid-v2 {
        grid-template-columns: 1fr; /* HP 1 kolom */
    }
    .single-post-v2 { padding: 20px; }
	
	
	.copyright-text-v2 {
        font-size: 12px;
        padding: 0 10px;
        line-height: 1.5;
    }
	
	.gallery-header-v2 {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
	
    .container { padding: 0 15px; }
    .hero-main-title { font-size: 24px; }
    
    /* Pastikan Gallery tetap 2 kolom disini */
    .gallery-grid { gap: 8px; }
    .gallery-card { height: 140px; }
}