/* Landing Page CSS — MSCI-Inspired Bright Professional Theme */


/* ============================================
   UTILITY CLASSES
   ============================================ */

.line-clamp-1 {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}


/* ============================================
   SECTION 1: HIGHLIGHT BERITA
   ============================================ */

#highlight {
    background: #ffffff;
}

#highlight .group:hover img {
    filter: brightness(1.08) saturate(1.1);
}


/* ============================================
   SECTION 2: PROMOSI BANNER
   ============================================ */

#promosi-banner {
    background: #f5f8fc !important;
    border: none !important;
}

#promosi-banner .bg-gradient-to-r {
    position: relative;
    overflow: hidden;
}

.promosiBannerSwiper {
    background: #f8fafc;
}

.promosiBannerSwiper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100% !important;
}

.promosiBannerSwiper .swiper-pagination {
    bottom: 12px !important;
}

.promosiBannerSwiper .swiper-pagination-bullet {
    background: #ffffff !important;
    opacity: 0.6 !important;
    width: 8px !important;
    height: 8px !important;
    border-radius: 50% !important;
    transition: all 0.3s ease !important;
    cursor: pointer;
}

.promosiBannerSwiper .swiper-pagination-bullet-active {
    background: #04a3e8 !important;
    opacity: 1 !important;
    width: 22px !important;
    border-radius: 4px !important;
}


/* ============================================
   SECTION 3: TERKINI GRID
   ============================================ */

#terkini {
    background: #ffffff !important;
}

.terkini-card {
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 1rem;
    padding: 0;
    background: #fff;
    border: none;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.terkini-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.terkini-card img {
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.terkini-card:hover img {
    transform: scale(1.08);
}

.terkini-label {
    padding: 0.6rem 0.75rem;
    background: #31328d;
    transition: background 0.3s ease;
}

.terkini-card:hover .terkini-label {
    background: #23246a;
}



/* ============================================
   SECTION 4: EVENT + EBOOK
   ============================================ */

#event-ebook {
    background: #ffffff !important;
}


/* ============================================
   SECTION 5: KOMODITAS CARDS
   ============================================ */

#top-komoditas {
    background: #f8f9fc !important;
}

.komoditas-card {
    padding: 0;
    border-radius: 1.25rem;
    border: none;
    background: #ffffff;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.komoditas-card::before {
    display: none;
}

.komoditas-card::after {
    display: none;
}

.komoditas-card:hover {
    box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.15);
    transform: translateY(-8px);
}

.komoditas-card:hover::before {
    height: 7px;
}

.komoditas-header {
    padding: 1.25rem 1.25rem 1rem;
    text-align: center;
    position: relative;
}

.komoditas-body {
    padding: 0.5rem 1.25rem 1.25rem;
    flex: 1;
}

.komoditas-header {
    background: #1a2e6e;
}


/* Individual komoditas card color themes — hover states */

.komoditas-card:hover {
    box-shadow: 0 20px 50px -10px rgba(26, 46, 110, 0.18);
}


/* ============================================
   SECTION 6: MORE NEWS
   ============================================ */

#more-news {
    background: #ffffff !important;
}

.more-news-col {
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.more-news-col:hover {
    transform: translateY(-4px);
}


/* ============================================
   ORIGINAL STYLES (PRESERVED)
   ============================================ */


/* Navigation Dropdown */

.nav-dropdown {
    position: relative;
}

.nav-dropdown .dropdown-menu {
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.2s ease;
    border: 1px solid #e5e7eb;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    display: block;
}

.nav-dropdown .dropdown-menu a {
    white-space: nowrap;
}

.nav-dropdown .dropdown-menu a:first-child {
    border-radius: 0.5rem 0.5rem 0 0;
}

.nav-dropdown .dropdown-menu a:last-child {
    border-radius: 0 0 0.5rem 0.5rem;
}


/* Header Scroll Effect */

.header.scrolled {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease-in-out;
}


/* Swiper Hero — Modern Clean Glassmorphism & Atmospheric Layout */

.swiper-hero {
    position: relative;
    width: 100%;
    min-height: 520px;
    height: 65vh;
    max-height: 640px;
    background-color: #081229;
    overflow: hidden;
}

@media (max-width: 1024px) {
    .swiper-hero {
        min-height: 480px;
        height: 55vh;
        max-height: 540px;
    }
}

@media (max-width: 768px) {
    .swiper-hero {
        min-height: 440px;
        height: auto;
    }
}

@media (max-width: 480px) {
    .swiper-hero {
        min-height: 400px;
    }
}

/* Cinematic Background Image & Ken Burns Zoom */
.hero-slide-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1);
    transition: transform 8s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

.swiper-slide-active .hero-slide-bg {
    transform: scale(1.08);
}

