/* ==========================================================================
   Tyo Tjuan - The Yield Optimum | Bullish Light Gold & Emerald Palette
   ========================================================================== */

:root {
    /* Base Color System - High Contrast Luxury Light Gold & Ivory */
    --bg-main: #FBF8F1;          /* Soft Warm Ivory */
    --bg-surface: #FFFFFF;       /* Pure Crisp White */
    --bg-secondary: #F4EFE2;     /* Warm Gold Tinted Surface */
    
    /* Text Hierarchy */
    --text-main: #1B1917;        /* High-contrast Deep Charcoal / Dark Espresso */
    --text-muted: #57534E;       /* Muted Warm Dark Brown/Gray */
    --text-light: #78716C;
    
    /* Bullish Accent Colors */
    --emerald: #0F7B52;          /* Institutional Bullish Green */
    --emerald-light: #128A5B;    /* Glowing Green Accent */
    --emerald-soft: #E6F4ED;     /* Green Background Tint */
    
    --gold: #B8860B;             /* Imperial Gold */
    --gold-light: #D4AF37;       /* Bright Gold Highlight */
    --gold-soft: #F9F2DF;        /* Soft Gold Surface Tint */
    --gold-dark: #8C6205;
    
    /* Dark Footer Contrast System */
    --footer-bg: #0F1115;        /* Premium Dark Charcoal */
    --footer-card: #181B20;
    --footer-text: #E2E8F0;
    
    /* System & Transitions */
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --shadow-soft: 0 10px 30px rgba(27, 25, 23, 0.05);
    --shadow-hover: 0 15px 40px rgba(15, 123, 82, 0.12);
    --transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-main);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: min(1240px, 92%);
    margin: auto;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    color: var(--text-main);
    letter-spacing: -0.01em;
}

h1 { font-size: clamp(34px, 4.5vw, 58px); line-height: 1.15; margin-bottom: 22px; }
h2 { font-size: clamp(26px, 3.5vw, 40px); color: var(--text-main); line-height: 1.25; }
h3 { font-size: 20px; color: var(--text-main); margin-bottom: 12px; }

