@import url('https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');
@import url('animated.css');
@import url('scrollbar.css');

:root {
    --font-montserrat: "Montserrat", sans-serif;
    --font-inter: "Inter", sans-serif;
    --font-heading: "Plus Jakarta Sans", sans-serif;
    --font-body: "Inter", sans-serif;

    --color-mainGold: #D6C26A;
    --color-darkGold: #94812d;
    --color-notWhite: #EDF3F1;
    --color-notBlack: #1E1E1E;
    --color-cream:#F0EDD8;
    --color-darkGreen: #0F1E1C;
    --color-primary: #084643;
    --color-primaryBackground: #163331;

    --page-background: #061f1d;
    --page-bg: #061f1d;
    --surface: rgba(255, 255, 255, 0.055);
    --surface-hover: rgba(255, 255, 255, 0.085);
    --border: rgba(240, 237, 219, 0.18);
    --border-strong: rgba(214, 194, 106, 0.36);
    --text: #f5f4ed;
    --text-muted: rgba(245, 244, 237, 0.67);
    --gold: #d6c26a;
    --gold-bright: #edd77d;
    --deep-green: #082b28;
    --shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

::-webkit-scrollbar{
    display: none;
}
* {
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html { overflow-x: hidden; line-height: 1.5;  }
body {
    margin: 0;
    overflow-x: hidden;
    background:
        radial-gradient(circle at 90% 30%, rgba(22, 128, 114, 0.15), transparent 35%),
        var(--page-background);
    color: var(--text);
    font-family: var(--font-body);
}
a {
    text-decoration: none;
	color: inherit;
}
button {
    background: transparent;
    border: none;
    padding: 0;
    outline: none;
    cursor: pointer;
}

img, svg {
    display: block;
    max-width: 100%;
}

.margin-x-section {
	padding-left: 24px;
	padding-right: 24px;
}
.section-container {
    max-width: 1600px;
    margin-inline: auto;
}
.title-text-shadow {
    text-shadow: 3px 3px 1px #000040;
}
.title-text-shadow-2 {
    text-shadow: 1.5px 1.5px 1px #000040;
}
.badge-glow {
    box-shadow: 0 0 20px rgba(214, 194, 106, 0.4);
    transition: box-shadow 0.3s ease-in-out;
}
.graphic-shadow {
    filter: drop-shadow(10px 30px 15px rgba(0, 0, 0, 0.4));
    -webkit-filter: drop-shadow(10px 30px 15px rgba(0, 0, 0, 0.4));
}
.noselect, img {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* START PRELOADER */
.preloader{ 
	position:fixed; 
	left:0px; 
	top:0px; 
	width:100%; 
	height:100%; 
	z-index:999999; 
	background-color:rgba(0,0,0,0); 
} 
.preloader .icon{ 
	position:fixed; 
	left:0px; 
	top:0px; 
	width:100%; 
	height:100%; 
	z-index:1; 
	background-color:rgba(0,0,0,0); 
	background-position:center center; 
	background-repeat:no-repeat; 
	background-image:url(../images/graphic/gear\ full\ 9.svg);

	/* GANTI INI: Pakai Pixel biar anteng pas browser ditarik */
    background-size: 974px auto;

	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
	animation: 2s gearAnimation linear infinite;
} 
.preloader .other-icon{ 
	position:fixed; 
	left:0px; 
	top:0px; 
	width:100%; 
	height:100%; 
	z-index:2; 
	background-color:rgba(0,0,0,0); 
	background-position:center center; 
	background-repeat:no-repeat; 
	background-image:url(../images/graphic/rebuild\ tanpa\ gear.svg);
	/* GANTI INI: Pakai Pixel juga biar sinkron */
    background-size: 397px auto;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
	margin-left: 34px;
} 
.page-loaded .preloader .icon,
.page-loaded .preloader .other-icon{
	opacity:0; 
}
.preloader:before{
	content:'';
	position:absolute;
	left:0;
	top:0;
	width:100%;
	height:100%;
	background:#ffffff;
	z-index:0; 
	-webkit-transform:translateX(0%);
	-ms-transform:translateX(0%);
	transform:translateX(0%);
	-webkit-transition: all 800ms ease;
	-moz-transition: all 800ms ease;
	-ms-transition: all 800ms ease;
	-o-transition: all 800ms ease;
	transition: all 800ms ease;
}
.page-loaded .preloader:before{
	-webkit-transform:translateX(-101%);
	-ms-transform:translateX(-101%);
	transform:translateX(-101%);
}
.preloader:after{
	content:'';
	position:absolute;
	left:0;
	top:0;
	width:100%;
	height:100%;
	background: linear-gradient(to right, #0F1E1C, #1e3d39);
	z-index:2; 
	-webkit-transform:translateX(101%);
	-ms-transform:translateX(101%);
	transform:translateX(101%);
	-webkit-transition: all 800ms ease;
	-moz-transition: all 800ms ease;
	-ms-transition: all 800ms ease;
	-o-transition: all 800ms ease;
	transition: all 800ms ease;
}
.page-loaded .preloader:after{
	-webkit-transform:translateX(-101%);
	-ms-transform:translateX(-101%);
	transform:translateX(-101%);
}
/* END PRELOADER */

/* START HEADER */
.page-wrapper{
	position:relative;
	margin:0 auto;
	width:100%;
	min-width:300px;
	z-index: 9;
	overflow: hidden;
}
.auto-container{
	position:static;
	max-width:1200px;
	padding:0px 15px;
	margin:0 auto;
}
.pull-right{
	float: right;
}
.pull-left{
	float: left;
}

/* State 1: Saat di atas (Sticky & Transparan) */
.header-absolute {
    position: absolute !important;
    background-color: transparent !important;
    box-shadow: none !important;
    top: 0;
}

/* State 2: Saat Melayang (Fixed & Glassy) */
.header-fixed {
    position: fixed !important;
    top: 0;
    background-color: rgba(22, 46, 43, 0.4) !important; /* Warna himtika-dark dengan opacity */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	box-shadow: 0 4px 8px rgba(0, 0, 0, 1); /* Shadow di bawah header */
}

/* .main-header{
	position: fixed;
	display: block;
	width: 100%;
	z-index: 99999;
	background-color:#252742;
} */
.main-header{
	display: block;
	width: 100%;
	z-index: 99999;
	transition: transform 0.5s ease, opacity 0.5s ease !important;
	
}
.main-header .header-top{
	position: relative;
	transition: opacity 0.3s ease;
}

/* Live News */
.live-news {
    background: linear-gradient(to right, black 0%, #94812d 30%, #c5ad43 100%);
    position: fixed;
    width: 115%;
    height: 45px;
    top: 0;
    left: 0;
}
.live-news .auto-container {
    max-width: 100% !important;
    padding: 0 30px !important;
    margin: 0 !important;
}
.live-news .rectangle {
    position: absolute;
    left: 0;
    top: 0;
    width: 310.5px;
    height: 45px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
	gap: 15px;
    box-shadow: #1C1E32;
}
.live-news .rectangle .rectangle-img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: -13px;
    z-index: 1;
}
.live-news .rectangle .rectangle-shadow {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 5px;
    z-index: 0;
}
.live-news .rectangle .kabinet-selaras {
    position: relative;
    z-index: 2;
    color: white;
    font-size: 17px;
    font-weight: 500;
    line-height: 20px;
	font-family: "Montserrat";
}
.live-news .rectangle .selaras {
    position: relative;
    z-index: 2;
    width: 45px;
    height: 45px;
    margin: 10px 50px 0 0;
}
.live-news .marquee {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
	
}
.live-news .marquee span {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 20s linear infinite;
    color: white;
    align-content: center;
    line-height: 45px;
    font-size: 16px;
    font-family: "Figtree";
	text-shadow: 2px 2px 2px #000040;
}
.live-news .marquee span a {
    color: white;
    text-decoration: underline;
    font-weight: bold;
}
.live-news .marquee span:hover {
    animation-play-state: paused;
}
.main-header .header-top .top{
	position: relative;
}

/*=== Header Upper ===*/
.header-upper{
	position: relative;
	top: 0;
	/* background-color:#252742; */
	height: 87px;
	left: 0;
    right: 0;
	/* box-shadow: 0 4px 8px rgba(0, 0, 0, 1); Shadow di bawah header */
    transition: top 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}
.header-upper.sticky {
    top: 0;  /* Header akan berada di atas */
}
.main-header .nav-outer .logo-outer{
	position: absolute;
	left: 50%;
	z-index:2;
	transform: translateX(-50%);
	margin-top: 7px;
}
.main-header .nav-outer{
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 15px;
	position: sticky;
	float: right;
	width:100%;
	z-index:1;
}
/* 
.main-header .nav-outer .logo-header{
	display: inline-block;
	max-width: 200px;
	position: relative;
} */
.main-header .nav-outer .logo-outer img{
	position: relative;
	display: inline-block;
	width: 190px;
	/* height: 200px; */
}

/* Main Menu */
.main-menu{
	position:relative;
	float:left;
	width:90%;
	padding: 7px 0;
	margin: auto;
}
.main-menu .navbar-collapse{
	padding:0px;
	display:block !important;
}
.main-menu .navigation{
	position:relative;
	margin: -3px;
}
.main-menu .navigation > li{
	position:relative;
	float:left;
	z-index:2;
	padding:25px 0px;
	margin-right: 85px;
	-webkit-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
	transition:all 300ms ease;
}
.main-menu .navigation > li:last-child{
	margin-right:0px;
}
.main-menu .navigation > li > a{
	font-family: "Montserrat";
	position:relative;
	display:block;
	text-align:center;
	font-size:16px;
	line-height:28px;
	font-weight:400;
	opacity:1;
	color:white;
	padding: 0px;
	z-index:1;
	-webkit-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
	transition:all 300ms ease;
}
.main-menu .navigation > li:hover > a,
.main-menu .navigation > li.current > a{
	color: #ffffff;
}
.main-menu .navigation > li > ul{
	position:absolute;
	left:0px;
	top:100%;
	width:230px;
	z-index:100; 
	display: block !important;
	opacity: 0;
    visibility: hidden;
	overflow: hidden;

    transform: translateY(30px);
    transition: all 400ms ease; 

	padding: 0px 0px;
	background-color: #ffffff;
	border-top: 2px solid #00978d;
	border-bottom: 2px solid #00978d;
	-moz-transform: translateY(30px);
	-webkit-transform: translateY(30px);
	-ms-transform: translateY(30px);
	-o-transform: translateY(30px);
    transform: translateY(30px);
	-webkit-box-shadow:2px 2px 5px 1px rgba(0,0,0,0.05),-2px 0px 5px 1px rgba(0,0,0,0.05);
	-ms-box-shadow:2px 2px 5px 1px rgba(0,0,0,0.05),-2px 0px 5px 1px rgba(0,0,0,0.05);
	-o-box-shadow:2px 2px 5px 1px rgba(0,0,0,0.05),-2px 0px 5px 1px rgba(0,0,0,0.05);
	-moz-box-shadow:2px 2px 5px 1px rgba(0,0,0,0.05),-2px 0px 5px 1px rgba(0,0,0,0.05);
	box-shadow:2px 2px 5px 1px rgba(0,0,0,0.05),-2px 0px 5px 1px rgba(0,0,0,0.05);
	border-radius: 8px;
}
.main-menu .navigation > li > ul > li{
	position:relative;
	width:100%;
	border-bottom:1px solid rgba(0,0,0,0.10);
}
.main-menu .navigation > li > ul > li:last-child{
	border-bottom:none;	
}
.main-menu .navigation > li > ul > li:before{
	position:absolute;
	content:'';
	left:0px;
	top:0px;
	width:0%;
	height:100%;
	display:block;
	background:#104642;
	transition:all 500ms ease;
	-moz-transition:all 500ms ease;
	-webkit-transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;
}
.main-menu .navigation > li > ul > li:hover:before{
	width:100%;
}
.main-menu .navigation li a {
    text-decoration: none;
}
.main-menu .navigation > li > ul > li > a {
	position:relative;
	display:block;
	padding:12px 20px;
	line-height:24px;
	font-weight:500;
	font-size:15px;
	font-family: "Figtree";
	text-decoration: none;
	text-transform:capitalize;
	color:#252525;
	text-align: left;
	transition:all 500ms ease;
	-moz-transition:all 500ms ease;
	-webkit-transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;
}
.main-menu .navigation > li > ul > li:hover > a{
	color:#ffffff;
}
.arrow {
    font-size: 10px;
    margin-left: 6px;
    transition: transform 0.3s ease;
	opacity: 0.5;
}
.main-menu .dropdown:hover .arrow {
    transform: rotate(180deg);
	opacity: 1;
}
.main-menu .navigation > li > ul > li.dropdown > a:after{
	font-family: "Figtree";
	content: "\f105";
	position:absolute;
	right:20px;
	top:12px;
	display:block;
	line-height:24px;
	font-size:16px;
	font-weight:800;
	text-align:center;
	z-index:5;	
}
.main-menu .navigation > li > ul > li > ul.from-right{
	left:auto;
	right:0px;	
}
.main-menu .navigation > li > ul > li > ul > li{
	position:relative;
	width:100%;
	border-bottom:1px solid rgba(0,0,0,0.10);
}

.main-menu .navigation > li > ul > li > ul > li:last-child{
	border-bottom:none;	
}

.main-menu .navigation > li > ul > li > ul > li:hover:before{
	width:100%;	
}

.main-menu .navigation > li > ul > li > ul > li:last-child{
	border-bottom:none;	
}

.main-menu .navigation > li > ul > li > ul > li > a{
	position:relative;
	display:block;
	padding:12px 20px;
	line-height:24px;
	font-weight:500;
	font-size:15px;
	font-family: "Figtree";
	text-transform:capitalize;
	color:#252525;
	text-align: left;
	transition:all 500ms ease;
	-moz-transition:all 500ms ease;
	-webkit-transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;
}

.main-menu .navigation > li > ul > li > ul > li:hover > a{
	color:#ffffff;
}

.main-menu .navigation .dropdown {
    position: relative;
    display: inline-block;
}

.main-menu .navigation > li.dropdown:hover > ul{
	visibility:visible;
	opacity:1;
	-moz-transform: translateY(0);
	-webkit-transform: translateY(0);
	-ms-transform: translateY(0);
	-o-transform: translateY(0);
    transform: translateY(0);
	transition:all 400ms ease;
	-moz-transition:all 300ms ease;
	-webkit-transition:all 500ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
}

.main-menu .navigation li.dropdown .dropdown-btn{
	position:absolute;
	width:34px;
	height:30px;
	border:1px solid #ffffff;
	text-align:center;
	font-size:16px;
	line-height:26px;
	color:#ffffff;
	cursor:pointer;
	z-index:5;
	display:none;
}

.dropdown-toggle::after{
	display: none;
}

/* Mobile Menu */
.nav-outer .mobile-nav-toggler{
	position: relative;
	float: right;
	font-size: 40px;
	line-height: 50px;
	cursor: pointer;
	color: white;
	display: none;
}

.mobile-menu{
	position: fixed;
	right: 0;
	top: 0;
	width: 300px;
	padding-right:20px;
	max-width:100%;
	height: 100vh; /*diubah dari 100% jadi 100vh*/
	opacity: 0;
	visibility: hidden;
	z-index: 9999999 !important;
}

.mobile-menu .navbar-collapse{
	display:block !important;	
}

.mobile-menu .nav-logo{
	position:relative;
	padding:30px 25px;
	text-align:left;	
}

.mobile-menu-visible{
	overflow: hidden;
}

.mobile-menu-visible .mobile-menu{
	opacity: 1;
	visibility: visible;
}

.mobile-menu .menu-backdrop{
	position: fixed;
	right: 0;
	top: 0;
	width: 100%;
	height: 100vh; /*diubah dari 100% jadi 100vh*/
	z-index: 1;
	background: #162E2B;
	-webkit-transform: translateX(101%);
	-ms-transform: translateX(101%);
	transform: translateX(101%);
	transition: all 900ms ease;
    -moz-transition: all 900ms ease;
    -webkit-transition: all 900ms ease;
    -ms-transition: all 900ms ease;
    -o-transition: all 900ms ease;
}

.mobile-menu-visible .mobile-menu .menu-backdrop{
	opacity: 0.70;
	visibility: visible;
	-webkit-transition:all 0.7s ease;
	-moz-transition:all 0.7s ease;
	-ms-transition:all 0.7s ease;
	-o-transition:all 0.7s ease;
	transition:all 0.7s ease;
	-webkit-transform: translateX(0%);
	-ms-transform: translateX(0%);
	transform: translateX(0%);
}

.mobile-menu .menu-box{
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	max-height: 100%;
	overflow-y: auto;
	background: #162E2B;
	padding: 0px 0px;
	z-index: 5;
	opacity: 0;
	visibility: hidden;
	border-radius: 0px;
	-webkit-transform: translateX(101%);
	-ms-transform: translateX(101%);
	transform: translateX(101%);
}

.mobile-menu-visible .mobile-menu .menu-box{
	opacity: 1;
	visibility: visible;
	-webkit-transition:all 0.7s ease;
	-moz-transition:all 0.7s ease;
	-ms-transition:all 0.7s ease;
	-o-transition:all 0.7s ease;
	transition:all 0.7s ease;
	-webkit-transform: translateX(0%);
	-ms-transform: translateX(0%);
	transform: translateX(0%);
}

.mobile-menu .close-btn{
	position: absolute;
	right: 10px;
	top: 10px;
	line-height: 30px;
	width: 24px;
	text-align: center;
	font-size: 16px;
	color: #ffffff;
	cursor: pointer;
	z-index: 10;
	-webkit-transition:all 0.9s ease;
	-moz-transition:all 0.9s ease;
	-ms-transition:all 0.9s ease;
	-o-transition:all 0.9s ease;
	transition:all 0.9s ease;
}

.mobile-menu-visible .mobile-menu .close-btn{
	-webkit-transform:rotate(360deg);
	-ms-transform:rotate(360deg);
	transform:rotate(360deg);
}

.mobile-menu .close-btn:hover{
	color: black;
	-webkit-transform:rotate(90deg);
	-ms-transform:rotate(90deg);
	transform:rotate(90deg);
	filter: drop-shadow(0px 0px 1px white);
}

.mobile-menu .navigation{
	position: relative;
	display: block;
	width: 100%;
	float: none;
}

.mobile-menu .navigation li{
	position: relative;
	display: block;
	border-top: 1px solid rgba(255,255,255,0.10);
}

.mobile-menu .navigation:last-child{
	border-bottom: 1px solid rgba(255,255,255,0.10);
}

.mobile-menu .navigation li > ul > li:first-child{
	border-top: 1px solid rgba(255,255,255,0.10);
}

.mobile-menu .navigation li > a{
	position: relative;
	display: block;
	line-height: 24px;
	padding: 10px 25px;
	font-size: 15px;
	font-weight: 500;
	font-family: "Figtree";
	text-decoration: none;
	color: #ffffff;
	text-transform: uppercase;
	-webkit-transition: all 500ms ease;
	-moz-transition: all 500ms ease;
	-ms-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	transition: all 500ms ease;	
}

.mobile-menu .navigation li ul li > a{
	font-size: 16px;
	font-family: "Figtree";
	margin-left: 20px;
	text-transform: none;
}

.mobile-menu .navigation li.current > a,
.mobile-menu .navigation li > a:hover{
	color:white;	
}

.mobile-menu .navigation li.current > a:before{
	height:100%;
}

.mobile-menu .navigation li.dropdown .dropdown-btn{
	position:absolute;
	right:6px;
	top:6px;
	width:32px;
	height:32px;
	text-align:center;
	font-size:16px;
	line-height:32px;
	color:#ffffff;
	background:rgba(255,255,255,0.10);
	cursor:pointer;
	border-radius:2px;
	-webkit-transition: all 500ms ease;
	-moz-transition: all 500ms ease;
	-ms-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	transition: all 500ms ease;	
	z-index:5;
}

.mobile-menu .navigation li.dropdown .dropdown-btn.open{
	background:#c5ad43;	
	-webkit-transform:rotate(90deg);
	-ms-transform:rotate(90deg);
	transform:rotate(90deg);	
}

.mobile-menu .navigation li > ul,
.mobile-menu .navigation li > ul > li > ul{
	display: none;
	position: relative; /*tambahan sampai margin untuk animasi out ketika nutup menu mobilenya*/
    width: 100%;
    padding: 0;
    margin: 0;
}

.mobile-menu .social-links{
	position:relative;
	text-align:center;
	padding:30px 25px;
}

.mobile-menu .social-links li{
	position:relative;
	display:inline-block;
	margin:0px 10px 10px;
}

.mobile-menu .social-links li a{
	position:relative;
	line-height:32px;
	font-size:16px;
	color:#ffffff;
	-webkit-transition: all 500ms ease;
	-moz-transition: all 500ms ease;
	-ms-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	transition: all 500ms ease;	
	padding: 8px;
	font-size: 20px;
}

.mobile-menu .social-links li a:hover{
	color: #c5ad43;	
}
/* END HEADER */

/* START HERO SECTION */
.hero-section {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 100dvh;
    padding-top: 80px;
    overflow: hidden;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    font-family: var(--font-montserrat);
    transition: all 0.5s ease-in-out;
}
.hero-section ::selection {
    background-color: var(--color-darkGold);
    color: #ffffff;
}
.hero-section .bg-mobile-swap {
    position: absolute;
    inset: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center bottom;
    display: block;
    z-index: 0;
}
.hero-section .hero-btn-group {
    display: flex;
    flex-wrap: wrap; /* flex-wrap */
    justify-content: center; /* justify-center */
    align-items: center; /* items-center */
    gap: 16px; /* gap-4 */
    width: 100%; /* w-full */
    margin-top: 25px;
    font-family: var(--font-inter);
}
.btnleft::before{
    content: "";
    position: absolute;
    height: 100%;
    width: 0%;
    top: 0;
    left: -40px;
    background-color: #917b31;
    z-index: -1;
    transition: all 0.5s;
}
.btnleft:hover::before {
    width: 160%;
}
.btnhero-1 {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px; /* gap-2 */
    padding: 8px 16px; /* py-2 px-4 */
    background-color: var(--color-mainGold); /* bg-mainGold */
    border: 1px solid #facc15; /* border-yellow-400 */
    border-radius: 9999px; /* rounded-full */
    overflow: hidden; /* overflow-hidden */
    z-index: 1; /* z-1 */
    cursor: pointer; /* cursor-pointer */
    font-weight: 500; /* font-medium */
    color: #000000; /* text-black */
    font-family: var(--font-inter);
    transition: all 500ms ease-in-out; /* duration-500 ease-in-out */
}
.btnhero-1:hover {
    transform: translateY(-2px); /* hover:-translate-y-0.5 */
    color: #ffffff; /* hover:text-white */
}

.btnhero-1 span {
    font-size: 12px; /* text-xs */
    color: #000000; /* text-black */
    text-decoration: none; /* no-underline */
    transition: color 500ms ease-in-out; /* duration-500 ease-in-out */
}
.btnhero-1:hover span {
    color: #ffffff; /* group-hover:text-white */
}

.btnhero-1 svg {
    width: 15px;
    height: 15px;
    fill: currentColor; /* fill-current */
    transform: rotate(180deg); /* rotate-180 */
    transition: transform 500ms ease-in-out; /* duration-500 ease-in-out */
}
.btnhero-1:hover svg {
    transform: rotate(0deg); /* group-hover:rotate-0 */
}
.btnhero-2 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px; /* py-2 px-4 */
    background-color: transparent;
    border: 1px solid var(--color-mainGold); /* border-mainGold */
    border-radius: 9999px; /* rounded-full */
    color: #ffffff; /* text-white */
    font-size: 12px; /* text-xs */
    font-family: var(--font-inter);
    cursor: pointer;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(2px);
    transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}
.btnhero-2:hover {
    background-color: rgba(255, 255, 255, 0.1); /* hover:bg-white/10 */
    border-color: rgba(255, 255, 255, 0.8); /* hover:border-white/80 */
    transform: translateY(-2px); /* hover:-translate-y-0.5 */
}
.floating {
    animation: float 3s ease-in-out infinite;
}
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}
.hero-container {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    align-items: center;
    width: 100%;
}
.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.hero-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    width: fit-content;
    padding-left: 12px;
    padding-right: 12px;
    padding-top: 6px;
    padding-bottom: 6px;
    border: 1px solid var(--color-mainGold);
    border-radius: 24px;
    font-weight: 600;
    color: var(--color-mainGold);
    background: linear-gradient(
        to right,
        var(--color-darkGreen),
        var(--color-primary)
    );
}
.hero-badge-icon {
    width: 13px;
    height: 13px;
}
.hero-badge-title {
    font-size: 9px;
    line-height: 1;
}
.hero-title {
    margin-top: 17px;
    color: var(--color-notWhite);
    font-size: 26px;
    font-weight: 600;
    line-height: 1.25;
}
.hero-title span {
    color: var(--color-mainGold);
}
.hero-description {
    width: 90%;
    margin-top: 20px;
    margin-inline: auto;
    color: var(--color-notWhite);
    font-family: var(--font-inter);
    font-size: 12px;
}
.hero-mobile-graphic-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 28px;
}
.hero-mobile-graphic {
    width: 200px;
}
.hero-desktop-graphic-wrapper {
    display: none;
}
/* END HERO SECTION */

