/* ================= CSS VARIABLES (LIGHT/DARK MODE) ================= */
:root {
    --bg-color: #F8FAFC;
    --surface-color: #FFFFFF;
    --text-main: #334155;
    --text-muted: #64748B;
    --primary: #0A2540;     
    --accent: #0077FF;      
    --gold: #D4AF37; /* Emas Premium */
    --gold-light: #F3E5AB; /* Emas Terang untuk Gradasi */
    --border: #e2e8f0;
    --shadow: 0 4px 15px rgba(0,0,0,0.05);
    --shadow-hover: 0 20px 40px rgba(0,119,255,0.15);
    --shadow-gold: 0 10px 30px rgba(212, 175, 55, 0.15); /* Shadow Emas untuk Hover */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-theme="dark"] {
    --bg-color: #0f172a;
    --surface-color: #1e293b;
    --text-main: #f1f5f9;
    --text-muted: #94a3b8;
    --primary: #f8fafc;     
    --accent: #3b82f6;      
    --gold: #E5C158; 
    --gold-light: #FFF0B3;
    --border: #334155;
    --shadow: 0 4px 15px rgba(0,0,0,0.3);
    --shadow-hover: 0 20px 40px rgba(0,0,0,0.5);
    --shadow-gold: 0 10px 30px rgba(229, 193, 88, 0.2);
}

/* ================= RESET & BASE ================= */
* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
    font-family: 'Poppins', sans-serif; 
}

html { 
    scroll-behavior: smooth; 
}

body { 
    background-color: var(--bg-color); 
    color: var(--text-main); 
    overflow-x: hidden; 
    transition: background-color 0.3s ease, color 0.3s ease; 
}

a { 
    text-decoration: none; 
    color: inherit; 
}

ul { 
    list-style: none; 
}

img { 
    max-width: 100%; 
    display: block; 
}

/* ================= GLOBAL TYPOGRAPHY ================= */
section { 
    padding: 100px 5%; 
    transition: background-color 0.3s ease; 
}

.section-header { 
    text-align: center; 
    margin-bottom: 50px; 
}

.section-header h2 { 
    font-size: 2.5rem; 
    color: var(--primary); 
    font-weight: 800; 
    transition: color 0.3s ease;
}

/* Emas Solid Elegan untuk highlight kata di Judul */
.section-header h2 span { 
    color: var(--gold); 
}

.tag-genz { 
    display: inline-block; 
    padding: 5px 15px; 
    background: rgba(0,119,255,0.1); 
    color: var(--accent); 
    border-radius: 50px; 
    font-size: 14px; 
    font-weight: 600; 
    margin-bottom: 15px; 
}

/* ================= NAVBAR ================= */
header {
    position: fixed; 
    top: 0; 
    width: 100%; 
    padding: 20px 5%;
    display: flex; 
    justify-content: space-between; 
    align-items: center;
    z-index: 1000; 
    transition: var(--transition); 
    background: transparent;
}

header.scrolled { 
    background: var(--surface-color); 
    box-shadow: var(--shadow); 
    padding: 15px 5%; 
}

.logo { 
    font-size: 24px; 
    font-weight: 800; 
    color: #fff; 
    transition: var(--transition); 
    letter-spacing: -1px;
}

.logo span { 
    color: var(--accent); 
}

header.scrolled .logo { 
    color: var(--primary); 
}

.nav-links { 
    display: flex; 
    gap: 30px; 
    align-items: center; 
}

.nav-links li a { 
    color: #fff; 
    font-weight: 500; 
    font-size: 15px; 
    transition: var(--transition); 
}

header.scrolled .nav-links li a { 
    color: var(--text-main); 
}

/* Nav Menu berubah emas saat di-hover */
.nav-links li a:hover { 
    color: var(--gold) !important; 
}

.nav-actions { 
    display: flex; 
    align-items: center; 
    gap: 20px; 
}

.lang-switch, .theme-toggle { 
    color: #fff; 
    cursor: pointer; 
    display: flex; 
    align-items: center; 
    gap: 5px; 
    font-weight: 500; 
    transition: var(--transition); 
}

header.scrolled .lang-switch, header.scrolled .theme-toggle { 
    color: var(--text-main); 
}

.lang-switch:hover, .theme-toggle:hover { 
    color: var(--gold); 
}

/* Tombol Default */
.btn-book {
    background: var(--accent); 
    color: #fff !important; 
    padding: 10px 25px; 
    border-radius: 50px;
    font-weight: 600; 
    text-transform: uppercase; 
    letter-spacing: 1px; 
    font-size: 13px; 
    text-align: center; 
    border: none; 
    cursor: pointer;
    transition: var(--transition);
}

/* Hover Tombol berubah Emas */
.btn-book:hover { 
    transform: translateY(-3px); 
    background: var(--gold);
    color: #0A2540 !important;
    box-shadow: var(--shadow-gold);
}

.full-width { 
    width: 100%; 
    margin-top: 20px; 
}

.mobile-toggle { 
    display: none; 
    color: #fff; 
    font-size: 24px; 
    cursor: pointer; 
}

