/* =========================================
   1. RESET & VARIABLES
   ========================================= */
:root {
    /* Warna Utama */
    --primary: #FF6A00;        /* Orange Alibaba */
    --primary-dark: #E55E00;
    --accent: #00D4FF;         /* Cyan Teknologi */
    --text-dark: #1F2937;
    --text-white: #FFFFFF;
    --bg-surface: #F6F9FC;     /* Abu muda bersih */
    
    /* Ukuran & Efek */
    --radius: 16px;
    --shadow-soft: 0 10px 40px rgba(0,0,0,0.05);
    --shadow-hero: 0 20px 50px rgba(0,0,0,0.3);
}

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

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

a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }
img { max-width: 100%; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }


/* =========================================
   2. NAVBAR STYLES (DESKTOP & MOBILE)
   ========================================= */

/* Navbar Utama */
.alibaba-nav {
    position: fixed; top: 0; left: 0; width: 100%;
    z-index: 1000;
    padding: 25px 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(to bottom, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
    border-bottom: 1px solid transparent;
}

.alibaba-nav.scrolled {
    padding: 15px 0;
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

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

/* Logo */
.brand-logo-white { 
    display: flex; align-items: center; gap: 12px;
    font-size: 26px; font-weight: 800; color: white; letter-spacing: -0.5px;
}
.nav-logo-img { height: 45px; width: auto; object-fit: contain; }

/* Desktop Menu */
.nav-links-white { display: flex; align-items: center; }
.nav-links-white a { 
    color: rgba(255,255,255,0.9); font-size: 15px; font-weight: 600; margin-left: 30px; 
}
.nav-links-white a:hover { color: var(--accent); }

.btn-join-white {
    padding: 10px 24px; background: var(--accent); color: #020617 !important; 
    border-radius: 50px; font-weight: 700 !important;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.4);
}
.btn-join-white:hover { background: white; transform: translateY(-2px); }

/* Mobile Toggle Styles */
@media (max-width: 992px) {
    .desktop-only, .nav-links-white { display: none !important; }
    .mobile-toggle { display: block; color: white; font-size: 28px; cursor: pointer; }
    .nav-logo-img { height: 35px; } .brand-logo-white { font-size: 22px; }
}
@media (min-width: 993px) { .mobile-toggle, .mobile-sidebar { display: none; } }

/* Sidebar Drawer */
.mobile-sidebar {
    position: fixed; top: 0; right: -300px; width: 280px; height: 100vh;
    background: rgba(15, 23, 42, 0.95); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    z-index: 2000; transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -10px 0 30px rgba(0,0,0,0.5); border-left: 1px solid rgba(255,255,255,0.1);
}
.mobile-sidebar.active { right: 0; }

.sidebar-header {
    padding: 20px; display: flex; justify-content: space-between; align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.close-sidebar { color: white; font-size: 28px; cursor: pointer; }
.sidebar-content { padding: 20px; display: flex; flex-direction: column; gap: 15px; }
.sidebar-link {
    color: rgba(255,255,255,0.8); font-size: 16px; font-weight: 500;
    display: flex; align-items: center; gap: 15px; padding: 10px 0; transition: 0.3s;
}
.sidebar-link:hover { color: var(--accent); transform: translateX(5px); }
.btn-sidebar-join {
    background: var(--primary); color: white; text-align: center;
    padding: 12px; border-radius: 50px; font-weight: 700; margin-top: 10px;
}


/* =========================================
   3. HERO SECTION & UI
   ========================================= */
.alibaba-hero {
    position: relative; min-height: 650px; height: auto; padding-bottom: 80px;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    background-color: #020617; overflow: visible; /* Penting untuk dropdown */
}
.hero-bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover; background-position: center; z-index: 1;
    animation: zoomBg 20s infinite alternate;
}
@keyframes zoomBg { from { transform: scale(1); } to { transform: scale(1.1); } }
.hero-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.65); z-index: 2;
}
.hero-content-center {
    position: relative; z-index: 10; text-align: center; color: white;
    max-width: 850px; width: 100%; margin-top: 80px; 
}