/* START KALENDER SECTION */
.upcoming-section,
.calendar-section {
    position: relative;
    padding-block: 64px;
    transition: all 0.5s ease-in-out;
}
.upcoming-section ::selection ,
.calendar-section ::selection {
    background-color: var(--color-darkGold);
    color: #ffffff;
}

.upcoming-section {
    border-top: 2px solid rgba(255, 255, 255, 0.08);
    border-bottom: 2px solid rgba(255, 255, 255, 0.08);
}

.calendar-section {
    position: relative;
    z-index: 2;
    background:
        radial-gradient(circle at 100% 70%, rgba(214, 194, 106, 0.07), transparent 32%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.012), transparent);
}

.section-heading {
    margin-bottom: 28px;
    font-family: var(--font-montserrat);
}

.section-heading--row {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.section-eyebrow {
    margin: 0 0 8px;
    color: var(--color-mainGold);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    font-family: var(--font-montserrat);
}

.section-heading h2,
.agenda-panel h3,
.event-dialog h2 {
    margin: 0;
    font-family: var(--font-montserrat);
    font-weight: 600;
}

.section-heading h2 {
    /* font-size: clamp(20px, 6vw, 36px); */
    font-size: 20px;
    line-height: 1.2;
}

.section-link {
    display: none;
    transition: color 0.3s ease;
}
.section-link span {
    display: inline-block;
    transition: transform 0.5s ease;
}
.section-link span:hover {
    transform: translateX(-8px);
}

.section-link-mobile {
    width: fit-content;
    color: var(--text);
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    color: var(--color-mainGold);
    font-family: var(--font-montserrat);
    margin-left: 10px;
}

.section-link-mobile:hover {
    color: var(--color-darkGold);
}
.section-link-mobile span {
    margin-right: 4px;
}

.upcoming-carousel-shell {
    position: relative;
}

.upcoming-events {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(82%, 1fr);
    gap: 16px;
    overflow-x: auto;
    padding: 4px 2px 14px;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.upcoming-events::-webkit-scrollbar {
    display: none;
}

.upcoming-card {
    position: relative;
    min-height: 230px;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 18px;
    cursor: pointer;
    isolation: isolate;
    scroll-snap-align: start;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.16);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.upcoming-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-strong);
    box-shadow: 0 20px 36px rgba(0, 0, 0, 0.25);
}

