        /* --- 1. SETUP WARNA (Branding Guideline DJID) --- */
        :root {
            --primary-color: #006fb0;
            /* Biru Utama */
            --primary-dark: #005082;
            /* Biru Gelap untuk Hover */
            --secondary-color: #00ace0;
            /* Cyan/Biru Langit */
            --accent-yellow: #ecbb1d;
            /* Kuning Emas */
            --accent-red: #de262a;
            /* Merah */
            --bg-light-blue: #f4f9fc;
            --bg-white: #ffffff;
            --text-dark: #1e293b;
            --text-gray: #64748b;
            --shadow-soft: 0 10px 30px -5px rgba(0, 0, 0, 0.05);
            --radius-md: 12px;
            --wa-green: #25D366;
        }

        /* --- RESET & GLOBAL --- */
        body {
            margin: 0;
            padding: 0;
            font-family: 'Albert Sans', sans-serif;
            background-color: var(--bg-white);
            color: var(--text-dark);
            line-height: 1.6;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        html {
            scroll-behavior: smooth;
            scroll-padding-top: 100px;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: color 0.3s ease, transform 0.3s ease;
        }

        ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        * {
            box-sizing: border-box;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            width: 100%;
        }

        /* =========================================== */
        /* ANIMASI FADE-IN PADA SCROLL */
        /* =========================================== */
        .fade-in-section {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
            will-change: opacity, transform;
        }

        .fade-in-section.is-visible {
            opacity: 1;
            transform: translateY(0);
        }

        .fade-stagger-children>* {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.1s,
                transform 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
        }

        .fade-in-section.is-visible .fade-stagger-children>* {
            opacity: 1;
            transform: translateY(0);
        }

        .fade-stagger-children>*:nth-child(1) {
            transition-delay: 0.1s;
        }

        .fade-stagger-children>*:nth-child(2) {
            transition-delay: 0.2s;
        }

        .fade-stagger-children>*:nth-child(3) {
            transition-delay: 0.3s;
        }

        .fade-stagger-children>*:nth-child(4) {
            transition-delay: 0.4s;
        }

        .fade-stagger-children>*:nth-child(5) {
            transition-delay: 0.5s;
        }

        /* PAGE LOADER */
        .page-loader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: #ffffff;
            z-index: 99999;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            transition: opacity 0.5s ease, visibility 0.5s ease;
            opacity: 1;
            visibility: visible;
        }

        .page-loader.hidden {
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
        }

        .loader-spinner {
            width: 50px;
            height: 50px;
            border: 4px solid rgba(0, 111, 176, 0.1);
            border-left-color: var(--primary-color);
            border-radius: 50%;
            animation: spin 1s linear infinite;
            margin-bottom: 15px;
            will-change: transform;
        }

        .loader-text {
            color: var(--primary-color);
            font-weight: 600;
            font-size: 14px;
            letter-spacing: 1px;
            animation: pulseText 1.5s infinite ease-in-out;
        }

        @keyframes spin {
            100% {
                transform: rotate(360deg);
            }
        }

        @keyframes pulseText {

            0%,
            100% {
                opacity: 1;
            }

            50% {
                opacity: 0.5;
            }
        }

        /* HEADER */
        header {
            background-color: transparent;
            backdrop-filter: none;
            -webkit-backdrop-filter: none;
            box-shadow: none;
            height: 80px;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            will-change: transform, background-color, backdrop-filter;
        }

        .header-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 100%;
        }

        .brand-area {
            display: flex;
            align-items: center;
            gap: 12px;
            transition: all 0.4s ease;
            cursor: pointer;
            background-color: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            padding: 8px 20px;
            border-radius: 50px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }

        .brand-area:hover {
            background-color: rgba(255, 255, 255, 0.2);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(0, 111, 176, 0.3);
        }

        .brand-logo-img {
            height: 50px;
            width: auto;
            filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.5));
            transition: all 0.3s;
        }

        .brand-text {
            font-size: 18px;
            font-weight: 800;
            color: #ffffff;
            line-height: 1.2;
            display: flex;
            flex-direction: column;
            transition: color 0.3s;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
        }

        .brand-text span {
            font-size: 11px;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.9);
            letter-spacing: 0.5px;
            transition: color 0.3s;
            text-shadow: 0 1px 5px rgba(0, 0, 0, 0.6);
        }

        /* HEADER SAAT SCROLL */
        header.header-minimal {
            background-color: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
            height: 70px;
        }

        header.header-minimal .brand-text {
            color: var(--primary-color);
            text-shadow: none;
        }

        header.header-minimal .brand-text span {
            color: var(--text-gray);
            text-shadow: none;
        }

        header.header-minimal .brand-logo-img {
            filter: none;
        }

        header.header-minimal .menu-item {
            color: var(--text-dark);
            text-shadow: none;
        }

        header.header-minimal .menu-item:hover {
            color: var(--primary-color);
        }

        header.header-minimal .brand-area {
            background: transparent;
            box-shadow: none;
            border: none;
            padding-left: 0;
            backdrop-filter: none;
            -webkit-backdrop-filter: none;
        }

        header.header-minimal .hamburger-btn span {
            background-color: var(--primary-color);
        }

        header.header-minimal .nav-menu button {
            color: var(--primary-color) !important;
        }

        /* NAVIGASI DESKTOP */
        .nav-menu {
            height: 100%;
            display: flex;
            align-items: center;
            transition: all 0.4s ease;
        }

        .menu-list {
            display: flex;
            gap: 8px;
            height: 100%;
            align-items: center;
        }

        .menu-item {
            position: relative;
            height: 100%;
            display: flex;
            align-items: center;
            padding: 0 12px;
            font-size: 14px;
            font-weight: 600;
            color: #ffffff;
            cursor: pointer;
            transition: color 0.3s;
            text-shadow: 0 1px 5px rgba(0, 0, 0, 0.4);
        }

        .menu-item:hover {
            color: var(--accent-yellow);
            opacity: 1;
        }

        .menu-item::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0%;
            height: 3px;
            background: var(--accent-yellow);
            transition: width 0.3s ease;
        }

        .menu-item:hover::after {
            width: 100%;
        }

        .dropdown-content {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            background-color: #ffffff;
            min-width: 240px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            border-radius: 0 0 8px 8px;
            z-index: 1000;
            padding: 10px 0;
            border-top: 3px solid var(--primary-color);
            animation: slideDown 0.3s ease;
        }

        .menu-item:hover .dropdown-content {
            display: block;
        }

        .dropdown-content li a {
            display: block;
            padding: 10px 20px;
            color: var(--text-dark);
            font-weight: 400;
            font-size: 14px;
            font-family: 'Albert Sans', sans-serif;
            text-shadow: none;
        }

        .dropdown-content li a:hover {
            background-color: var(--bg-light-blue);
            color: var(--primary-color);
            padding-left: 25px;
        }

        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(10px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* HAMBURGER */
        .hamburger-btn {
            display: none;
            flex-direction: column;
            gap: 6px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 8px;
            z-index: 1001;
        }

        .hamburger-btn span {
            width: 24px;
            height: 2.5px;
            background-color: white;
            border-radius: 2px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            transform-origin: center;
        }

        .hamburger-btn.active span:nth-child(1) {
            transform: translateY(8.5px) rotate(45deg);
        }

        .hamburger-btn.active span:nth-child(2) {
            opacity: 0;
            transform: translateX(10px);
        }

        .hamburger-btn.active span:nth-child(3) {
            transform: translateY(-8.5px) rotate(-45deg);
        }

        .hamburger-btn.active span {
            background-color: var(--primary-color) !important;
        }

        /* ===== MOBILE SIDEBAR (OFF-CANVAS) ===== */
        .mobile-nav-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(3px);
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease, visibility 0.3s ease;
        }

        .mobile-nav-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .mobile-nav-dropdown {
            position: fixed;
            top: 0;
            left: -280px;
            width: 280px;
            height: 100vh;
            background-color: #ffffff;
            box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
            z-index: 1001;
            overflow-y: auto;
            transition: left 0.3s ease;
            display: block;
            padding-top: 20px;
        }

        .mobile-nav-dropdown.active {
            left: 0;
        }

        .mobile-menu-item {
            font-family: 'Albert Sans', sans-serif;
            padding: 16px 25px;
            border-bottom: 1px solid #eee;
            color: var(--text-dark);
            font-weight: 600;
            font-size: 15px;
            cursor: pointer;
            transition: background 0.2s;
        }

        .mobile-menu-item:hover {
            background-color: var(--bg-light-blue);
            color: var(--primary-color);
        }

        .mobile-menu-item.has-submenu {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .mobile-menu-item.has-submenu::after {
            content: '▼';
            font-size: 12px;
            transition: transform 0.3s;
        }

        .mobile-menu-item.has-submenu.active::after {
            transform: rotate(-180deg);
        }

        .mobile-submenu {
            max-height: 0;
            overflow: hidden;
            background-color: #f8f9fa;
            transition: max-height 0.3s ease;
        }

        .mobile-submenu.active {
            max-height: 500px;
        }

        .mobile-submenu a {
            display: block;
            padding: 12px 40px;
            color: var(--text-gray);
            font-size: 14px;
            border-bottom: 1px solid #eee;
            transition: all 0.2s;
            text-decoration: none;
        }

        .mobile-submenu a:hover {
            background-color: #ffffff;
            color: var(--primary-color);
            padding-left: 48px;
        }

        /* --- NESTED DROPDOWN DESKTOP --- */
        .dropdown-content .has-nested {
            position: relative;
        }

        .dropdown-content .nested-dropdown {
            display: none;
            position: absolute;
            top: -10px;
            left: 100%;
            background-color: #ffffff;
            min-width: 240px;
            box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.1);
            border-radius: 8px;
            z-index: 1001;
            padding: 10px 0;
            border-left: 3px solid var(--primary-color);
            animation: slideLeft 0.3s ease;
        }

        .dropdown-content .has-nested:hover .nested-dropdown {
            display: block;
        }

        .nested-dropdown li a {
            display: block;
            padding: 10px 20px;
            color: var(--text-dark);
            font-weight: 400;
            font-size: 14px;
        }

        .dropdown-content li.has-nested>a {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        @keyframes slideLeft {
            from {
                opacity: 0;
                transform: translateX(10px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* --- MOBILE NESTED SUBMENU --- */
        .mobile-submenu .mobile-menu-item.nested {
            padding: 12px 40px;
            background-color: #f1f5f9;
            font-size: 14px;
            border-bottom: 1px solid #e2e8f0;
        }

        .mobile-submenu .mobile-submenu.nested-content a {
            padding-left: 60px;
            background-color: #ffffff;
        }

        /* HERO SECTION */
        .hero-section {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            text-align: center;
        }

        .hero-bg-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('BalmonKantor.jpg');
            background-size: cover;
            background-position: center;
            filter: blur(4px);
            transform: scale(1.05);
            z-index: 0;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(5, 10, 20, 0.75) 0%, rgba(0, 25, 50, 0.65) 50%, rgba(5, 10, 20, 0.8) 100%);
            z-index: 1;
        }

        .hero-content-wrapper {
            position: relative;
            z-index: 2;
            max-width: 900px;
            padding: 0 20px;
            color: #ffffff;
            margin-top: 40px;
        }

        .hero-title {
            font-size: 64px;
            line-height: 1.1;
            margin: 0 0 25px 0;
            font-weight: 800;
            letter-spacing: -2px;
        }

        .hero-title span {
            color: var(--secondary-color);
            background: -webkit-linear-gradient(45deg, #00ace0, #4fdfff);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero-subtitle {
            font-size: 18px;
            margin: 0 auto 40px auto;
            max-width: 700px;
            font-weight: 400;
            opacity: 0.9;
            line-height: 1.7;
        }

        .hero-btn-group {
            display: flex;
            justify-content: center;
            gap: 20px;
        }

        .btn-primary-hero {
            background: var(--primary-color);
            color: white;
            padding: 16px 36px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 16px;
            box-shadow: 0 10px 30px rgba(0, 111, 176, 0.3);
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .btn-primary-hero:hover {
            background: var(--primary-dark);
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(0, 111, 176, 0.5);
        }

        .btn-secondary-hero {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(5px);
            color: #ffffff;
            border: 2px solid rgba(255, 255, 255, 0.5);
            padding: 16px 36px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 16px;
            transition: all 0.3s ease;
        }

        .btn-secondary-hero:hover {
            border-color: #ffffff;
            background: #ffffff;
            color: var(--primary-color);
            transform: translateY(-3px);
        }

        /* --- PARALLAX FIX --- */
        .parallax-banner {
            background-image: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1280&q=60');
            background-attachment: fixed;
            background-position: center;
            background-size: cover;
            background-repeat: no-repeat;
            min-height: 150px;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            transform: none !important;
            will-change: auto !important;
        }

        .parallax-overlay {
            position: absolute;
            inset: 0;
            background: rgba(0, 50, 90, 0.85);
            z-index: 1;
        }

        .parallax-content {
            position: relative;
            z-index: 2;
            padding: 20px;
            max-width: 800px;
        }

        .parallax-content h2 {
            font-size: 36px;
            font-weight: 800;
            margin-bottom: 10px;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .tagline-berakhlak {
            font-size: 18px;
            color: var(--accent-yellow);
            font-weight: 500;
            display: block;
            margin-top: 15px;
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            padding-top: 15px;
        }

        /* ============================================= */
        /* CATEGORICAL FILTER — ICON CARD SELECTOR       */
        /* ============================================= */
        .cat-filter-section {
            padding: 40px 0 50px;
            background: #ffffff;
            position: relative;
            z-index: 5;
            margin-top: -2px;
        }

        /* --- CATEGORY CARD ROW --- */
        .cat-filter-tabs {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
            margin-bottom: 0;
        }

        .cat-tab {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
            background: var(--bg-light-blue);
            border: 2px solid transparent;
            border-radius: 14px;
            padding: 22px 12px 18px;
            cursor: pointer;
            text-align: center;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            font-family: 'Albert Sans', sans-serif;
            position: relative;
        }

        .cat-tab:hover {
            border-color: rgba(0, 111, 176, 0.25);
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 111, 176, 0.1);
        }

        .cat-tab.active {
            background: rgba(0, 111, 176, 0.08);
            border-color: var(--primary-color);
            transform: translateY(-3px);
            box-shadow: 0 6px 18px rgba(0, 111, 176, 0.12);
        }

        .cat-tab-icon {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: rgba(0, 111, 176, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            transition: all 0.3s;
        }

        .cat-tab.active .cat-tab-icon {
            background: var(--primary-color);
        }

        .cat-tab-icon i {
            font-size: 22px;
            color: var(--primary-color);
            transition: color 0.3s;
        }

        .cat-tab.active .cat-tab-icon i {
            color: #ffffff;
        }

        .cat-tab-icon img {
            width: 24px;
            height: 24px;
            object-fit: contain;
            filter: none;
            transition: filter 0.3s;
        }

        .cat-tab.active .cat-tab-icon img {
            filter: brightness(0) invert(1);
        }

        .cat-tab-body {
            display: flex;
            flex-direction: column;
            gap: 2px;
        }

        .cat-tab-title {
            font-size: 14px;
            font-weight: 700;
            color: var(--text-dark);
            transition: color 0.3s;
            line-height: 1.3;
        }

        .cat-tab.active .cat-tab-title {
            color: var(--primary-color);
        }

        .cat-tab-desc {
            font-size: 11px;
            color: var(--text-gray);
            line-height: 1.4;
            transition: color 0.3s;
        }

        .cat-tab.active .cat-tab-desc {
            color: var(--text-gray);
        }

        /* --- CONTENT PANEL AREA --- */
        .cat-panel-wrapper {
            background: var(--bg-light-blue);
            border-radius: 16px;
            margin-top: 16px;
            border: 1px solid rgba(0, 111, 176, 0.08);
            overflow: hidden;
            position: relative;
        }

        .cat-panel {
            display: none;
            padding: 28px 32px;
            animation: catPanelIn 0.35s ease;
        }

        .cat-panel.active {
            display: block;
        }

        @keyframes catPanelIn {
            from {
                opacity: 0;
                transform: translateY(8px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .cat-panel-header {
            margin-bottom: 18px;
            padding-bottom: 14px;
            border-bottom: 2px solid rgba(0, 111, 176, 0.08);
        }

        .cat-panel-header h3 {
            margin: 0 0 4px 0;
            font-size: 18px;
            font-weight: 800;
            color: var(--primary-dark);
        }

        .cat-panel-header p {
            margin: 0;
            font-size: 13px;
            color: var(--text-gray);
        }

        /* --- LINK GRID INSIDE PANEL --- */
        .cat-link-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
            gap: 10px;
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .cat-link-grid li a {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 12px 16px;
            background: #ffffff;
            color: var(--text-dark);
            border-radius: 10px;
            font-size: 14px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.25s ease;
            border: 1px solid rgba(0, 111, 176, 0.06);
        }

        .cat-link-grid li a i {
            font-size: 18px;
            color: var(--primary-color);
            flex-shrink: 0;
            transition: color 0.25s;
        }

        .cat-link-grid li a:hover {
            background: var(--primary-color);
            color: #ffffff;
            transform: translateY(-2px);
            box-shadow: 0 4px 14px rgba(0, 111, 176, 0.2);
            border-color: var(--primary-color);
        }

        .cat-link-grid li a:hover i {
            color: #ffffff;
        }

        /* --- RESPONSIVE --- */
        @media (max-width: 768px) {
            .cat-filter-tabs {
                grid-template-columns: repeat(2, 1fr);
                gap: 10px;
            }

            .cat-tab {
                padding: 16px 10px 14px;
                gap: 8px;
            }

            .cat-tab-icon {
                width: 40px;
                height: 40px;
            }

            .cat-tab-icon i {
                font-size: 18px;
            }

            .cat-tab-desc {
                display: none;
            }

            .cat-panel {
                padding: 20px 18px;
            }

            .cat-link-grid {
                grid-template-columns: 1fr;
            }
        }




        /* ====================================================== */
        /* --- NEWS SECTION COMPACT (AS PER IMAGE) --- */
        /* ====================================================== */
        .news-section-compact {
            padding: 80px 0;
            background: #ffffff;
            position: relative;
            z-index: 5;
        }

        .news-compact-container {
            display: grid;
            grid-template-columns: 350px 1fr;
            gap: 40px;
            align-items: flex-start;
        }

        .news-header-box {
            background: var(--bg-light-blue);
            padding: 30px 40px 50px 40px;
            border-radius: 32px;
            height: 420px;
            display: flex;
            flex-direction: column;
            position: relative;
        }

        .news-header-box h2 {
            font-size: 42px;
            font-weight: 800;
            color: var(--text-dark);
            margin-top: 0;
            margin-bottom: 20px;
        }

        .news-header-box p {
            font-size: 15px;
            color: var(--text-gray);
            line-height: 1.6;
            margin-bottom: auto;
        }

        .news-readmore-primary {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            color: var(--primary-color);
            font-weight: 700;
            font-size: 14px;
            transition: all 0.3s ease;
        }

        .news-readmore-primary:hover {
            color: var(--primary-dark);
            transform: translateX(5px);
        }

        .news-nav-compact {
            position: absolute;
            bottom: 40px;
            right: 40px;
            background: #ffffff;
            display: flex;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
            border: 1px solid #e2e8f0;
        }

        .news-nav-compact button {
            width: 48px;
            height: 48px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #fff;
            border: none;
            color: var(--text-gray);
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .news-nav-compact button:first-child {
            border-right: 1px solid #e2e8f0;
        }

        .news-nav-compact button:hover {
            background: #f1f5f9;
            color: var(--primary-color);
        }

        .news-track-wrapper {
            width: 100%;
            overflow: hidden;
            padding: 10px 0;
        }

        .news-track-compact {
            display: flex;
            gap: 30px;
            transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
        }

        .news-card-compact {
            flex: 0 0 320px;
            width: 320px;
            cursor: pointer;
            transition: transform 0.3s ease;
            box-shadow: none !important;
        }

        .news-card-compact:hover {
            transform: translateY(-5px);
        }

        .news-card-img-box {
            position: relative;
            width: 100%;
            height: 200px;
            border-radius: 24px;
            overflow: hidden;
            margin-bottom: 20px;
            box-shadow: none !important;
        }

        .news-card-img-box img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .news-badge-black {
            position: absolute;
            bottom: -1px;
            left: -1px;
            background: #ffffff;
            color: var(--primary-color);
            padding: 8px 22px;
            border-radius: 0 12px 0 24px;
            font-size: 10px;
            font-weight: 800;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            border: none !important;
            box-shadow: none !important;
        }

        .news-card-date-compact {
            font-size: 13px;
            color: var(--text-gray);
            margin-bottom: 8px;
            font-weight: 500;
        }

        .news-card-title-compact {
            font-size: 16px;
            font-weight: 800;
            color: var(--text-dark);
            margin-bottom: 12px;
            line-height: 1.4;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .news-card-desc-compact {
            font-size: 14px;
            color: var(--text-gray);
            line-height: 1.6;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        @media (max-width: 1100px) {
            .news-compact-container {
                grid-template-columns: 1fr;
            }

            .news-header-box {
                height: auto;
                padding-bottom: 100px;
            }
        }

        @media (max-width: 600px) {
            .news-header-box {
                padding: 30px;
            }

            .news-header-box h2 {
                font-size: 32px;
            }

            .news-card-compact {
                flex: 0 0 280px;
                width: 280px;
            }
        }

        /* ====================================================== */
        /* --- VIDEO SLIDER SECTION (FIXED HEIGHT) --- */
        /* ====================================================== */
        .video-slider-section {
            padding: 20px 0 20px 0;
            background-color: #0f172a;
            background-image: url('https://images.unsplash.com/photo-1550751827-4bd374c3f58b?q=80&w=2070&auto=format&fit=crop');
            background-attachment: fixed;
            background-position: center;
            background-size: cover;
            position: relative;
            overflow: hidden;
        }

        .video-slider-section::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(11, 22, 42, 0.95) 0%, rgba(20, 35, 60, 0.9) 100%);
            z-index: 1;
        }

        .video-flex-container {
            position: relative;
            z-index: 2;
            display: flex;
            align-items: center;
            gap: 40px;
            flex-wrap: wrap;
        }

        .video-info-col {
            flex: 1;
            min-width: 300px;
            color: #ffffff;
        }

        .video-info-col h2 {
            font-size: 48px;
            font-weight: 800;
            margin: 0 0 15px 0;
            letter-spacing: -1px;
        }

        .video-info-col p {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 30px;
            line-height: 1.6;
        }

        /* --- WRAPPER UNTUK TOMBOL YOUTUBE DAN PANAH --- */
        .video-action-group {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-top: 15px;
            flex-wrap: wrap;
        }

        /* ====================================================== */
        /* --- GAYA UNTUK TOMBOL YOUTUBE --- */
        /* ====================================================== */
        .yt-link-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 12px 24px;
            background-color: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 8px;
            /* Sudut sedikit membulat */
            color: #ffffff;
            text-decoration: none;
            font-weight: 600;
            font-size: 14px;
            transition: all 0.3s ease;
        }

        .yt-link-btn svg {
            color: #ff0000;
            /* Warna merah khas YouTube */
            transition: transform 0.3s ease;
        }

        .yt-link-btn:hover {
            background-color: #ffffff;
            color: #0f172a;
            /* Warna teks gelap saat dihover */
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
        }

        .yt-link-btn:hover svg {
            transform: scale(1.1);
        }

        /* ====================================================== */
        /* --- GAYA UNTUK ARROW KOTAK --- */
        /* ====================================================== */
        .vc-nav-arrows {
            display: flex;
            gap: 12px;
        }

        .vc-nav-arrows {
            display: flex;
            gap: 10px;
            position: relative;
            z-index: 1000;
            /* Ensure arrows are above other elements */
            pointer-events: auto !important;
        }

        .vc-arrow-btn {
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 8px;
            /* BENTUK KOTAK dengan sudut sedikit membulat */
            color: #ffffff;
            font-size: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            backdrop-filter: blur(5px);
        }

        .vc-arrow-btn:hover {
            background: #ffffff;
            color: var(--text-dark);
            /* Mengubah ikon jadi gelap saat di-hover */
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }

        .video-carousel-col {
            flex: 2;
            min-width: 0;
            width: 100%;
        }

        .video-slider-wrapper {
            position: relative;
            width: 100%;
            padding: 0 40px;
        }



        /* KARTU VIDEO - FIXED HEIGHT & WIDTH */
        .video-card {
            flex: 0 0 280px;
            width: 280px;
            /* KUNCI TINGGI */
            height: 300px;
            background: transparent;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
            border: none;
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            scroll-snap-align: start;
            /* Kartu akan selalu rata kiri saat digeser */
        }

        .video-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
        }

        .video-card-media {
            position: relative;
            width: 100%;
            padding-bottom: 56.25%;
            height: 0;
            background: #000;
            flex-shrink: 0;
        }

        .video-card-media iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: 0;
        }

        .video-card-content {
            padding: 20px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .video-card-content h3 {
            font-size: 16px;
            font-weight: 700;
            color: #ffffff !important;
            margin: 0 0 10px 0;
            line-height: 1.3;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .video-card-content p {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.8) !important;
            margin: 0;
            line-height: 1.6;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        /* --- PENGATURAN SCROLL PRESISI (MENGATASI GESER NANGGUNG) --- */
        .vc-window {
            width: 100%;
            overflow-x: auto;
            /* Aktifkan native scroll */
            padding: 20px 5px;
            position: relative;
            scroll-behavior: smooth;
            /* Geseran mulus */
            scrollbar-width: none;
            -ms-overflow-style: none;
        }

        .vc-window::-webkit-scrollbar {
            display: none;
        }

        .vc-track {
            display: flex;
            gap: 20px;
            width: max-content;
        }

        /* RESPONSIVE VIDEO (SWIPE MOBILE) */
        @media (max-width: 900px) {
            .vc-nav-arrows {
                display: none !important;
            }

            /* Sembunyikan arrow di HP */
            .video-flex-container {
                flex-direction: column;
                align-items: flex-start;
                gap: 30px;
            }

            .video-info-col {
                width: 100%;
                text-align: left;
                padding: 0 20px;
            }

            .video-carousel-col {
                width: 100%;
                overflow: visible;
            }

            .video-slider-wrapper {
                padding: 0;
            }
        }

        /* RESPONSIVE NEWS & FEATURE CARDS (SWIPE MOBILE) */
        @media (max-width: 900px) {

            /* Feature Cards Fix */
            .fc-window {
                overflow-x: auto !important;
                scroll-snap-type: x mandatory;
                padding-bottom: 20px;
                scrollbar-width: none;
            }

            .fc-window::-webkit-scrollbar {
                display: none;
            }

            .fc-track {
                width: max-content !important;
                justify-content: flex-start !important;
                padding: 0 20px !important;
                transform: none !important;
            }

            .fc-card {
                scroll-snap-align: center;
                flex: 0 0 280px !important;
            }

            /* News Section Fix */
            .news-compact-container {
                gap: 20px;
            }

            .news-nav-compact {
                display: none !important;
            }

            .news-track-wrapper {
                overflow-x: auto !important;
                scroll-snap-type: x mandatory;
                padding: 10px 20px !important;
                scrollbar-width: none;
            }

            .news-track-wrapper::-webkit-scrollbar {
                display: none;
            }

            .news-track-compact {
                width: max-content !important;
                transform: none !important;
                display: flex !important;
                gap: 20px !important;
                transition: none !important;
            }

            .news-card-compact {
                scroll-snap-align: center;
                flex: 0 0 300px !important;
                width: 300px !important;
            }
        }

        /* ARCHIVE */
        .archive-section {
            font-family: 'Albert Sans', sans-serif;
            background-color: #ffffff;
            padding: 120px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .archive-bg-decor {
            display: none;
        }

        .archive-content {
            position: relative;
            z-index: 1;
            max-width: 900px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .archive-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100px;
            height: 100px;
            background-color: #f0f8ff;
            color: #0056b3;
            border-radius: 28px;
            margin: 0 auto 35px auto;
            font-size: 42px;
            box-shadow: 0 12px 24px rgba(0, 86, 179, 0.08);
            transition: transform 0.3s ease;
        }

        .archive-section:hover .archive-icon {
            transform: scale(1.05) rotate(-5deg);
        }

        .archive-title {
            font-size: 46px;
            color: #0056b3;
            font-weight: 800;
            margin-bottom: 20px;
            line-height: 1.15;
            letter-spacing: -0.02em;
        }

        .archive-desc {
            font-size: 18px;
            color: #555555;
            margin-bottom: 50px;
            line-height: 1.7;
            font-weight: 400;
            max-width: 780px;
            margin-left: auto;
            margin-right: auto;
        }

        .btn-download-primary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
            background-color: #0056b3;
            color: #ffffff;
            padding: 20px 45px;
            border-radius: 16px;
            font-size: 18px;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
            box-shadow: 0 10px 25px rgba(0, 86, 179, 0.25);
        }

        .btn-download-primary:hover {
            background-color: #003d80;
            transform: translateY(-4px);
            box-shadow: 0 15px 35px rgba(0, 86, 179, 0.35);
        }

        .btn-download-primary svg {
            width: 24px;
            height: 24px;
            stroke-width: 3;
        }

        /* =========================================== */
        /* LAPORAN KINERJA - SEDERHANA DENGAN SAMPUL */
        /* =========================================== */
        .laporan-kinerja-section {
            padding: 80px 0;
            background-color: #ffffff;
            position: relative;
            z-index: 2;
        }

        .laporan-kinerja-section .section-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .laporan-kinerja-section .section-header h2 {
            font-size: 28px;
            font-weight: 700;
            color: var(--text-dark);
            margin: 0 0 10px 0;
            position: relative;
            display: inline-block;
        }

        .laporan-kinerja-section .section-header h2:after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background-color: var(--primary-color);
        }

        .laporan-kinerja-section .section-header p {
            font-size: 15px;
            color: var(--text-gray);
            margin: 20px auto 0;
            max-width: 700px;
            line-height: 1.7;
        }

        .laporan-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            margin: 0 auto 40px;
            max-width: 950px;
        }

        .laporan-card {
            background: #ffffff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            cursor: pointer;
            border: 1px solid #eef2f6;
        }

        .laporan-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 24px rgba(0, 111, 176, 0.12);
            border-color: var(--primary-color);
        }

        .laporan-cover {
            position: relative;
            aspect-ratio: 3/4;
            overflow: hidden;
            background-color: #e6edf5;
        }

        .laporan-cover img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .laporan-card:hover .laporan-cover img {
            transform: scale(1.05);
        }

        .laporan-info {
            padding: 15px;
            text-align: center;
        }

        .laporan-info h3 {
            font-size: 15px;
            font-weight: 600;
            color: var(--text-dark);
            margin: 0;
            line-height: 1.4;
        }

        .btn-laporan-semua {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 28px;
            background-color: var(--primary-color);
            color: white;
            border-radius: 40px;
            font-weight: 600;
            font-size: 14px;
            text-decoration: none;
            transition: all 0.3s ease;
            border: none;
            box-shadow: 0 8px 20px rgba(0, 111, 176, 0.2);
        }

        .btn-laporan-semua:hover {
            background-color: var(--primary-dark);
            transform: translateY(-3px);
            box-shadow: 0 12px 28px rgba(0, 111, 176, 0.3);
        }

        .btn-laporan-semua i {
            font-size: 16px;
            transition: transform 0.3s ease;
        }

        .btn-laporan-semua:hover i {
            transform: translateX(5px);
        }

        @media (max-width: 992px) {
            .laporan-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }

            .laporan-kinerja-section .section-header h2 {
                font-size: 28px;
            }
        }

        @media (max-width: 576px) {
            .laporan-grid {
                grid-template-columns: 1fr;
                max-width: 320px;
                margin-left: auto;
                margin-right: auto;
            }

            .laporan-kinerja-section {
                padding: 60px 0;
            }

            .laporan-kinerja-section .section-header h2 {
                font-size: 24px;
            }
        }

        /* =========================================== */
        /* LINK TERKAIT SIMPLE CAROUSEL */
        /* =========================================== */
        .link-terkait-section {
            padding: 60px 0;
            background-color: #ffffff;
            position: relative;
            z-index: 2;
        }

        .link-terkait-section .section-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .link-terkait-section .section-header h2 {
            font-size: 32px;
            font-weight: 700;
            color: var(--primary-color);
            margin: 0 0 10px 0;
            position: relative;
            display: inline-block;
        }

        .link-terkait-section .section-header h2:after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background-color: var(--accent-yellow);
        }

        .link-terkait-section .section-header p {
            font-size: 16px;
            color: var(--text-gray);
            margin: 20px 0 0 0;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.7;
        }



        /* Window Carousel - MODIFIED FOR INFINITE SCROLL */
        .link-carousel-window {
            width: 100%;
            overflow: hidden;
            /* Hide scrollbar */
            padding: 30px 0;
            position: relative;
        }

        .link-carousel-track {
            display: flex;
            gap: 60px;
            width: max-content;
            animation: scroll-right 40s linear infinite;
        }

        @keyframes scroll-right {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(calc(-50% - 30px));
                /* Half of the doubled track */
            }
        }

        /* Pause animation on hover */
        .link-carousel-window:hover .link-carousel-track {
            animation-play-state: paused;
        }

        /* Item carousel sederhana */
        .carousel-item {
            flex: 0 0 160px;
            text-align: center;
            transition: transform 0.3s ease;
        }

        .carousel-item:hover {
            transform: translateY(-8px);
        }

        .carousel-item a {
            text-decoration: none;
            color: var(--text-dark);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 15px;
        }

        .carousel-item .link-logo {
            width: 80px;
            height: 80px;
            border-radius: 16px;
            /* Squircle style */
            object-fit: contain;
            background-color: #ffffff;
            padding: 12px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
            border: 1px solid rgba(0, 111, 176, 0.1);
            transition: all 0.3s ease;
        }

        .carousel-item:hover .link-logo {
            box-shadow: 0 10px 25px rgba(0, 111, 176, 0.15);
            border-color: var(--primary-color);
        }

        .carousel-item span {
            font-weight: 700;
            font-size: 13px;
            color: var(--text-dark);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: color 0.3s ease;
        }

        .carousel-item:hover span {
            color: var(--primary-color);
        }

        @media (max-width: 768px) {
            .carousel-item {
                flex: 0 0 130px;
            }

            .link-carousel-track {
                gap: 40px;
                animation-duration: 30s;
            }

            .carousel-item .link-logo {
                width: 65px;
                height: 65px;
            }
        }

        /* =========================================== */
        /* FAQ SECTION (diambil dari faq.html) */
        /* =========================================== */
        .faq-home-section {
            padding: 60px 0;
            background: transparent;
            position: relative;
            z-index: 2;
        }

        .faq-home-section .section-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .faq-home-section .section-header h2 {
            font-size: 32px;
            font-weight: 700;
            color: var(--primary-color);
            margin: 0 0 10px 0;
            position: relative;
            display: inline-block;
        }

        .faq-home-section .section-header h2:after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background-color: var(--accent-yellow);
        }

        .faq-home-section .section-header p {
            font-size: 16px;
            color: var(--text-gray);
            margin: 20px 0 0 0;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.7;
        }

        .faq-container {
            max-width: 900px;
            margin: 0 auto;
            background: white;
            border-radius: 24px;
            box-shadow: 0 20px 50px rgba(0, 50, 90, 0.08);
            border: 1px solid rgba(0, 111, 176, 0.1);
            padding: 40px;
        }

        .faq-title {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 30px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .faq-title::before {
            content: '';
            width: 4px;
            height: 30px;
            background: var(--accent-yellow);
            border-radius: 2px;
        }

        .faq-item {
            border-bottom: 1px solid #e2e8f0;
            margin-bottom: 5px;
        }

        .faq-question {
            width: 100%;
            text-align: left;
            padding: 20px 0;
            background: none;
            border: none;
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--text-dark);
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            transition: color 0.2s;
        }

        .faq-question:hover {
            color: var(--primary-color);
        }

        .faq-question i {
            font-size: 1.2rem;
            transition: transform 0.3s;
            color: var(--primary-color);
        }

        .faq-question.active i {
            transform: rotate(180deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease;
            padding-left: 10px;
        }

        .faq-answer.show {
            max-height: 500px;
            /* cukup untuk konten */
            padding-bottom: 20px;
        }

        .faq-answer p {
            color: var(--text-gray);
            margin-bottom: 10px;
        }

        .faq-answer ul,
        .faq-answer ol {
            margin-left: 20px;
            color: var(--text-gray);
        }

        .faq-answer li {
            margin-bottom: 5px;
        }

        .btn-faq-more {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 32px;
            background-color: var(--primary-color);
            color: white;
            border-radius: 40px;
            font-weight: 600;
            font-size: 15px;
            text-decoration: none;
            transition: all 0.3s ease;
            border: none;
            box-shadow: 0 8px 20px rgba(0, 111, 176, 0.2);
            margin-top: 30px;
        }

        .btn-faq-more:hover {
            background-color: var(--primary-dark);
            transform: translateY(-3px);
            box-shadow: 0 12px 28px rgba(0, 111, 176, 0.3);
        }

        .btn-faq-more i {
            font-size: 16px;
            transition: transform 0.3s ease;
        }

        .btn-faq-more:hover i {
            transform: translateX(5px);
        }

        @media (max-width: 768px) {
            .faq-container {
                padding: 25px;
            }

            .faq-question {
                font-size: 1rem;
                padding: 15px 0;
            }

            .faq-question i {
                font-size: 1rem;
            }

            .faq-answer.show {
                max-height: 800px;
            }
        }

        /* FOOTER */
        footer {
            background-color: var(--primary-color);
            color: white;
            padding-top: 70px;
            font-size: 14px;
            position: relative;
        }

        .footer-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 40px;
            padding-bottom: 50px;
        }

        .footer-col {
            flex: 1;
            min-width: 250px;
        }

        .footer-col h3 {
            color: var(--accent-yellow);
            margin-bottom: 25px;
            font-size: 18px;
            font-weight: 700;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.8);
            display: block;
            margin-bottom: 12px;
            transition: 0.2s;
        }

        .footer-links a:hover {
            color: #fff;
            transform: translateX(5px);
        }

        .copyright {
            background-color: rgba(0, 0, 0, 0.1);
            text-align: center;
            padding: 25px 0;
            color: rgba(255, 255, 255, 0.6);
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        /* --- CHAT WIDGET TERBARU --- */
        .chat-toggle-btn {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 65px;
            height: 65px;
            background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
            color: #ffffff;
            border: none;
            border-radius: 50%;
            box-shadow: 0 8px 25px rgba(0, 111, 176, 0.4);
            cursor: pointer;
            z-index: 10000;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
            overflow: hidden;
            will-change: transform;
        }

        .chat-toggle-btn:hover {
            transform: scale(1.1);
            box-shadow: 0 12px 30px rgba(0, 111, 176, 0.5);
        }

        .chat-toggle-btn.on-footer {
            background: var(--accent-yellow);
            color: var(--text-dark);
        }

        .chat-toggle-btn svg {
            position: absolute;
            width: 28px;
            height: 28px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            pointer-events: none;
        }

        .icon-message {
            opacity: 1;
            transform: scale(1) rotate(0deg);
            fill: currentColor;
        }

        .icon-close {
            opacity: 0;
            transform: scale(0) rotate(-180deg);
            fill: none;
            stroke: currentColor;
            stroke-width: 2.5;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .chat-toggle-btn.active .icon-message {
            opacity: 0;
            transform: scale(0) rotate(90deg);
        }

        .chat-toggle-btn.active .icon-close {
            opacity: 1;
            transform: scale(1) rotate(0deg);
        }

        .chat-box-container {
            position: fixed;
            bottom: 110px;
            right: 30px;
            width: 350px;
            height: 500px;
            max-height: 70vh;
            background-color: #fff;
            border-radius: 16px;
            box-shadow: 0 20px 50px -10px rgba(0, 60, 100, 0.25);
            border: 1px solid rgba(0, 111, 176, 0.1);
            z-index: 9999;
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px) scale(0.95);
            transition: all 0.3s;
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }

        .chat-box-container.active {
            opacity: 1;
            visibility: visible;
            transform: translateY(0) scale(1);
        }

        .chat-header {
            background: linear-gradient(135deg, var(--primary-color) 0%, #00406b 100%);
            padding: 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            border-bottom: 3px solid var(--accent-yellow);
            color: #fff;
            flex-shrink: 0;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            position: relative;
            overflow: hidden;
        }

        .chat-header::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
            pointer-events: none;
        }

        .chat-header-content {
            display: flex;
            align-items: center;
            gap: 15px;
            z-index: 2;
            width: 100%;
        }

        .chat-logo-bg {
            width: 48px;
            height: 48px;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(5px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            flex-shrink: 0;
        }

        .chat-info {
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .chat-info h4 {
            margin: 0;
            font-size: 16px;
            font-weight: 700;
            letter-spacing: 0.5px;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
            line-height: 1.2;
        }

        .chat-status {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 12px;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.9);
            margin-top: 3px;
        }

        .status-dot {
            width: 8px;
            height: 8px;
            background-color: #00ff9d;
            border-radius: 50%;
            box-shadow: 0 0 8px rgba(0, 255, 157, 0.6);
            animation: pulseDot 2s infinite;
        }

        @keyframes pulseDot {
            0% {
                transform: scale(0.95);
                opacity: 0.7;
            }

            50% {
                transform: scale(1.2);
                opacity: 1;
            }

            100% {
                transform: scale(0.95);
                opacity: 0.7;
            }
        }

        /* Responsive */
        @media (max-width: 900px) {
            .hero-title {
                font-size: 42px;
            }

            .hero-bg-image {
                background-position: center;
            }

            .fc-nav-btn {
                display: none;
            }

            .fc-window {
                overflow-x: auto;
                scroll-behavior: smooth;
            }
        }

        @media (max-width: 600px) {
            .brand-text {
                font-size: 14px;
            }

            .brand-logo-img {
                height: 35px;
            }

            .menu-list {
                display: none;
            }

            .hero-title {
                font-size: 36px;
            }

            .hero-btn-group {
                flex-direction: column;
                gap: 10px;
                width: 100%;
            }

            .hero-btn-group a {
                width: 100%;
                text-align: center;
            }
        }

        @media (max-width: 768px) {
            .hamburger-btn {
                display: flex;
            }

            .menu-list {
                display: none;
            }

            .nav-menu {
                display: flex;
            }

            header.header-minimal {
                background-color: #fff;
            }

            .chat-toggle-btn {
                bottom: 20px;
                right: 20px;
            }

            .chat-box-container {
                width: calc(100% - 40px) !important;
                height: 65vh !important;
                max-height: 600px !important;
                right: 20px !important;
                left: 20px !important;
                bottom: 100px !important;
                top: auto !important;
                border-radius: 16px !important;
            }

            .brand-area {
                background: transparent !important;
                backdrop-filter: none !important;
                -webkit-backdrop-filter: none !important;
                border: none !important;
                box-shadow: none !important;
                padding-left: 0 !important;
            }
        }

        /* HEADER SOCIALS */
        .header-socials {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-left: auto;
            margin-right: 30px;
            padding-right: 30px;
            border-right: 1px solid rgba(255, 255, 255, 0.3);
            padding-left: 0;
            height: 40px;
        }

        .social-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.3s ease;
        }

        .social-icon svg {
            width: 20px;
            height: 20px;
            fill: #ffffff;
            transition: all 0.3s ease;
            opacity: 0.9;
        }

        .social-icon:hover {
            transform: translateY(-2px);
        }

        .social-icon:hover svg {
            opacity: 1;
            fill: var(--accent-yellow);
        }

        header.header-minimal .header-socials {
            border-right-color: #e2e8f0;
        }

        header.header-minimal .social-icon svg {
            fill: var(--text-gray);
        }

        header.header-minimal .social-icon:hover svg {
            fill: var(--primary-color);
        }

        header.header-minimal .social-icon.wa-icon:hover svg {
            fill: #25D366;
        }

        @media (max-width: 992px) {
            .header-socials {
                display: none;
            }
        }

        /* SEARCH OVERLAY */
        .search-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            z-index: 99999;
            display: flex;
            justify-content: center;
            align-items: flex-start;
            padding-top: 100px;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .search-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .search-content {
            width: 100%;
            max-width: 600px;
            position: relative;
            padding: 0 20px;
            transform: translateY(-20px);
            transition: 0.4s ease;
        }

        .search-overlay.active .search-content {
            transform: translateY(0);
        }

        .close-search {
            position: absolute;
            top: -50px;
            right: 0;
            font-size: 40px;
            border: none;
            background: none;
            cursor: pointer;
            color: var(--text-dark);
            transition: 0.3s;
        }

        .close-search:hover {
            color: var(--accent-red);
            transform: rotate(90deg);
        }

        #searchInput {
            width: 100%;
            padding: 20px;
            font-size: 18px;
            border: 2px solid #eee;
            border-radius: 12px;
            outline: none;
            transition: 0.3s;
            font-family: 'Albert Sans', sans-serif;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
        }

        #searchInput:focus {
            border-color: var(--primary-color);
            box-shadow: 0 5px 20px rgba(0, 111, 176, 0.2);
        }

        .search-results {
            margin-top: 20px;
            max-height: 60vh;
            overflow-y: auto;
        }

        .search-item {
            background: #fff;
            padding: 15px;
            border-radius: 8px;
            margin-bottom: 10px;
            border: 1px solid #eee;
            transition: 0.2s;
            cursor: pointer;
            display: block;
            text-decoration: none;
            color: var(--text-dark);
        }

        .search-item:hover {
            background: var(--bg-light-blue);
            border-color: var(--primary-color);
            transform: translateX(5px);
        }

        .search-item h4 {
            margin: 0 0 5px 0;
            color: var(--primary-color);
            font-size: 16px;
        }

        .search-item p {
            margin: 0;
            font-size: 13px;
            color: var(--text-gray);
        }

        /* --- MODERN ABOUT SECTION --- */
        .about-section {
            padding: 100px 0;
            background: #ffffff;
            position: relative;
            z-index: 1;
            overflow: hidden;
        }

        .about-wrapper {
            display: flex;
            align-items: center;
            gap: 60px;
            position: relative;
        }

        .about-img-col {
            flex: 1;
            position: relative;
            perspective: 1000px;
        }

        .about-img-wrapper {
            position: relative;
            z-index: 2;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 30px 60px rgba(0, 50, 90, 0.15);
            transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .about-img-wrapper:hover {
            transform: scale(1.02) rotateY(-5deg);
        }

        .about-main-img {
            width: 100%;
            display: block;
            transition: transform 0.8s ease;
        }

        .about-img-wrapper:hover .about-main-img {
            transform: scale(1.1);
        }

        .about-img-decor {
            position: absolute;
            bottom: -30px;
            right: -30px;
            width: 200px;
            height: 200px;
            background: var(--accent-yellow);
            border-radius: 24px;
            z-index: 1;
            opacity: 0.1;
            transform: rotate(15deg);
        }

        .about-stats-badge {
            position: absolute;
            top: 40px;
            left: -30px;
            background: #ffffff;
            padding: 20px;
            border-radius: 20px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
            z-index: 3;
            animation: floatStats 4s ease-in-out infinite;
        }

        @keyframes floatStats {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-15px);
            }
        }

        .about-stats-badge .stats-number {
            display: block;
            font-size: 28px;
            font-weight: 800;
            color: var(--primary-color);
            line-height: 1;
        }

        .about-stats-badge .stats-text {
            font-size: 11px;
            font-weight: 600;
            color: var(--text-gray);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .about-text-col {
            flex: 1.2;
        }

        .label-modern {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(0, 111, 176, 0.08);
            color: var(--primary-color);
            padding: 8px 16px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 13px;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .title-modern {
            font-size: 38px;
            font-weight: 800;
            line-height: 1.2;
            color: var(--text-dark);
            margin-bottom: 20px;
        }

        .title-modern span {
            background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .desc-modern {
            font-size: 16px;
            line-height: 1.7;
            color: var(--text-gray);
            margin-bottom: 30px;
            text-align: justify;
        }

        .about-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-bottom: 35px;
        }

        .feature-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
        }

        .feature-icon {
            width: 44px;
            height: 44px;
            background: var(--bg-light-blue);
            color: var(--primary-color);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            transition: all 0.3s ease;
            flex-shrink: 0;
            border: 1px solid rgba(0, 111, 176, 0.1);
        }

        .feature-item:hover .feature-icon {
            background: var(--primary-color);
            color: #ffffff;
            transform: translateY(-3px) rotate(5deg);
            box-shadow: 0 5px 15px rgba(0, 111, 176, 0.2);
        }

        .feature-info h4 {
            font-size: 15px;
            font-weight: 700;
            color: var(--text-dark);
            margin: 0 0 5px 0;
        }

        .feature-info p {
            font-size: 13px;
            color: var(--text-gray);
            margin: 0;
            line-height: 1.4;
        }

        .btn-learn-more {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 28px;
            background: var(--primary-color);
            color: #ffffff;
            border-radius: 12px;
            font-weight: 700;
            font-size: 15px;
            transition: all 0.3s ease;
            box-shadow: 0 10px 20px rgba(0, 111, 176, 0.2);
        }

        .btn-learn-more:hover {
            background: var(--primary-dark);
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(0, 111, 176, 0.3);
            color: white;
        }

        @media (max-width: 992px) {
            .about-wrapper {
                flex-direction: column;
                gap: 50px;
            }

            .about-img-col,
            .about-text-col {
                width: 100%;
            }

            .about-stats-badge {
                left: 0;
                top: 20px;
            }

            .title-modern {
                font-size: 32px;
            }
        }

        @media (max-width: 576px) {
            .about-features {
                grid-template-columns: 1fr;
            }
        }

        .point-item i {
            color: var(--accent-yellow);
            font-size: 16px;
            background: var(--primary-color);
            border-radius: 50%;
            width: 20px;
            height: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            flex-shrink: 0;
        }

        .btn-about {
            display: table;
            margin: 0 auto;
            align-items: center;
            gap: 8px;
            background-color: var(--primary-color);
            color: #ffffff;
            padding: 12px 24px;
            border-radius: 24px;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .btn-about:hover {
            background-color: var(--primary-dark);
            transform: translateY(-2px);
        }

        @media (max-width: 900px) {
            .about-wrapper {
                flex-direction: column;
                gap: 30px;
            }

            .about-img-col {
                width: 100%;
                padding: 0 20px;
            }

            .about-text-col {
                width: 100%;
                text-align: left;
            }
        }

        @media (max-width: 768px) {
            .about-wrapper {
                flex-direction: column;
                gap: 30px;
            }

            .about-img-col {
                width: 100%;
                order: 1;
            }

            .about-text-col {
                width: 100%;
                order: 2;
                text-align: center;
            }

            .about-tag {
                display: inline-block;
                margin-bottom: 16px;
            }

            .about-title {
                font-size: 24px;
            }

            .about-desc {
                text-align: center;
                font-size: 15px;
            }

            .about-points {
                grid-template-columns: 1fr;
                justify-items: center;
                margin-bottom: 28px;
            }

            .point-item {
                justify-content: center;
            }
        }

        /* TAMBAHAN CSS UNTUK VIDEO THUMBNAIL */
        .video-thumbnail-wrapper {
            position: relative;
            width: 100%;
            height: 0;
            padding-bottom: 56.25%;
            background-color: #000;
            cursor: pointer;
            overflow: hidden;
        }

        .video-thumbnail-wrapper img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .play-button-overlay {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 2;
            transition: transform 0.3s;
        }

        .video-thumbnail-wrapper:hover .play-button-overlay {
            transform: translate(-50%, -50%) scale(1.1);
        }

        .video-card {
            height: auto;
        }

        @media (max-width: 768px) {
            .video-card {
                height: auto;
            }
        }

        /* FAQ Section */
        .faq-home-section {
            padding: 60px 0;
            background: transparent;
        }

        .faq-item {
            background: white;
            border-radius: 12px;
            margin-bottom: 15px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
            border: 1px solid #eef2f6;
            overflow: hidden;
        }

        .faq-question {
            width: 100%;
            text-align: left;
            padding: 20px;
            background: none;
            border: none;
            font-size: 16px;
            font-weight: 600;
            color: var(--text-dark);
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: 'Albert Sans', sans-serif;
        }

        .faq-question:hover {
            color: var(--primary-color);
        }

        .faq-question i {
            font-size: 18px;
            color: var(--primary-color);
            transition: transform 0.3s ease;
        }

        .faq-question.active i {
            transform: rotate(180deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease;
            padding: 0 20px;
            background-color: #f8fafc;
        }

        .faq-answer.show {
            max-height: 500px;
            padding: 20px;
        }

        .faq-answer p {
            margin: 0 0 10px 0;
            color: var(--text-gray);
            line-height: 1.6;
        }

        .faq-answer ul,
        .faq-answer ol {
            margin: 10px 0 10px 20px;
            color: var(--text-gray);
        }

        .faq-answer li {
            margin-bottom: 5px;
        }

        .visitor-counter-section {
            background: #0c679b;
            color: white;
            border: 3px solid transparent;
            padding: 20px 30px;
            margin: 30px auto;
            max-width: 500px;
            text-align: center;
            font-weight: 700;
            font-size: 1.5rem;
            box-shadow: 0 4px 12px rgba(0, 111, 176, 0.1);
        }

        .visitor-counter-section i {
            margin-right: 12px;
            font-size: 1.8rem;
            vertical-align: middle;
        }

        .visitor-counter-section span {
            vertical-align: middle;
        }
        /* Nested dropdown tetap di dalam dropdown utama (tidak absolute) */
.dropdown-content .has-nested {
    position: relative; /* opsional, bisa dihapus jika tidak diperlukan */
}

.dropdown-content .nested-dropdown {
    position: static !important;      /* lepas dari absolute */
    left: auto !important;
    top: auto !important;
    box-shadow: none !important;      /* hilangkan bayangan */
    border: none !important;          /* hilangkan border */
    border-left: none !important;
    margin-left: 20px;                /* indentasi ke kanan */
    padding: 0;
    background: transparent;          /* latar mengikuti induk */
    display: none;
}

.dropdown-content .has-nested:hover .nested-dropdown {
    display: block;
}

/* Styling link dalam nested dropdown */
.nested-dropdown li a {
    padding: 8px 20px 8px 30px;       /* tambah padding kiri untuk indentasi lebih */
    background-color: #f9f9f9;        /* sedikit beda agar terlihat submenu */
    border-radius: 6px;
    margin: 2px 0;
}

.nested-dropdown li a:hover {
    background-color: var(--primary-color);
    color: white;
}
.nested-dropdown {
    display: none !important;
}
.has-nested.active .nested-dropdown {
    display: block !important;
}