header.scrolled .mobile-toggle { 
    color: var(--text-main); 
}
/* --- TAMBAHAN UNTUK LOGO & FIX DESKTOP --- */
.brand-logo-container { 
    display: flex; 
    align-items: center; 
    gap: 10px; 
}
.nav-logo-img { 
    width: 45px; 
    height: 45px; 
    border-radius: 8px; 
    object-fit: contain; 
}
.text-blue { color: var(--accent) !important; }
.text-white { color: #ffffff !important; }

/* Sembunyikan elemen mobile agar tidak bocor ke desktop */
.hide-desktop, 
.mobile-menu-header, 
.mobile-extras { 
    display: none !important; 
}

/* --- TAMBAHAN UNTUK BANNER VIDEO --- */
.video-hero {
    position: relative; 
    width: 100%; 
    height: 100vh;
    display: flex; 
    align-items: center; 
    padding: 0 5%;
    overflow: hidden; 
}

.bg-video {
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%;
    object-fit: cover; 
    z-index: -2;
}

.video-overlay {
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%;
    background: linear-gradient(to right, rgba(10,37,64,0.9), rgba(10,37,64,0.6));
    z-index: -1;
}
/* ================= HERO (PARALLAX EFFECT) ================= */
.parallax-hero {
    height: 100vh;
    background-image: linear-gradient(to right, rgba(10,37,64,0.9), rgba(10,37,64,0.6)), url('https://images.unsplash.com/photo-1514362545857-3bc16c4c7d1b?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-attachment: fixed;
    background-position: center; 
    background-size: cover; 
    background-repeat: no-repeat;
    display: flex; 
    align-items: center; 
    padding: 0 5%;
}

.hero-content { 
    max-width: 600px; 
    color: #fff; 
}

.hero-content h1 { 
    font-size: 4rem; 
    font-weight: 800; 
    line-height: 1.1; 
    margin-bottom: 20px; 
}

/* Teks span Hero menggunakan Emas Solid */
.hero-content h1 span { 
    color: var(--gold); 
}

.hero-content p { 
    font-size: 1.1rem; 
    color: #cbd5e1; 
    margin-bottom: 30px; 
}

.hero-btn { 
    padding: 15px 35px; 
    font-size: 15px; 
}

/* ================= BRANDING ================= */
.branding-flex { 
    display: flex; 
    gap: 50px; 
    align-items: center; 
}

.brand-img { 
    flex: 1; 
    position: relative; 
}

.brand-img img { 
    border-radius: 20px; 
    box-shadow: var(--shadow); 
    z-index: 2; 
    position: relative; 
}

.brand-text { 
    flex: 1; 
}

.brand-text h2 { 
    font-size: 2.2rem; 
    color: var(--primary); 
    margin-bottom: 20px; 
    font-weight: 700; 
    transition: color 0.3s; 
}

.brand-text p { 
    color: var(--text-muted); 
    line-height: 1.7; 
    transition: color 0.3s; 
}

.stats { 
    display: flex; 
    gap: 30px; 
    margin-top: 30px; 
}

.stats h3 { 
    color: var(--primary); 
    font-size: 2.5rem; 
    transition: color 0.3s;
}

/* Emas pada angka statistik */
.stats h3 span {
    color: var(--gold);
}

.stats p { 
    color: var(--text-main); 
    font-weight: 600; 
    font-size: 14px;
}

/* ================= PRICING CARDS ================= */
.packages { 
    background-color: var(--surface-color); 
    border-top: 1px solid var(--border); 
    border-bottom: 1px solid var(--border); 
}

#about, #gallery { 
    background-color: var(--bg-color); 
}

.pkg-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    gap: 30px; 
}

.pricing-card {
    background: var(--bg-color); 
    border-radius: 20px; 
    overflow: hidden;
    box-shadow: var(--shadow); 
    transition: var(--transition); 
    position: relative;
    border: 1px solid var(--border);
}

/* Hover Elegan: Border Emas + Glow Emas Tipis */
.pricing-card:hover { 
    transform: translateY(-10px); 
    border-color: var(--gold); 
    box-shadow: var(--shadow-gold);
}

.pricing-card img { 
    width: 100%; 
    height: 200px; 
    object-fit: cover; 
}

/* Gradasi Emas pada Badge */
.pkg-badge { 
    position: absolute; 
    top: 15px; 
    right: 15px; 
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%); 
    color: #0A2540; 
    padding: 5px 15px; 
    border-radius: 20px; 
    font-size: 12px; 
    font-weight: bold; 
    z-index: 10; 
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.pricing-content { 
    padding: 30px; 
}

.pricing-content h3 { 
    font-size: 1.5rem; 
    color: var(--primary); 
    font-weight: 700; 
    transition: color 0.3s;
}

.price { 
    font-size: 1.8rem; 
    font-weight: 800; 
    color: var(--accent); 
    margin: 15px 0; 
}

.price span { 
    font-size: 14px; 
    font-weight: 400; 
    color: var(--text-muted); 
}

.features li { 
    display: flex; 
    align-items: center; 
    gap: 10px; 
    margin-bottom: 12px; 
    font-size: 14.5px; 
    color: var(--text-main); 
    transition: color 0.3s;
}

.features li i { 
    color: #25D366; 
    font-size: 14px; 
}

/* ================= GALERI ================= */
.gallery-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
    gap: 15px; 
}

.gallery-item { 
    position: relative; 
    border-radius: 15px; 
    overflow: hidden; 
    aspect-ratio: 1/1; 
}

.gallery-item img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    transition: transform 0.5s ease; 
}

.gallery-item::after {
    content: '\f16d'; 
    font-family: 'Font Awesome 6 Brands';
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%;
    background: rgba(10, 37, 64, 0.6); 
    display: flex; 
    align-items: center; 
    justify-content: center;
    color: var(--gold); /* Icon IG Emas saat di hover */
    font-size: 2.5rem; 
    opacity: 0; 
    transition: var(--transition);
}

.gallery-item:hover img { 
    transform: scale(1.1); 
}

.gallery-item:hover::after { 
    opacity: 1; 
    cursor: pointer; 
}

/* ================= BLOG ================= */
.blog-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    gap: 30px; 
}

.blog-card { 
    background: var(--bg-color); 
    border-radius: 20px; 
    overflow: hidden; 
    box-shadow: var(--shadow); 
    border: 1px solid var(--border); 
    transition: var(--transition);
}

.blog-card:hover { 
    transform: translateY(-5px); 
    border-color: var(--gold);
    box-shadow: var(--shadow-gold); 
}