.upcoming-card__background {
    position: absolute;
    inset: 0;
    z-index: -1;
    background-position: center;
    background-size: cover;
    transition: transform 0.5s ease;
}

.upcoming-card:hover .upcoming-card__background {
    transform: scale(1.04);
}

.upcoming-card__content {
    display: flex;
    min-height: inherit;
    flex-direction: column;
    justify-content: space-between;
    padding: 18px;
}

.date-badge {
    display: inline-flex;
    width: 36px;
    min-height: 38px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    /* background: rgba(248, 247, 238, 0.94); */
    background: var(--color-mainGold);
    color: #082b28;
    line-height: 1;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

.date-badge strong {
    font-size: 14px;
}

.date-badge span {
    margin-top: 1px;
    font-size: 9px;
    font-weight: 700;
}

.date-badge--compact {
    width: 36px;
    min-width: 36px;
    min-height: 38px;
}

.upcoming-card__details {
    margin-top: 28px;
}

.upcoming-card__time,
.upcoming-card__location {
    margin: 0;
    color: var(--text-muted);
    font-size: 10px;
}

.upcoming-card h3 {
    margin: 2px 0 8px 0;
    font-family: var(--font-montserrat);
    font-size: 14px;
    line-height: 1.3;
    font-weight: 550;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;

    overflow: hidden;
    text-overflow: ellipsis;
}

.upcoming-card__location {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 4px;
}

.carousel-button {
    display: none;
}
.calendar-panel {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 22px;
    /* background: rgba(2, 30, 27, 0.74); */
    box-shadow: var(--shadow);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(18px);
}

.calendar-toolbar {
    position: relative;
    display: flex;
    /* flex-direction: column;
    gap: 18px; */
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    background: rgba(2, 30, 27, 0.74);
    padding: 12px 18px;
    border-bottom: 1px solid var(--border);
}

.calendar-toolbar__navigation {
    display: flex;
    align-items: center;
    gap: 8px;
}

.icon-button,
.calendar-today-button {
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
    cursor: pointer;
    transition: background 0.25s ease, border-color 0.25s ease;
    font-family: var(--font-heading);
}

.icon-button i {
    font-size: 18px;
    color: var(--color-mainGold);
}

.icon-button:hover,
.calendar-today-button:hover {
    border-color: var(--color-mainGold);
    background: rgba(214, 194, 106, 0.1);
}

.icon-button {
    display: inline-flex;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 24px;
}

.calendar-today-button {
    min-height: 36px;
    padding-inline: 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
}

.calendar-current-title {
    margin: 0;
    font-family: var(--font-heading);
    font-size: 14px;
    text-align: center;
}

.calendar-layout {
    display: grid;
    backdrop-filter: blur(14px);
}

.calendar-main-column {
    min-width: 0;
    padding: 14px;
    background: rgba(2, 30, 27, 0.74);
}

.calendar-swipe-area {
    touch-action: pan-y;
}

#calendar {
    --fc-border-color: rgba(240, 237, 219, 0.12);
    --fc-page-bg-color: var(--page-background);
    --fc-neutral-bg-color: rgba(255, 255, 255, 0.03);
    --fc-list-event-hover-bg-color: rgba(255, 255, 255, 0.06);
    --fc-today-bg-color: rgba(214, 194, 106, 0.08);
    --fc-event-text-color: #f8f7ee;
    color: var(--text);
    font-family: var(--font-body);
}