/* Utility Classes */
.text-emerald { color: var(--emerald-light) !important; }
.text-gold { color: var(--gold-light) !important; }
.text-red { color: #E53E3E !important; }
.text-pink { color: #E1306C !important; }

/* Preloader */
#preloader {
    position: fixed;
    inset: 0;
    background: var(--bg-main);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999999;
    transition: opacity 0.8s ease;
}

.loader-box { text-align: center; }
.bullish-icon-glow {
    font-size: 42px;
    color: var(--emerald);
    margin-bottom: 10px;
    animation: pulseUp 1.5s infinite ease-in-out;
}
.loader-logo { font-size: 32px; letter-spacing: 4px; color: var(--gold-dark); font-family: 'Cinzel', serif; }
.loader-sub { font-size: 11px; letter-spacing: 3px; color: var(--text-muted); font-weight: 700; margin-bottom: 20px; }
.loader-line { width: 220px; height: 3px; background: #E5DFC8; margin: auto; overflow: hidden; position: relative; border-radius: 3px; }
.loader-line span { display: block; height: 100%; width: 50%; background: linear-gradient(90deg, var(--gold), var(--emerald)); position: absolute; animation: slide 1.5s infinite ease-in-out; }

@keyframes pulseUp {
    0%, 100% { transform: translateY(0) scale(1); opacity: 1; }
    50% { transform: translateY(-8px) scale(1.1); opacity: 0.8; }
}
@keyframes slide { 0% { left: -50%; } 100% { left: 100%; } }

/* Scroll Progress */
#scroll-progress {
    position: fixed;
    top: 0; left: 0; height: 4px; width: 0%;
    background: linear-gradient(90deg, var(--gold), var(--emerald));
    z-index: 99999;
}

/* Ticker Bar */
.ticker-bar {
    background: #14181F;
    color: #FFF;
    font-size: 12px;
    font-weight: 600;
    padding: 8px 0;
    overflow: hidden;
    white-space: nowrap;
    border-bottom: 1px solid rgba(184, 134, 11, 0.3);
}

.ticker-wrapper {
    display: inline-flex;
    animation: ticker 35s linear infinite;
}

.ticker-item {
    margin-right: 45px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.5px;
}

.ticker-val { color: #A7F3D0; font-weight: 700; }

@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Header & Nav */
header {
    position: sticky;
    top: 0; width: 100%;
    z-index: 999;
    background: rgba(251, 248, 241, 0.88);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(184, 134, 11, 0.15);
    transition: var(--transition);
}

.header-scrolled {
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
}

.logo { display: flex; align-items: center; gap: 12px; }
.logo-badge {
    width: 42px; height: 42px;
    background: linear-gradient(135deg, var(--gold-soft), var(--emerald-soft));
    border: 1px solid var(--gold);
    border-radius: 10px;
    display: flex; justify-content: center; align-items: center;
    color: var(--emerald); font-size: 20px;
}

.logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.logo-text strong { font-family: 'Cinzel', serif; font-size: 22px; color: var(--gold-dark); letter-spacing: 0.5px; }
.logo-text small { font-size: 10px; letter-spacing: 2px; color: var(--text-muted); text-transform: uppercase; font-weight: 700; }

/* Navigation Buttons / Pill Tabs */
.nav-links { display: flex; gap: 10px; align-items: center; }

.nav-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(184, 134, 11, 0.2);
    color: var(--text-main);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: var(--transition);
}

.nav-btn i { color: var(--gold-dark); transition: var(--transition); }

.nav-btn:hover, .nav-btn.active {
    background: var(--emerald);
    color: #FFF;
    border-color: var(--emerald);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(15, 123, 82, 0.25);
}

.nav-btn:hover i, .nav-btn.active i { color: #FFF; }

.header-cta-btn {
    padding: 10px 20px;
    font-size: 12px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #FFF;
    border-radius: 20px;
    margin-left: 10px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-emerald {
    background: linear-gradient(135deg, var(--emerald), var(--emerald-light));
    color: #FFF;
    box-shadow: 0 8px 20px rgba(15, 123, 82, 0.25);
}

.btn-emerald:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(15, 123, 82, 0.35);
}

.btn-outline-gold {
    background: var(--bg-surface);
    border: 1.5px solid var(--gold);
    color: var(--gold-dark);
}

.btn-outline-gold:hover {
    background: var(--gold);
    color: #FFF;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(184, 134, 11, 0.25);
}

.btn-outline-dark {
    background: var(--bg-surface);
    border: 1.5px solid #111;
    color: #111;
}

.btn-outline-dark:hover {
    background: #111;
    color: #FFF;
    transform: translateY(-3px);
}

/* Section Common Styling */
section { padding: 90px 0; position: relative; }
.section-primary { background: var(--bg-main); }
.section-secondary { background: var(--bg-surface); border-top: 1px solid rgba(184, 134, 11, 0.1); border-bottom: 1px solid rgba(184, 134, 11, 0.1); }

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: var(--emerald-soft);
    border: 1px solid rgba(15, 123, 82, 0.2);
    border-radius: 20px;
    color: var(--emerald);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
}

.section-title { text-align: center; margin-bottom: 55px; max-width: 760px; margin-inline: auto; }
.section-title p { color: var(--text-muted); margin-top: 14px; font-size: 17px; font-weight: 400; }

/* Hero Section */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 60px;
    overflow: hidden;
}

.hero-bg-chart {
    position: absolute;
    bottom: 0; left: 0; width: 100%; height: 60%;
    pointer-events: none;
    z-index: 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.bullish-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    background: var(--gold-soft);
    border: 1px solid var(--gold);
    border-radius: 30px;
    color: var(--gold-dark);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 22px;
}

.pulse-dot {
    width: 8px; height: 8px;
    background: var(--emerald);
    border-radius: 50%;
    box-shadow: 0 0 0 rgba(15, 123, 82, 0.4);
    animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
    0% { box-shadow: 0 0 0 0 rgba(15, 123, 82, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(15, 123, 82, 0); }
    100% { box-shadow: 0 0 0 0 rgba(15, 123, 82, 0); }
}

.hero-content p { color: var(--text-muted); font-size: 18px; line-height: 1.7; margin-bottom: 35px; }
.hero-actions { display: flex; gap: 15px; margin-bottom: 45px; }

/* Stat Row */
.hero-stats-row {
    display: flex;
    gap: 35px;
    padding-top: 25px;
    border-top: 1px solid rgba(184, 134, 11, 0.2);
}

.stat-box p { font-size: 12px; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); font-weight: 600; margin: 0; }
.stat-num { display: inline; font-size: 32px; font-weight: 800; color: var(--emerald); font-family: 'Cinzel', serif; }
.stat-unit { font-size: 24px; font-weight: 800; color: var(--emerald); }

/* Hero Image & Floating Widgets */
.hero-card-frame {
    position: relative;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-hover);
}

.hero-img {
    width: 100%;
    border-radius: var(--radius-lg);
    display: block;
    border: 3px solid #FFF;
}