.blog-img { 
    height: 200px; 
    overflow: hidden; 
}

.blog-img img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    transition: var(--transition); 
}

.blog-card:hover .blog-img img { 
    transform: scale(1.1); 
}

.blog-content { 
    padding: 25px; 
}

.blog-date { 
    font-size: 12px; 
    color: var(--gold); /* Tanggal Emas */
    font-weight: 600; 
    text-transform: uppercase; 
}

.blog-content h4 { 
    font-size: 1.2rem; 
    color: var(--primary); 
    margin: 10px 0; 
    transition: color 0.3s;
}

.blog-content p { 
    color: var(--text-muted); 
    font-size: 14px; 
}

/* ================= ALUMNI ================= */
#alumni { 
    background-color: var(--bg-color); 
}

.alumni-scroll { 
    display: flex; 
    gap: 20px; 
    overflow-x: auto; 
    padding-bottom: 20px; 
    scrollbar-width: none; 
}

.alumni-scroll::-webkit-scrollbar { 
    display: none; 
}

.alumni-card { 
    min-width: 250px; 
    background: var(--surface-color); 
    border-radius: 20px; 
    padding: 20px; 
    text-align: center;
    border: 1px solid var(--border); 
    box-shadow: var(--shadow); 
    transition: var(--transition);
}

.alumni-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
}

.alumni-card img { 
    width: 100px; 
    height: 100px; 
    border-radius: 50%; 
    object-fit: cover; 
    margin: 0 auto 15px auto; 
    border: 3px solid var(--gold); 
    padding: 3px; /* Jarak antara foto dan garis emas (mirip story IG) */
}

.alumni-card h4 { 
    color: var(--primary); 
    font-weight: 700; 
    transition: color 0.3s; 
}

.alumni-card p { 
    font-size: 13px; 
    color: var(--text-muted); 
    margin-top: 5px; 
}

/* ================= TESTIMONI (PARALLAX + AUTOPLAY SLIDER) ================= */
.parallax-reviews {
    background-image: linear-gradient(rgba(10,37,64,0.95), rgba(10,37,64,0.95)), url('https://images.unsplash.com/photo-1555597673-b21d5c935865?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-attachment: fixed;
    background-position: center; 
    background-size: cover; 
    background-repeat: no-repeat;
    overflow: hidden; 
}

.slider-wrapper { 
    position: relative; 
    width: 100%; 
    padding: 20px 0; 
    overflow: hidden; 
}

.slider-track {
    display: flex; 
    gap: 30px; 
    width: max-content;
    animation: scrollSlide 25s linear infinite;
}

.slider-track:hover { 
    animation-play-state: paused; 
}

.review-slide {
    width: 350px; 
    background: var(--surface-color); 
    border-radius: 15px; 
    padding: 30px;
    border: 1px solid var(--border); 
    position: relative; 
    white-space: normal; 
    transition: background-color 0.3s;
}

.google-icon { 
    position: absolute; 
    top: 20px; 
    right: 20px; 
    font-size: 24px; 
    color: #4285F4; 
}

.stars { 
    color: var(--gold); 
    margin-bottom: 15px; 
}

.review-slide p { 
    color: var(--text-main); 
    font-style: italic; 
    font-size: 14.5px; 
}

.user-info { 
    display: flex; 
    align-items: center; 
    gap: 15px; 
    margin-top: 20px; 
}

.user-info img { 
    width: 40px; 
    height: 40px; 
    border-radius: 50%; 
    object-fit: cover; 
    margin: 0;
}

.user-info h5 { 
    font-weight: 600; 
    color: var(--primary); 
    transition: color 0.3s;
}

.user-info span { 
    font-size: 12px; 
    color: var(--text-muted); 
}

@keyframes scrollSlide {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-350px * 3 - 30px * 3)); }
}

/* ================= PARTNERSHIP ================= */
.partners-wrap { 
    display: flex; 
    flex-wrap: wrap; 
    justify-content: center; 
    gap: 50px; 
    align-items: center; 
    opacity: 0.6; 
    transition: opacity 0.3s; 
}

.partners-wrap:hover { 
    opacity: 1; 
}

.partners-wrap i { 
    font-size: 3.5rem; 
    color: var(--text-muted); 
    transition: var(--transition); 
    cursor: pointer; 
}

.partners-wrap i:hover { 
    color: var(--gold); 
    transform: scale(1.1); 
}

/* ================= FAQ ================= */
.faq-container { 
    max-width: 800px; 
    margin: 0 auto; 
}

.faq-item { 
    margin-bottom: 15px; 
    border: 1px solid var(--border); 
    border-radius: 10px; 
    overflow: hidden; 
}

.faq-question {
    background: var(--surface-color); 
    padding: 20px; 
    width: 100%; 
    text-align: left;
    font-size: 1rem; 
    font-weight: 600; 
    color: var(--primary); 
    border: none; 
    cursor: pointer;
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    transition: background 0.3s, color 0.3s;
}

.faq-question i { 
    color: var(--accent); 
    transition: 0.3s; 
}

.faq-question:hover i {
    color: var(--gold);
}

.faq-question.active i { 
    transform: rotate(180deg); 
}

.faq-answer {
    background: var(--bg-color); 
    padding: 0 20px; 
    max-height: 0; 
    overflow: hidden;
    transition: max-height 0.3s ease-out, background-color 0.3s; 
    color: var(--text-muted); 
    line-height: 1.6;
}

.faq-answer p { 
    padding: 15px 0; 
    margin: 0; 
}

/* ================= FOOTER ================= */
footer { 
    background: #051626; 
    color: white; 
    padding: 70px 5% 30px; 
}

.footer-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
    gap: 40px; 
    margin-bottom: 40px; 
}