#calendar .fc-scrollgrid,
#calendar .fc-scrollgrid-section > td {
    border-color: var(--fc-border-color);
}

#calendar .fc-col-header-cell {
    background: rgba(255, 255, 255, 0.025);
}

#calendar .fc-col-header-cell-cushion {
    padding-block: 10px;
    color: var(--text-muted);
    font-size: 10px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
}

#calendar .fc-daygrid-day {
    position: relative;
    min-height: 54px;
    transition: background 0.2s ease;
}

#calendar .fc-daygrid-day:hover {
    background: rgba(255, 255, 255, 0.025);
}

#calendar .fc-daygrid-day-number {
    position: relative;
    z-index: 2;
    display: inline-flex;
    width: 28px;
    height: 28px;
    align-items: center;
    justify-content: center;
    padding: 0;
    color: rgba(245, 244, 237, 0.78);
    font-size: 11px;
    font-weight: 600;
    text-decoration: none;
}

#calendar .fc-day-other .fc-daygrid-day-number {
    color: rgba(245, 244, 237, 0.26);
}

/* BARU */
#calendar .fc-day-today {
    background-color: rgba(214, 194, 106, 0.10);
    box-shadow: inset 0 0 0 1.5px rgba(214, 194, 106, 0.8);
}

#calendar .fc-day-today .fc-daygrid-day-number {
    background-color: var(--color-mainGold);
    color: #082b28;
    border-radius: 50%;
}

