/* =========================================
   1. VARIABLES & LUXURY THEME CONFIG
   ========================================= */
:root {
    /* Colors */
    --bg-deep: #050505;
    --bg-surface: #0a0a0a;
    --bg-card: rgba(22, 22, 22, 0.6); 
    
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    
    /* Ultimate Gold Palette */
    --gold-gradient: linear-gradient(135deg, #bf953f 0%, #fcf6ba 25%, #b38728 50%, #fbf5b7 75%, #aa771c 100%);
    --gold-solid: #d4af37;
    --gold-glow: rgba(212, 175, 55, 0.15);
    --gold-dark: #aa771c;
    
    /* Layout */
    --container-width: 1200px;
    --gutter: 24px;
    
    /* Fonts */
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Inter', sans-serif;
}

/* =========================================
   2. GLOBAL RESET & BASE STYLES
   ========================================= */
* { margin: 0; padding: 0; box-sizing: border-box; scroll-behavior: smooth; }

body {
    background-color: var(--bg-deep);
    color: var(--text-primary);
    font-family: var(--font-sans);
    overflow-x: hidden;
    line-height: 1.6;
    /* Texture Noise Premium */
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.03'/%3E%3C/svg%3E");
}

h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 700; letter-spacing: -0.5px; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* Typography Utilities */
.text-gold { 
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.3));
}

.section-title { text-align: center; margin-bottom: 60px; position: relative; z-index: 2; }
.divider-gold { width: 100px; height: 3px; background: var(--gold-gradient); margin: 25px auto; box-shadow: 0 0 15px var(--gold-solid); }

.tag-gold { 
    display: inline-block; font-size: 0.7rem; font-weight: 700; letter-spacing: 2px; 
    color: var(--gold-solid); border: 1px solid rgba(212, 175, 55, 0.5); 
    padding: 8px 20px; margin-bottom: 20px; text-transform: uppercase; 
    background: rgba(212, 175, 55, 0.05); border-radius: 50px;
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding-left: var(--gutter);
    padding-right: var(--gutter);
    position: relative;
    z-index: 2;
}

/* =========================================
   3. BUTTONS
   ========================================= */
.btn {
    padding: 14px 35px; font-weight: 600; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px;
    border-radius: 4px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; transition: 0.3s; text-decoration: none; position: relative; overflow: hidden;
}
.btn-gold { background: var(--gold-gradient); color: #000; border: none; z-index: 1; }
.btn-gold::before {
    content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6), transparent);
    transition: 0.5s; z-index: -1; animation: shimmer 4s infinite;
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4); }

.btn-transparent { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.2); color: #fff; margin-left: 15px; backdrop-filter: blur(5px); }
.btn-transparent:hover { border-color: var(--gold-solid); background: rgba(212,175,55,0.1); }

.btn-outline-gold { border: 1px solid var(--gold-solid); color: var(--gold-solid); width: 100%; margin-top: 20px; }
.btn-outline-gold:hover { background: var(--gold-solid); color: #000; box-shadow: 0 0 20px rgba(212,175,55,0.3); }

.btn-block { width: 100%; display: flex; }

/* =========================================
   4. NAVBAR
   ========================================= */
#navbar {
    position: fixed; top: 0; width: 100%; height: 90px; z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
#navbar.scrolled {
    background: rgba(5, 5, 5, 0.7);
    backdrop-filter: blur(20px);
    height: 70px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
#navbar.scrolled .main-logo {
    height: 55px;
}
.nav-container { display: flex; justify-content: space-between; align-items: center; height: 100%; }
.main-logo { 
    height: 70px; /* Diperbesar dari 45px */
    width: auto; 
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1); 
    filter: drop-shadow(0 0 5px rgba(255,255,255,0.2)); 
    display: block;
}

.nav-links { display: flex; gap: 30px; }
.nav-links a {
    color: var(--text-secondary); text-transform: uppercase; font-size: 0.8rem; letter-spacing: 1.5px; font-weight: 500; position: relative; transition: 0.3s;
}
.nav-links a::after {
    content: ''; position: absolute; width: 0; height: 1px; bottom: -5px; left: 0; background: var(--gold-solid); transition: 0.3s; box-shadow: 0 0 10px var(--gold-solid);
}
.nav-links a:hover { color: var(--text-primary); }
.nav-links a:hover::after { width: 100%; }
.mobile-menu-toggle { display: none; font-size: 1.5rem; color: var(--gold-solid); cursor: pointer; }

/* =========================================
   5. HERO SECTION
   ========================================= */