.footer-logo { 
    font-size: 24px; 
    font-weight: 800; 
    margin-bottom: 15px; 
}

.footer-logo span { 
    color: var(--gold); 
}

.footer-grid p { 
    color: #94a3b8; 
    font-size: 14.5px; 
    line-height: 1.6; 
    margin-bottom: 20px; 
    max-width: 300px; 
}

.social-icons a { 
    color: white; 
    font-size: 1.2rem; 
    margin-right: 15px; 
    transition: var(--transition); 
    display: inline-block; 
}

.social-icons a:hover { 
    color: var(--gold); 
    transform: translateY(-3px); 
}

.footer-grid h4 { 
    font-size: 1.2rem; 
    margin-bottom: 20px; 
    font-weight: 600; 
    color: #fff; 
}

.footer-links li { 
    margin-bottom: 15px; 
    color: #94a3b8; 
    font-size: 14.5px; 
    display: flex; 
    align-items: center; 
}

.footer-links li a { 
    transition: var(--transition); 
}

.footer-links li a:hover { 
    color: var(--gold); 
    padding-left: 5px; 
}

.footer-links li i { 
    color: var(--gold); 
    margin-right: 10px; 
    font-size: 16px; 
    width: 20px; 
    text-align: center; 
}

.footer-bottom { 
    text-align: center; 
    padding-top: 30px; 
    border-top: 1px solid rgba(255,255,255,0.1); 
    color: #64748b; 
    font-size: 13px; 
}

/* ================= FLOATING BUTTONS ================= */
.floating-action { 
    position: fixed; 
    bottom: 30px; 
    right: 30px; 
    display: flex; 
    flex-direction: column; 
    gap: 15px; 
    z-index: 99; 
}

.float-btn {
    width: 55px; 
    height: 55px; 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center;
    font-size: 24px; 
    box-shadow: 0 5px 15px rgba(0,0,0,0.2); 
    cursor: pointer; 
    transition: 0.3s;
}

.btn-wa { 
    background: #25D366; 
    color: white; 
}

.btn-wa:hover { 
    background: #1ebe57; 
    transform: translateY(-5px); 
    color: white; 
}

.btn-top { 
    background: var(--primary); 
    color: var(--bg-color); 
    opacity: 0; 
    pointer-events: none; 
    transform: translateY(20px); 
}

.btn-top.show { 
    opacity: 1; 
    pointer-events: auto; 
    transform: translateY(0); 
}

.btn-top:hover { 
    background: var(--gold); 
    color: #0A2540; 
}

/* ================= CUSTOM ALERTS & MODALS ================= */
.custom-alert-overlay {
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%;
    background: rgba(0,0,0,0.6); 
    backdrop-filter: blur(5px);
    display: flex; 
    align-items: center; 
    justify-content: center;
    z-index: 9999; 
    opacity: 0; 
    visibility: hidden; 
    transition: 0.3s ease;
}

.custom-alert-overlay.show { 
    opacity: 1; 
    visibility: visible; 
}

.custom-alert-box {
    background: var(--surface-color); 
    padding: 40px; 
    border-radius: 20px;
    text-align: center; 
    max-width: 400px; 
    width: 90%;
    transform: scale(0.7) translateY(30px); 
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 25px 50px rgba(0,0,0,0.3); 
    border: 1px solid var(--border);
}

.custom-alert-overlay.show .custom-alert-box { 
    transform: scale(1) translateY(0); 
}

.lang-btn {
    background: var(--bg-color); 
    color: var(--text-main); 
    border: 1px solid var(--border);
    padding: 15px; 
    border-radius: 10px; 
    cursor: pointer; 
    font-size: 16px; 
    font-weight: 500;
    transition: var(--transition); 
    display: flex; 
    align-items: center; 
    justify-content: center;
}

.lang-btn:hover { 
    background: var(--gold); 
    color: #0A2540; 
    border-color: transparent; 
}

.alert-icon { 
    font-size: 60px; 
    margin-bottom: 20px; 
}

.alert-icon.success { 
    color: #25D366; 
    animation: popIcon 0.5s ease 0.2s backwards; 
}

.alert-icon.info { 
    color: var(--gold); 
    animation: popIcon 0.5s ease 0.2s backwards; 
}

.custom-alert-box h3 { 
    color: var(--primary); 
    font-size: 1.8rem; 
    margin-bottom: 10px; 
    transition: color 0.3s; 
}

.custom-alert-box p { 
    color: var(--text-muted); 
    font-size: 15px; 
    margin-bottom: 25px; 
}

@keyframes popIcon {
    0% { transform: scale(0); opacity: 0; }
    80% { transform: scale(1.2); }
    100% { transform: scale(1); opacity: 1; }
}

/* ================= ANIMASI REVEAL ================= */
.reveal { 
    opacity: 0; 
    transform: translateY(40px); 
    transition: 0.8s ease; 
}