/* Tanggal yang dipilih */
#calendar .fc-daygrid-day.is-selected-day {
    background-color: rgba(214, 194, 106, 0.10);
}
#calendar .is-selected-day .fc-daygrid-day-number {
    border-radius: 50%;
    background: var(--color-mainGold);
    /* box-shadow: inset 0 0 0 1px rgba(214, 194, 106, 1); */
    color: #082b28;
} 
/* BARU */

/* #calendar .fc-day-today .fc-daygrid-day-number,
#calendar .is-selected-day .fc-daygrid-day-number {
    border-radius: 50%;
    background: var(--color-mainGold);
    color: #082b28;
} */

#calendar .fc-daygrid-day-frame {
    /* min-height: 58px; */
    min-height: 42px;
}

#calendar .fc-daygrid-day-events {
    display: none;
}

.mobile-day-dots {
    position: absolute;
    bottom: 8px;
    left: 50%;
    display: flex;
    max-width: 28px;
    transform: translateX(-50%);
    gap: 3px;
}

.mobile-day-dots i {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--event-color);
}

.mobile-event-dot {
    display: none;
}

.category-legend {
    display: flex;
    margin-top: 18px;
    flex-wrap: wrap;
    gap: 5px 16px;
    color: var(--text-muted);
    font-size: 10px;
}