.floating-widget {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    padding: 16px 20px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(184, 134, 11, 0.25);
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.widget-top { top: -20px; right: -20px; }
.widget-bottom { bottom: -20px; left: -20px; }

.widget-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    display: flex; justify-content: center; align-items: center;
    font-size: 22px;
}

.green-glow { background: var(--emerald-soft); color: var(--emerald); }
.gold-glow { background: var(--gold-soft); color: var(--gold-dark); }

.floating-widget h5 { font-size: 14px; font-weight: 700; color: var(--text-main); font-family: 'Plus Jakarta Sans', sans-serif; }
.floating-widget span { font-size: 12px; color: var(--text-muted); }

/* Cards (Expertise) */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
}

.card {
    background: var(--bg-surface);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid rgba(184, 134, 11, 0.15);
    transition: var(--transition);
    box-shadow: var(--shadow-soft);
}

.card:hover {
    transform: translateY(-8px);
    border-color: var(--emerald);
    box-shadow: var(--shadow-hover);
}

.card-img-holder { position: relative; height: 210px; overflow: hidden; }
.card-img-holder img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.card:hover .card-img-holder img { transform: scale(1.05); }

.card-badge {
    position: absolute;
    top: 15px; left: 15px;
    background: rgba(255, 255, 255, 0.92);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    color: var(--emerald);
    border: 1px solid var(--emerald);
}

.card-content { padding: 28px; }
.card-content h3 { color: var(--text-main); font-size: 20px; margin-bottom: 12px; }
.card-content p { color: var(--text-muted); font-size: 14.5px; line-height: 1.6; }

/* Methodology Section */
.methodology-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 25px;
}

.method-card {
    background: var(--bg-main);
    padding: 30px;
    border-radius: var(--radius-md);
    border-top: 4px solid var(--gold);
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.method-card:hover {
    border-top-color: var(--emerald);
    transform: translateY(-5px);
    background: var(--bg-surface);
}

.method-step {
    font-size: 32px;
    font-family: 'Cinzel', serif;
    font-weight: 800;
    color: var(--emerald);
    margin-bottom: 15px;
}

.method-body h3 { font-size: 18px; margin-bottom: 10px; }
.method-body p { color: var(--text-muted); font-size: 14px; }

/* Outlook Section */
.outlook-box {
    background: linear-gradient(135deg, #FFF, var(--gold-soft));
    border: 2px solid var(--gold);
    border-radius: var(--radius-lg);
    padding: 45px;
    box-shadow: var(--shadow-hover);
}

.outlook-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(184, 134, 11, 0.2);
    padding-bottom: 25px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.badge-emerald {
    display: inline-block;
    padding: 5px 12px;
    background: var(--emerald);
    color: #FFF;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.outlook-status {
    background: var(--bg-surface);
    padding: 10px 20px;
    border-radius: 30px;
    border: 1px solid var(--emerald);
    font-size: 14px;
}

.outlook-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
    margin-bottom: 35px;
}

.outlook-col h3 { font-size: 19px; display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.outlook-col p { color: var(--text-muted); font-size: 15px; line-height: 1.7; }

.outlook-footer {
    display: flex;
    justify-content: space-around;
    background: var(--bg-surface);
    padding: 20px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(184, 134, 11, 0.2);
    flex-wrap: wrap;
    gap: 15px;
}

.metric-item { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.metric-item span { font-size: 12px; color: var(--text-muted); text-transform: uppercase; font-weight: 600; }
.metric-item strong { font-size: 16px; color: var(--text-main); }

/* Articles Grid */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
}

.article-card {
    background: var(--bg-main);
    padding: 30px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(184, 134, 11, 0.15);
    transition: var(--transition);
}

.article-card:hover {
    border-color: var(--emerald);
    background: var(--bg-surface);
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.article-header { display: flex; justify-content: space-between; margin-bottom: 15px; font-size: 12px; font-weight: 600; }
.article-category { color: var(--emerald); text-transform: uppercase; }
.article-date { color: var(--text-light); }

.article-card h3 { font-size: 18px; line-height: 1.35; margin-bottom: 12px; color: var(--text-main); }
.article-card p { color: var(--text-muted); font-size: 14px; margin-bottom: 20px; }

.read-more {
    color: var(--emerald);
    text-decoration: none;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.read-more:hover { gap: 14px; color: var(--gold-dark); }

.feed-fallback { text-align: center; grid-column: 1 / -1; padding: 40px; color: var(--text-muted); }

/* Media Section */
.sub-title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    border-bottom: 2px solid var(--gold-soft);
    padding-bottom: 12px;
}

.sub-badge { font-size: 12px; font-weight: 700; text-transform: uppercase; color: var(--text-muted); }

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 20px;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(0,0,0,0.08);
    background: #000;
    transition: var(--transition);
}

.video-wrapper:hover {
    border-color: var(--emerald);
    transform: scale(1.02);
    box-shadow: var(--shadow-hover);
}

.video-wrapper iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    border: none;
}

/* ==========================================================================
   Aesthetic Frosted Glass Instagram Feed & Transparent Overrides
   ========================================================================== */

.ig-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    justify-items: center;
    align-items: start;
}