.reveal.active { 
    opacity: 1; 
    transform: translateY(0); 
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
    /* --- PENGATURAN TAMPILAN MOBILE --- */
    .hide-mobile { display: none !important; }
    .hide-desktop { display: flex !important; }

    .mobile-toggle { 
        display: block; 
        margin-left: 15px; /* Jarak dari tombol Book Now */
    }

    /* --- SLIDE MENU DARI KANAN --- */
    .nav-links {
        display: flex; 
        position: fixed; 
        top: 0; 
        right: -100%; /* Sembunyi di luar kanan layar */
        left: auto;
        width: 85%; 
        max-width: 400px; 
        height: 100vh; /* Full Height */
        background: var(--surface-color); 
        flex-direction: column; 
        align-items: flex-start;
        padding: 80px 30px; 
        gap: 25px; 
        box-shadow: -10px 0 30px rgba(0,0,0,0.5);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .nav-links.active { 
        right: 0; /* Menu muncul ke dalam layar */
    }

    .nav-links li {
        width: 100%;
        border-bottom: 1px solid var(--border);
        padding-bottom: 15px;
    }

    .nav-links li a { 
        color: var(--text-main); 
        font-size: 1.2rem;
    }
    
    /* --- ISI MENU MOBILE (X Button & Extras) --- */
    .mobile-menu-header {
        position: absolute; top: 0; left: 0; width: 100%; 
        padding: 20px 30px;
        display: flex; justify-content: space-between; align-items: center;
        border-bottom: 1px solid var(--border); 
        margin-bottom: 20px;
    }
    
    .close-menu { 
        font-size: 1.8rem; cursor: pointer; color: var(--text-main);
    }

    .mobile-extras { display: flex; flex-direction: column; gap: 15px; border: none !important; }
    
    .lang-switch-mobile, .theme-toggle-mobile {
        display: flex; align-items: center; gap: 15px; 
        color: var(--text-main); font-size: 1.1rem; 
        padding: 10px; background: var(--bg-color);
        border-radius: 8px; width: 100%; 
    }

    /* --- SISA PENGATURAN LAMA --- */
    .hero-content h1 { font-size: 2.8rem; }
    .branding-flex { flex-direction: column; }
    header.scrolled { padding: 15px 5%; }
    .parallax-hero, .parallax-reviews { background-attachment: scroll; }
}

/* ================= HERO ABOUT ================= */
.hero-about {
    height: 60vh;
    background-image: linear-gradient(to bottom, rgba(10,37,64,0.9), rgba(10,37,64,0.7)), url('https://images.unsplash.com/photo-1555939594-58d7cb561ad1?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px; 
}

/* ================= STATISTIK SECTION (ABOUT PAGE) ================= */
.stats-section { 
    padding: 60px 5%; 
}

.stats-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); 
    gap: 30px; 
    text-align: center; 
}

.stat-box {
    background: var(--bg-color); 
    padding: 30px; 
    border-radius: 20px;
    border: 1px solid var(--border); 
    box-shadow: var(--shadow); 
    transition: var(--transition);
}

.stat-box:hover { 
    transform: translateY(-5px); 
    border-color: var(--gold); 
    box-shadow: var(--shadow-gold);
}

.stat-icon { 
    font-size: 2.5rem; 
    color: var(--accent); 
    margin-bottom: 15px; 
}

.stat-box:hover .stat-icon {
    color: var(--gold);
}

.stat-box h3, .stat-box span {
    display: inline-block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary); 
    transition: all 0.3s;
}

/* Tanda plus warna emas */
.stat-box span {
    color: var(--gold);
}

.stat-box p { 
    color: var(--text-muted); 
    font-size: 15px; 
    font-weight: 500; 
    margin-top: 5px; 
}

/* ================= TEAM / MENTOR CARDS ================= */
.team-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    gap: 30px; 
}

.team-card {
    background: var(--surface-color); 
    border-radius: 20px; 
    overflow: hidden;
    border: 1px solid var(--border); 
    box-shadow: var(--shadow); 
    transition: var(--transition);
}

.team-card:hover { 
    transform: translateY(-10px); 
    border-color: var(--gold);
    box-shadow: var(--shadow-gold); 
}

.team-img { 
    position: relative; 
    height: 350px; 
    overflow: hidden; 
}

.team-img img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    transition: transform 0.5s ease; 
}

.team-card:hover .team-img img { 
    transform: scale(1.08); 
}

.team-socials {
    position: absolute; 
    bottom: -50px; 
    left: 0; 
    width: 100%;
    background: rgba(10, 37, 64, 0.85); 
    display: flex; 
    justify-content: center; 
    gap: 15px;
    padding: 15px 0; 
    transition: bottom 0.4s ease;
}

.team-card:hover .team-socials { 
    bottom: 0; 
}

.team-socials a { 
    color: #fff; 
    font-size: 20px; 
    transition: color 0.3s; 
}

.team-socials a:hover { 
    color: var(--gold); 
}

.team-info { 
    padding: 30px; 
    text-align: center; 
}

.team-info h4 { 
    font-size: 1.4rem; 
    color: var(--primary); 
    font-weight: 700; 
    margin-bottom: 5px; 
    transition: color 0.3s; 
}

.team-info span { 
    color: var(--gold); 
    font-size: 14px; 
    font-weight: 600; 
    display: block; 
    margin-bottom: 15px; 
}

.team-info p { 
    color: var(--text-muted); 
    font-size: 14px; 
    line-height: 1.6; 
}

/* ================= CORE VALUES ================= */
.values-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
    gap: 30px; 
}

.value-card {
    background: var(--bg-color); 
    padding: 40px 30px; 
    border-radius: 20px;
    text-align: center; 
    border: 1px solid var(--border); 
    transition: var(--transition);
}

.value-card:hover { 
    border-color: var(--gold); 
    transform: translateY(-5px); 
    box-shadow: var(--shadow-gold);
}

.value-card i {
    font-size: 3rem; 
    color: var(--accent); 
    margin-bottom: 20px;
    background: rgba(0, 119, 255, 0.1); 
    width: 80px; 
    height: 80px; 
    line-height: 80px; 
    border-radius: 50%;
    transition: var(--transition);
}

.value-card:hover i {
    color: var(--gold);
    background: rgba(212, 175, 55, 0.1);
}

.value-card h4 { 
    font-size: 1.3rem; 
    color: var(--primary); 
    margin-bottom: 10px; 
    font-weight: 700; 
    transition: color 0.3s; 
}

.value-card p { 
    color: var(--text-muted); 
    font-size: 14.5px; 
    line-height: 1.6; 
}

@media (max-width: 768px) { 
    .hero-about { 
        background-attachment: scroll; 
        height: 50vh; 
    } 
}

