/* Custom premium styles for Vantage Indonesia (MIFX & Finex Inspired) */

:root {
    --primary-color: #034854;
    --primary-dark: #012228;
    --accent-color: #e35728;
    --accent-hover: #c84318;
    --bg-light-teal: #f4f8f9;
    --text-muted: #62697a;
    --border-color: rgba(3, 72, 84, 0.08);
}

/* 1. Base Styles & Typography */
body {
    font-family: 'Outfit', sans-serif;
    color: #2b3e42;
    background-color: #ffffff;
}

/* 2. Glassmorphism & Header */
.glass-nav {
    background: rgba(255, 255, 255, 0.9) !important;
    backdrop-filter: blur(15px) !important;
    -webkit-backdrop-filter: blur(15px) !important;
    border-bottom: 1px solid rgba(3, 72, 84, 0.05) !important;
    transition: all 0.3s ease;
}

/* 3. Hero Section (Premium Dark Theme - MIFX/Finex Style) */
.hero-dark-premium {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
    padding: 6rem 1.5rem;
}
.hero-dark-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 80% 20%, rgba(227, 87, 40, 0.15) 0%, transparent 50%),
                      linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 100% 100%, 20px 20px, 20px 20px;
}

.text-gradient-glow {
    background: linear-gradient(90deg, #ffffff 0%, #d8edf1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.badge-neon {
    background: rgba(227, 87, 40, 0.12);
    color: var(--accent-color);
    border: 1px solid rgba(227, 87, 40, 0.25);
    font-weight: 700;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    display: inline-block;
    letter-spacing: 0.05em;
}

/* 4. Floating Animated Cards */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0px); }
}

.animate-float {
    animation: float 5s ease-in-out infinite;
}

.glass-card {
    background: rgba(255, 255, 255, 0.08) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    color: #ffffff !important;
}

/* 5. Buttons Glow & Animations */
.btn-orange {
    background-color: var(--accent-color) !important;
    border: none !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.btn-orange:hover {
    background-color: var(--accent-hover) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 10px 25px rgba(227, 87, 40, 0.45) !important;
}

.btn-teal-outline {
    border: 2px solid var(--primary-color) !important;
    color: var(--primary-color) !important;
    font-weight: 700 !important;
    background: transparent !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.btn-teal-outline:hover {
    background-color: var(--primary-color) !important;
    color: #ffffff !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 10px 25px rgba(3, 72, 84, 0.15) !important;
}

.btn-white-outline {
    border: 2px solid rgba(255, 255, 255, 0.4) !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    background: transparent !important;
    transition: all 0.3s ease !important;
}
.btn-white-outline:hover {
    border-color: #ffffff !important;
    background-color: #ffffff !important;
    color: var(--primary-dark) !important;
    transform: translateY(-2px) !important;
}

/* 6. Card Premium Glow */
.card-premium-glow {
    background-color: #ffffff;
    border: 1px solid var(--border-color) !important;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border-radius: 16px !important;
}
.card-premium-glow:hover {
    transform: translateY(-6px);
    border-color: rgba(227, 87, 40, 0.25) !important;
    box-shadow: 0 20px 40px rgba(3, 72, 84, 0.06);
}

/* 7. Regulator Logos (Finex Grayscale Hover) */
.logo-card-regulator {
    border: 1px solid var(--border-color) !important;
    background-color: #ffffff;
    border-radius: 12px;
    padding: 1.25rem;
    transition: all 0.4s ease;
    height: 100%;
}
.logo-card-regulator img {
    filter: grayscale(100%);
    opacity: 0.65;
    transition: all 0.4s ease;
}
.logo-card-regulator:hover {
    border-color: rgba(227, 87, 40, 0.25) !important;
    transform: scale(1.03);
    box-shadow: 0 8px 20px rgba(3, 72, 84, 0.05);
}
.logo-card-regulator:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* 8. Glowing Chart Line */
.glow-chart-line {
    filter: drop-shadow(0px 4px 8px rgba(227, 87, 40, 0.45));
}

/* 9. Scrollbar Custom */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: #f4f8f9;
}
::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-color);
}

/* 10. Scroll Fade-in animation */
.fade-in-section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.fade-in-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}