/* Container Card dengan Konsep Glassmorphism / Kaca Transparan */
.ig-wrapper {
    width: 100%;
    max-width: 360px;
    /* Efek Kaca Transparan Frosted */
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    
    /* Border Emas Transparan yang Halus */
    border: 1px solid rgba(184, 134, 11, 0.25);
    border-radius: var(--radius-md);
    padding: 10px;
    position: relative;
    box-shadow: 0 10px 30px rgba(27, 25, 23, 0.03);
    transition: var(--transition);
    overflow: hidden;
}

/* Efek Hover Mewah & Bullish Emerald Glow */
.ig-wrapper:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.7);
    border-color: var(--emerald);
    box-shadow: 0 18px 40px rgba(15, 123, 82, 0.18);
}

/* Garis Aksen Emas Tipis di Bagian Atas Kartu */
.ig-wrapper::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--emerald));
    opacity: 0.6;
    transition: var(--transition);
}

.ig-wrapper:hover::before {
    opacity: 1;
}

/* Force-Override / Memaksa Elemen Default Instagram Menjadi Transparan */
.ig-wrapper blockquote.instagram-media {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    margin: 0 !important;
    padding: 0 !important;
    min-width: 100% !important;
    width: 100% !important;
    border-radius: var(--radius-sm) !important;
}

/* Mempercantik Iframe Instagram yang Dihasilkan Script */
.ig-wrapper iframe.instagram-media {
    border-radius: var(--radius-sm) !important;
    background: transparent !important;
}

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

/* Footer & Contact */
footer {
    background: var(--footer-bg);
    color: var(--footer-text);
    padding: 0 0 30px;
    position: relative;
}

/* High-Contrast Divider Bar */
.footer-divider-bar {
    height: 6px;
    width: 100%;
    background: linear-gradient(90deg, var(--gold), var(--emerald), var(--gold));
    margin-bottom: 70px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1.5fr 1.2fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 6px; }
.footer-logo h2 { color: var(--gold-light); font-size: 28px; }