/* ================= HERO COURSES ================= */
.hero-courses {
    height: 50vh;
    background-image: linear-gradient(to bottom, rgba(10,37,64,0.9), rgba(10,37,64,0.7)), url('https://images.unsplash.com/photo-1572116469696-31de0f17cc34?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-attachment: fixed; 
    background-position: center; 
    background-size: cover;
    display: flex; 
    align-items: center; 
    justify-content: center; 
    text-align: center; 
    padding-top: 80px; 
}

/* ================= TABS MENU ================= */
.course-detail-section { 
    padding: 80px 5%; 
    background: var(--bg-color); 
}

.tab-container { 
    display: flex; 
    justify-content: center; 
    gap: 15px; 
    margin-bottom: 50px; 
    flex-wrap: wrap; 
}

.tab-btn {
    background: var(--surface-color); 
    color: var(--text-muted); 
    border: 1px solid var(--border);
    padding: 15px 30px; 
    border-radius: 50px; 
    font-size: 16px; 
    font-weight: 600; 
    cursor: pointer;
    transition: var(--transition); 
    box-shadow: var(--shadow); 
    display: flex; 
    align-items: center; 
    gap: 10px;
}

.tab-btn i { 
    font-size: 18px; 
}

.tab-btn:hover { 
    color: var(--gold); 
    border-color: var(--gold); 
}

/* Saat tab aktif warnanya gradasi emas eksklusif */
.tab-btn.active {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
    color: #0A2540; 
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
}

/* ================= TAB CONTENT (COURSE DETAIL) ================= */
.tab-content { 
    display: none; 
    animation: fadeIn 0.5s ease; 
    max-width: 1000px; 
    margin: 0 auto; 
}

.tab-content.active { 
    display: block; 
}

@keyframes fadeIn { 
    from { opacity: 0; transform: translateY(15px); } 
    to { opacity: 1; transform: translateY(0); } 
}

.course-header {
    display: flex; 
    justify-content: space-between; 
    align-items: flex-start;
    background: var(--surface-color); 
    padding: 40px; 
    border-radius: 20px;
    border: 1px solid var(--border); 
    box-shadow: var(--shadow); 
    margin-bottom: 40px; 
    flex-wrap: wrap; 
    gap: 30px;
}

.course-title { 
    font-size: 2.2rem; 
    color: var(--primary); 
    font-weight: 800; 
    margin-bottom: 10px; 
    transition: color 0.3s; 
}

.course-desc { 
    color: var(--text-muted); 
    font-size: 15px; 
    max-width: 500px; 
    line-height: 1.6; 
}

.course-price-box {
    background: var(--bg-color); 
    padding: 25px; 
    border-radius: 15px;
    text-align: center; 
    min-width: 250px; 
    border: 1px solid var(--border);
}

.course-price-box span { 
    font-size: 13px; 
    color: var(--text-muted); 
    text-transform: uppercase; 
    font-weight: 600; 
}

.course-price-box .price { 
    font-size: 2rem; 
    color: var(--gold); /* Harga jadi Emas */
    font-weight: 800; 
    margin: 10px 0 20px; 
}

/* ================= SYLLABUS GRID ================= */
.syllabus-title { 
    font-size: 1.5rem; 
    color: var(--primary); 
    text-align: center; 
    margin-bottom: 30px; 
    transition: color 0.3s; 
}

.syllabus-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
    gap: 25px; 
}

.syllabus-card {
    background: var(--surface-color); 
    border: 1px solid var(--border); 
    border-radius: 15px;
    padding: 30px; 
    box-shadow: var(--shadow); 
    transition: var(--transition); 
    position: relative; 
    overflow: hidden;
}

.syllabus-card:hover { 
    transform: translateY(-5px); 
    border-color: var(--gold); 
    box-shadow: var(--shadow-gold);
}

.week-badge {
    position: absolute; 
    top: 0; 
    left: 0; 
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
    color: #0A2540; 
    padding: 8px 15px; 
    border-bottom-right-radius: 15px; 
    font-size: 12px; 
    font-weight: 700;
}

.syllabus-card h5 { 
    font-size: 1.2rem; 
    color: var(--primary); 
    margin: 25px 0 15px; 
    transition: color 0.3s; 
}

.syllabus-card ul { 
    margin-left: 20px; 
}

.syllabus-card ul li { 
    color: var(--text-muted); 
    font-size: 14px; 
    margin-bottom: 8px; 
    list-style-type: disc; 
}

/* ================= SCHEDULE / NEXT INTAKE ================= */
.schedule-wrap { 
    max-width: 800px; 
    margin: 0 auto; 
    display: flex; 
    flex-direction: column; 
    gap: 15px; 
}

.schedule-row {
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    background: var(--surface-color);
    padding: 20px 30px; 
    border-radius: 15px; 
    border: 1px solid var(--border); 
    box-shadow: var(--shadow); 
    transition: background-color 0.3s;
}

.schedule-row:hover {
    border-color: var(--gold);
}

.sch-date h4 { 
    color: var(--primary); 
    font-size: 1.1rem; 
    margin-bottom: 5px; 
    transition: color 0.3s; 
}

.sch-date span { 
    color: var(--text-muted); 
    font-size: 14px; 
}

.sch-status { 
    padding: 8px 20px; 
    border-radius: 50px; 
    font-size: 13px; 
    font-weight: 600; 
}