/* Thin Overlay for readability */
.hero-overlay-main {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(7, 16, 38, 0.70) 0%, rgba(8, 20, 48, 0.58) 50%, rgba(10, 25, 55, 0.20) 100%);
    pointer-events: none;
}

@media (max-width: 768px) {
    .hero-overlay-main {
        background: linear-gradient(180deg, rgba(7, 16, 38, 0.55) 0%, rgba(7, 16, 38, 0.75) 80%, rgba(7, 16, 38, 0.85) 100%);
    }
}

.hero-overlay-bottom {
    position: absolute;
    inset-x: 0;
    bottom: 0;
    height: 90px;
    background: linear-gradient(to top, rgba(15, 27, 77, 0.95) 0%, transparent 100%);
    pointer-events: none;
}

/* Ambient Backlight Lighting */
.hero-glow-blue {
    background: radial-gradient(circle, rgba(37, 99, 235, 0.16) 0%, transparent 70%);
}

.hero-glow-teal {
    background: radial-gradient(circle, rgba(0, 212, 170, 0.12) 0%, transparent 70%);
}

/* Staggered Slide Content Animations */
@keyframes heroSlideFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.swiper-slide .hero-badge,
.swiper-slide .hero-title,
.swiper-slide .hero-actions {
    opacity: 0;
    transform: translateY(20px);
}

.swiper-slide-active .hero-badge {
    animation: heroSlideFadeIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards;
}

.swiper-slide-active .hero-title {
    animation: heroSlideFadeIn 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.22s forwards;
}

.swiper-slide-active .hero-actions {
    animation: heroSlideFadeIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.35s forwards;
}

/* Hero Action Button Styling */
.hero-actions a {
    background-color: #31328d !important;
    border: none !important;
    color: #ffffff !important;
    text-shadow: none !important;
    transition: all 0.3s ease !important;
}

.hero-actions a span,
.hero-actions a i {
    color: #ffffff !important;
    text-shadow: none !important;
}

.hero-actions a:hover,
.hero-actions a:focus,
.hero-actions a:active {
    background-color: #7d7fb8 !important;
    border: none !important;
    color: #ffffff !important;
    text-shadow: none !important;
}

.hero-actions a:hover span,
.hero-actions a:hover i {
    color: #ffffff !important;
    text-shadow: none !important;
}

/* Custom Swiper Controls Bar (deprecated - replaced by dot pagination) */
.hero-controls-bar {
    display: none;
}

/* Hero Dot Pagination — centered, Bursa Ikan brand colors */
.hero-dot-pagination {
    pointer-events: none;
}

.hero-dot-pagination .swiper-pagination-bullet {
    background: #b8cbe6 !important;
    opacity: 0.6 !important;
    width: 8px !important;
    height: 8px !important;
    border-radius: 50% !important;
    margin: 0 3px !important;
    pointer-events: all;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
    cursor: pointer;
}

.hero-dot-pagination .swiper-pagination-bullet-active {
    background: #04a3e8 !important;
    opacity: 1 !important;
    width: 24px !important;
    border-radius: 4px !important;
    box-shadow: none !important;
}


/* Preloader */

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease-out;
    opacity: 1;
}


/* Reveal Animation */

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s ease-out, transform 0.8s ease-out;
    will-change: opacity, transform;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}


/* Unit Card Hover Effect */

.unit-card {
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.unit-card::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(59, 130, 246, 0.85);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    font-weight: bold;
    letter-spacing: 1px;
    transform: scale(1.2);
}

.unit-card:hover::after {
    opacity: 1;
    transform: scale(1);
}


/* News Card Styles */

.news-card {
    border-left: 4px solid transparent;
}


/* News card hover removed */

.news-card .sentiment-badge {
    font-size: 0.75rem;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-weight: 600;
}

.news-card .sentiment-positive {
    background-color: #dcfce7;
    color: #166534;
}

.news-card .sentiment-negative {
    background-color: #fee2e2;
    color: #991b1b;
}

.news-card .sentiment-neutral {
    background-color: #f3f4f6;
    color: #4b5563;
}


/* News skeleton loading */

.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
}

@keyframes skeleton-loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}


/* Mobile Menu */

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    padding: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    flex-direction: column;
    gap: 1rem;
}

.mobile-menu.active {
    display: flex;
}


/* Dropdown Menu */

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: white;
    min-width: 220px;
    border-radius: 0.75rem;
    box-shadow: 0 10px 40px -5px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
    padding: 0.5rem 0;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    padding: 0.75rem 1.25rem;
    color: #374151;
    transition: all 0.2s ease;
    font-size: 0.9rem;
}

.dropdown-menu a:hover {
    background-color: #f0f7ff;
    color: #3b82f6;
    padding-left: 1.5rem;
}

.dropdown-menu a i {
    width: 20px;
    text-align: center;
}