.category-legend span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.category-legend i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--legend-color);
}

.month-empty-state {
    margin-top: 14px;
    padding: 14px;
    border: 1px dashed var(--border);
    border-radius: 12px;
    color: var(--text-muted);
    font-size: 11px;
    text-align: center;
}

.agenda-panel {
    padding: 16px 16px;
    border-top: 1px solid var(--border);
    /* background: rgba(255, 255, 255, 0.025); */
}

.agenda-panel__heading {
    margin-bottom: 13px;
}

.agenda-panel h3 {
    font-size: 16px;
}

.agenda-panel #eyebrow {
    margin: 0 0 1px;
}

.agenda-panel__range {
    margin: 10px 0 6px 0;
    color: var(--text-muted);
    font-size: 12px;
}

.agenda-panel__list {
    display: grid;
    gap: 10px;
}

.agenda-item {
    display: grid;
    width: 100%;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 10px;
    align-items: center;
    padding: 10px;
    border: 1px solid var(--border);
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.035);
    color: var(--text);
    cursor: pointer;
    text-align: left;
    transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.agenda-item:hover {
    transform: translateX(3px);
    border-color: var(--border-strong);
    background: var(--surface-hover);
}

.agenda-item__content {
    display: grid;
    min-width: 0;
    gap: 3px;
}

