:root {
	scroll-behavior: smooth;
	--color-hitam: #282828;
	--color-abu: #D1D1D1;
	--color-abu-muda: #E6E7E9;
	--color-biru-tua: #043666;
	--color-biru-muda: #04315C;
	--color-kuning: #E9C170;
	--color-body: #fbfcfd;
	--color-biru-active: #2ba9e0;
	--font-primary: "Hanken Grotesk", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--font-secondary: "Hanken Grotesk", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	}
	/* =========================================================
	HEADER CORE
	========================================================= */

	#header {
	z-index: 9999;
	}

	.bg-biru-tua {
	background-color: var(--color-biru-tua);
	color: #fff;
	}

	/* =========================================================
	SUB HEADER (INFO BAR)
	========================================================= */

	#text_sub_header {
	font-size: 13px;
	}

	@media (max-width: 425px) {
	#text_sub_header {
		font-size: 0.65rem;
	}
	}

	/* =========================================================
	ACCORDION INFO (TOP HEADER)
	========================================================= */

	.accordion-trigger {
	cursor: pointer;
	width: 100%;
	border: none;
	background: transparent;
	outline: none;
	transition: 0.4s;
	}

	.panel {
	background-color: transparent;
	display: none;
	overflow: hidden;
	}

	#panel a {
	color: var(--color-biru-tua);
	transition: .2s;
	}

	#panel a:hover {
	text-decoration: underline;
	}

	/* =========================================================
	LOGO AREA
	========================================================= */

	.logo {
	line-height: 1;
	}

	.logo img {
	max-height: 45px;
	margin-right: 6px;
	}

	.logo a img {
	max-height: 35px !important;
	margin-right: 0;
	}

	@media (min-width: 1200px) {
	.logo {
		width: 280px;
	}
	}

	/* =========================================================
	SIDEBAR TOGGLE
	========================================================= */

	.toggle-sidebar-btn {
	cursor: pointer;
	}

	.toggle-sidebar-btn span {
	font-size: 1.2rem;
	}

	/* =========================================================
	HEADER NAV (KANAN)
	========================================================= */

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

	/* =========================================================
	LANGUAGE SWITCHER
	========================================================= */

	.btn-lang {
	background: var(--color-biru-muda);
	color: #ffffff;
	border-radius: 12px;
	padding: 6px 12px;
	border: none;
	font-weight: 500;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	box-shadow:
		inset 2px 2px 4px rgba(0, 0, 0, 0.1),
		inset -2px -2px 4px rgba(0, 0, 0, 0.1);
	transition: all 0.2s ease;
	}

	/* Hilangkan caret bootstrap */
	.btn-lang.dropdown-toggle::after {
	display: none;
	}

	/* =========================================================
	ICON & TEXT
	========================================================= */

	.text_link {
	color: var(--color-biru-tua);
	}

	/* =========================================================
	SEARCH (JIKA DIPAKAI DI HEADER)
	========================================================= */

	#icon_search {
	cursor: pointer;
	color: white;
	transition: .2s;
	}

	#icon_search:hover {
	color: black;
	}

	.search {
	outline: none;
	width: 90%;
	padding: 0 12px;
	border-radius: 6px 0 0 6px;
	border: none;
	}

	.icon_search_input {
	color: var(--color-biru-tua);
	}

	.w-10 {
	width: 10%;
	}

	@media (max-width: 425px) {
	.w-10 {
		width: 15%;
	}
	}

	/* =========================================================
	GENERIC BUTTON (HEADER ONLY)
	========================================================= */

	.button {
	display: inline-block;
	margin: 4px 2px;
	font-size: 14px;
	height: 38px;
	text-align: center;
	color: white;
	cursor: pointer;
	user-select: none;
	}

	.button:hover {
	transition-duration: 0.4s;
	color: black;
	}

	@media (max-width: 768px) {
	.button {
		height: 38px;
	}
	}

	@media (max-width: 425px) {
	.button {
		height: 32px;
	}
	}

	/* =========================================================
	PRINT MODE
	========================================================= */

	@media print {
	#chatbotikawebchat,
	#toggle-widget,
	#toggle-widget-icon {
		display: none !important;
	}
	}
	.bi-list::before {
		content: "\f479";
	}
    
    /* Sidebar */
    .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 995;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    }

    .overlay.active-overlay {
    opacity: 1;
    pointer-events: auto;
    }

    .sidebar {
    position: fixed;
    top: 80px;
    bottom: 0;
    width: 300px;
    z-index: 9999;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #aab7cf transparent;
    box-shadow: 0px 0px 20px rgba(1, 41, 112, 0.1);
    background-color: var(--color-biru-tua);
    transition: opacity 0.5s ease;
    }

    @media (max-width: 1199px) {
    .sidebar {
        left: -500px;
    }
    }

    @media screen and (max-width: 768px) {
    #sidebar{
        width: 300px !important
    }
    }

    @media screen and (max-width: 425px) {
    #sidebar {
        width: 100% !important
    }
    }

    .sidebar::-webkit-scrollbar {
    width: 5px;
    height: 8px;
    background-color: #fff;
    }

    .sidebar::-webkit-scrollbar-thumb {
    background-color: #aab7cf;
    }

    @media (max-width: 1199px) {
    .toggle-sidebar .sidebar {
       left: 0;
    }
    }

    @media (min-width: 1200px) {

		.toggle-sidebar #main,
		.toggle-sidebar #footer {
			margin-left: 0;
		}

		.toggle-sidebar .sidebar {
			left: -300px;
		}
    }

    .sidebar-nav {
    padding: 0;
    margin: 0;
    list-style: none;
    }

    .sidebar-nav li {
    padding: 0;
    margin: 0;
    list-style: none;
    }

    .sidebar-nav .nav-item {
    margin-bottom: 5px;
    }

    .sidebar-nav .nav-heading {
    font-size: 11px;
    text-transform: uppercase;
    color: #899bbd;
    font-weight: 600;
    margin: 10px 0 5px 15px;
    }

    .sidebar-nav .nav-link {
    display: flex;
    align-items: center;
    font-size: 18px;
    font-weight: 600;
    font-family: var(--font-primary);
    color: #fff;
    transition: 0.3s;
    padding: 15px;
    }

    .sidebar-nav .nav-link i {
    font-size: 16px;
    margin-right: 10px;
    color: #4154f1;
    }

    .sidebar-nav .nav-link.collapsed {
    color: #fff;
    }

    .sidebar-nav .nav-link.collapsed i {
    color: #899bbd;
    }

    .sidebar-nav .nav-link:hover,
    .sidebar-nav .nav-link.active {
    color: var(--color-biru-tua);
    background: #fff;
    cursor: pointer;
    }

    .sidebar-nav .nav-link:hover i {
    color: #4154f1;
    }

    .sidebar-nav .nav-link .bi-chevron-down {
    margin-right: 0;
    transition: transform 0.2s ease-in-out;
    }

    .sidebar-nav .nav-link:not(.collapsed) .bi-chevron-down {
    transform: rotate(180deg);
    }

    .sidebar-nav .nav-content {
    margin: 0;
    list-style: none;
    padding: 0;
    }

    .sidebar-nav .nav-content a {
    display: flex;
    align-items: center;
    font-size: 18px;
    font-weight: 600;
    font-family: var(--font-primary);
    color: #fff;
    transition: 0.3;
    padding: 15px;
    transition: 0.3s;
    }

    .sidebar-nav .nav-content a i {
    font-size: 6px;
    margin-right: 8px;
    line-height: 0;
    border-radius: 50%;
    }

    .sidebar-nav .nav-content a:hover,
    .sidebar-nav .nav-content a.active {
    color: var(--color-biru-tua);
    background: #fff;
    cursor: pointer;
    }

    .sidebar-nav .nav-content a.active i {
    background-color: #4154f1;
    }
    /* END SIDEBAR */

    /* Submenu */
    .submenu {
    /* top: 0; */
    left: calc(100% - 10px);
    display: none;
    position: fixed;
    /* top: 100px; */
    /* bottom: 0; */
    width: 300px;
    z-index: 999;
    background-color: var(--color-biru-tua);
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #aab7cf transparent;
    box-shadow: 0px 0px 20px rgba(1, 41, 112, 0.1);
    }

    .submenu.active {
    /*left: 325px;*/
    height: fit-content;
    display: block;
    }
    /* Sembunyikan submenu secara default */
    /*.submenu {
        display: none;
    }*/

    /* Tampilkan submenu saat elemen utama dihover */
    .nav-item:hover .submenu {
        display: block;
        left: 300px;
        min-height: fit-content;
        max-height: 425px;
        overflow-y: scroll;
    }

    .submenu::-webkit-scrollbar{
    display: none;
    }

    .nav-link .bi-chevron-down {
    margin-right: 0;
    transition: transform 0.2s ease-in-out;
    }

    .nav-link.collapsed .bi-chevron-down {
    transform: rotate(0deg);
    }

    .nav-link:not(.collapsed) .bi-chevron-down {
    transform: rotate(180deg);
    }
    /* END SUBMENU */

    /*--------------------------------------------------------------
    # Breadcrumbs
    --------------------------------------------------------------*/


    /* Breadcrumbs */
    .breadcrumb {
        padding-left: 120px !important;
        background: var(--color-biru-muda) !important;
        font-size: 0.875rem !important;
        color: #fff !important;
        font-weight: 600;
    }

    .breadcrumb a {
        color: #fff !important;
        transition: 0.3s;
    }

    .breadcrumb a:hover {
        color: #fff !important;
    }

    .breadcrumb .breadcrumb-item::before {
         color: #fff !important;
    }

    .breadcrumb .active {
        color: #fff !important;
        font-weight: 600;
    }

    .breadcrumb-item + .breadcrumb-item::before {
        content: '' !important;
        display: none !important;
        padding: 0;
        margin: 0;
        background: none;
        border: 0;
    }

    /* Panah default untuk semua breadcrumb */
    .breadcrumb-item::after {
        content: '\E5C8'; /* arrow_right */
        font-family: 'Material Icons';
        font-size: 16px;
        margin-left: .5rem;
        vertical-align: middle;
        color: #2ba9e0;
        display: inline-block;
    }

    .breadcrumb-item:last-child::after {
        transform: rotate(45deg); 
    }

    .breadcrumb-item:only-child::after {
        content: '';
    }

    /* .breadcrumb {
        background: var(--color-biru-muda) !important;
        display: flex;
        flex-wrap: wrap;
        list-style: none !important;
        padding: 0 !important;
        margin: 0 !important;
        color: #fff !important;
        font-size: 0.875rem !important;
    }

    .breadcrumb a {
        color: #fff !important;
        font-size: 0.875rem !important;
    }

    .breadcrumb li {
         color: #fff !important;
         font-size: 0.875rem !important;
    }

    .breadcrumb ol li+li {
        padding-left: 10px;
        color: #fff !important;
    }

    .breadcrumb li+li::before {
        display: inline-block;
        color: #fff !important;
        content: '\F231' !important;
        font-family: 'Bootstrap-icons';
    } */
    

    .sp-module .mod-breadcrumbs.breadcrumb {
        border-radius: 0 !important;
        padding-left: 70px !important;
    }

    .mod-breadcrumbs__divider .icon-location {
        display: none !important;
    }

    .mod-breadcrumbs.breadcrumb {
        padding-top: .25rem !important;   /* py-1 */
        padding-bottom: .25rem !important;
    }

    /* .mod-breadcrumbs__item a {
        line-height: normal;
        padding-top: 0;
        padding-bottom: 0;
        display: inline-flex;
        align-items: center;
    }

    .mod-breadcrumbs__item a,
    .mod-breadcrumbs__item span {
        position: relative;
        top: 0;
    } */

    /* END # Breadcrumbs */

    /* HERO SECTION*/
    .glass {
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            background-color: rgba(255, 255, 255, 0.15);
            border: 1px solid rgba(255, 255, 255, 0.2);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        }
        .dropdown-menu {
            transform-origin: top;
            transform: scaleY(0);
            transition: transform 0.2s ease-in-out;
            opacity: 0;
            pointer-events: none;
        }
        .dropdown-menu.active {
            transform: scaleY(1);
            opacity: 1;
            pointer-events: auto;
        }
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            display: flex;
            justify-content: center;
            align-items: center;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease-in-out;
            z-index: 50;
        }
        .modal-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .side-menu {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            max-width: 320px;
            height: 100%;
            transform: translateX(-100%);
            transition: transform 0.3s ease-in-out;
            z-index: 40;
            padding: 2rem;
            display: flex;
            flex-direction: column;
        }

        .side-menu.active {
            transform: translateX(0) !important;
        }

        .content-blur {
            filter: blur(5px);
            transition: filter 0.3s ease-in-out;
            pointer-events: none;
        }

        .pill-container {
            border-radius: 9999px; /* This creates the pill shape */
            padding: 0.5rem 1.5rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .collapsible-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-in-out;
        }
        .collapsible-content.active {
            max-height: 500px; /* A large value to allow for smooth transition */
        }
        .chevron {
            transition: transform 0.3s ease-in-out;
        }
        .chevron.rotated {
            transform: rotate(90deg);
        }
        
        .darker-glass {
            background-color: rgba(0, 0, 0, 0.2);
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
        }

		.cursor-pointer:hover {
			cursor: pointer;
		}

		/* Overlay transparan */
		.overlay {
			position: fixed;
			inset: 0; /* sama dengan top:0; left:0; bottom:0; right:0 */
			background: rgba(0, 0, 0, 0.5);
			backdrop-filter: blur(4px);
			-webkit-backdrop-filter: blur(4px);
			z-index: 998 !important; /* lebih rendah dari side-menu */
			opacity: 0;
			visibility: hidden;
			transition: all 0.3s ease;
			pointer-events: none; /* tidak bisa diklik ketika disembunyikan */
		}

	/* Saat aktif */
		.overlay.content-blur {
			opacity: 1;
			visibility: visible;
			pointer-events: auto; /* aktif bisa diklik untuk menutup */
		}

		.depth-btn {
			position: relative;
			display: inline-flex;
			align-items: center;
			justify-content: center;
			gap: 6px;
			padding: 0.45rem 1rem;
			border-radius: 999px;
			font-weight: 500;
			font-size: 0.95rem;
			color: rgba(255, 255, 255, 0.9);
			border: 1px solid rgba(255, 255, 255, 0.1);
			background-color: rgba(0, 0, 0, 0.3);
			box-shadow:
				inset 2px 2px 4px rgba(0, 0, 0, 0.35),
				inset -1px -1px 2px rgba(255, 255, 255, 0.2),
				0 1px 5px rgba(0, 0, 0, 0.2);
			backdrop-filter: blur(15px);
			-webkit-backdrop-filter: blur(15px);
			cursor: pointer;
			transition: all 0.25s ease;
		}

		.depth-btn span {
		display: inline-block;
		line-height: 1;
		transform: translateY(1px);
		}

		/* ======= Ikon Panah ======= */
		.depth-btn svg {
		width: 15px;
		height: 15px;
		fill: none;
		stroke: #fff;
		stroke-width: 2;
		transform: translateY(-3px);
		transition: transform 0.25s ease-in-out;
		overflow: visible;
		}

		/* ======= Rotasi ketika dropdown aktif ======= */
		/* .depth-btn.active svg {
		transform: rotate(180deg) translateY(-1px);
		}

		.depth-btn:active {
			background-color: rgba(0, 0, 0, 0.35);
			box-shadow:
				inset 2px 2px 4px rgba(0, 0, 0, 0.4),
				inset -1px -1px 2px rgba(255, 255, 255, 0.2),
				0 1px 5px rgba(0, 0, 0, 0.25);
			transform: translateY(1px);
		} */

				

		.hover-glass:hover{
			background-color: rgba(255, 255, 255, 0.2);
			cursor: pointer !important;
		}

		#side-menu li ul {
		top: 0;
		transform: translateY(0);
		}

		#side-menu li:hover > ul {
		top: calc(50% - 22px);
		}

		#side-menu li ul {
			display: none;
			position: absolute;
			/* sejajarkan secara vertikal */
			/* top: 50%;  */
			left: 100%;
			/* buat pas tengah parent */
			/* transform: translateY(-50%); */
			margin-left: 12px;
			min-width: 250px;
			border-radius: 10px;
			padding: 8px 0;
			z-index: 100;
		}

		#side-menu li:hover > ul,
		#side-menu li.active > ul {
		display: block;
		animation: fadeIn 0.25s ease-in-out;
		}
		#side-menu li ul li {
		color: white;
		font-weight: 500;
		padding: 10px 16px;
		}
		#side-menu li ul li:hover {
		background-color: rgba(255, 255, 255, 0.1);
		color: #fff;
		}
		/* ====== BUTTON ====== */
		.glass-dropdown {
		position: relative;
		display: inline-block;
		}

		.glass-dropdown-btn {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		gap: 6px;
		padding: 0.4rem 1rem;
		border-radius: 999px;
		border: 1px solid rgba(255, 255, 255, 0.15);
		background-color: rgba(0, 0, 0, 0.2);
		color: rgba(255, 255, 255, 0.95);
		cursor: pointer;
		font-weight: 600;
		backdrop-filter: blur(15px);
		-webkit-backdrop-filter: blur(15px);
		transition: all 0.25s ease;
		}

		.glass-dropdown-btn:hover {
		background-color: rgba(0, 0, 0, 0.3);
		transform: translateY(-1px);
		}

		/* ====== MENU ====== */
		.glass-dropdown-menu {
		position: absolute !important; /* agar efek blur di luar parent */
		min-width: 150px;
		background-color: rgba(255, 255, 255, 0.1);
		backdrop-filter: blur(15px);
		-webkit-backdrop-filter: blur(15px);
		border: 1px solid rgba(255, 255, 255, 0.15);
		border-radius: 12px;
		box-shadow: 0 4px 30px rgba(0, 0, 0, 0.25);
		padding: 8px;
		list-style: none;
		display: none;
		z-index: 99999;
		transform: translateY(8px);
		opacity: 0;
		transition: all 0.2s ease-in-out;
		isolation: isolate;
		}

		.glass-dropdown-menu.show {
		transform: translateY(0);
		opacity: 1;
		display: block;
		}

		.glass-dropdown-menu li {
		margin: 0;
		}

		.glass-dropdown-menu a {
		display: block;
		padding: 0.5rem 0.75rem;
		color: rgba(255, 255, 255, 0.95);
		text-decoration: none;
		border-radius: 8px;
		transition: all 0.2s ease;
		}

		.glass-dropdown-menu a:hover {
		background: rgba(255, 255, 255, 0.15);
		}

		@media (max-width: 768px) {
		/* Berlaku hanya untuk layar mobile/tablet kecil */
		#header .glass {
			width: calc(100vw - 16px);   /* hampir full width, sisakan jarak kecil di sisi */
			margin: 0 auto;
			max-width: none !important;  /* override batas 700px */
			/* padding: 0.6rem 1rem; */
			border-radius: 999px;
		}

		#header {
			padding: 0rem !important;
			width: 100% !important;
		}

		#side-menu{
			width: 100% !important;
		}

		#header .glass .inner {
			gap: 0.5rem;
		}

		#header .glass .brand img {
			width: 56px; /* kecilkan logo di mobile */
		}

		#header .glass .brand .brand-text {
			display: none; /* sembunyikan teks agar tidak sempit */
		}

		.depth-btn {
			padding: 6px 10px;
			min-width: 44px;
		}
		}
    /* END HERO SECTION */

    .img-overlay{
        filter: brightness(75%);
    }

	/* --- wrapper panel --- */
        .glass-wrap {
            border-radius: 12px;
            padding: 32px;
            position: relative;
            overflow: hidden;
            text-align: left;
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            background-color: rgba(255, 255, 255, 0.15);
            border: 1px solid rgba(255, 255, 255, 0.2);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
            --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
            --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
            box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
        }

        .glass-wrap h1 {
            color: rgba(255,255,255,0.95);
            font-size: 18px;
            margin-bottom: 8px;
            font-weight: 700;
        }
        .glass-wrap p.lead {
            color: rgba(255,255,255,0.7);
            margin-bottom: 18px;
            font-size: 14px;
        }

        .glass-wrap .menu {
            list-style: none;
            border-radius: 6px;
            overflow: hidden;
            margin-top: 12px;
            padding-left: 0px;
            padding-top: 14px;
            background: transparent;
            
        }

        .glass-wrap .menu li {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 00px 22px;
            min-height: 64px;
            gap: 16px;
            position: relative;
            color: rgba(255,255,255,0.95);
            cursor: pointer;
            transition: background .18s ease, transform .06s ease;
            
            background: rgba(0, 0, 0, 0.4);
            backdrop-filter: blur(6px);      
        }

        .glass-wrap .menu li .left {
            display: flex;
            flex-direction: column;
            text-align: left;
            min-width: 0;
        }
        .glass-wrap .menu li .title {
            font-weight: 600;
            font-size: 16px;
            color: rgba(255,255,255,0.95);
        }
        .glass-wrap .menu li .desc {
            font-size: 13px;
            color: rgba(255,255,255,0.62);
            white-space: nowrap;       
            overflow: hidden;           
            text-overflow: ellipsis;    
            max-width: 100%;
        }

        .glass-wrap .menu li .title-mobile {
            font-weight: 600;
            font-size: 14px;
            color: rgba(255,255,255,0.95);
        }
        .glass-wrap .menu li .subtitle {
            font-weight: 600;
            font-size: 13px;
            color: rgba(255,255,255,0.95);
        }
         .glass-wrap .menu li .desc-mobile {
            font-size: 12px;
            color: rgba(255,255,255,0.62);
            white-space: nowrap;       
            overflow: hidden;           
            text-overflow: ellipsis;    
            max-width: 100%;
        }

        .glass-wrap .menu li:hover {
            background: rgba(255,255,255,0.02);
            transform: translateY(-2px);
        }

        /* thin separators */
        .glass-wrap .menu li + li {
            border-top: 1px solid rgba(255,255,255,0.03);
        }

        /* right arrow */
        .glass-wrap .menu li .arrow {
            opacity: 0.9;
            transform: translateX(4px);
            /* border-radius: 24px; */
        }

        .glass-wrap .menu li:first-child {
            border-top-left-radius: 6px;
            border-top-right-radius: 6px;
        }

        .glass-wrap .menu li:last-child {
            border-bottom-left-radius: 6px;
            border-bottom-right-radius: 6px;
        }

        .glass-wrap .right li{
            padding-top: 0px !important;
            padding-bottom: 0px !important;
            min-height: 40px !important;
        }

        .bubble {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 12px 20px 12px 16px;
            /*border-radius: 12px;  pill shape */
            border-radius: 12px;
            /* -webkit-backdrop-filter: blur(14px) saturate(140%);
            backdrop-filter: blur(14px) saturate(140%);
            box-shadow: 0 4px 20px rgba(0,0,0,0.2); */
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            background-color: rgba(255, 255, 255, 0.15);
            border: 1px solid rgba(255, 255, 255, 0.2);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
            color: rgba(255,255,255,0.9);
            --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
            --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
            box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
        }

        /* Logo kiri (bisa SVG atau gambar) */
        .bubble .logo {
            width: 30px;
            /* height: 24px; */
        }

        /* Teks brand dengan gradasi pelangi */
        .bubble .brand {
            font-weight: 700;
            font-size: 17px;
            background: linear-gradient(90deg,#6d8eff,#b46dff,#ff6da8,#ffb36d);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-right: 4px;
        }

        .bubble .left {
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .bubble .question-input {
            flex: 1;
            width: 100%;
            /* margin-left: 20px; */
            border-radius: 6px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            /* background-color: rgba(0, 0, 0, 0.2);
            box-shadow:
                inset 1px 1px 2px rgba(255, 255, 255, 0.25),
                0 4px 20px rgba(0, 0, 0, 0.25),
                0 2px 8px rgba(0, 0, 0, 0.15); */
            background-color: rgba(0, 0, 0, 0.3);
            box-shadow:
                inset 2px 2px 4px rgba(0, 0, 0, 0.35),
                inset -1px -1px 2px rgba(255, 255, 255, 0.2),
                0 1px 5px rgba(0, 0, 0, 0.2);
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            color: rgba(255,255,255,0.9);
            font-size: 15px;
            padding: 10px 18px;
            outline: none;
            font-family: inherit;
            /* transition: all 0.25s ease; */
        }

        .bubble .question-input::placeholder {
            color: rgba(255, 255, 255, 0.8);
        }

        /* .bubble .question-input:focus {
            background-color: rgba(0, 0, 0, 0.3);
            box-shadow:
                inset 2px 2px 4px rgba(0, 0, 0, 0.35),
                inset -1px -1px 2px rgba(255, 255, 255, 0.2),
                0 1px 5px rgba(0, 0, 0, 0.2);
        } */
        .bubble .question-input:not(:placeholder-shown) {
            background-color: rgba(0, 0, 0, 0.3);
            box-shadow:
                inset 2px 2px 4px rgba(0, 0, 0, 0.35),
                inset -1px -1px 2px rgba(255, 255, 255, 0.2),
                0 1px 5px rgba(0, 0, 0, 0.2);
        }
        #sub-menu-hero{
            margin-top: 12px;
            display: none;
            opacity: 0;
            transform: scale(0.9);
            transition: opacity 0.4s ease, transform 0.4s ease;
            box-shadow: 0 10px 30px rgba(0,0,0,0.25);
            /* border-radius: 16px; */
            /* border-radius: 48px; */
            overflow: hidden;
        }

        .submenu-item-hero{
            background: rgba(0, 0, 0, 0.2) !important;
        }

        #hero-container {
			padding-top : 100px; 
			padding-bottom: 80px;
            padding-left: 12px;
            padding-right: 12px;
			margin-bottom: 16px;
            position: absolute; 
            z-index: 10;  
		}

        @media (min-width: 1024px) {
            #hero-container {
                padding-left: 80px;
                padding-right: 80px;
            }
        }

	#logoHeader strong {
		font-size: 12px;
	}

	.header-side {
		width: 101.2px; 
		flex-shrink: 0;
	}

	@media (max-width: 768px) {
		#logoHeader span{
			padding-top: 0 !important;
  			margin-top: 0 !important;
		}

		#logoHeader strong {
			font-size: 9px !important;
		}

		.logo img {
    		max-height: 24px !important;
		}

		#hero-container {
			padding-top :24px; 
			padding-bottom: 24px;
		}
		
		.glass-wrap p.lead {
            font-size: 12px;
        }

		.glass-wrap .menu li .title {
            font-weight: 600;
            font-size: 14px;
            color: rgba(255,255,255,0.95);
        }
        .glass-wrap .menu li .subtitle {
            font-weight: 600;
            font-size: 13px;
            color: rgba(255,255,255,0.95);
        }
        .glass-wrap .menu li .desc {
            font-size: 12px;
            color: rgba(255,255,255,0.62);
            white-space: nowrap;       
            overflow: hidden;           
            text-overflow: ellipsis;    
            max-width: 100%;
        }
		.submenu {
			position: static !important;
			width: 100% !important;
		}
		.header-side {
			width: 45.34px; 
			flex-shrink: 0;
		}
	}