/* Mobile Dropdown */

.mobile-dropdown {
    border-bottom: 1px solid #f3f4f6;
    padding-bottom: 0.75rem;
}

.mobile-dropdown-title {
    padding: 0.5rem 0;
}

.mobile-dropdown-title i {
    transition: transform 0.3s ease;
}

.mobile-dropdown-title.active i {
    transform: rotate(180deg);
}

.mobile-dropdown-content {
    border-left: 3px solid;
    border-image: linear-gradient(180deg, #31328d, #04a3e8) 1;
    margin-left: 0.5rem;
}

.mobile-dropdown-content a {
    padding: 0.5rem 0;
    display: block;
}


/* PERBAIKAN: Marquee/Ticker Animation — Dashboard-style with category rotation */

@keyframes marquee-scroll {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-33.333%, 0, 0);
    }
}

.ticker-lg {
    position: relative;
    overflow: hidden;
    width: 100%;
    display: flex;
    align-items: center;
    font-size: 0.75rem;
    line-height: 1.25;
    padding: 0;
}


/* Shine animation overlay — same as dashboard */

.ticker-lg::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.08) 50%, transparent 100%);
    animation: tickerShine 3s linear infinite;
    z-index: 1;
    pointer-events: none;
}

@keyframes tickerShine {
    0% {
        left: -100%;
    }
    100% {
        left: 200%;
    }
}


/* Fixed category title on left */

.ticker-category-title {
    z-index: 5;
    position: relative;
}


/* Category title and data transition for fade effect */

.ticker-category-title span,
#priceTicker {
    transition: opacity 0.15s ease;
}


/* Scrolling data area */

.ticker-data-scroll {
    position: relative;
    overflow: hidden;
}

.animate-marquee {
    animation: marquee-scroll 50s linear infinite;
    display: inline-flex;
    gap: 0;
    padding: 0;
    will-change: transform;
    font-weight: 500;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}


/* Pause on hover */

.ticker-lg:hover .animate-marquee {
    animation-play-state: paused;
}


/* Individual ticker items */

.animate-marquee span {
    flex-shrink: 0;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    transition: all 0.3s ease;
}


/* Hover glow effect on individual items */

.animate-marquee span:hover {
    color: #a5d8ff;
    text-shadow: 0 0 10px rgba(165, 216, 255, 0.6);
}


/* Smooth rendering */

.ticker-lg * {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}


/* Loading Spinner */

.ticker-loading-spinner {
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: ticker-spin 1s linear infinite;
}

@keyframes ticker-spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


/* Responsive ticker */

@media (max-width: 768px) {
    .ticker-lg {
        font-size: 0.75rem;
    }
    .ticker-category-title {
        display: none;
    }
}


/* ============================================
   SIDEBAR ENHANCEMENTS (undercurrent style)
   ============================================ */


/* Sidebar widget with colored header bar */

.sidebar-widget {
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
    background: #fff;
    transition: all 0.35s ease;
}

.sidebar-widget:hover {
    box-shadow: 0 12px 40px rgba(51, 102, 255, 0.12);
    transform: translateY(-3px);
}

.sidebar-widget-header {
    background: #31328d;
    color: #fff;
    padding: 0.85rem 1.2rem;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    display: flex;
    align-items: center;
    position: relative;
}

.sidebar-widget-header::after {
    display: none;
}

.sidebar-widget-body {
    padding: 1.1rem 1.2rem;
    background: #fff;
}


/* News link list item — undercurrent style bullet */

.news-link-item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.55rem 0;
    border-bottom: 1px solid #f1f5f9;
    transition: background 0.15s;
    text-decoration: none;
}

.news-link-item:last-child {
    border-bottom: none;
}