/* Video Button */
.video-trigger {
    display: inline-flex; align-items: center; gap: 10px;
    background: rgba(255,255,255,0.1); backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3); padding: 8px 20px; border-radius: 50px;
    color: white; font-size: 15px; font-weight: 600; margin-bottom: 25px; cursor: pointer; transition: 0.3s;
}
.video-trigger i { font-size: 20px; color: var(--primary); } 
.video-trigger:hover { background: rgba(255,255,255,0.2); }

.alibaba-hero h1 {
    font-size: 48px; font-weight: 800; line-height: 1.2; margin-bottom: 40px; text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

/* Search Bar */
.big-search-box {
    background: white; padding: 6px; border-radius: 60px; 
    display: flex; align-items: center;
    box-shadow: var(--shadow-hero); max-width: 750px; margin: 0 auto;
    border: 4px solid rgba(255,255,255,0.2);
}
.search-input-wrapper {
    flex: 1; display: flex; align-items: center; padding-left: 25px; border-right: 1px solid #eee;
}
.search-input-wrapper input {
    border: none; width: 100%; height: 50px; font-size: 16px; color: #333; background: transparent;
}
.camera-icon { font-size: 22px; color: #94A3B8; margin-right: 20px; cursor: pointer; transition: 0.3s; }
.camera-icon:hover { color: var(--primary); }
.btn-search-big {
    background: var(--primary); color: white; border: none; padding: 14px 40px; border-radius: 50px;
    font-size: 16px; font-weight: 700; cursor: pointer; display: flex; align-items: center; gap: 10px; transition: 0.3s; margin-left: 5px;
}
.btn-search-big:hover { background: var(--primary-dark); transform: scale(1.05); }

@media (max-width: 992px) {
    .alibaba-hero { height: auto; padding: 100px 0 60px; }
    .alibaba-hero h1 { font-size: 32px; margin-bottom: 30px; }
    .big-search-box { flex-direction: column; background: transparent; box-shadow: none; border: none; padding: 0; }
    .search-input-wrapper { background: white; width: 100%; border-radius: 50px; margin-bottom: 15px; border: none; padding: 5px 20px; }
    .btn-search-big { width: 100%; justify-content: center; }
}


/* =========================================
   4. MEGA MENU (CATEGORY NAV)
   ========================================= */
.category-nav-container {
    margin-top: 40px; width: 100%; max-width: 1280px; position: relative; z-index: 500; padding: 0 20px;
}
.cat-menu {
    display: flex; justify-content: center; flex-wrap: wrap; gap: 8px; list-style: none; padding: 0;
}
.cat-item { position: relative; }

/* Tombol Kategori */
.cat-item > a {
    display: flex; align-items: center; gap: 6px;
    color: rgba(255,255,255,0.95); font-size: 14px; font-weight: 500;
    padding: 10px 18px; border-radius: 50px; transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1); background: rgba(255, 255, 255, 0.05);
    white-space: nowrap;
}
.cat-item > a i { font-size: 12px; opacity: 0.6; transition: 0.3s; margin-top: 2px; }

.cat-item:hover > a {
    background: rgba(255, 255, 255, 0.2); border-color: rgba(255, 255, 255, 0.4);
    color: white; backdrop-filter: blur(8px); transform: translateY(-2px); box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.cat-item:hover > a i { transform: rotate(180deg); opacity: 1; }

/* Dropdown Menu Desktop */
.dropdown-menu {
    position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(15px);
    background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px);
    min-width: 200px; padding: 15px; border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.25); border: 1px solid rgba(255,255,255,0.5);
    opacity: 0; visibility: hidden; transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex; flex-direction: column; gap: 5px; z-index: 9999; margin-top: 10px;
}
.dropdown-menu::before {
    content: ''; position: absolute; top: -8px; left: 50%; transform: translateX(-50%);
    border-left: 8px solid transparent; border-right: 8px solid transparent; border-bottom: 8px solid rgba(255,255,255,0.95);
}
.cat-item:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }

