* {
            font-family: 'Poppins', sans-serif;
            scroll-behavior: smooth;
            box-sizing: border-box;
        }

        /* ✅ FIX: Hapus underline browser default di semua link */
        a, a:hover, a:visited, a:active {
            text-decoration: none !important;
            color: inherit;
        }

        .heading-font {
            font-family: 'Outfit', sans-serif;
            letter-spacing: -0.02em;
        }
        
        :root {
            --primary-start: #022866;
            --primary-end: #2563eb;
            --secondary-start: #06b6d4;
            --secondary-end: #0891b2;
            --success-start: #10b981;
            --success-end: #059669;
            --warning-start: #f59e0b;
            --warning-end: #f97316;
            --accent-start: #8b5cf6;
            --accent-end: #7c3aed;
        }
        
        html, body {
            overflow-x: hidden !important;
            max-width: 100% !important;
        }
        
        .mobile-container {
            overflow-x: hidden !important;
            max-width: 480px;
            margin: 0 auto;
            background: #ffffff;
            min-height: 100vh;
            position: relative;
            box-shadow: 0 0 50px rgba(0,0,0,0.1);
        }
        
        .header-float {
            position: fixed;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            max-width: 480px;
            width: 100%;
            z-index: 100;
            background: linear-gradient(135deg, var(--primary-start), var(--primary-end));
        }
        
        .header-wave {
            position: absolute;
            bottom: -1px;
            left: 0;
            width: 100%;
            height: 40px;
            overflow: hidden;
        }
        
        .header-wave svg {
            position: absolute;
            bottom: 0;
            width: 100%;
            height: 100%;
        }
        
        .pattern-dots {
            background-image: radial-gradient(rgba(255,255,255,0.1) 1px, transparent 1px);
            background-size: 20px 20px;
            position: absolute;
            inset: 0;
            opacity: 0.5;
        }
        
        .swiper {
            width: 100%;
            height: 220px;
            margin-top: 110px;
            border-radius: 14px 14px 14px 14px;
            overflow: hidden;
        }
        
        .swiper-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .swiper-pagination-bullet {
            background: #ffffff;
            opacity: 0.6;
            width: 8px;
            height: 8px;
        }
        
        .swiper-pagination-bullet-active {
            opacity: 1;
            background: #ffffff;
            width: 24px;
            border-radius: 4px;
        }
        
        /* ✅ PARTNER SCROLL — logo lebih kecil, padding lebih tipis, gap lebih lebar */
        .partner-scroll {
            display: flex;
            gap: 20px;                /* lebih renggang antar logo */
            overflow-x: auto;
            scrollbar-width: none;
            -ms-overflow-style: none;
            padding: 8px 0;           /* padding atas-bawah lebih kecil */
        }

        .partner-scroll::-webkit-scrollbar {
            display: none;
        }

        .partner-item {
            flex: 0 0 auto;
            width: 64px;              /* dari 90px jadi 64px */
            transition: all 0.3s ease;
        }

        .partner-item:hover {
            transform: translateY(-3px);
        }

        .partner-item > div {
            width: 100%;
            height: 52px;             /* dari 80px jadi 52px */
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 6px;
        }

        .partner-item img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            display: block;
        }
        
        /* ✅ INFO GRID — card lebih kompak, tidak terlalu panjang ke bawah */
        .info-grid {
            display: grid !important;
            grid-template-columns: repeat(3, 1fr) !important;
            gap: 10px !important;
        }
        
        .info-card-mini {
            background: white;
            border-radius: 16px;        /* dari 20px jadi 16px */
            padding: 14px 8px !important; /* dari 20px 12px jadi lebih kecil */
            text-align: center;
            box-shadow: 0 4px 16px rgba(0,0,0,0.08);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            display: block !important;
        }
        
        .info-card-mini::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.3) 50%, transparent 70%);
            transform: translateX(-100%);
            transition: transform 0.6s;
        }
        
        .info-card-mini:hover::before {
            transform: translateX(100%);
        }
        
        .info-card-mini:hover {
            transform: translateY(-4px) scale(1.02);
            box-shadow: 0 12px 32px rgba(0,0,0,0.15);
        }
        
        /* ✅ Icon lebih kecil agar card tidak tinggi */
        .info-icon {
            width: 44px !important;     /* dari 56px */
            height: 44px !important;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 8px !important; /* dari 12px jadi 8px */
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
            position: relative;
        }

        .info-icon i {
            font-size: 18px !important; /* dari text-xl (20px) jadi lebih kecil */
        }
        
        .gradient-primary { background: linear-gradient(135deg, var(--primary-start), var(--primary-end)); }
        .gradient-secondary { background: linear-gradient(135deg, var(--secondary-start), var(--secondary-end)); }
        .gradient-success { background: linear-gradient(135deg, var(--success-start), var(--success-end)); }
        .gradient-warning { background: linear-gradient(135deg, var(--warning-start), var(--warning-end)); }
        .gradient-accent { background: linear-gradient(135deg, var(--accent-start), var(--accent-end)); }
        
        .news-row {
            display: flex;
            align-items: flex-start;
            background: white;
            border-radius: 16px;
            padding: 12px;
            margin-bottom: 12px;
            box-shadow: 0 2px 12px rgba(0,0,0,0.06);
            transition: all 0.3s ease;
        }
        
        .news-row:hover {
            transform: translateX(4px);
            box-shadow: 0 6px 20px rgba(0,0,0,0.12);
        }
        
        .news-thumbnail-small {
            width: 90px;
            height: 90px;
            object-fit: cover;
            border-radius: 12px;
            flex-shrink: 0;
        }
        
        .pagination {
            display: flex;
            justify-content: center;
            gap: 8px;
            margin-top: 20px;
        }
        
        .page-btn {
            width: 36px;
            height: 36px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .page-btn.active {
            background: linear-gradient(135deg, var(--primary-start), var(--primary-end));
            color: white;
            box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
        }
        
        .page-btn:not(.active) {
            background: #f3f4f6;
            color: #6b7280;
        }
        
        .page-btn:not(.active):hover {
            background: #e5e7eb;
            transform: scale(1.1);
        }
        
        /* ================================================
           MODERN BOTTOM NAVIGATION — v2.0
           ================================================ */

        .bottom-nav {
            position: fixed !important;
            bottom: 0 !important;
            left: 50% !important;
            transform: translateX(-50%) !important;
            max-width: 480px !important;
            width: 100% !important;
            background: rgba(255, 255, 255, 0.92) !important;
            backdrop-filter: blur(24px) saturate(200%);
            -webkit-backdrop-filter: blur(24px) saturate(200%);
            box-shadow: 
                0 -1px 0 rgba(0, 0, 0, 0.06),
                0 -8px 32px rgba(0, 0, 0, 0.08),
                0 -20px 60px rgba(59, 130, 246, 0.06);
            z-index: 1000 !important;
            padding: 10px 8px calc(10px + env(safe-area-inset-bottom)) 8px !important;
            border-top: 1px solid rgba(255, 255, 255, 0.8) !important;
        }

        .nav-items {
            display: flex !important;
            justify-content: space-around !important;
            align-items: flex-end !important;
            position: relative;
            gap: 2px;
        }

        .nav-item {
            display: flex !important;
            flex-direction: column !important;
            align-items: center !important;
            justify-content: center !important;
            color: #94a3b8 !important;
            text-decoration: none !important;
            padding: 8px 6px 6px !important;
            border-radius: 16px !important;
            transition: 
                color 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                background 0.3s ease,
                transform 0.2s ease;
            position: relative !important;
            min-width: auto !important;
            flex: 1 !important;
        }

        .nav-item::before {
            display: none !important;
        }

        .nav-item::after {
            content: '' !important;
            position: absolute !important;
            inset: 0 !important;
            border-radius: 16px !important;
            background: linear-gradient(
                135deg,
                rgba(59, 130, 246, 0.12),
                rgba(37, 99, 235, 0.08)
            ) !important;
            opacity: 0 !important;
            transform: scale(0.85) !important;
            transition: 
                opacity 0.3s ease,
                transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .nav-item.active::after {
            opacity: 1 !important;
            transform: scale(1) !important;
        }

        .nav-item i {
            font-size: 22px !important;
            margin-bottom: 4px !important;
            transition: 
                transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
                color 0.3s ease;
            position: relative;
            z-index: 1;
            line-height: 1;
        }

        .nav-item span {
            font-size: 9px !important;
            font-weight: 600 !important;
            letter-spacing: 0.2px !important;
            position: relative;
            z-index: 1;
            line-height: 1;
        }

        .nav-item.active {
            color: #2563eb !important;
        }

        .nav-item.active i {
            transform: translateY(-2px) scale(1.1) !important;
            filter: drop-shadow(0 3px 6px rgba(37, 99, 235, 0.35)) !important;
        }

        .nav-item.active span {
            font-weight: 700 !important;
            background: linear-gradient(135deg, var(--primary-start, #3b82f6), var(--primary-end, #2563eb)) !important;
            -webkit-background-clip: text !important;
            -webkit-text-fill-color: transparent !important;
            background-clip: text !important;
        }

        .nav-item:not(.active):hover {
            color: #64748b !important;
            background: rgba(0, 0, 0, 0.04) !important;
        }

        .nav-item:not(.active):hover i {
            transform: translateY(-3px) !important;
        }

        /* CENTER BUTTON */
        .nav-item.center {
            position: relative !important;
            margin-top: -44px !important;
            padding: 0 8px 0 !important;
        }

        .nav-item.center::before {
            display: none !important;
        }

        .nav-item.center::after {
            display: none !important;
        }

        .nav-item.center .icon-wrapper {
            width: 64px !important;
            height: 64px !important;
            background: linear-gradient(
                145deg,
                var(--primary-start, #3b82f6) 0%,
                var(--primary-end, #1d4ed8) 100%
            ) !important;
            border-radius: 22px !important;
            display: flex !important;
            align-items: center !important;
            justify-content: center !important;
            margin-bottom: 6px !important;
            position: relative;
            transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
            box-shadow: 
                0 8px 24px rgba(37, 99, 235, 0.45),
                0 2px 8px rgba(37, 99, 235, 0.3),
                0 0 0 4px rgba(255, 255, 255, 0.95),
                0 0 0 5px rgba(59, 130, 246, 0.15) !important;
            animation: float-home 3s ease-in-out infinite;
        }

        .nav-item.center .icon-wrapper::after {
            content: '';
            position: absolute;
            top: 0;
            left: -60%;
            width: 40%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
            border-radius: 22px;
            animation: shimmer-btn 3s ease-in-out infinite;
            animation-delay: 1.5s;
        }

        @keyframes shimmer-btn {
            0%   { left: -60%; opacity: 0; }
            20%  { opacity: 1; }
            80%  { opacity: 1; }
            100% { left: 120%; opacity: 0; }
        }

        @keyframes float-home {
            0%, 100% { 
                transform: translateY(0px);
                box-shadow: 
                    0 8px 24px rgba(37, 99, 235, 0.45),
                    0 2px 8px rgba(37, 99, 235, 0.3),
                    0 0 0 4px rgba(255, 255, 255, 0.95),
                    0 0 0 5px rgba(59, 130, 246, 0.15);
            }
            50% { 
                transform: translateY(-4px);
                box-shadow: 
                    0 14px 32px rgba(37, 99, 235, 0.5),
                    0 4px 12px rgba(37, 99, 235, 0.35),
                    0 0 0 4px rgba(255, 255, 255, 0.95),
                    0 0 0 5px rgba(59, 130, 246, 0.2);
            }
        }

        .nav-item.center:hover .icon-wrapper {
            transform: translateY(-6px) scale(1.05) !important;
            animation-play-state: paused;
        }

        .nav-item.center i {
            font-size: 28px !important;
            color: white !important;
            margin: 0 !important;
            position: relative;
            z-index: 2;
            filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.25)) !important;
        }

        .nav-item.center span {
            font-weight: 700 !important;
            font-size: 11px !important;
            letter-spacing: 0.5px !important;
            background: linear-gradient(135deg, var(--primary-start, #3b82f6), var(--primary-end, #2563eb)) !important;
            -webkit-background-clip: text !important;
            -webkit-text-fill-color: transparent !important;
            background-clip: text !important;
        }

        .nav-item.active:not(.center) i::after {
            content: '';
            position: absolute;
            bottom: -6px;
            left: 50%;
            transform: translateX(-50%);
            width: 4px;
            height: 4px;
            border-radius: 50%;
            background: var(--primary-start, #3b82f6);
            box-shadow: 0 0 6px rgba(59, 130, 246, 0.6);
        }
        
        /* WHATSAPP FAB */
        .fab-wa {
            position: fixed;
            bottom: 110px;
            right: 16px;
            z-index: 99;
        }
        
        .fab-wa-container {
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            gap: 12px;
        }
        
        .fab-wa-label::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            animation: shimmer 3s infinite;
        }
        
        @keyframes shimmer {
            0% { left: -100%; }
            100% { left: 200%; }
        }
        
        @keyframes arrow-bounce {
            0%, 100% { transform: translateX(0); }
            50% { transform: translateX(4px); }
        }
        
        @keyframes shake {
            0%, 100% { transform: rotate(0deg); }
            85% { transform: rotate(0deg); }
            87% { transform: rotate(-5deg); }
            89% { transform: rotate(5deg); }
            91% { transform: rotate(-5deg); }
            93% { transform: rotate(5deg); }
            95% { transform: rotate(0deg); }
        }
        
        .fab-wa-btn {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #25D366, #128C7E);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
            animation: pulse-wa 2s infinite;
            position: relative;
        }
        
        .fab-wa-btn::before {
            content: '';
            position: absolute;
            inset: -8px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(37, 211, 102, 0.3), transparent 70%);
            animation: glow-pulse 2s infinite;
        }
        
        @keyframes pulse-wa {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }
        
        @keyframes glow-pulse {
            0%, 100% { opacity: 0.5; transform: scale(1); }
            50% { opacity: 1; transform: scale(1.2); }
        }
        
        .fab-wa-btn i {
            font-size: 36px;
            color: white;
            filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
            animation: bounce-icon 1s ease-in-out infinite;
        }
        
        @keyframes bounce-icon {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-4px); }
        }
        
        .content-wrapper {
            padding-bottom: 100px;
        }
        
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .fade-in-up { animation: fadeInUp 0.6s ease-out backwards; }
        .delay-1 { animation-delay: 0.1s; }
        .delay-2 { animation-delay: 0.2s; }
        .delay-3 { animation-delay: 0.3s; }
        .delay-4 { animation-delay: 0.4s; }
        .delay-5 { animation-delay: 0.5s; }
        .delay-6 { animation-delay: 0.6s; }
        
        .ripple { position: relative; overflow: hidden; }
        
        .ripple::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }
        
        .ripple:active::after {
            width: 300px;
            height: 300px;
        }

        /* DETAIL PAGE */
        .detail-content-card {
            background: white;
            border-radius: 32px;
            margin-top: -30px;
            padding: 30px 24px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            position: relative;
            z-index: 10;
        }

        .prose-custom {
            color: #475569;
            line-height: 1.7;
            font-size: 0.95rem;
        }

        .prose-custom h2 {
            color: #1e293b;
            font-size: 1.15rem;
            font-weight: 700;
            margin-top: 20px;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
        }

        .prose-custom h2::before {
            content: '';
            width: 4px;
            height: 18px;
            background: #3b82f6;
            margin-right: 10px;
            border-radius: 10px;
        }

        .prose-custom ul {
            list-style: none;
            padding: 0;
            margin: 15px 0;
        }

        .prose-custom li {
            background: #f1f5f9;
            padding: 12px 15px;
            border-radius: 12px;
            margin-bottom: 8px;
            font-weight: 500;
            display: flex;
            align-items: center;
        }

        .prose-custom li::before {
            content: '✓';
            color: #10b981;
            font-weight: bold;
            margin-right: 10px;
        }