.brand-sub { color: #FFF; font-weight: 700; font-size: 14px; letter-spacing: 1px; }
.brand-desc { color: var(--gold-light); font-size: 13px; margin-bottom: 15px; }
.brand-ethos { color: #94A3B8; font-size: 13.5px; line-height: 1.6; }

.footer-contact h3, .footer-social h3 { color: #FFF; font-size: 20px; margin-bottom: 20px; }

.contact-links { display: flex; flex-direction: column; gap: 14px; }

.interactive-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 18px;
    background: var(--footer-card);
    border-radius: var(--radius-sm);
    color: #E2E8F0;
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.06);
}

.interactive-btn i { font-size: 20px; }
.interactive-btn small { display: block; font-size: 10px; text-transform: uppercase; color: #94A3B8; }
.interactive-btn span { font-weight: 600; font-size: 13.5px; }

.interactive-btn:hover { transform: translateX(8px); background: #22262E; }
.email-btn:hover i { color: var(--gold-light); }
.wa-btn:hover i { color: #25D366; }
.comm-btn:hover i { color: #38BDF8; }

.footer-social p { color: #94A3B8; font-size: 13.5px; margin-bottom: 20px; }

.social-icons { display: flex; gap: 12px; }

.social-icons a {
    width: 44px; height: 44px;
    background: var(--footer-card);
    border-radius: 50%;
    display: flex; justify-content: center; align-items: center;
    color: #FFF;
    font-size: 18px;
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.08);
}

.social-icons a:hover {
    background: var(--emerald);
    color: #FFF;
    transform: translateY(-4px);
    border-color: var(--emerald);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 25px;
}

.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #64748B;
    font-size: 12.5px;
    flex-wrap: wrap;
    gap: 15px;
}

/* Floating Assets */
.floating-wa {
    position: fixed;
    bottom: 30px; right: 30px;
    width: 58px; height: 58px;
    background: #25D366;
    color: #FFF;
    border-radius: 50%;
    display: flex; justify-content: center; align-items: center;
    font-size: 28px;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(37,211,102,0.35);
    transition: var(--transition);
    z-index: 9999;
}

.floating-wa:hover { transform: scale(1.1); }

#toTop {
    position: fixed;
    bottom: 100px; right: 34px;
    width: 48px; height: 48px;
    background: var(--emerald);
    border: none;
    border-radius: 50%;
    color: #FFF;
    font-size: 18px;
    cursor: pointer;
    opacity: 0; visibility: hidden;
    transition: var(--transition);
    z-index: 9998;
    box-shadow: 0 6px 20px rgba(15, 123, 82, 0.3);
}

#toTop.visible { opacity: 1; visibility: visible; }
#toTop:hover { transform: translateY(-4px); background: var(--emerald-light); }

/* Responsive Adaptations */
@media(max-width: 992px) {
    .hero-grid, .footer-grid, .outlook-grid { grid-template-columns: 1fr; }
    .hero-image-wrapper { order: -1; }
    .hero { text-align: center; padding-top: 40px; }
    .hero-actions, .hero-stats-row { justify-content: center; }
    .nav-links { display: none; }
}

/* ==========================================================================
   Full-Page Infinite Rising Bullish Candlesticks
   ========================================================================== */

#bullish-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none; /* Agar tidak memblokir klik/scroll mouse */
    z-index: 1;          /* Melayang halus di atas background */
    opacity: 0.85;       /* Menjaga seluruh kanvas tetap lembut */
}

/* Memastikan konten halaman tetap berada di atas animasi kanvas agar teks sangat jelas */
header, section, footer, .ticker-bar, .floating-wa, #toTop {
    position: relative;
    z-index: 2;
}

/* ==========================================================================
   PERBAIKAN: Layer Kanvas, Footer Clean Stretch & Tombol Floating
   ========================================================================== */

/* 1. Mencegah Sisa Space / Scroll Bar Liar pada HTML & Body */
html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
    background-color: var(--bg-main);
}

/* 2. Kanvas Lilin Bullish Diletakkan di Layer Paling Belakang (z-index: 0) */
#bullish-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 0; /* Tetap berada di belakang seluruh konten */
    opacity: 0.85;
}

/* 3. Seluruh Konten Utama Diberi Layer di Atas Kanvas (z-index: 1) */
header, section, .ticker-bar {
    position: relative;
    z-index: 1;
}

/* 4. Footer Dirapatkan dan Diberi Latar Belakang Gelap Utuh */
footer {
    background: var(--footer-bg);
    color: var(--footer-text);
    padding: 0 0 30px;
    position: relative;
    z-index: 1;
    margin: 0 !important; /* Menghilangkan celah space kosong di bawah */
}

/* 5. PERBAIKAN TOMBOL WHATSAPP (Dikembalikan ke Fixed di Kanan Bawah) */
.floating-wa {
    position: fixed !important;
    bottom: 30px !important;
    right: 30px !important;
    left: auto !important; /* Memastikan tidak terdorong ke kiri */
    width: 58px;
    height: 58px;
    background: #25D366;
    color: #FFF;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    z-index: 9999 !important; /* Layer paling atas agar melayang sempurna */
}

.floating-wa:hover {
    transform: scale(1.1);
}

/* 6. PERBAIKAN TOMBOL BACK TO TOP */
#toTop {
    position: fixed !important;
    bottom: 100px !important;
    right: 34px !important;
    left: auto !important;
    width: 48px;
    height: 48px;
    background: var(--emerald);
    border: none;
    border-radius: 50%;
    color: #FFF;
    font-size: 18px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 9998 !important; /* Tepat di bawah tombol WA */
    box-shadow: 0 6px 20px rgba(15, 123, 82, 0.3);
}

#toTop.visible {
    opacity: 1;
    visibility: visible;
}

#toTop:hover {
    transform: translateY(-4px);
    background: var(--emerald-light);
}

/* ==========================================================================
   Abstract Rising Snow / Dust Layer (Melayang Di Atas Teks)
   ========================================================================== */

#rising-particles-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none; /* Kunci utama: Teks & tombol tetap bisa di-click / di-highlight */
    z-index: 5;          /* Berada di atas konten teks (z-index: 1) */
}

/* ==========================================================================
   Large & Responsive Transparent Footer Logo
   ========================================================================== */

.footer-logo-wrapper {
    text-align: center;
    margin-bottom: 30px;
    padding-top: 15px;
}