.status-full { background: #fee2e2; color: #ef4444; }
.status-avail { background: #fef3c7; color: #d97706; }
.status-open { background: #dcfce7; color: #22c55e; }

@media (max-width: 768px) {
    .course-header { flex-direction: column; align-items: stretch; }
    .course-price-box { width: 100%; }
    .schedule-row { flex-direction: column; gap: 15px; text-align: center; }
}

/* ================= HERO COURSES (FIX OVERLAP NAVBAR) ================= */
.hero-courses {
    min-height: 60vh; /* Diubah agar tidak bertabrakan dengan navbar */
    background-image: linear-gradient(to bottom, rgba(10,37,64,0.9), rgba(10,37,64,0.7)), url('https://images.unsplash.com/photo-1572116469696-31de0f17cc34?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-attachment: fixed; 
    background-position: center; 
    background-size: cover;
    display: flex; 
    align-items: center; 
    justify-content: center; 
    text-align: center; 
    padding-top: 130px; /* Ditambah agar konten turun ke bawah navbar */
    padding-bottom: 50px;
}

@media (max-width: 768px) {
    .hero-courses {
        min-height: 50vh;
        background-attachment: scroll;
        padding-top: 100px;
    }
}

/* ================= TAB CONTENT (COURSE DETAIL) ================= */
.tab-content { 
    display: none; 
    animation: fadeIn 0.5s ease; 
    max-width: 1000px; 
    margin: 0 auto; 
}

.tab-content.active { 
    display: block; 
}

@keyframes fadeIn { 
    from { opacity: 0; transform: translateY(15px); } 
    to { opacity: 1; transform: translateY(0); } 
}

/* ================= GALLERY FILTERS & INFO OVERLAY ================= */
.gallery-controls {
    position: relative; /* Tambahkan ini */
    z-index: 99;        /* Tambahkan ini biar menu dropdown selalu di atas */
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
    background: var(--surface-color);
    padding: 20px;
    border-radius: 20px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.filter-categories {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-btn {
    background: var(--bg-color);
    color: var(--text-muted);
    border: 1px solid var(--border);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
    color: #0A2540;
    border-color: var(--gold);
    box-shadow: 0 4px 10px rgba(212, 175, 55, 0.2);
}

/* Info Bar Kategori & Tahun di Foto */
.gallery-item .item-info {
    position: absolute;
    bottom: -60px; /* Sembunyi ke bawah */
    left: 0;
    width: 100%;
    background: rgba(10, 37, 64, 0.85);
    padding: 15px;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    font-weight: 500;
    transition: bottom 0.4s ease;
    z-index: 2;
    backdrop-filter: blur(5px);
}

.gallery-item .info-cat i {
    color: var(--gold);
    margin-right: 5px;
}

.gallery-item .info-year {
    background: rgba(255, 255, 255, 0.1);
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: 700;
}

.gallery-item:hover .item-info {
    bottom: 0; /* Muncul saat dihover */
}

/* Class untuk hide saat di-filter */
.gallery-filter-item.hide {
    display: none;
}

@media (max-width: 768px) {
    .gallery-controls {
        flex-direction: column;
        align-items: stretch;
    }
    .filter-categories {
        overflow-x: auto;
        padding-bottom: 10px;
        flex-wrap: nowrap;
        scrollbar-width: none; /* Firefox */
    }
    .filter-categories::-webkit-scrollbar {
        display: none; /* Chrome/Safari */
    }
    .filter-btn {
        white-space: nowrap;
    }
}

/* ================= CUSTOM SELECT DROPDOWN ================= */
.custom-select-wrapper {
    position: relative;
    user-select: none;
    width: 160px;
    font-size: 14px;
    font-weight: 500;
}

.custom-select-trigger {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background: var(--bg-color);
    color: var(--text-main);
    border: 1px solid var(--border);
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
}

.custom-select-trigger:hover {
    border-color: var(--gold);
}

.custom-select-trigger i {
    font-size: 12px;
    color: var(--text-muted);
    transition: transform 0.3s ease;
}

/* Memutar icon panah saat dropdown terbuka */
.custom-select-wrapper.open .custom-select-trigger i {
    transform: rotate(180deg);
}
.custom-select-wrapper.open .custom-select-trigger {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

/* Box daftar pilihan */
.custom-options {
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    background: var(--surface-color);
    border: 1px solid var(--border);
    border-radius: 15px;
    box-shadow: var(--shadow-hover);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 99999999;
    overflow: hidden;
}

.custom-select-wrapper.open .custom-options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.custom-option {
    display: block;
    padding: 12px 20px;
    color: var(--text-muted);
    cursor: pointer;
    transition: background-color 0.2s, color 0.2s;
}

.custom-option:hover {
    background: var(--bg-color);
    color: var(--primary);
}

/* Highlight warna emas untuk opsi yang sedang dipilih */
.custom-option.selected {
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold);
    font-weight: 600;
}

/* ================= BLOG LAYOUT & SIDEBAR ================= */
.blog-main-section {
    padding: 80px 5%;
    background: var(--bg-color);
    min-height: 80vh;
}

.blog-layout-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

.blog-posts-area {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

/* Penyesuaian Blog Card khusus halaman Blog (Biar mengisi grid dengan rapi) */
.blog-posts-area .blog-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-posts-area .blog-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-posts-area .blog-content p {
    flex-grow: 1;
    margin-bottom: 20px;
}

/* Badge Kategori di atas Gambar Blog */
.blog-img {
    position: relative;
}

.blog-cat-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--gold); /* Diubah jadi warna emas agar kontras di dark/light mode */
    color: #0A2540;          /* Teks gelap agar jelas dibaca */
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.blog-meta i {
    color: var(--gold);
    margin-right: 4px;
}

.read-more-btn {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.read-more-btn:hover {
    color: var(--gold);
    gap: 12px;
}

/* ================= SIDEBAR STYLING ================= */
.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: var(--surface-color);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 25px;
    box-shadow: var(--shadow);
}

.sidebar-widget h4 {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 20px;
    font-weight: 700;
    position: relative;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border);
}

/* Search Box Widget */
.sidebar-search-box {
    position: relative;
    display: flex;
    align-items: center;
}
.sidebar-search-box input.form-control {
    width: 100%;
    padding: 12px 50px 12px 15px; /* Padding kanan diperbesar supaya teks tidak tertutup tombol search */
    border-radius: 10px;
    border: 1px solid var(--border);
    background: var(--bg-color);
    color: var(--text-main);
}
.sidebar-search-box input {
    padding-right: 45px;
    border-radius: 10px;
}

.sidebar-search-box button {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--accent);
    color: #fff;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.sidebar-search-box button:hover {
    background: var(--gold);
    color: #0A2540;
}

/* Categories List Widget */
.sidebar-categories {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sidebar-categories li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 14px;
    transition: var(--transition);
    padding: 5px 0;
}

.sidebar-categories li a span:last-child {
    background: var(--bg-color);
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 12px;
    color: var(--text-main);
    border: 1px solid var(--border);
}

.sidebar-categories li a:hover {
    color: var(--gold);
    padding-left: 5px;
}

/* Tags Widget */
.sidebar-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.sidebar-tags a {
    background: var(--bg-color);
    color: var(--text-muted);
    border: 1px solid var(--border);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    transition: var(--transition);
}

.sidebar-tags a:hover {
    background: var(--gold);
    color: #0A2540;
    border-color: var(--gold);
}

/* Responsive breakpoint untuk Mobile */
@media (max-width: 992px) {
    .blog-layout-container {
        grid-template-columns: 1fr;
    }
    .blog-sidebar {
        position: static;
    }
}

/* ================= SINGLE BLOG DETAIL STYLING ================= */

/* Reading Progress Bar di Atas Layar */
.reading-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: var(--gold);
    width: 0%;
    z-index: 9999;
    transition: width 0.1s ease;
}

/* Meta Data di dalam Hero Header */
.article-meta-hero {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
    font-size: 14px;
    color: #cbd5e1;
}

.article-meta-hero .meta-dot {
    color: var(--gold);
    font-size: 10px;
}

/* Artikel Konten (Tipografi) */
.article-content {
    color: var(--text-main);
    line-height: 1.8;
    font-size: 1.05rem;
}

.article-content h2 {
    font-size: 1.8rem;
    color: var(--primary);
    margin: 40px 0 15px;
}

.article-content p {
    margin-bottom: 20px;
}

.article-content ul {
    margin-bottom: 25px;
    padding-left: 20px;
}

.article-content li {
    margin-bottom: 10px;
    list-style-type: disc;
}

/* Blockquote Ala Majalah */
.article-content blockquote {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--primary);
    border-left: 5px solid var(--gold);
    padding: 20px 20px 20px 30px;
    margin: 35px 0;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 0 10px 10px 0;
}

.article-inner-img {
    width: 100%;
    border-radius: 15px;
    margin: 30px 0 10px;
    box-shadow: var(--shadow);
}

.img-caption {
    display: block;
    text-align: center;
    font-size: 13px;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 30px;
}

/* Author Box & Tags Area */
.article-tags-share {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding: 30px 0;
    margin-top: 40px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.article-tags span, .article-share span {
    font-weight: 700;
    color: var(--primary);
    margin-right: 10px;
}

.article-tags a {
    background: var(--bg-color);
    padding: 5px 12px;
    border: 1px solid var(--border);
    border-radius: 20px;
    font-size: 13px;
    margin-right: 5px;
    color: var(--text-muted);
    transition: var(--transition);
}

.article-tags a:hover {
    background: var(--gold);
    color: #0A2540;
    border-color: var(--gold);
}

.article-share .share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    color: white;
    margin-right: 8px;
    transition: var(--transition);
}
/* ================= TOMBOL NATIVE SHARE ================= */
.share-btn.native-share {
    background: var(--accent);
    color: #ffffff;
    border: none;
    cursor: pointer;
    font-size: 15px;
    outline: none;
}

.share-btn.native-share:hover {
    background: var(--gold);
    color: #0A2540;
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}


.author-box {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 40px 0;
}

.author-box img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--gold);
}