/* Isi Dropdown (Link & Image) */
.dropdown-menu a {
    display: flex !important; align-items: center; justify-content: flex-start;
    padding: 10px 15px; color: #1F2937; font-size: 14px; font-weight: 500;
    border-radius: 8px; text-decoration: none; background: transparent; border: none;
}
.dropdown-menu a:hover { background: #EFF6FF; color: var(--primary); transform: translateX(5px); }

/* Style Gambar Icon */
.dropdown-menu a img {
    width: 24px; height: 24px; object-fit: contain; margin-right: 12px; border-radius: 4px;
    transition: transform 0.3s; background-color: #f0f0f0; /* Placeholder warna abu jika gambar hilang */
}
.dropdown-menu a:hover img { transform: scale(1.2); }

/* --- MOBILE DROPDOWN (BOTTOM SHEET FIXED) --- */
.mobile-cat-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.7); z-index: 9998; /* Layer 2 */
    opacity: 0; visibility: hidden; transition: all 0.3s ease; pointer-events: none; backdrop-filter: blur(2px);
}
.mobile-cat-overlay.active { opacity: 1; visibility: visible; pointer-events: all; }

@media (max-width: 992px) {
    .category-nav-container { padding: 0 10px; position: relative; z-index: 10000 !important; /* Fix ketutup overlay */ }
    
    .cat-menu {
        justify-content: flex-start; flex-wrap: nowrap; overflow-x: auto; padding-bottom: 10px;
        -ms-overflow-style: none; scrollbar-width: none;
    }
    .cat-menu::-webkit-scrollbar { display: none; }
    .cat-item { flex: 0 0 auto; } .cat-item > a i { display: none; }

    /* Fix Dropdown Mobile */
    .dropdown-menu {
        display: block !important; position: fixed !important; bottom: 0 !important; left: 0 !important; right: 0 !important; top: auto !important;
        width: 100% !important; box-sizing: border-box !important; margin: 0 !important;
        transform: translateY(120%) !important; 
        transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1) !important;
        background: #ffffff !important; border-radius: 20px 20px 0 0 !important; padding: 25px 20px !important;
        box-shadow: 0 -10px 50px rgba(0,0,0,0.3) !important; border: none !important;
        z-index: 99999 !important; /* Paling atas */
        flex-direction: column; max-height: 70vh; overflow-y: auto;
    }
    .cat-item.active .dropdown-menu { transform: translateY(0) !important; }
    
    .dropdown-menu::before { display: none; } /* Hapus segitiga di mobile */
    .dropdown-menu::after { /* Handle Garis iOS */
        content: ''; display: block; width: 40px; height: 5px; background: #e0e0e0; border-radius: 10px; margin: -10px auto 20px auto; 
    }
    .dropdown-menu a {
        padding: 16px 5px !important; border-bottom: 1px solid #f0f0f0; font-size: 15px !important;
    }
}


/* =========================================
   5. AURORA WINDOW (FLOATING VIDEO)
   ========================================= */
.os-window-container {
    position: fixed; top: 100px; left: 50px;
    width: 640px; height: 400px; min-width: 320px; min-height: 240px;
    z-index: 9999; border-radius: 16px; resize: both; overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3); transition: opacity 0.3s, transform 0.3s; opacity: 1; transform: scale(1);
}
.os-window-container.hidden { opacity: 0; pointer-events: none; transform: scale(0.8) translateY(20px); }
.os-window-container.maximized { top: 10px !important; left: 10px !important; width: calc(100% - 20px) !important; height: calc(100% - 20px) !important; resize: none; }