.footer-logo {
    max-width: 340px;          /* Ukuran besar yang dominan di layar Desktop */
    width: 100%;               /* Skala fleksibel mengikuti kontainer */
    height: auto;              /* Menjaga proporsi/rasio asli gambar */
    display: inline-block;
    
    /* Efek bayangan halus agar logo transparan semakin pop-out di background gelap */
    filter: drop-shadow(0 4px 15px rgba(184, 134, 11, 0.25));
    transition: transform 0.3s ease, filter 0.3s ease;
}

/* Efek Hover Elegan saat Logo Didekati Kursor */
.footer-logo:hover {
    transform: translateY(-3px) scale(1.02);
    filter: drop-shadow(0 8px 25px rgba(184, 134, 11, 0.45));
}

/* Penyesuaian Responsif untuk Layar Tablet dan Smartphone */
@media (max-width: 768px) {
    .footer-logo {
        max-width: 240px;      /* Disesuaikan agar proporsional di layar HP */
    }
    .footer-logo-wrapper {
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .footer-logo {
        max-width: 190px;      /* Penyesuaian khusus layar HP berukuran kecil */
    }
}

/* ==========================================================================
   High-Precision 50-Digit Calculator (Frosted Glass Aesthetic)
   ========================================================================== */

.calc-section {
    padding: 60px 0;
    position: relative;
    z-index: 2;
}

.calc-description {
    max-width: 720px;
    margin: 0 0 30px;
    color: #4A5568;
    font-size: 0.95rem;
    line-height: 1.6;
}

.calc-card {
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(184, 134, 11, 0.3);
    border-radius: 16px;
    padding: 30px;
    max-width: 520px;
    margin: 0 auto;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

.display-group {
    margin-bottom: 15px;
}

.display-group label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--gold, #B8860B);
    margin-bottom: 5px;
}

.calc-screen {
    width: 100%;
    background: rgba(16, 20, 27, 0.92);
    color: #FBF8F1;
    border: 1px solid rgba(184, 134, 11, 0.25);
    border-radius: 8px;
    padding: 12px 15px;
    font-family: 'Courier New', Courier, monospace;
    font-weight: 700;
    text-align: right;
    box-sizing: border-box;
}

.secondary-screen {
    font-size: 0.85rem;
    color: #A0AEC0;
}

.primary-screen {
    font-size: 1.25rem;
    color: #D1FAE5; /* Emerald Accent Glow */
}

/* Calculator Grid Layout */
.calculator-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-top: 20px;
}

