/* ================================================================
           GOOGLE TRANSLATE CUSTOM STYLE (Menyembunyikan UI Bawaan Google)
        ================================================================ */
        #google_translate_element {
            display: none !important;
        }

        .goog-te-banner-frame {
            display: none !important;
        }

        body {
            top: 0 !important;
        }

        .goog-tooltip {
            display: none !important;
        }

        .goog-tooltip:hover {
            display: none !important;
        }

        .goog-text-highlight {
            background-color: transparent !important;
            border: none !important;
            box-shadow: none !important;
        }

        /* ================================================================
           ROOT & RESET
        ================================================================ */
        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        :root {
            --theme-color: #0040c9;
            --theme-color2: #ff5c00;
            --dark-color: #061153;
            --white-color: #ffffff;
            --body-color: #f5f7fc;
            --border-color: #e8edf5;
            --title-font: 'Manrope', sans-serif;
            --body-font: 'DM Sans', sans-serif;
            --nav-h: 74px;
            --transition: all 0.4s ease 0s;
        }

        body {
            font-family: var(--body-font);
            color: var(--dark-color);
            background: var(--body-color);
            margin: 0;
            padding: 0;
        }

        a {
            text-decoration: none;
        }

        ul {
            list-style: none;
            margin: 0;
            padding: 0;
        }

        button {
            background: none;
            border: none;
            cursor: pointer;
        }

        .prose img {
            border-radius: 0.75rem;
        }

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

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

        /* ================================================================
           HEADER
        ================================================================ */
        .tv-header {
            z-index: 999;
            position: relative;
            width: 100%;
        }

        /* ---- TOP BAR ---- */
        .header-top {
            padding: 0 60px;
            background-color: var(--dark-color);
            position: relative;
            z-index: 1;
        }

        .header-top::before {
            position: absolute;
            content: "";
            z-index: 0;
            top: 0;
            left: 0;
            width: 50%;
            height: 101%;
            background-color: var(--theme-color);
            clip-path: polygon(0 0, 95% 0, 100% 100%, 0% 98%);
        }

        .header-top .inner-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            position: relative;
            z-index: 1;
        }

        .header-top .top-left {
            display: flex;
            align-items: center;
        }

        .header-top .list-style-1 {
            display: flex;
            align-items: center;
            padding: 11px 0;
            margin: 0;
            list-style: none;
        }

        .header-top .list-style-1 li {
            font-family: var(--body-font, sans-serif);
            font-size: 13.5px;
            color: rgba(255, 255, 255, 0.88);
            display: flex;
            align-items: center;
        }

        .header-top .list-style-1 li a {
            display: flex;
            align-items: center;
            gap: 8px;
            color: rgba(255, 255, 255, 0.88);
            transition: var(--transition, 0.3s);
        }

        .header-top .list-style-1 li+li {
            margin-left: 30px;
        }

        .header-top .list-style-1 li>svg {
            margin-right: 8px;
            flex-shrink: 0;
            opacity: 0.85;
        }

        .header-top .list-style-1 li a:hover {
            color: #fff;
        }

        .header-top .outer-box {
            min-width: 300px;
            position: relative;
            z-index: 1;
        }

        .header-top .social-icon-one {
            display: flex;
            align-items: center;
            justify-content: flex-end;
            gap: 4px;
        }

        .header-top .social-icon-one li {
            display: flex;
            align-items: center;
        }

        .header-top .social-icon-one li span {
            font-family: var(--body-font);
            font-size: 13px;
            color: #fff;
            margin-right: 6px;
            font-weight: 500;
        }

        .header-top .social-icon-one li a {
            height: 30px;
            width: 30px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.12);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-left: 6px;
            transition: var(--transition);
            color: #fff;
        }

        .topbar-lang {
            display: flex;
            align-items: center;
            gap: 4px;
            margin-right: 14px;
        }

        .lang-btn {
            background: none;
            border: 1.5px solid transparent;
            border-radius: 4px;
            cursor: pointer;
            padding: 2px 3px;
            display: flex;
            align-items: center;
            transition: var(--transition);
            opacity: 0.6;
        }

        .lang-btn:hover,
        .lang-btn.active {
            border-color: rgba(255, 255, 255, 0.6);
            opacity: 1;
        }

        /* Social Media Hover Colors */
        .social-ig:hover {
            background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%) !important;
            color: #fff !important;
            border-color: transparent !important;
            transform: translateY(-2px);
        }

        .social-yt:hover {
            background: #FF0000 !important;
            color: #fff !important;
            border-color: #FF0000 !important;
            transform: translateY(-2px);
        }

        .social-fb:hover {
            background: #1877F2 !important;
            color: #fff !important;
            border-color: #1877F2 !important;
            transform: translateY(-2px);
        }

        /* ---- MAIN NAVBAR ---- */
        .main-wrapper {
            padding: 0 60px;
            background-color: var(--white-color);
            box-shadow: 0 2px 20px rgba(6, 17, 83, 0.09);
            border-bottom: 3px solid var(--theme-color2);
        }

        .menu-area {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: var(--nav-h);
            position: relative;
        }

        /* Logo */
        .header-logo a {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .header-logo img {
            height: 70px;
            display: block;
        }

        .logo-sep {
            width: 1px;
            height: 34px;
            background: var(--border-color);
            margin-left: 14px;
        }

        /* MENGGESER NAVBAR KE KANAN */
        .nav-outer {
            display: flex;
            align-items: center;
            gap: 60px;
            height: 100%;
            margin-left: auto;
            margin-right: 30px;
        }

        /* ---- MAIN MENU ---- */
        .main-menu a {
            display: block;
            position: relative;
            font-family: var(--title-font);
            font-size: 15px;
            font-weight: 700;
            color: var(--dark-color);
            transition: var(--transition);
        }

        .main-menu a:hover {
            color: var(--theme-color);
        }

        .main-menu li.active>a {
            color: var(--theme-color);
        }

        .main-menu>ul {
            display: flex;
            align-items: center;
            height: 100%;
        }

        .main-menu>ul>li {
            margin-right: 22px;
            position: relative;
            height: 100%;
            display: flex;
            align-items: center;
        }

        .main-menu>ul>li:last-child {
            margin-right: 0;
        }

        .main-menu>ul>li>a {
            height: var(--nav-h);
            display: flex;
            align-items: center;
            text-transform: capitalize;
            letter-spacing: 0.3px;
            white-space: nowrap;
        }

        .main-menu>ul>li>a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            right: 50%;
            height: 3px;
            background: var(--theme-color);
            border-radius: 3px 3px 0 0;
            transition: left 0.3s ease, right 0.3s ease;
        }

        .main-menu>ul>li:hover>a::after,
        .main-menu>ul>li.active>a::after {
            left: 0;
            right: 0;
        }

        /* Sub menu */
        .main-menu ul.sub-menu {
            position: absolute;
            text-align: left;
            top: 100%;
            left: -14px;
            background-color: var(--white-color);
            visibility: hidden;
            min-width: 200px;
            padding: 15px 25px;
            opacity: 0;
            z-index: 999;
            box-shadow: 0px 8px 30px rgba(6, 17, 83, 0.10);
            border-radius: 0 0 8px 8px;
            transform: scaleY(0);
            transform-origin: top center;
            transition: var(--transition);
            border-top: 3px solid var(--theme-color);
        }

        .main-menu ul li:hover>ul.sub-menu {
            visibility: visible;
            opacity: 1;
            transform: scaleY(1);
        }

        .main-menu ul.sub-menu li {
            display: block;
            margin: 0;
        }

        .main-menu ul.sub-menu a {
            font-size: 14.5px;
            color: var(--dark-color);
            font-weight: 500;
            font-family: var(--body-font);
            padding: 9px 0;
            position: relative;
            transition: var(--transition);
        }

        .main-menu ul.sub-menu a::before {
            position: absolute;
            content: "";
            width: 0;
            height: 2px;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            background: var(--theme-color);
            opacity: 0;
            transition: var(--transition);
        }

        .main-menu ul.sub-menu li:hover>a {
            color: var(--theme-color);
            padding-left: 22px;
        }

        .main-menu ul.sub-menu li:hover>a::before {
            opacity: 1;
            width: 14px;
        }

        /* Header right */
        .header-right-wrapper {
            display: flex;
            align-items: center;
            gap: 14px;
            flex-shrink: 0;
        }

        /* CTA Button */
        .theme-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            position: relative;
            overflow: hidden;
            padding: 12px 22px;
            border-radius: 6px;
            background: var(--theme-color2);
            font-family: var(--title-font);
            font-size: 13px;
            font-weight: 700;
            color: var(--white-color);
            white-space: nowrap;
            border: 2px solid var(--theme-color2);
            z-index: 1;
            transition: var(--transition);
        }

        .theme-btn::before {
            content: '';
            position: absolute;
            inset: 0;
            background: var(--dark-color);
            transform: scaleX(0);
            transform-origin: right;
            transition: transform 0.4s ease;
            z-index: -1;
        }

        .theme-btn:hover::before {
            transform: scaleX(1);
            transform-origin: left;
        }

        .theme-btn:hover {
            color: #fff;
            border-color: var(--dark-color);
        }

        .theme-btn .arrow-icon {
            display: flex;
            align-items: center;
            width: 16px;
            height: 16px;
            flex-shrink: 0;
            transition: transform 0.3s ease;
        }

        .theme-btn:hover .arrow-icon {
            transform: translateX(3px);
        }

        /* Hamburger */
        .sidebar-btn {
            display: none;
            flex-direction: column;
            gap: 5px;
            border: 2px solid var(--dark-color);
            border-radius: 50%;
            width: 50px;
            height: 50px;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: var(--transition);
        }

        .sidebar-btn .line {
            display: block;
            height: 2px;
            width: 18px;
            background: var(--dark-color);
            border-radius: 2px;
            transition: var(--transition);
        }

        .sidebar-btn:hover {
            border-color: var(--theme-color);
        }

        .sidebar-btn:hover .line {
            background: var(--theme-color);
        }

        .sidebar-btn:hover .line:nth-child(2) {
            width: 10px;
        }

        /* Sticky header */
        .sticky-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: var(--white-color);
            box-shadow: 0 4px 30px rgba(6, 17, 83, 0.13);
            border-bottom: 3px solid var(--theme-color2);
            z-index: 1000;
            transform: translateY(-100%);
            transition: transform 0.4s ease;
        }

        .sticky-header.fixed-header {
            transform: translateY(0);
        }

        .sticky-header .menu-area {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 60px;
        }

        /* ================================================================
           MOBILE MENU
        ================================================================ */
        .mobile-menu-wrapper {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 9999;
            pointer-events: none;
        }

        .mobile-menu-wrapper.open {
            pointer-events: all;
        }

        .mobile-menu-overlay {
            position: absolute;
            inset: 0;
            background: rgba(6, 17, 83, 0.55);
            opacity: 0;
            transition: opacity 0.35s ease;
        }

        .mobile-menu-wrapper.open .mobile-menu-overlay {
            opacity: 1;
        }

        .mobile-menu-area {
            position: absolute;
            top: 0;
            left: -320px;
            width: 300px;
            height: 100%;
            background: var(--white-color);
            padding: 24px 20px;
            overflow-y: auto;
            transition: left 0.35s ease;
            box-shadow: 4px 0 24px rgba(6, 17, 83, 0.15);
        }

        .mobile-menu-wrapper.open .mobile-menu-area {
            left: 0;
        }

        .mobile-menu-close {
            display: flex;
            justify-content: flex-end;
            margin-bottom: 20px;
        }

        .mobile-menu-close button {
            width: 34px;
            height: 34px;
            border-radius: 50%;
            background: var(--border-color);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            color: var(--dark-color);
            cursor: pointer;
            transition: var(--transition);
        }

        .mobile-menu-close button:hover {
            background: var(--theme-color);
            color: #fff;
        }

        .mobile-logo {
            margin-bottom: 24px;
        }

        .mobile-logo img {
            height: 40px;
        }

        .mobile-nav>ul>li {
            border-bottom: 1px solid var(--border-color);
        }

        .mobile-nav>ul>li>a {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 13px 0;
            font-family: var(--title-font);
            font-size: 14px;
            font-weight: 700;
            color: var(--dark-color);
            transition: var(--transition);
            cursor: pointer;
        }

        .mobile-nav>ul>li>a:hover,
        .mobile-nav>ul>li.active>a {
            color: var(--theme-color);
        }

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

        .mobile-dropdown-icon.rotate {
            transform: rotate(180deg);
        }

        /* Animasi Dropdown Mobile Menu */
        .mobile-sub-menu {
            max-height: 0;
            overflow: hidden;
            opacity: 0;
            margin: 0;
            padding-left: 14px;
            border-left: 2px solid var(--theme-color);
            transition: max-height 0.4s ease-in-out, opacity 0.4s ease-in-out, margin 0.4s ease-in-out;
        }

        .mobile-sub-menu.open {
            max-height: 250px;
            opacity: 1;
            margin: 4px 0 8px;
        }

        .mobile-sub-menu li {
            border-bottom: none;
        }

        .mobile-sub-menu li a {
            padding: 9px 0;
            font-size: 13px;
            font-weight: 600;
            color: #555;
            display: block;
            transition: var(--transition);
        }

        .mobile-sub-menu li a:hover {
            color: var(--theme-color);
            padding-left: 6px;
        }

        .mobile-contact-list {
            margin-top: 24px;
            display: flex;
            flex-direction: column;
            gap: 14px;
        }

        .mobile-contact-item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
        }

        .mobile-contact-icon {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: var(--theme-color);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 13px;
            flex-shrink: 0;
        }

        .mobile-contact-info strong {
            display: block;
            font-family: var(--title-font);
            font-size: 12px;
            font-weight: 700;
            color: var(--dark-color);
        }

        .mobile-contact-info a,
        .mobile-contact-info span {
            font-size: 12.5px;
            color: #777;
        }

        .mobile-social {
            display: flex;
            gap: 8px;
            margin-top: 20px;
        }

        .mobile-social a {
            width: 34px;
            height: 34px;
            border-radius: 50%;
            background: var(--border-color);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--dark-color);
            transition: var(--transition);
        }

        /* ── MENGATUR AREA MAIN AGAR ADA DI DEPAN GELEMBUNG ── */
        main {
            position: relative;
            z-index: 5;
        }

        /* ================================================================
           FOOTER & ANIMASI GELEMBUNG
        ================================================================ */
        .footer-main {
            background: linear-gradient(135deg, #040e3a 0%, #061153 50%, #0d2280 100%);
            font-family: var(--body-font);
            color: #fff;
            padding-top: 64px;
            border-top: 3px solid var(--theme-color2);
            position: relative;
            margin-top: 80px;
            z-index: 1;
        }

        .footer-deco {
            position: absolute;
            inset: 0;
            overflow: hidden;
            pointer-events: none;
            z-index: 0;
        }

        .footer-deco::before {
            content: '';
            position: absolute;
            top: -100px;
            right: -100px;
            width: 360px;
            height: 360px;
            border-radius: 50%;
            background: rgba(0, 64, 201, 0.08);
        }

        .footer-deco::after {
            content: '';
            position: absolute;
            bottom: 50px;
            left: -80px;
            width: 240px;
            height: 240px;
            border-radius: 50%;
            background: rgba(255, 92, 0, 0.05);
        }

        /* Gelembung Animasi Wrapper */
        .footer-bubbles {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            pointer-events: none;
            overflow: hidden;
        }

        .f-bubble {
            position: absolute;
            bottom: -50px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.07);
        }

        /* Gelembung bergerak naik ke atas lalu hilang */
        @keyframes floatUp {
            0% {
                transform: translateY(0) scale(1);
                opacity: 0;
            }

            10% {
                opacity: 1;
            }

            80% {
                opacity: 1;
            }

            100% {
                transform: translateY(-1200px) scale(1.3);
                opacity: 0;
            }
        }

        /* Setel ukuran, letak acak & durasi di percepat */
        .f-bubble.b1 {
            left: 15%;
            width: 45px;
            height: 45px;
            animation: floatUp 9s infinite linear;
        }

        .f-bubble.b2 {
            left: 35%;
            width: 25px;
            height: 25px;
            animation: floatUp 11s infinite linear 2s;
        }

        .f-bubble.b3 {
            left: 55%;
            width: 55px;
            height: 55px;
            animation: floatUp 10s infinite linear 4s;
        }

        .f-bubble.b4 {
            left: 75%;
            width: 35px;
            height: 35px;
            animation: floatUp 8s infinite linear 1s;
        }

        .f-bubble.b5 {
            left: 88%;
            width: 20px;
            height: 20px;
            animation: floatUp 12s infinite linear 5s;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 60px 48px;
            display: grid;
            grid-template-columns: 1.7fr 1fr 1.2fr 1.2fr;
            gap: 36px;
            position: relative;
            z-index: 2;
        }

        .footer-logo-wrap {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 16px;
        }

        .footer-logo-wrap img {
            height: 80px;
        }

        .footer-desc {
            font-size: 13.5px;
            color: rgba(255, 255, 255, 0.60);
            line-height: 1.75;
            margin-bottom: 20px;
        }

        .footer-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(255, 92, 0, 0.12);
            border: 1px solid rgba(255, 92, 0, 0.30);
            border-radius: 20px;
            padding: 5px 14px;
            font-size: 11.5px;
            font-weight: 600;
            color: var(--theme-color2);
        }

        .footer-heading {
            font-family: var(--title-font);
            font-size: 11px;
            font-weight: 700;
            color: var(--theme-color2);
            letter-spacing: 2.5px;
            text-transform: uppercase;
            margin-bottom: 18px;
            padding-bottom: 10px;
            border-bottom: 1px solid rgba(255, 92, 0, 0.20);
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.65);
            font-size: 13.5px;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: var(--transition);
        }

        .footer-links a::before {
            content: '›';
            color: var(--theme-color2);
            font-size: 17px;
            font-weight: 700;
            line-height: 1;
        }

        .footer-links a:hover {
            color: #fff;
            padding-left: 4px;
        }

        .footer-contact li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            font-size: 13px;
            color: rgba(255, 255, 255, 0.65);
            margin-bottom: 14px;
            line-height: 1.6;
        }

        .footer-contact-icon {
            width: 32px;
            height: 32px;
            flex-shrink: 0;
            background: rgba(0, 64, 201, 0.30);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
        }

        .footer-social {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .footer-social a {
            width: 36px;
            height: 36px;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255, 255, 255, 0.75);
            transition: var(--transition);
        }

        .footer-bottom {
            max-width: 1200px;
            margin: 0 auto;
            padding: 16px 60px;
            border-top: 1px solid rgba(255, 255, 255, 0.10);
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-size: 12.5px;
            color: rgba(255, 255, 255, 0.40);
            position: relative;
            z-index: 2;
        }

        .footer-bottom-links {
            display: flex;
            gap: 18px;
        }

        .footer-bottom-links a {
            color: rgba(255, 255, 255, 0.40);
            transition: color 0.2s;
        }

        .footer-bottom-links a:hover {
            color: var(--theme-color2);
        }

        /* ================================================================
           RESPONSIVE
        ================================================================ */
        @media (max-width: 1199px) {
            .header-top {
                display: none;
            }

            .header-right-wrapper {
                display: none;
            }

            .main-wrapper {
                padding: 0 24px;
            }

            .sticky-header .menu-area {
                padding: 0 24px;
            }

            .footer-container {
                padding: 0 24px 40px;
                grid-template-columns: 1fr 1fr;
            }

            .footer-bottom {
                padding: 14px 24px;
            }
        }

        @media (max-width: 991px) {
            .nav-outer {
                display: none;
            }

            .sidebar-btn {
                display: flex;
            }

            .mobile-menu-wrapper {
                display: block;
            }
        }

        @media (max-width: 600px) {
            .footer-container {
                grid-template-columns: 1fr;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 8px;
                text-align: center;
            }
        }