.hero-section { height: 100vh; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.video-container { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: -1; }
.video-bg { width: 100%; height: 100%; object-fit: cover; filter: contrast(1.1) brightness(0.6); }
.overlay-dark { 
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; 
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.8) 60%, #050505 100%);
    z-index: 1; 
}
.hero-content { position: relative; z-index: 2; text-align: center; padding-top: 60px; max-width: 900px; }
.eyebrow { color: var(--gold-solid); letter-spacing: 4px; font-size: 0.9rem; margin-bottom: 20px; display: block; text-transform: uppercase; font-weight: 600; text-shadow: 0 2px 10px rgba(0,0,0,0.8); }
.hero-content h1 { font-size: 3.8rem; margin-bottom: 25px; line-height: 1.1; text-shadow: 0 10px 30px rgba(0,0,0,0.8); }
.hero-content p { font-size: 1.25rem; color: #e0e0e0; max-width: 700px; margin: 0 auto 40px; font-weight: 300; }

/* =========================================
   6. TICKER & PARTNER MARQUEE
   ========================================= */
.ticker-wrapper { display: flex; background: #000; border-bottom: 1px solid rgba(255,255,255,0.1); height: 50px; overflow: hidden; position: relative; z-index: 5; }
.ticker-label { 
    background: var(--gold-gradient); color: #000; font-weight: 800; padding: 0 30px; 
    display: flex; align-items: center; font-size: 0.8rem; z-index: 10; box-shadow: 10px 0 30px rgba(0,0,0,1); white-space: nowrap;
}
.ticker-container { display: flex; align-items: center; white-space: nowrap; animation: ticker-scroll 100s linear infinite; }
.ticker-item { padding: 0 50px; font-family: monospace; font-size: 1rem; color: #fff; border-right: 1px solid rgba(255,255,255,0.1); }
.ticker-positive { color: #00ff88; text-shadow: 0 0 10px rgba(0, 255, 136, 0.4); } 
.ticker-negative { color: #ff4d4d; text-shadow: 0 0 10px rgba(255, 77, 77, 0.4); }

.partner-section { padding: 90px 0; background: var(--bg-deep); overflow: hidden; position: relative; }
.marquee-wrapper { width: 100%; overflow: hidden; white-space: nowrap; mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent); -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent); }
.marquee-content { display: inline-block; animation: marquee 50s linear infinite; }
.partner-logo { height: 45px; margin: 0 60px; filter: grayscale(100%) opacity(0.4); transition: 0.4s; }
.partner-logo:hover { filter: grayscale(0%) opacity(1) drop-shadow(0 0 10px rgba(255,255,255,0.3)); transform: scale(1.15); }

/* =========================================
   7. TRABAR (AFFILIATE) LINKS SECTION
   ========================================= */
.trabar-section { padding: 80px 0; background: var(--bg-deep); position: relative; }

.trabar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.trabar-card {
    display: flex; align-items: center;
    background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px; /* Pill Shape */
    padding: 15px 30px;
    text-decoration: none; transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative; overflow: hidden;
}

.trabar-card:hover {
    transform: translateY(-5px); border-color: var(--gold-solid);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.15);
    background: linear-gradient(145deg, #222, #111);
}

.trabar-logo-wrapper {
    width: 50px; height: 50px; background: #000; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin-right: 20px; border: 1px solid rgba(255, 255, 255, 0.1); flex-shrink: 0;
}
.trabar-icon { width: 30px; height: 30px; object-fit: contain; }

.trabar-content { flex-grow: 1; }
.trabar-content h4 { font-family: var(--font-sans); font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 2px; }
.trabar-content p { font-size: 0.8rem; color: #888; text-transform: uppercase; letter-spacing: 1px; margin: 0; }
.trabar-card:hover h4 { color: var(--gold-solid); }

.trabar-action {
    color: var(--gold-solid); font-size: 1.2rem; opacity: 0; transform: translateX(-10px); transition: all 0.3s ease;
}
.trabar-card:hover .trabar-action { opacity: 1; transform: translateX(0); }

/* =========================================
   8. VIDEO SHOWCASE
   ========================================= */
.video-showcase-section { padding: 80px 0; background: var(--bg-surface); }
.video-embed-container {
    position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; border-radius: 10px; background: #000;
}
.video-embed-container iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; }
.video-frame-wrapper { overflow: hidden; background: #000; border-radius: 10px; border: 1px solid rgba(255,255,255,0.1); }

/* =========================================
   9. GALLERY SECTION
   ========================================= */
.gallery-section { padding: 100px 0; background: var(--bg-surface); }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 280px);
    gap: 20px; margin-top: 50px;
}

.gallery-item { position: relative; border-radius: 12px; overflow: hidden; cursor: pointer; border: 1px solid rgba(255,255,255,0.08); }
.item-large { grid-column: span 2; grid-row: span 2; }
.item-wide { grid-column: span 2; }

.gallery-item img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: grayscale(20%) contrast(1.1);
}
.gallery-item:hover img { transform: scale(1.1); filter: grayscale(0%) contrast(1); }
.gallery-item:hover { border-color: var(--gold-solid); box-shadow: 0 10px 40px rgba(0,0,0,0.5); z-index: 2; }

.gallery-overlay {
    position: absolute; bottom: 0; left: 0; width: 100%; padding: 25px;
    background: linear-gradient(to top, rgba(0,0,0,0.95), transparent);
    transform: translateY(100%); transition: transform 0.4s ease;
}
.gallery-item:hover .gallery-overlay { transform: translateY(0); }
.gallery-overlay h4 { color: var(--gold-solid); font-size: 1.2rem; margin: 0; text-shadow: 0 2px 10px rgba(0,0,0,0.8); }

/* =========================================
   10. SATISFACTION CHART
   ========================================= */
.satisfaction-section {
    padding: 100px 0; background: linear-gradient(to right, #050505, #0f0f0f);
    border-top: 1px solid rgba(255,255,255,0.05); position: relative; overflow: hidden;
}
.chart-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

.chart-text h2 { font-size: 3rem; margin-bottom: 20px; line-height: 1.2; }
.chart-text p { color: #a0a0a0; margin-bottom: 40px; font-size: 1.1rem; }

.stat-highlight { display: flex; gap: 50px; margin-bottom: 40px; padding-bottom: 30px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.stat-box h3 { font-size: 2.5rem; color: var(--text-primary); margin-bottom: 5px; font-family: var(--font-sans); }
.stat-box span { font-size: 0.9rem; color: #888; text-transform: uppercase; letter-spacing: 1px; }
.person-count { font-size: 1.1rem; color: #888; font-weight: 600; margin-top: -5px; margin-bottom: 10px; }
.stars i { color: var(--gold-solid); margin-right: 2px; }

.chart-visual { display: flex; flex-direction: column; align-items: center; position: relative; }
.pie-chart {
    width: 320px; height: 320px; border-radius: 50%; position: relative;
    background: conic-gradient(#222 0% 100%);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 30px; box-shadow: 0 0 50px rgba(0,0,0,0.5); transition: box-shadow 0.5s ease;
}
.pie-chart.animated { box-shadow: 0 0 60px rgba(212, 175, 55, 0.15); animation: pulseGlow 3s infinite alternate; }
.pie-chart::before {
    content: ''; position: absolute; width: 240px; height: 240px;
    background: #0a0a0a; border-radius: 50%; box-shadow: inset 0 0 20px rgba(0,0,0,0.8);
}
.chart-center { position: relative; z-index: 2; text-align: center; display: flex; flex-direction: column; justify-content: center; }
.chart-center strong { font-size: 3.5rem; font-weight: 800; color: var(--gold-solid); line-height: 1; text-shadow: 0 0 20px rgba(212, 175, 55, 0.3); font-family: var(--font-sans); }
.chart-center span { font-size: 0.9rem; color: #666; text-transform: uppercase; letter-spacing: 2px; margin-top: 5px; }

.chart-legend { display: flex; gap: 20px; flex-wrap: wrap; justify-content: center; }
.legend-item { display: flex; align-items: center; gap: 8px; color: #ccc; font-size: 0.9rem; }
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot.gold { background: var(--gold-solid); box-shadow: 0 0 10px var(--gold-solid); }
.dot.silver { background: #cdcdcd; }
.dot.grey { background: #444; }

/* =========================================
   11. E-BOOK SECTION
   ========================================= */
.ebook-section { padding: 120px 0; background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-surface) 100%); position: relative; }
.ebook-layout { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: center; }
.ebook-image-wrapper { position: relative; perspective: 1000px; }
.ebook-cover { 
    width: 100%; max-width: 400px; border-radius: 12px; 
    box-shadow: -20px 20px 60px rgba(0,0,0,0.7); display: block; margin: 0 auto; 
    border: 1px solid rgba(255,255,255,0.1); animation: float 6s ease-in-out infinite; 
}

.price-container { margin: 25px 0; }
.old-price { display: block; font-size: 1.1rem; color: #666; text-decoration: line-through; margin-bottom: 5px; }
.price-tag.highlight-gold {
    font-size: 3.5rem; font-weight: 800; line-height: 1;
    background: var(--gold-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.3));
}

.curriculum-wrapper { display: flex; flex-wrap: wrap; gap: 40px; margin-top: 20px; }
.curriculum-column { flex: 1; min-width: 250px; list-style: none; }
.curriculum-column li { display: flex; align-items: flex-start; margin-bottom: 12px; color: #ccc; font-size: 0.95rem; line-height: 1.5; }
.curriculum-column i { color: var(--gold-solid); min-width: 22px; margin-top: 3px; margin-right: 10px; }
.ebook-details .btn { width: 100%; margin-top: 30px; padding: 16px 0; font-size: 1.1rem; }

/* =========================================
   12. MENTORING & PRICING
   ========================================= */
.mentoring-section { padding: 120px 0; background: var(--bg-surface); position: relative; }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 40px; position: relative; z-index: 2; }

.price-card {
    background: var(--bg-card); border: 1px solid rgba(255,255,255,0.08); 
    border-radius: 16px; padding: 40px; position: relative; min-height: 100%;
    transition: transform 0.1s ease, box-shadow 0.3s ease;
    transform-style: preserve-3d; backdrop-filter: blur(10px);
    display: flex; flex-direction: column;
}
.price-card:hover { border-color: rgba(255,255,255,0.2); box-shadow: 0 20px 50px rgba(0,0,0,0.5); }

.popular-card {
    background: linear-gradient(145deg, rgba(30,30,30,0.9), rgba(10,10,10,0.9));
    border: 1px solid var(--gold-dark); box-shadow: 0 0 50px rgba(212, 175, 55, 0.08);
}
.popular-tag {
    position: absolute; top: 0; left: 50%; transform: translate(-50%, -50%);
    background: var(--gold-gradient); color: #000; padding: 6px 25px;
    font-weight: 800; font-size: 0.75rem; border-radius: 30px; letter-spacing: 1px;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
}
.card-price { font-size: 2.8rem; font-weight: 700; margin: 25px 0; color: #fff; text-shadow: 0 0 20px rgba(255,255,255,0.1); }
.card-price .currency { font-size: 1.2rem; color: #666; margin-right: 5px; }

.card-features { flex-grow: 1; }
.card-features li { margin-bottom: 15px; color: #cfcfcf; display: flex; align-items: flex-start; gap: 12px; font-size: 0.95rem; }
.card-features .separator { 
    color: var(--gold-solid); font-weight: 700; margin-top: 25px; margin-bottom: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 5px; display: block; letter-spacing: 1px; font-size: 0.8rem; text-transform: uppercase;
}
.final-exam { margin-top: 20px !important; padding-top: 15px; border-top: 1px dashed rgba(255,255,255,0.1); color: var(--gold-solid) !important; font-weight: 700; letter-spacing: 1px; }

/* Mini Services */
.mini-services-wrapper { 
    margin-top: 80px; 
    border-top: 1px solid rgba(255,255,255,0.05); 
    padding-top: 60px; 
}

.mini-services-wrapper h3 {
    margin-bottom: 40px; /* Tambah jarak ke kartu di bawahnya */
    font-size: 2rem;
    color: #fff;
    text-align: center; /* Opsional: Biar rapi di tengah */
}

.mini-services-grid { 
    display: flex; 
    flex-direction: column; /* Susun ke bawah */
    gap: 30px; 
    max-width: 900px; /* Batasi lebar biar tidak terlalu panjang */
    margin: 0 auto;
}

.mini-card { 
    /* Style dasar mirip .price-card */
    background: var(--bg-card); 
    border: 1px solid rgba(255,255,255,0.08); 
    border-radius: 16px; 
    padding: 30px 40px; 
    
    /* Layout Horizontal */
    display: flex; 
    align-items: center; 
    justify-content: space-between;
    gap: 30px; 
    
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

/* Hover Effect: Glow Gold Tipis */
.mini-card:hover { 
    border-color: var(--gold-solid); 
    box-shadow: 0 10px 40px rgba(0,0,0,0.5); 
    transform: translateY(-3px);
}

/* Icon di Kiri */
.mini-icon { 
    font-size: 1.8rem; 
    color: var(--gold-solid); 
    width: 70px; 
    height: 70px; 
    background: radial-gradient(circle, rgba(212,175,55,0.15) 0%, transparent 70%);
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    border: 1px solid rgba(212,175,55,0.2);
    flex-shrink: 0; /* Agar icon tidak gepeng */
}

/* Konten Teks di Tengah */
.mini-content {
    flex-grow: 1; /* Mengisi ruang kosong di tengah */
}

.mini-content h4 {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 5px;
    font-family: var(--font-serif);
}

.mini-content p {
    color: #a0a0a0;
    font-size: 0.95rem;
    margin: 0;
}

.mini-price {
    display: block;
    margin-top: 15px; /* Jarak dari deskripsi */
    font-size: 2rem; /* Besar, mirip kelas mentoring */
    font-weight: 700;
    color: #fff; /* Putih bersih */
    font-family: var(--font-sans);
    line-height: 1;
}

/* Supaya tulisan 'IDR' kecil di atas (Superscript) */
.mini-price small {
    font-size: 0.9rem;
    color: #666;
    vertical-align: top;
    margin-right: 5px;
    font-weight: 400;
}

/* Tulisan '/ 1 Jam' */
.mini-price .duration {
    font-size: 0.9rem;
    color: #888;
    font-weight: 400;
    vertical-align: bottom;
    margin-left: 5px;
}

/* Tombol di Kanan */
.mini-card .btn-text {
    background: rgba(255,255,255,0.05);
    padding: 12px 25px;
    border-radius: 8px;
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap; /* Teks tombol tidak turun baris */
    transition: 0.3s;
    border: 1px solid rgba(255,255,255,0.1);
}

.mini-card:hover .btn-text { 
    background: var(--gold-gradient); 
    color: #000;
    border-color: transparent;
    transform: none; /* Reset transform lama */
}

/* =========================================
   13. TESTIMONIALS
   ========================================= */
.testimonials-section { padding: 120px 0; background: var(--bg-deep); position: relative; }
.testimonial-slider { position: relative; max-width: 800px; margin: 50px auto 0; text-align: center; }

.testimonial-slide { 
    display: none; animation: fadeIn 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
    background: rgba(255,255,255,0.03); padding: 40px; border-radius: 20px; border: 1px solid rgba(255,255,255,0.05);
}
.testimonial-slide.active { display: block; }

.quote-icon { font-size: 2.5rem; color: var(--gold-solid); margin-bottom: 25px; opacity: 0.8; }
blockquote { font-size: 1.5rem; font-family: var(--font-serif); font-style: italic; color: #eee; margin-bottom: 30px; line-height: 1.5; text-shadow: 0 2px 10px rgba(0,0,0,0.5); }
.user-info h4 { color: var(--gold-solid); margin-bottom: 5px; font-size: 1.1rem; }
.user-info .role { font-size: 0.8rem; color: #888; text-transform: uppercase; letter-spacing: 2px; }

.slider-btn { 
    position: absolute; top: 50%; transform: translateY(-50%); 
    background: rgba(0,0,0,0.5); border: 1px solid rgba(255,255,255,0.2); 
    color: #fff; width: 50px; height: 50px; border-radius: 50%; 
    cursor: pointer; transition: 0.3s; display: flex; align-items: center; justify-content: center;
}
.slider-btn:hover { border-color: var(--gold-solid); color: var(--gold-solid); background: rgba(0,0,0,0.8); }
.prev-btn { left: -80px; }
.next-btn { right: -80px; }

/* =========================================
   14. PAYMENT & FOOTER
   ========================================= */
.payment-section { padding: 100px 0; background: #080808; position: relative; }
.payment-box { 
    max-width: 600px; margin: 0 auto; background: #121212; padding: 50px; 
    border: 1px solid var(--gold-dark); border-radius: 16px; text-align: center;
    position: relative; overflow: hidden;
}
.payment-box::before {
    content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(212,175,55,0.05) 0%, transparent 60%); pointer-events: none;
}
.bank-details { 
    background: #000; padding: 20px; margin: 25px 0; border: 1px dashed rgba(255,255,255,0.2); 
    font-family: monospace; font-size: 1.2rem; display: flex; flex-direction: column; gap: 8px; color: #fff;
}
.account-number { color: var(--gold-solid); font-size: 1.6rem; letter-spacing: 3px; font-weight: 700; }

footer { background: #020202; padding: 80px 0 40px; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 60px; margin-bottom: 60px; }
.footer-nav h4, .footer-social h4 { color: #fff; margin-bottom: 25px; text-transform: uppercase; font-size: 0.85rem; letter-spacing: 1px; }
.footer-nav a { color: #888; transition: 0.3s; display: inline-block; }
.footer-nav a:hover { color: var(--gold-solid); transform: translateX(5px); }

.footer-social { display: flex; flex-direction: column; align-items: flex-start; }
.social-links { display: flex; flex-direction: row; gap: 15px; margin-top: 15px; flex-wrap: wrap; }
.social-links a { 
    width: 45px; height: 45px; background: rgba(255,255,255,0.05); 
    display: inline-flex; align-items: center; justify-content: center; 
    border-radius: 50%; color: #fff; border: 1px solid rgba(255,255,255,0.1); 
    transition: 0.3s; text-decoration: none; 
}
.social-links a:hover {
    background: var(--gold-solid); color: #000;
    transform: translateY(-5px); box-shadow: 0 0 15px var(--gold-glow);
}
.copyright { border-top: 1px solid rgba(255,255,255,0.05); padding-top: 30px; color: #444; font-size: 0.8rem; text-align: center; }

.confirm-text {
    margin-top: 20px;
    color: #a0a0a0;
    font-size: 1rem;
}

.wa-link {
    color: var(--gold-solid);
    font-weight: 700;
    text-decoration: none;
    margin-left: 5px;
    transition: all 0.3s ease;
    border-bottom: 1px dashed transparent;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.wa-link:hover {
    color: #fff; /* Berubah putih saat hover */
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    border-bottom: 1px dashed #fff;
    transform: translateY(-2px);
}

.wa-link i {
    font-size: 1.1rem; /* Ukuran icon WA */
}

/* =========================================
   15. ANIMATIONS
   ========================================= */
@keyframes ticker-scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-100%); } }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes shimmer { 0% { left: -100%; } 20% { left: 100%; } 100% { left: 100%; } }
@keyframes float { 0% { transform: translateY(0px); } 50% { transform: translateY(-15px); } 100% { transform: translateY(0px); } }
@keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulseGlow { 0% { transform: scale(1); } 100% { transform: scale(1.02); } }
@keyframes starPulse { from { opacity: 0.8; transform: scale(1); } to { opacity: 1; transform: scale(1.1); } }

/* =========================================
   16. RESPONSIVE / MEDIA QUERIES (FIXED FOR MOBILE)
   ========================================= */

/* Tablet & Laptop Kecil */
@media (max-width: 1024px) {
    .hero-content h1 { font-size: 3rem; }
    .ebook-layout { grid-template-columns: 1fr; text-align: center; gap: 40px; }
    .ebook-cover { margin-bottom: 40px; }
    .chart-layout { grid-template-columns: 1fr; gap: 50px; text-align: center; }
    .stat-highlight { justify-content: center; }
}

/* Mobile Devices (HP) - FIXED & REVISED */
@media (max-width: 768px) {
    
    /* Global Spacing Fix */
    .hero-section, .partner-section, .gallery-section, 
    .ebook-section, .mentoring-section, .testimonials-section, 
    .payment-section, .satisfaction-section, .trabar-section, .video-showcase-section {
        padding: 50px 0;
    }

    .container { padding-left: 20px; padding-right: 20px; width: 100%; }

    /* Navbar & Hero */
    .nav-links, .nav-cta { display: none; }
    .mobile-menu-toggle { display: block; font-size: 1.8rem; }
    .nav-container { padding: 0 20px; }
    .main-logo {
        height: 50px; 
    }
    .nav-container { padding: 0 15px; }
    
    .hero-content { padding-top: 90px; }
    .hero-content h1 { font-size: 2.2rem; line-height: 1.2; margin-bottom: 20px; }
    .hero-content p { font-size: 1rem; margin-bottom: 30px; }
    .cta-group { display: flex; flex-direction: column; gap: 15px; }
    .cta-group .btn { width: 100%; margin: 0; }

    /* Trabar Links (Vertical Stack) */
    .trabar-grid { grid-template-columns: 1fr; gap: 12px; margin-top: 30px; }
    .trabar-card { padding: 12px 20px; border-radius: 12px; }
    .trabar-content h4 { font-size: 0.9rem; }
    .trabar-content p { font-size: 0.7rem; }
    .trabar-logo-wrapper { width: 40px; height: 40px; margin-right: 15px; }

    /* GALLERY FIX (No Blank Space) */
    .gallery-grid { 
        display: grid;
        grid-template-columns: 1fr 1fr; /* 2 Kolom */
        grid-auto-rows: 150px; /* Tinggi Fix */
        gap: 10px;
        grid-auto-flow: dense; /* FIX: Ini yang menutup lubang kosong */
    }

    .gallery-item { 
        height: 100%; 
        width: 100%;
    }
    
    /* Force Large Item to Fill Width on Mobile (Solusi Anti Lubang) */
    .item-large { 
        grid-column: span 2; 
        grid-row: span 2; 
    }
    
    .item-wide {
        grid-column: span 2;
        grid-row: span 1;
    }
    
    .gallery-overlay { padding: 10px; background: rgba(0,0,0,0.6); transform: translateY(0); }
    .gallery-overlay h4 { font-size: 0.85rem; }

    /* CHART FIX (Anti Collision) */
    .chart-layout { display: flex; flex-direction: column; gap: 40px; }
    .stat-highlight { flex-direction: row; gap: 15px; flex-wrap: wrap; justify-content: center; }
    .stat-box { flex: 1; min-width: 130px; background: rgba(255,255,255,0.05); padding: 15px; border-radius: 10px; }
    .stat-box h3 { font-size: 1.5rem; }
    
    .chart-visual { width: 100%; display: flex; flex-direction: column; align-items: center; }
    .pie-chart { width: 250px; height: 250px; margin: 0 auto 25px; }
    .pie-chart::before { width: 190px; height: 190px; }
    .chart-center strong { font-size: 2.2rem; }
    
    .chart-legend { 
        flex-direction: column; /* List ke bawah biar rapi */
        gap: 10px; width: 100%; max-width: 250px; 
    }
    .legend-item { justify-content: space-between; border-bottom: 1px solid rgba(255,255,255,0.05); padding-bottom: 5px; }

    /* E-BOOK FIX (Stack Layout) */
    .ebook-layout { 
        display: flex; 
        flex-direction: column; 
        gap: 40px; 
        text-align: center; /* Center Text */
    }
    .ebook-image-wrapper { width: 100%; display: flex; justify-content: center; }
    .ebook-cover { max-width: 200px; margin: 0 auto; } /* Kecilkan gambar cover */
    .ebook-details { width: 100%; }
    
    .price-tag.highlight-gold { font-size: 2.5rem; }
    
    /* Rapikan List Materi di HP */
    .curriculum-wrapper { 
        flex-direction: column; 
        gap: 0; 
        text-align: left; /* List tetap rata kiri */
        margin-top: 20px;
    }
    .curriculum-column { width: 100%; }

    /* Mentoring & Pricing */
    .pricing-grid { grid-template-columns: 1fr; padding: 0 5px; }
    .price-card { padding: 30px 20px; transform: none !important; }
    .card-price { font-size: 2.5rem; }
    
    /* Mini Services & Footer */
    .mini-services-grid { gap: 20px; }
    
    .mini-card { 
        flex-direction: column; /* Tumpuk ke bawah */
        text-align: center; 
        padding: 30px 20px;
        gap: 20px;
    }
    
    .mini-icon { 
        margin: 0 auto; /* Tengah */
    }
    
    .mini-content { width: 100%; }
    
    .mini-card .btn-text {
        width: 100%; /* Tombol full width di HP */
        display: block;
        text-align: center;
    }
    .btn-text { margin: 0 auto; }

    /* FOOTER CENTER FIX */
    .footer-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    
    /* Paksa Connect With Us ke Tengah */
    .footer-social { 
        align-items: center; 
        width: 100%;
    }
    .footer-social h4 { text-align: center; width: 100%; }
    .social-links { justify-content: center; }

    .slider-btn { display: none; }
}

/* Fix Khusus HP Layar Sangat Kecil (iPhone SE / Galaxy Fold) */
@media (max-width: 370px) {
    .pie-chart { width: 220px; height: 220px; }
    .pie-chart::before { width: 170px; height: 170px; }
    .hero-content h1 { font-size: 1.8rem; }
    .stat-box { min-width: 100%; }
}

/* =========================================
   FOUNDER PROFILE SECTION
   ========================================= */
.founder-section {
    padding: 100px 0;
    background: linear-gradient(to right, #050505, #0d0d0d); /* Gradasi gelap */
    position: relative;
    overflow: hidden;
}

/* Layout Kiri Kanan */
.founder-wrapper {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr; /* Foto lebih kecil dikit dari teks */
    gap: 80px;
    align-items: center;
}

/* --- Area Foto --- */
.founder-image-col {
    position: relative;
    display: flex;
    justify-content: center;
}

.founder-frame {
    position: relative;
    width: 100%;
    max-width: 400px;
    z-index: 2;
}

.founder-img {
    width: 100%;
    border-radius: 12px;
    filter: contrast(1.1) grayscale(20%); /* Efek agak dramatis */
    border: 1px solid rgba(255,255,255,0.1);
    display: block;
    position: relative;
    z-index: 2;
    transition: 0.5s;
}

/* Efek Kotak Emas di Belakang Foto */
.frame-accent {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--gold-solid);
    border-radius: 12px;
    z-index: 1; /* Di belakang foto */
    transition: 0.5s;
}

.founder-frame:hover .frame-accent {
    top: 10px;
    left: 10px;
}

.founder-frame:hover .founder-img {
    transform: translate(-5px, -5px);
    filter: contrast(1) grayscale(0%);
}

/* --- Area Teks --- */
.founder-name {
    font-size: 3.5rem;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    
    /* UBAH BAGIAN INI */
    margin-bottom: 15px; /* Tambah jarak ke bawah */
    line-height: 1.4;    /* Naikkan dari 1.1 jadi 1.4 biar ekor 'g' muat */
    padding-bottom: 5px; /* Tambahan spasi aman biar gradient tidak kepotong */
}

.founder-role {
    font-size: 1.2rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 30px;
    display: block;
    font-family: var(--font-sans);
}

.founder-bio p {
    color: #ccc;
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.8;
}

.founder-bio strong {
    color: #fff;
    font-weight: 600;
}

/* Tanda Tangan Estetik */
@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&display=swap');
.signature-font {
    font-family: 'Great Vibes', cursive;
    font-size: 3rem;
    color: var(--gold-solid);
    opacity: 0.8;
    margin-top: 20px;
    display: block;
}

.founder-social {
    margin-top: 30px;
    display: flex;
    gap: 20px;
}

.founder-social a {
    color: #666;
    font-size: 1.5rem;
    transition: 0.3s;
}

.founder-social a:hover {
    color: var(--gold-solid);
    transform: translateY(-3px);
}

/* =========================================
   OFFLINE LOCATION SECTION
   ========================================= */
.offline-facility-box {
    margin-top: 60px;
    background: linear-gradient(145deg, #121212, #0a0a0a);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

/* Header Text */
.facility-header {
    margin-bottom: 40px;
    text-align: left; /* Pastikan container rata kiri */
}
.facility-header h3 { font-size: 1.8rem; margin: 10px 0; color: #fff; }
.facility-header p {
    color: #a0a0a0;
    
    /* BAGIAN PENTING YANG DIUBAH: */
    max-width: 100%;      /* Biar memanjang full ke samping */
    margin: 10px 0 0 0;   /* Hapus margin auto (tengah), ganti margin biasa */
    text-align: left;     /* Teks rata kiri */
    
    line-height: 1.6;
    font-size: 1rem;
}
.facility-header strong { color: var(--gold-solid); }

/* Grid Layout */
.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Kiri Kanan */
    gap: 40px;
    align-items: start;
}

/* Video Side */
.video-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--gold-solid);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    
    /* Tambahan agar ukuran seperti HP */
    max-width: 350px; /* Batasi lebar agar mirip layar HP */
    margin: 0 auto;   /* Tengahkan posisi player */
}

.room-video {
    width: 100%;
    display: block;
    aspect-ratio: 9/16; /* UBAH JADI PORTRAIT (Tegak) */
    object-fit: cover;
}

.video-badge {
    position: absolute;
    top: 15px; left: 15px;
    background: rgba(0,0,0,0.7);
    color: var(--gold-solid);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    backdrop-filter: blur(5px);
    display: flex; align-items: center; gap: 5px;
    z-index: 5;
}

/* Map Side */
.map-frame {
    height: 350px; /* Saya tinggikan sedikit biar imbang sama video portrait */
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
    
    /* filter: grayscale(...) -> SAYA HAPUS AGAR WARNA ASLI MUNCUL */
    filter: none; 
    
    transition: 0.3s;
}
.map-frame:hover { filter: grayscale(0%); /* Jadi warna asli pas dihover */ }

/* Description Boxes */
.location-desc, .address-box { margin-top: 20px; }
.location-desc h4, .address-box h4 { color: #fff; font-size: 1.1rem; margin-bottom: 8px; display: flex; align-items: center; gap: 10px; }
.location-desc p, .address-box p { color: #888; font-size: 0.9rem; line-height: 1.5; margin-bottom: 10px; }

.btn-text-gold {
    color: var(--gold-solid);
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px dashed var(--gold-solid);
}

.trabar-note {
    max-width: 800px;
    margin: 50px auto 0; /* Jarak dari tombol di atasnya */
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.2); /* Border emas tipis */
    border-radius: 16px;
    padding: 30px;
    display: flex;
    gap: 25px;
    align-items: flex-start;
    backdrop-filter: blur(5px);
}

.note-icon {
    font-size: 2rem;
    color: var(--gold-solid);
    background: rgba(212, 175, 55, 0.1);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0; /* Biar icon gak gepeng */
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.1);
}

.note-content h4 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-family: var(--font-serif);
}

.note-content p {
    color: #a0a0a0;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* =========================================
   PHILOSOPHY SECTION (WHY US)
   ========================================= */
.philosophy-section {
    padding: 80px 0;
    background: var(--bg-deep);
    position: relative;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch; /* Tinggi kartu sama */
}

.philosophy-card {
    padding: 40px;
    border-radius: 16px;
    position: relative;
    transition: 0.3s;
}

/* STYLE KARTU MASALAH (KIRI) */
.card-problem {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-left: 4px solid #666; /* Aksen Abu */
}

.card-problem h3 {
    font-size: 1.5rem;
    color: #888;
    margin-bottom: 15px;
}

.card-problem p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

.card-problem strong {
    color: #999;
    text-decoration: underline;
    text-decoration-style: dotted;
}

/* STYLE KARTU SOLUSI (KANAN - TRAVESTING) */
.card-solution {
    background: linear-gradient(145deg, rgba(20, 20, 20, 0.8), rgba(10, 10, 10, 0.9));
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-left: 4px solid var(--gold-solid); /* Aksen Emas */
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.card-solution:hover {
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.15); /* Glow Emas saat hover */
    transform: translateY(-5px);
}

.card-solution h3 {
    font-size: 1.8rem; /* Lebih besar dari yang kiri */
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
}

.card-solution p {
    color: #e0e0e0; /* Putih terang */
    line-height: 1.6;
    font-size: 1.1rem;
}

.card-solution strong {
    color: var(--gold-solid);
    font-weight: 700;
}

/* ICON STYLES */
.card-icon {
    font-size: 2rem;
    margin-bottom: 20px;
}
.icon-gray { color: #444; }
.icon-gold { color: var(--gold-solid); }

/* RESPONSIVE HP */
@media (max-width: 768px) {
    .philosophy-grid {
        grid-template-columns: 1fr; /* Tumpuk ke bawah */
        gap: 20px;
    }
    
    .philosophy-card {
        padding: 30px 20px;
    }
}

/* =========================================
   RESPONSIVE FOUNDER (Update bagian Mobile)
   ========================================= */
@media (max-width: 768px) {
    .trabar-note {
        flex-direction: column; /* Icon di atas, teks di bawah */
        text-align: center;
        align-items: center;
        gap: 15px;
        padding: 25px 20px;
        margin-top: 30px;
    }
    
    .note-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    .founder-wrapper {
        grid-template-columns: 1fr; /* Stack ke bawah */
        gap: 50px;
        text-align: center;
    }

    .founder-image-col {
        justify-content: center;
    }

    .founder-frame {
        max-width: 280px; /* Foto jangan kegedean di HP */
        margin: 0 auto;
    }

    /* Pindahkan kotak emas sedikit biar pas di HP */
    .frame-accent {
        top: 15px; left: 15px;
    }

    .founder-name {
        font-size: 2.5rem;
    }

    .founder-role {
        font-size: 1rem;
        letter-spacing: 2px;
    }

    .founder-social {
        justify-content: center;
    }
    .offline-facility-box {
        padding: 30px 15px; /* Padding samping dikecilkan (20px -> 15px) */
        width: 100%;
        box-sizing: border-box; /* Kunci ukuran biar gak jebol */
    }

    /* 2. Layout Stack (Atas Bawah) */
    .location-grid {
        display: flex;
        flex-direction: column;
        gap: 30px;
        width: 100%; /* Pastikan grid full width */
    }

    /* 3. Video Portrait (Sudah Oke, kita kunci ukurannya) */
    .video-wrapper {
        width: 100%;
        max-width: 260px; 
        margin: 0 auto;   
        border: 2px solid var(--gold-solid); 
    }

    /* 4. FIX MAPS KEPOTONG */
    .location-map {
        width: 100%; /* Pastikan container map full width */
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .map-frame {
        width: 100%; /* Lebar peta mengikuti layar HP */
        height: 250px; 
        border-radius: 12px;
        overflow: hidden; /* Potong konten yang berlebih */
    }
    
    .map-frame iframe {
        width: 100% !important; /* Paksa iframe Google Maps nurut */
        display: block;
    }

    /* 5. FIX TEKS KEPOTONG */
    .address-box {
        width: 100%;
        text-align: center;
        margin-top: 20px;
        padding: 0 5px; /* Jarak aman kiri kanan */
        box-sizing: border-box;
    }

    .address-box h4 {
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 1.1rem;
        flex-wrap: wrap; /* Biar kalau judul panjang dia turun ke bawah */
        line-height: 1.4;
    }

    .address-box p {
        font-size: 0.9rem;
        white-space: normal; /* Pastikan teks paragraf turun ke bawah (wrapping) */
        word-wrap: break-word; /* Potong kata jika terlalu panjang */
    }
}

/* =========================================
   NEW COMMUNITY SECTION
   ========================================= */
.community-section {
    padding: 80px 0;
    background: linear-gradient(to bottom, var(--bg-deep), #080808); /* Sedikit gradasi biar beda */
    position: relative;
    border-top: 1px solid rgba(255,255,255,0.05); /* Garis pemisah tipis */
}

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

/* Sedikit modifikasi style card khusus komunitas biar lebih compact */
.community-card {
    padding: 20px 25px; /* Padding sedikit lebih kecil dari tombol exchange */
    background: rgba(255, 255, 255, 0.02); /* Lebih transparan */
}

.community-card:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
}

/* RESPONSIVE HP */
@media (max-width: 992px) {
    /* Di Tablet/HP jadi 1 kolom ke bawah */
    .community-grid {
        grid-template-columns: 1fr;
        max-width: 500px; /* Batasi lebar biar ga terlalu panjang di tablet */
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .community-section {
        padding: 50px 0;
    }
    /* Pastikan padding card pas di HP */
    .community-card {
        padding: 15px 20px;
    }
}