@keyframes rotateAurora { 100% { transform: rotate(360deg); } }
.aurora-border {
    position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; z-index: -1;
    background: conic-gradient(from 0deg, transparent 0%, #00D4FF 10%, #FF6A00 20%, #9C27B0 30%, transparent 50%, transparent 100%);
    animation: rotateAurora 6s linear infinite; opacity: 0.6; filter: blur(10px);
}
.glass-morphism {
    position: absolute; top: 2px; left: 2px; right: 2px; bottom: 2px;
    background: rgba(15, 23, 42, 0.65); backdrop-filter: blur(25px); -webkit-backdrop-filter: blur(25px);
    border-radius: 14px; border: 1px solid rgba(255,255,255,0.1); display: flex; flex-direction: column; overflow: hidden;
}
.window-titlebar {
    padding: 12px 15px; background: rgba(255,255,255,0.05); border-bottom: 1px solid rgba(255,255,255,0.1);
    display: flex; justify-content: space-between; align-items: center; cursor: grab; user-select: none;
}
.window-titlebar:active { cursor: grabbing; }
.window-title { display: flex; align-items: center; gap: 8px; color: white; font-weight: 600; font-size: 14px; }
.window-controls { display: flex; gap: 8px; }
.win-btn {
    width: 24px; height: 24px; border-radius: 50%; border: none; display: flex; align-items: center; justify-content: center;
    color: rgba(0,0,0,0.6); cursor: pointer; transition: 0.2s; font-size: 14px;
}
.btn-close:hover { background: #FF5F56; color: white; } .btn-min:hover { background: #FFBD2E; color: white; } .btn-max:hover { background: #27C93F; color: white; }
.video-wrapper { flex: 1; overflow: hidden; position: relative; background: black; }
.os-window-container::-webkit-resizer { display: none; }
.resize-handle {
    position: absolute; bottom: 0; right: 0; width: 20px; height: 20px; cursor: se-resize;
    background: linear-gradient(135deg, transparent 50%, rgba(255,255,255,0.4) 50%); pointer-events: none;
}
.docked-item {
    position: fixed; bottom: 20px; right: 20px; background: rgba(15, 23, 42, 0.8); backdrop-filter: blur(10px);
    padding: 10px 20px; border-radius: 30px; border: 1px solid rgba(255,255,255,0.2);
    color: white; display: flex; align-items: center; gap: 10px; font-weight: 600; cursor: pointer; z-index: 9998; box-shadow: 0 5px 20px rgba(0,0,0,0.2); transition: 0.3s;
}
.docked-item:hover { background: var(--accent); color: #020617; transform: translateY(-5px); }
.docked-item.hidden { display: none; }
.docked-item i { color: var(--accent); } .docked-item:hover i { color: #020617; }
@media (max-width: 768px) {
    .os-window-container { width: 400px !important; height: 300px; aspect-ratio: auto; top: 10% !important; left: 3% !important; min-width: unset; min-height: unset; }
    .docked-item { bottom: 80px; right: 10px; padding: 8px 15px; font-size: 12px; } .win-btn { width: 32px; height: 32px; font-size: 16px; }
}


/* =========================================
   6. CARDS & MISC
   ========================================= */
.section-container { margin: 80px auto; padding-bottom: 50px; }
.section-title { font-size: 32px; font-weight: 800; text-align: center; margin-bottom: 50px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.info-card {
    background: white; padding: 40px 30px; border-radius: 24px; text-align: center; transition: 0.4s; border: 1px solid #F1F5F9; box-shadow: var(--shadow-soft); position: relative; overflow: hidden;
}
.info-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.1); border-color: transparent; }
.info-card::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 5px; background: var(--primary); transform: scaleX(0); transition: 0.3s; transform-origin: center;
}
.info-card:hover::before { transform: scaleX(1); }
.icon-box { width: 80px; height: 80px; margin: 0 auto 25px; background: #FFF7ED; border-radius: 20px; display: flex; align-items: center; justify-content: center; font-size: 36px; color: var(--primary); }
.info-card h3 { font-size: 20px; margin-bottom: 15px; font-weight: 700; }
.info-card p { color: #64748B; font-size: 15px; }
@media (max-width: 992px) { .grid-3 { grid-template-columns: 1fr; } }

/* --- SECTION TRUST & SAFETY (NEW) --- */
    .trust-section {
        position: relative;
        padding: 100px 0;
        min-height: 600px;
        display: flex;
        align-items: center;
        background-color: #0f172a;
        overflow: hidden;
    }

    /* Background Image Parallax */
    .trust-bg {
        position: absolute; top: 0; left: 0; width: 100%; height: 100%;
        background-image: url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?q=80&w=2070&auto=format&fit=crop'); /* Warehouse Professional */
        background-size: cover;
        background-position: center;
        opacity: 0.4; /* Gelapkan gambar agar teks terbaca */
        z-index: 1;
        transition: transform 0.5s;
    }
    
    .trust-section:hover .trust-bg {
        transform: scale(1.02); /* Efek zoom dikit saat mouse masuk */
    }

    .trust-content {
        position: relative;
        z-index: 10;
        width: 100%;
    }

    .trust-header {
        max-width: 600px;
        margin-bottom: 50px;
    }
    .trust-header h2 {
        font-size: 36px;
        font-weight: 800;
        color: white;
        line-height: 1.2;
        margin-bottom: 15px;
    }
    .trust-header p {
        font-size: 16px;
        color: rgba(255,255,255,0.8);
    }

    /* Kartu Kaca (Glassmorphism) */
    .trust-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .glass-card {
        background: rgba(255, 255, 255, 0.05); /* Transparan */
        backdrop-filter: blur(20px); /* Efek Blur Kaca */
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        padding: 40px;
        border-radius: 24px;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
    }

    /* Efek Hover Keren */
    .glass-card:hover {
        background: rgba(255, 255, 255, 0.1);
        border-color: rgba(255, 255, 255, 0.3);
        transform: translateY(-10px);
        box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    }
    
    .glass-card::before {
        content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 100%;
        background: var(--primary); opacity: 0; transition: 0.3s;
    }
    .glass-card:hover::before { opacity: 1; }

    .card-icon-title {
        display: flex; align-items: center; gap: 15px; margin-bottom: 20px;
    }
    .card-icon-title i {
        font-size: 32px; color: var(--accent);
    }
    .card-icon-title h3 {
        font-size: 24px; font-weight: 700; color: white;
    }

    .glass-card p {
        color: rgba(255,255,255,0.7);
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 30px;
        min-height: 72px; /* Supaya tinggi kartu rata */
    }

    /* Tombol Video & Link */
    .action-row {
        display: flex; align-items: center; gap: 20px;
    }

    .btn-watch {
        display: inline-flex; align-items: center; gap: 8px;
        padding: 10px 20px;
        border: 1px solid rgba(255,255,255,0.3);
        border-radius: 50px;
        color: white; font-size: 14px; font-weight: 600;
        transition: 0.3s;
        cursor: pointer;
        background: transparent;
    }
    .btn-watch:hover {
        background: white; color: #0f172a; border-color: white;
    }

    .link-learn {
        color: white; font-size: 14px; font-weight: 600; text-decoration: underline;
        text-underline-offset: 4px; transition: 0.3s;
    }
    .link-learn:hover { color: var(--accent); }

    /* Responsive */
    @media (max-width: 992px) {
        .trust-grid { grid-template-columns: 1fr; }
        .trust-header h2 { font-size: 28px; }
        .trust-section { padding: 60px 0; }
    }
    
    /* --- SECTION EMPOWERMENT (BENTO GRID) --- */
    .empower-section {
        padding: 80px 0 100px;
        background-color: #F8FAFC; /* Light Gray Background */
    }

    .empower-header {
        text-align: center;
        max-width: 800px;
        margin: 0 auto 60px;
    }
    .empower-header h2 {
        font-size: 36px;
        font-weight: 800;
        color: #1e293b;
        margin-bottom: 20px;
        line-height: 1.3;
    }
    .empower-header p {
        font-size: 16px;
        color: #64748b;
        line-height: 1.6;
    }

    /* BENTO GRID LAYOUT */
    .bento-grid {
        display: grid;
        grid-template-columns: 1.2fr 1.5fr; /* Kiri lebih kecil dikit dari kanan, atau bisa 1:1 */
        gap: 24px;
        height: 600px; /* Tinggi total grid */
    }

    .bento-card {
        position: relative;
        border-radius: 24px;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        justify-content: flex-end; /* Teks di bawah */
        padding: 40px;
        transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        cursor: pointer;
    }

    /* Hover Effect: Zoom Background */
    .bento-card:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
    .bento-card:hover .bento-bg { transform: scale(1.05); }

    .bento-bg {
        position: absolute; top: 0; left: 0; width: 100%; height: 100%;
        background-size: cover; background-position: center;
        transition: transform 0.6s ease;
        z-index: 1;
    }
    
    /* Overlay Gradient agar teks terbaca */
    .bento-overlay {
        position: absolute; top: 0; left: 0; width: 100%; height: 100%;
        background: linear-gradient(to top, rgba(0,0,0,0.85) 10%, rgba(0,0,0,0) 60%);
        z-index: 2;
    }

    .bento-content {
        position: relative; z-index: 10;
        color: white;
    }

    .bento-tag {
        display: inline-block;
        background: var(--primary);
        color: white;
        padding: 6px 14px;
        border-radius: 50px;
        font-size: 12px; font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 15px;
    }

    .bento-title {
        font-size: 32px; font-weight: 800; margin-bottom: 15px; line-height: 1.2;
    }
    .bento-desc {
        font-size: 16px; color: rgba(255,255,255,0.9); line-height: 1.5; max-width: 90%;
    }

    /* KANAN: Stack 2 Kartu */
    .bento-col-right {
        display: flex; flex-direction: column; gap: 24px;
        height: 100%;
    }
    .bento-card-small {
        flex: 1; /* Bagi tinggi rata */
        position: relative;
        border-radius: 24px;
        overflow: hidden;
        padding: 30px;
        display: flex; flex-direction: column; justify-content: center;
        background: white; /* Default background */
        border: 1px solid #e2e8f0;
    }
    
    /* Layout Khusus Kartu Kanan (Teks di Kiri, Gambar di Kanan) */
    .card-small-flex {
        display: flex; align-items: center; justify-content: space-between; height: 100%;
    }
    .card-small-text { flex: 1; z-index: 5; padding-right: 20px; }
    .card-small-img { 
        width: 150px; height: 100%; 
        object-fit: contain; opacity: 0.8;
        mix-blend-mode: multiply;
    }

    .small-tag { color: var(--primary); font-weight: 700; font-size: 12px; text-transform: uppercase; margin-bottom: 10px; display: block;}
    .small-title { font-size: 24px; font-weight: 800; color: #1e293b; margin-bottom: 10px; }
    .small-desc { font-size: 14px; color: #64748b; }

    /* Responsive */
    @media (max-width: 992px) {
        .bento-grid { grid-template-columns: 1fr; height: auto; }
        .bento-card { height: 400px; }
        .bento-col-right { height: auto; }
        .bento-card-small { height: 250px; }
    }
    
    /* --- FOOTER ENTERPRISE STYLE --- */
.main-footer {
    background-color: #0f172a; /* Dark Blue/Black Professional */
    color: #cbd5e1;
    padding: 60px 0 30px;
    font-size: 14px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr; /* Kolom Brand lebih lebar */
    gap: 40px;
    margin-bottom: 50px;
}

.footer-heading {
    color: white;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-desc {
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
}
.footer-links li {
    margin-bottom: 12px;
}
.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: 0.3s;
}
.footer-links a:hover {
    color: var(--primary); /* Orange */
    padding-left: 5px;
}

/* Social Icons */
.footer-social {
    display: flex; gap: 15px;
}
.footer-social a {
    width: 36px; height: 36px;
    background: rgba(255,255,255,0.1);
    color: white;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
}
.footer-social a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

/* App Store Buttons */
.app-buttons {
    display: flex; flex-direction: column; gap: 10px;
}
.btn-store {
    display: flex; align-items: center; gap: 12px;
    background: #1e293b;
    border: 1px solid rgba(255,255,255,0.1);
    padding: 10px 15px;
    border-radius: 8px;
    color: white;
    text-decoration: none;
    transition: 0.3s;
}
.btn-store:hover {
    background: #334155;
    border-color: rgba(255,255,255,0.3);
}
.btn-store i { font-size: 24px; }
.btn-store div { display: flex; flex-direction: column; line-height: 1.2; }
.btn-store small { font-size: 10px; color: #94a3b8; }
.btn-store span { font-size: 14px; font-weight: 700; }

/* Bottom Bar */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.payment-icons i {
    font-size: 24px; color: #64748b; margin-left: 10px;
}

/* Responsive Footer */
@media (max-width: 992px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 576px) {
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .footer-bottom { flex-direction: column; gap: 15px; text-align: center; }
}