.author-info h4 {
    color: var(--primary);
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.author-info p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
}

/* Sidebar Recent Posts List */
.recent-post-item {
    display: flex;
    gap: 15px;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}
.recent-post-item:last-child { border-bottom: none; padding-bottom: 0; }
.recent-post-item:hover h5 { color: var(--gold); }
.recent-post-item img {
    width: 70px;
    height: 70px;
    border-radius: 10px;
    object-fit: cover;
}
.recent-post-item h5 {
    color: var(--primary);
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 5px;
    transition: color 0.3s;
}
.recent-post-item span {
    font-size: 12px;
    color: var(--text-muted);
}

/* ================= FIX FOTO AUTHOR GEPENG ================= */
.author-box img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--gold);
    flex-shrink: 0; /* Tambahkan ini agar foto mengunci ukurannya dan tetap bulat sempurna */
}



/* ================= CONTACT PAGE STYLING ================= */
.contact-section {
    padding: 80px 5%;
    background: var(--bg-color);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
}

/* Info Cards (Kolom Kiri) */
.info-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.info-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--surface-color);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.info-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow);
    transform: translateX(5px);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 20px;
    flex-shrink: 0;
}

.info-card h4 {
    color: var(--primary);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.info-card p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.5;
}

/* Google Maps */
.map-container {
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

/* Form Area (Kolom Kanan) */
.contact-form-box {
    background: var(--surface-color);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-hover);
}

.contact-form-box .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.contact-form-box label {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
}

.contact-form-box .form-control {
    width: 100%;
    padding: 15px 20px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: var(--bg-color);
    color: var(--text-main);
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    transition: var(--transition);
}

.contact-form-box .form-control:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.15);
}

/* Responsive */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .contact-form-box {
        padding: 30px;
    }
}