.agenda-item__content strong {
    overflow: hidden;
    font-family: var(--font-inter);
    font-size: 13px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.agenda-item__content small {
    overflow: hidden;
    color: var(--text-muted);
    font-size: 10px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.event-category-badge {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    justify-content: center;
    padding: 5px 10px;
    border: 1px solid color-mix(in srgb, var(--category-color) 68%, white 10%);
    border-radius: 999px;
    background: color-mix(in srgb, var(--category-color) 26%, transparent);
    color: #fff;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.03em;
    line-height: 1;
    font-family: var(--font-montserrat);
}

.agenda-item > .event-category-badge {
    grid-column: 2;
}

.empty-state {
    margin: 0;
    padding: 18px;
    border: 1px dashed var(--border);
    border-radius: 14px;
    color: var(--text-muted);
    font-size: 13px;
    text-align: center;
}

/* .event-dialog {
    width: min(calc(100% - 20px), 720px);
    max-height: calc(100dvh - 20px);
    margin: auto auto 0;
    padding: 0;
    overflow: hidden auto;
    border: 1px solid var(--border-strong);
    border-radius: 24px 24px 0 0;
    background: #082a27;
    color: var(--text);
    box-shadow: var(--shadow);
}
.event-dialog ::selection {
    background-color: var(--color-darkGold);
    color: #ffffff;
}

.event-dialog::backdrop {
    background: rgba(0, 11, 10, 0.72);
    backdrop-filter: blur(8px);
}

.event-dialog__card {
    position: relative;
}

.event-dialog__close {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    display: inline-flex;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 50%;
    background: rgba(3, 24, 22, 0.72);
    color: white;
    cursor: pointer;
    font-size: 15px;
}

.event-dialog__close:hover {
    background-color: var(--color-mainGold);
    color: #000000;
}

.event-dialog__media {
    min-height: 190px;
    overflow: hidden;
    background: linear-gradient(135deg, #0c4741, #137b70);
}

.event-dialog__media img {
    width: 100%;
    height: 210px;
    object-fit: cover;
}

.event-dialog__body {
    padding: 22px 18px 26px;
}

.event-dialog h2 {
    margin-top: 12px;
    font-size: 21px;
    line-height: 1.2;
}

.event-dialog__organizer,
.event-dialog__description {
    color: var(--text-muted);
}

.event-dialog__organizer {
    margin: 7px 0 20px;
    font-size: 13px;
}

.event-dialog__meta {
    display: grid;
    gap: 12px;
    margin: 0;
}

.event-dialog__meta div {
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.035);
}

.event-dialog__meta dt {
    margin-bottom: 5px;
    color: var(--color-mainGold);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.event-dialog__meta dd {
    margin: 0;
    font-size: 13px;
}

.event-dialog__description {
    margin: 20px 0;
    font-size: 12px;
    line-height: 1.7;
}

.event-dialog__actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
} */

.event-dialog {
    width: min(calc(100% - 32px), 760px);
    max-height: calc(100dvh - 20px);
    margin: auto auto 0;
    padding: 0;
    overflow: hidden;
    border: 1px solid var(--border-strong);
    border-radius: 24px 24px 0 0;
    background: #082a27;
    color: var(--text);
    box-shadow: var(--shadow);
    overscroll-behavior: none;
}
.event-dialog ::selection {
    background-color: var(--color-darkGold);
    color: #ffffff;
}
.event-dialog::backdrop {
    background: rgba(0, 11, 10, 0.72);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    overscroll-behavior: none;
}
.event-dialog__card {
    position: relative;
    display: flex;
    max-height: calc(100dvh - 20px);
    flex-direction: column;
    overflow: hidden;
    overscroll-behavior: none;
}
/* Header tidak ikut bergerak ketika body di-scroll */
.event-dialog__header {
    position: relative;
    z-index: 2;
    flex: 0 0 auto;
    padding: 15px 24px 20px 20px;
    border-bottom: 1px solid var(--border);
    background:
        linear-gradient(
            180deg,
            rgba(13, 56, 52, 0.98),
            rgba(8, 42, 39, 0.98)
        );
}
.event-dialog__category {
    display: flex;
    gap: 6px;
    align-items: center;
}
.event-dialog__close {
    position: absolute;
    top: 14px;
    right: 14px;
    line-height: 1;
    z-index: 5;
    display: inline-flex;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 50%;
    background: rgba(3, 24, 22, 0.88);
    color: #ffffff;
    cursor: pointer;
    font-size: 15px;
    transition:
        background-color 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}
.event-dialog__close:hover {
    background-color: var(--gold-bright);
    color: #000000;
    transform: rotate(90deg);
}
.event-dialog h2 {
    margin-top: 18px;
    font-size: 21px;
    line-height: 1.25;
}
.event-dialog__organizer {
    margin-top: 2px;
    color: var(--color-mainGold);
    font-weight: 700;
    font-family: var(--font-montserrat);
    font-size: 11px;
}
.event-dialog__datetime {
    margin-top: 14px;
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 500;
    line-height: 1.6;
}
.event-dialog__location {
    position: relative;
    margin-top: 5px;
    padding-left: 19px;
    color: var(--color-mainGold);
    font-size: 13px;
    line-height: 1.5;
}
.event-dialog__location::before {
    position: absolute;
    left: 0;
    color: var(--color-mainGold);
    content: "\f3c5";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}
/* Hanya area ini yang dapat di-scroll */
.event-dialog__scroll {
    min-height: 0;
    flex: 1 1 auto;
    overflow-x: hidden;
    overflow-y: auto;

    overscroll-behavior-y: contain;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-y;
    /* overscroll-behavior: contain;
    scrollbar-gutter: stable; */
}
.event-dialog__media {
    display: flex;
    min-height: 190px;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0c4741, #137b70);
}
/* Poster portrait dan landscape tidak dipotong */
.event-dialog__media img {
    display: block;
    width: 100%;
    height: auto;
    max-height: none;
    object-fit: contain;
}
.event-dialog__content {
    padding: 22px 18px 26px;
}
.event-dialog__custom-content {
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.75;
}
.event-dialog__custom-content > :first-child {
    margin-top: 0;
}
.event-dialog__custom-content > :last-child {
    margin-bottom: 0;
}
.event-dialog__custom-content p {
    margin: 0 0 16px;
}
.event-dialog__custom-content h3,
.event-dialog__custom-content h4 {
    margin: 24px 0 10px;
    color: var(--text);
    font-family: var(--font-montserrat);
    line-height: 1.35;
}
.event-dialog__custom-content h3 {
    font-size: 17px;
}
.event-dialog__custom-content h4 {
    font-size: 15px;
}
.event-dialog__custom-content ul,
.event-dialog__custom-content ol {
    display: grid;
    gap: 8px;
    margin: 0 0 18px;
    padding-left: 22px;
}
.event-dialog__custom-content li::marker {
    color: var(--color-mainGold);
}
.event-dialog__custom-content a {
    color: var(--gold-bright);
    text-decoration: underline;
    text-underline-offset: 3px;
}
.event-dialog__custom-content strong,
.event-dialog__custom-content b {
    color: var(--text);
}
.event-dialog__note {
    padding: 10px 15px;
    line-height: 1.5;
    border: 1px solid var(--border-strong);
    border-radius: 12px;
    background: rgba(214, 194, 106, 0.07);
}
.event-dialog__actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 24px;
}

.primary-button,
.secondary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 24px;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
}

.primary-button {
    border: 1px solid var(--color-mainGold);
    background: var(--color-mainGold);
    color: #082b28;
}

.secondary-button {
    border: 1px solid var(--border-strong);
    background: transparent;
    color: var(--text);
}
/* END KALENDER SECTION */