.calculator-grid button {
    padding: 14px 0;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 8px;
    border: 1px solid rgba(184, 134, 11, 0.2);
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-num {
    background: rgba(255, 255, 255, 0.8);
    color: #1A202C;
}

.btn-num:hover {
    background: #FFFFFF;
    border-color: var(--gold, #B8860B);
}

.btn-op {
    background: rgba(184, 134, 11, 0.12);
    color: var(--gold, #B8860B);
}

.btn-op:hover {
    background: var(--gold, #B8860B);
    color: #FFFFFF;
}

.btn-util {
    background: rgba(229, 62, 62, 0.12);
    color: #E53E3E;
}

.btn-util:hover {
    background: #E53E3E;
    color: #FFFFFF;
}

.btn-equals {
    grid-column: span 4;
    background: var(--emerald, #0F7B52);
    color: #FFFFFF;
    border: none;
    font-size: 1.25rem !important;
}

.btn-equals:hover {
    background: #128A5B;
    box-shadow: 0 4px 15px rgba(15, 123, 82, 0.3);
}

/* Error Message Box */
.error-box {
    margin-top: 15px;
    padding: 10px;
    background: rgba(229, 62, 62, 0.15);
    border: 1px solid #E53E3E;
    border-radius: 6px;
    color: #C53030;
    font-size: 0.85rem;
    text-align: center;
}

/* Result Summary Container */
.result-container {
    display: none;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px dashed rgba(184, 134, 11, 0.4);
}

.result-container.show {
    display: block;
}

.result-container h4 {
    font-size: 0.95rem;
    color: var(--gold, #B8860B);
    margin-bottom: 12px;
}

.summary-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.85rem;
}

.summary-table th, .summary-table td {
    padding: 8px 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    text-align: left;
}

.summary-table th {
    color: #718096;
    width: 40%;
}

.break-all {
    word-break: break-all;
    font-family: monospace;
    font-weight: 700;
    color: var(--emerald, #0F7B52);
}

.action-buttons {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.btn-action {
    flex: 1;
    padding: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    background: var(--gold, #B8860B);
    color: #FFF;
    cursor: pointer;
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--gold, #B8860B);
    color: var(--gold, #B8860B);
}

.btn-action:hover {
    opacity: 0.9;
}

/* ==========================================================================
   WordPress Insights 10-Article Grid (Glassmorphism Style)
   ========================================================================== */

.wp-section {
    padding: 60px 0;
    position: relative;
    z-index: 2;
}

.wp-loading {
    text-align: center;
    padding: 40px;
    font-size: 1.1rem;
    color: var(--gold, #B8860B);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.wp-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 25px;
}

/* Article Card Box */
.wp-card {
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(184, 134, 11, 0.25);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.wp-card:hover {
    transform: translateY(-6px);
    border-color: var(--emerald, #0F7B52);
    box-shadow: 0 15px 35px rgba(15, 123, 82, 0.15);
}

/* Card Body khusus Tampilan Teks Elegan */
.wp-card-body {
    padding: 24px; /* Menambah sedikit padding agar ruang baca lebih lega */
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.wp-card-date {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--gold, #B8860B);
    letter-spacing: 0.8px;
    margin-bottom: 8px;
}

.wp-card-title {
    font-family: 'Cinzel', serif, sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.4;
    color: #1A202C;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.wp-card-excerpt {
    font-size: 0.88rem;
    color: #4A5568;
    line-height: 1.5;
    margin-bottom: 15px;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.wp-card-footer {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--emerald, #0F7B52);
    display: flex;
    align-items: center;
    gap: 6px;
}

.wp-card:hover .wp-card-footer {
    color: var(--gold, #B8860B);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .wp-posts-grid {
        grid-template-columns: 1fr;
    }
}

/* Fixed Top-Right Positioning */
.header-nav {
    position: fixed;
    top: 24px;
    right: 24px;
    z-index: 10000;
}

.nav-container {
    position: relative;
}

/* Interactive Floating Toggle Button */
.nav-toggle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(184, 134, 11, 0.3); /* Subtle Gold Border */
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-toggle:hover {
    transform: translateY(-2px) scale(1.05);
    border-color: #00A86B; /* Emerald Accent */
    box-shadow: 0 12px 28px rgba(0, 168, 107, 0.2);
}

/* Hamburger Lines Transform to 'X' */
.hamburger, 
.hamburger::before, 
.hamburger::after {
    width: 22px;
    height: 2px;
    background-color: #1A202C;
    display: block;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.hamburger::before, 
.hamburger::after {
    content: '';
    position: absolute;
}

.hamburger::before { top: -7px; }
.hamburger::after { top: 7px; }

.nav-toggle.is-active .hamburger {
    background-color: transparent;
}

.nav-toggle.is-active .hamburger::before {
    transform: rotate(45deg);
    top: 0;
    background-color: #00A86B;
}

.nav-toggle.is-active .hamburger::after {
    transform: rotate(-45deg);
    top: 0;
    background-color: #00A86B;
}

/* Dropdown Menu Panel */
.nav-menu {
    position: absolute;
    top: 62px;
    right: 0;
    width: 220px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(184, 134, 11, 0.2);
    border-radius: 16px;
    padding: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-menu.is-active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.nav-link {
    display: block;
    padding: 10px 16px;
    color: #2D3748;
    font-weight: 500;
    font-size: 0.95rem;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.2s ease;
}

.nav-link:hover {
    background: rgba(0, 168, 107, 0.08);
    color: #00A86B;
    padding-left: 20px;
}

.nav-link.active {
    background: linear-gradient(135deg, rgba(0, 168, 107, 0.12), rgba(184, 134, 11, 0.12));
    color: #00A86B;
    font-weight: 600;
}

/* Fixed Main Navigation Wrapper */
.header-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10000;
    padding: 15px 24px;
    pointer-events: none; /* Mencegah blokir klik di area kosong */
}

.nav-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    pointer-events: auto;
}

/* Logo Styling in Header */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 8px 16px;
    border-radius: 30px;
    border: 1px solid rgba(184, 134, 11, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.nav-logo .logo-text strong {
    display: block;
    color: #1A202C;
    font-size: 0.95rem;
    line-height: 1;
}

.nav-logo .logo-text small {
    font-size: 0.7rem;
    color: #0F7B52;
}

/* Floating Toggle Button */
.nav-toggle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(184, 134, 11, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Proporsional & Scrollable Dropdown Menu */
.nav-menu {
    position: absolute;
    top: 60px;
    right: 0;
    width: 240px;
    /* Mencegah menu melampaui tinggi layar */
    max-height: calc(100vh - 100px); 
    overflow-y: auto; 
    
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(184, 134, 11, 0.25);
    border-radius: 16px;
    padding: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-menu.is-active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

/* Kustom Scrollbar Menu agar Tetap Estetik */
.nav-menu::-webkit-scrollbar {
    width: 4px;
}
.nav-menu::-webkit-scrollbar-thumb {
    background: rgba(184, 134, 11, 0.4);
    border-radius: 4px;
}

/* ==========================================================================
   About Us Section Styling (British English / Luxury Glassmorphism)
   ========================================================================== */

.about-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
    margin-top: 40px;
    align-items: stretch;
}

.about-text-card {
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(184, 134, 11, 0.25);
    border-radius: 20px;
    padding: 35px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.card-badge-gold {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--gold, #B8860B);
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.about-text-card h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.6rem;
    color: #1A202C;
    margin-bottom: 18px;
}

.about-text-card p {
    color: #4A5568;
    line-height: 1.65;
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.ethos-list {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ethos-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.9rem;
    color: #2D3748;
}

.ethos-item i {
    margin-top: 3px;
}

/* Digital Mandate Column */
.about-digital-mandate {
    background: rgba(15, 123, 82, 0.04);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(15, 123, 82, 0.25);
    border-radius: 20px;
    padding: 35px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.mandate-header h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    color: #1A202C;
    margin: 10px 0 8px 0;
}

.mandate-sub {
    font-size: 0.9rem;
    color: #4A5568;
    margin-bottom: 20px;
}

.asset-cards-row {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 20px;
}

.asset-mini-card {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(184, 134, 11, 0.2);
    border-radius: 12px;
    padding: 16px 20px;
    display: flex;
    gap: 18px;
    align-items: flex-start;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.asset-mini-card:hover {
    transform: translateX(4px);
    border-color: #0F7B52;
}

.asset-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    background: #FFFFFF;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.asset-info h4 {
    font-size: 1.05rem;
    color: #1A202C;
    margin-bottom: 2px;
}

.asset-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--gold, #B8860B);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.asset-info p {
    font-size: 0.85rem;
    color: #4A5568;
    line-height: 1.45;
    margin: 0;
}

.mandate-warning-box {
    background: rgba(229, 62, 62, 0.06);
    border: 1px solid rgba(229, 62, 62, 0.2);
    border-radius: 10px;
    padding: 12px 16px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.82rem;
    color: #742A2A;
    line-height: 1.4;
}

.text-red {
    color: #E53E3E;
}

/* Responsive Layout */
@media (max-width: 992px) {
    .about-content-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Live Motivational & Institutional Philosophy Ticker Bar
   ========================================================================== */

.ticker-bar {
    position: relative;
    z-index: 9000; /* Memastikan ticker berada di atas canvas background */
    margin-top: 80px; /* Memberi jarak agar tidak tertutup header navigasi fixed */
    background: rgba(15, 23, 42, 0.92); /* Background gelap transparan */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(184, 134, 11, 0.2);
    border-bottom: 1px solid rgba(184, 134, 11, 0.25);
    overflow: hidden;
    white-space: nowrap;
    padding: 10px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.ticker-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 50px;
    padding-left: 100%; /* Memulai animasi dari luar kanan layar */
    animation: tickerSlide 30s linear infinite;
}

/* Pause animasi saat kursor diarahkan ke teks */
.ticker-bar:hover .ticker-wrapper {
    animation-play-state: paused;
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.82rem;
    font-weight: 700;
    color: #E2E8F0;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.ticker-val {
    color: #F8FAFC;
    font-weight: 500;
}

/* Keyframe Running Text Infinite Loop */
@keyframes tickerSlide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Warna Aksen Teks */
.text-gold {
    color: #B8860B !important;
}

.text-emerald {
    color: #00A86B !important;
}

/* ==========================================================================
   Logo Image Styling (Preloader & Header)
   ========================================================================== */

/* Logo Preloader */
.preloader-logo-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    filter: drop-shadow(0 0 12px rgba(184, 134, 11, 0.4)); /* Efek glow emas halus */
    animation: pulse 2s infinite ease-in-out;
}

/* Logo Header Navigation */
.header-logo-img {
    height: 36px;
    width: auto;
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease;
}

.nav-logo:hover .header-logo-img {
    transform: scale(1.05);
}

/* Penyesuaian animasi pulse pada preloader */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.9;
    }
    50% {
        transform: scale(1.08);
        opacity: 1;
    }
}