.news-link-item:hover {
    background: linear-gradient(90deg, #eff6ff 0%, #f8fafc 100%);
    padding-left: 0.35rem;
}

.news-link-item .nl-bullet {
    flex-shrink: 0;
    margin-top: 2px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: linear-gradient(135deg, #31328d, #04a3e8);
}

.news-link-item .nl-arrow {
    flex-shrink: 0;
    color: #3b82f6;
    font-size: 0.7rem;
    margin-top: 1px;
    transition: transform 0.2s ease, color 0.2s ease;
}

.news-link-item:hover .nl-arrow {
    transform: translateX(2px);
    color: #6366f1;
}

.news-link-item .nl-text {
    font-size: 0.72rem;
    color: #374151;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.45;
    transition: color 0.2s;
}

.news-link-item:hover .nl-text {
    color: #2563eb;
}


/* Headline list (section1 left column) */

.headline-list-item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.55rem 0.5rem;
    border-bottom: 1px solid #f1f5f9;
    text-decoration: none;
    transition: background 0.15s;
}

.headline-list-item:hover {
    background: #f0f7ff;
}

.headline-list-item .hl-num {
    flex-shrink: 0;
    font-size: 0.65rem;
    font-weight: 800;
    color: #94a3b8;
    min-width: 1.1rem;
    margin-top: 1px;
}

.headline-list-item .hl-text {
    font-size: 0.72rem;
    color: #374151;
    line-clamp: 1;
    -webkit-line-clamp: 1;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.15s;
}

.headline-list-item:hover .hl-text {
    color: #3b82f6;
}


/* Section header divider — subtle thin line */

.section-divider {
    flex: 1;
    height: 1px;
    background: #e2e8f0;
}


/* More-news column styling */

.more-news-col {
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 0.75rem;
    overflow: hidden;
    background: #fff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.more-news-col:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}


/* ============================================
   MSCI-INSPIRED ACCENT CARD STYLES
   ============================================ */


/* Secondary article card with colored left accent */

.article-accent-card {
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.35s ease;
    border: none;
    position: relative;
}

.article-accent-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.article-accent-card .accent-bar {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
}


/* Sidebar widget enhancements */

.sidebar-widget {
    border: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}


/* Event card enhancements - vivid inner glow */

.event-card-vivid {
    border: none;
}


/* Komoditas article link bullet */

.komoditas-art-link {
    display: flex;
    align-items: flex-start;
    gap: 0.45rem;
    padding: 0.45rem 0.5rem;
    border-bottom: 1px solid #f1f5f9;
    text-decoration: none;
    border-radius: 0.375rem;
    transition: background 0.15s;
}

.komoditas-art-link:last-child {
    border-bottom: none;
}

.komoditas-art-link:hover {
    background: #eff6ff;
}

.komoditas-art-link .ka-dot {
    flex-shrink: 0;
    margin-top: 3px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #3b82f6;
}

.komoditas-art-link .ka-text {
    font-size: 0.7rem;
    color: #374151;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
    transition: color 0.15s;
}

.komoditas-art-link:hover .ka-text {
    color: #3b82f6;
}


/* ============================================
   VIBRANT ACCENT ENHANCEMENTS
   ============================================ */


/* Featured article hover glow */

#highlight>div>div>div>a.block.group .relative.overflow-hidden {
    box-shadow: 0 4px 24px rgba(37, 99, 235, 0.12);
    transition: box-shadow 0.4s ease, transform 0.4s ease;
    border-radius: 1rem;
}

#highlight>div>div>div>a.block.group:hover .relative.overflow-hidden {
    box-shadow: 0 16px 50px rgba(37, 99, 235, 0.2);
}


/* Alert bar - solid gradient override */

.auto-hide-alert {
    border-bottom: none !important;
}


/* Event cards gradient top border */

.border-gradient-blue {
    border-image: linear-gradient(90deg, #2563eb, #7c3aed) 1;
}


/* MSCI-Style Event Cards - Bold Overlay */

.event-card-vivid {
    border-radius: 1.25rem;
}

.event-card-vivid::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 1.25rem;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
    pointer-events: none;
    z-index: 5;
}

.event-card-vivid:hover {
    box-shadow: 0 25px 60px -12px rgba(51, 102, 255, 0.25), 0 8px 20px rgba(0, 0, 0, 0.06);
}


/* Section label accent dots - removed */

#terkini h3::before,
#event-ebook h3::before,
#more-news h3::before,
#highlight h3::before {
    content: none !important;
    display: none !important;
}


/* Infografis card enhance */

#terkini aside a {
    box-shadow: 0 2px 12px rgba(49, 50, 141, 0.06);
    border-color: rgba(184, 203, 230, 0.5) !important;
}

#terkini aside a:hover {
    box-shadow: 0 10px 30px rgba(4, 163, 232, 0.15);
}


/* Ebook card enhance */

#event-ebook aside a {
    box-shadow: 0 2px 12px rgba(49, 50, 141, 0.06);
    border-color: rgba(184, 203, 230, 0.5) !important;
}

#event-ebook aside a:hover {
    box-shadow: 0 10px 30px rgba(4, 163, 232, 0.15);
}


/* Section heading solid navy */

#top-komoditas h3 {
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: #31328d !important;
    background-clip: unset !important;
    color: #31328d !important;
}


/* Smooth color transitions for all interactive elements */

a,
button {
    transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}


/* Scrollbar refresh */

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #31328d, #04a3e8) !important;
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #252670, #0388c2) !important;
}


/* Header scroll effect enhanced */

.header.scrolled {
    box-shadow: 0 4px 20px rgba(51, 102, 255, 0.08);
    border-bottom-color: rgba(51, 102, 255, 0.08);
}


/* Promosi banner enhanced */

.promosiBannerSwiper {
    background: transparent;
    border-radius: 1rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}