/* START PUBLIKASI SECTION */
.publikasi-section {
    z-index: 1;
    position: relative;
    padding-top: 30px;
    padding-bottom: 120px;
    /* background-color: var(--color-primaryBackground); */
    font-family: var(--font-montserrat);
    transition: all 500ms;
}
.publikasi-section ::selection {
    background-color: var(--color-darkGold);
    color: #ffffff;
}
.publikasi-pattern {
    position: absolute;
    top: -180px;
    right: 0;
    width: 150px;
}
.publikasi-container {
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid #6B7280;
    border-radius: 16px;
}
.publikasi-image-wrapper {
    position: relative;
    width: 100%;
    min-height: 120px;
}
.publikasi-image-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 10;
    padding: 8px;
    color: var(--color-white);
    border: 2px solid var(--color-mainGold);
    border-radius: 12px;
    backdrop-filter: blur(4px);
    background: linear-gradient(
        to bottom right,
        rgba(214, 194, 106, 0.8),
        rgba(148, 129, 45, 0.8)
    );
}
.publikasi-image-badge-icon {
    width: 24px;
    height: 24px;
} 
.publikasi-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.publikasi-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(16, 42, 39, 0.8) 0%,
        rgba(16, 42, 39, 0.05) 50%,
        rgb(16, 42, 39) 100%
    );
}
.publikasi-content {
    position: relative;
    z-index: 10;
    width: 100%;
    padding-top: 22px;
    padding-bottom: 22px;
    padding-left: 22px;
    padding-right: 22px;
    backdrop-filter: blur(3px);
    background-color: rgba(187, 247, 208, 0.05);
}
.publikasi-label {
    color: var(--color-mainGold);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.05em;
}
.publikasi-title {
    margin-top: 4px;
    color: var(--color-notWhite);
    font-size: 17px;
    font-weight: 600;
    line-height: 1.25;
}
.publikasi-description {
    margin-top: 16px;
    color: var(--text-muted);
    font-family: var(--font-inter);
    font-size: 11px;
}
.btn-publikasi {
    position: relative;
    width: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px; 
    padding: 7px 16px;
    margin-top: 20px;
    background-color: var(--color-mainGold); 
    border: 1px solid #facc15; 
    border-radius: 9999px; 
    overflow: hidden;
    z-index: 1; 
    cursor: pointer;
    font-weight: 500;
    color: #000000;
    font-family: var(--font-inter);
    transition: all 500ms ease-in-out; 
}
.btn-publikasi:hover {
    transform: translateY(-2px);
    color: #ffffff;
}

.btn-publikasi span {
    font-size: 12px;
    color: #000000; 
    text-decoration: none; 
    transition: color 500ms ease-in-out; 
}
.btn-publikasi:hover span {
    color: #ffffff; 
}

.btn-publikasi svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
    transform: rotate(180deg);
    transition: transform 500ms ease-in-out;
}
.btn-publikasi:hover svg {
    transform: rotate(0deg);
}
/* END PUBLIKASI SECTION */

/* START BACK TO TOP BUTTON */
.back-to-top {
    /* Positioning */
    position: fixed !important;
    bottom: 30px; 
    right: 20px;
    z-index: 999; /* Pastikan di atas elemen lain */
    
    /* Animation State (Default: Ngumpet) */
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
    
    /* Reset gaya bawaan (jika ada) */
    display: flex;
}

/* State pas dimunculin via JS */
.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

/* --- Sisanya pake kodingan Uiverse lo --- */
.button-back-to-top {
    height: 50px;
    width: 50px;
    cursor: pointer;
    padding: 10px;
    border-radius: 50%;
    background-color: #D6C26A;
    border: 2px solid #F0EDDB;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.2);
    justify-content: center;
    align-items: center;
}

.button-back-to-top::after {
    content: "Top";
    position: absolute;
    width: auto;
    background-color: white;
    font-size: 1em;
    padding: 10px 15px;
    border-radius: 25px;
    top: -50px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    transition: all 0.5s;
    transform: scale(0);
}
.svg {
	transition: all 0.5s;
}
.button-back-to-top:hover {
	transform: translateY(-3px);
	background-color: #94812d;
}
.button-back-to-top:hover .svg {
	fill: white;
	transform: scale(1.2);
}
.button-back-to-top:hover::after {
	transform: scale(1);
}
.button-back-to-top:active {
	transform: translateY(2px);
}
/* END BACK TO TOP BUTTON */

/* START FOOTER */
.site-footer {
    background: linear-gradient(180deg, #061f1d 0%, #084643 50%, #084643 100%);
    padding: 36px 40px 32px 40px;
    color: white;
    transition: all 0.5s ease;
}

/* .footer-container {
    max-width: 1440px;
    margin: 0 auto;
} */

.footer-main-row {
    display: flex;
    flex-direction: column;
    margin-top: 16px;
}

/* --- BRAND COLUMN --- */
.footer-brand-col {
    width: 100%;
    margin-bottom: 32px;
    margin-top: 20px;
}

.brand-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.logo-address-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    font-family: 'Inter', sans-serif;
}

.footer-logo {
    width: 240px;
    user-select: none;
}

.footer-address {
    text-align: center;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.25rem;
    max-width: 280px;
}

.footer-social-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 260px;
    margin-bottom: 20px;
}

.footer-social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid white;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social-link:hover {
    background-color: white;
    color: #2a5550;
    border-color: transparent;
}

/* --- LINKS GRID COLUMN --- */
.footer-grid-col {
    width: 100%;
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Grid default mobile */
    gap: 32px;
}

.align-center-lg { 
    display: flex;
}

.tentang-kami {
    display: flex; justify-content: center; 
}
.media-hp-footer {
    display: flex; justify-content: start; margin-left: 20px;
}

.align-right-lg { 
    display: flex; justify-content: start; margin-left: 20px;
}

.group-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 10px;
}

.group-list {
    list-style: none;
    padding: 0;
    font-family: 'Inter', sans-serif;
}

.group-list li a {
    display: inline-block;
    color: white;
    text-decoration: none;
    font-size: 12px;
    font-weight: 300;
    margin-bottom: 2px;
    transition: all 0.5s ease;
    transform-origin: left;
    -webkit-font-smoothing: antialiased;
}

.group-list li a:hover {
    transform: scale(1.25);
    color: #c5ad43;
}

/* --- FOOTER BOTTOM --- */
.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid #94a3b8;
    text-align: center;
}

.copyright-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 400;
}

.authorized-brand {
    font-family: 'Montserrat', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.mini-logo { width: 40px; height: 40px; }