/* ==========================================================================
   Header and Navigation Styles
   ========================================================================== */

/* Header Base Styling */
.site-header {
	background: transparent;
	border-bottom: none;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 9999;
	box-shadow: none;
	transition: var(--transition-normal);
}

.site-header .site-branding img {
	filter: brightness(0) invert(1);
}

.site-header .main-navigation a {
	color: #FFFFFF !important;
}

.site-header .main-navigation a:hover,
.site-header .main-navigation li.current-menu-item > a,
.site-header .main-navigation li.current_page_item > a {
	color: var(--secondary-color) !important;
}

.site-header .btn-login {
	color: #FFFFFF !important;
}

.site-header .btn-login:hover {
	color: var(--secondary-color) !important;
	background-color: rgba(255, 255, 255, 0.1);
}

.site-header .hamburger-inner,
.site-header .hamburger-inner::before,
.site-header .hamburger-inner::after {
	background-color: #FFFFFF !important;
}

/* Mobile Toggled Header Overrides */
body.menu-open .site-header {
	background: #00205B !important;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
	position: fixed !important;
}

body.menu-open .site-header .site-branding img {
	filter: brightness(0) invert(1) !important;
}

body.menu-open .site-header .main-navigation a {
	color: #FFFFFF !important;
}

body.menu-open .site-header .main-navigation a:hover {
	color: #00A3FF !important;
}

body.menu-open .site-header .btn-login {
	color: #FFFFFF !important;
}

body.menu-open .site-header .hamburger-inner {
	background-color: transparent !important;
}

body.menu-open .site-header .hamburger-inner::before,
body.menu-open .site-header .hamburger-inner::after {
	background-color: #FFFFFF !important;
}

.header-container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 24px;
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

/* Site Branding (Logo) */
.site-branding {
	flex-shrink: 0;
	display: flex;
	align-items: center;
}

.site-branding img.custom-logo,
.site-branding .custom-logo-link img {
	height: 64px;
	width: auto;
	display: block;
	transition: var(--transition-fast);
}

.site-branding img.custom-logo:hover,
.site-branding .custom-logo-link img:hover {
	opacity: 0.9;
}

.header-navigation-wrapper {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	flex-grow: 1;
	margin-left: 48px;
}

/* Main Navigation */
.main-navigation {
	display: flex;
	align-items: center;
}

.main-navigation ul {
	display: flex;
	align-items: center;
	gap: 32px;
}

.main-navigation li {
	position: relative;
	padding: 28px 0; /* Ensures hover area covers the height */
}

.main-navigation a {
	font-weight: 500;
	color: var(--text-medium);
	font-size: 15px;
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.main-navigation a:hover {
	color: var(--primary-color);
}

/* Active State */
.main-navigation li.current-menu-item > a,
.main-navigation li.current_page_item > a {
	color: var(--primary-color);
	font-weight: 600;
}

/* Dropdown Chevron Indicator */
.main-navigation li.menu-item-has-children > a::after {
	content: "";
	width: 8px;
	height: 5px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 5' fill='none'%3E%3Cpath d='M1 1L4 4L7 1' stroke='%23475569' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-size: contain;
	background-repeat: no-repeat;
	display: inline-block;
	transition: var(--transition-fast);
}

.main-navigation li.menu-item-has-children > a:hover::after,
.main-navigation li.current-menu-item.menu-item-has-children > a::after {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 5' fill='none'%3E%3Cpath d='M1 1L4 4L7 1' stroke='%23DC2626' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.main-navigation li.menu-item-has-children:hover > a::after {
	transform: rotate(180deg);
}

/* Dropdown Menu (Sub-menu) */
.main-navigation ul ul {
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%) translateY(10px);
	background: var(--bg-white);
	border: 1px solid var(--border-color);
	border-radius: 12px;
	box-shadow: var(--shadow-lg);
	min-width: 220px;
	padding: 8px;
	display: flex;
	flex-direction: column;
	gap: 4px;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
	z-index: 999;
}

.main-navigation li:hover > ul {
	opacity: 1;
	visibility: visible;
	transform: translateX(-50%) translateY(0);
}

.main-navigation ul ul li {
	padding: 0;
	width: 100%;
}

.main-navigation ul ul a {
	display: block;
	padding: 10px 16px;
	font-size: 14px;
	font-weight: 500;
	border-radius: 8px;
	white-space: nowrap;
}

.main-navigation ul ul a:hover {
	background-color: var(--bg-light);
	color: var(--primary-color);
}

/* Submenu clean arrows */
.main-navigation ul ul li.menu-item-has-children > a::after {
	position: absolute;
	right: 16px;
	top: 50%;
	transform: translateY(-50%) rotate(-90deg);
}

.main-navigation ul ul li.menu-item-has-children:hover > a::after {
	transform: translateY(-50%) rotate(0deg);
}

.main-navigation ul ul ul {
	left: 100%;
	top: 0;
	transform: translateX(10px) translateY(0);
}

.main-navigation ul ul li:hover > ul {
	transform: translateX(0) translateY(0);
}

/* Header Actions */
.header-actions {
	display: flex;
	align-items: center;
	gap: 24px;
}

.btn-login {
	font-weight: 600;
	font-size: 15px;
	color: var(--secondary-color) !important;
	padding: 8px 16px;
	border-radius: 8px;
	transition: var(--transition-fast);
}

.btn-login:hover {
	color: var(--secondary-hover) !important;
	background-color: rgba(9, 32, 75, 0.05);
}

/* Language Switcher */
.language-switcher {
	position: relative;
}

.lang-toggle {
	background: transparent;
	border: none;
	padding: 8px 12px;
	display: flex;
	align-items: center;
	gap: 8px;
	font-family: "Plus Jakarta Sans", "Plus Jakarta Sans Placeholder", sans-serif !important;
	font-weight: 500;
	font-size: 14px;
	color: var(--text-medium);
	cursor: pointer;
	border-radius: 8px;
	transition: var(--transition-fast);
}

.lang-toggle:hover {
	background-color: var(--bg-light);
	color: var(--text-dark);
}

.lang-toggle .chevron-icon {
	color: var(--text-light);
	transition: var(--transition-fast);
}

.lang-toggle:hover .chevron-icon {
	color: var(--text-dark);
}

.language-switcher:hover .lang-toggle .chevron-icon {
	transform: rotate(180deg);
}

.flag-icon {
	width: 20px;
	height: 14px;
	border-radius: 2px;
	border: 1px solid rgba(0, 0, 0, 0.1);
	display: inline-block;
}

.flag-id {
	background: linear-gradient(to bottom, #DC2626 50%, #FFFFFF 50%);
}

.flag-en {
	background: #0A192F; /* Simple dark blue fallback */
	position: relative;
	overflow: hidden;
}

.flag-en::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	height: 2px;
	background: #FFFFFF;
	transform: translateY(-50%);
}

.flag-en::after {
	content: "";
	position: absolute;
	left: 50%;
	top: 0;
	width: 2px;
	height: 100%;
	background: #FFFFFF;
	transform: translateX(-50%);
}

/* Language Dropdown */
.lang-dropdown {
	position: absolute;
	top: 100%;
	right: 0;
	background: var(--bg-white);
	border: 1px solid var(--border-color);
	border-radius: 8px;
	box-shadow: var(--shadow-md);
	min-width: 160px;
	padding: 4px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
	z-index: 1000;
}

.language-switcher:hover .lang-dropdown {
	opacity: 1;
	visibility: visible;
	transform: translateY(4px);
}

.lang-dropdown li a {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 8px 12px;
	font-size: 13px;
	font-weight: 500;
	color: var(--text-medium);
	border-radius: 6px;
}

.lang-dropdown li a:hover {
	background-color: var(--bg-light);
	color: var(--text-dark);
}

.lang-dropdown li.active a {
	background-color: rgba(220, 38, 38, 0.05);
	color: var(--primary-color);
}

/* ==========================================================================
   Mobile Navigation Styling
   ========================================================================== */
.menu-toggle {
	display: none;
	background: transparent;
	border: none;
	cursor: pointer;
	padding: 10px;
	z-index: 1001;
	outline: none;
}

.menu-toggle:focus {
	outline: none;
}

.hamburger-box {
	width: 24px;
	height: 18px;
	display: inline-block;
	position: relative;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
	width: 24px;
	height: 2px;
	background-color: var(--text-dark);
	position: absolute;
	border-radius: 4px;
	transition: transform 0.15s ease, opacity 0.15s ease;
}

.hamburger-inner {
	top: 50%;
	transform: translateY(-50%);
}

.hamburger-inner::before,
.hamburger-inner::after {
	content: "";
	display: block;
}

.hamburger-inner::before {
	top: -7px;
}

.hamburger-inner::after {
	bottom: -7px;
}

/* Mobile Active Toggled Hamburger */
[aria-expanded="true"] .hamburger-inner {
	background-color: transparent !important;
}

[aria-expanded="true"] .hamburger-inner::before {
	transform: translateY(7px) rotate(45deg);
}

[aria-expanded="true"] .hamburger-inner::after {
	transform: translateY(-7px) rotate(-45deg);
}

/* Responsive Media Queries */
@media (max-width: 1023px) {
	.header-container {
		height: 70px;
	}

	.site-branding {
		position: relative;
		z-index: 10010;
	}

	.menu-toggle {
		display: block;
		position: relative;
		z-index: 10010;
	}

	.header-navigation-wrapper {
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		z-index: 10000;
		background: #00205B;
		flex-direction: column;
		justify-content: flex-start;
		align-items: stretch;
		padding: 90px 24px 40px 24px;
		margin-left: 0;
		gap: 32px;
		visibility: hidden;
		clip-path: inset(0 0 100% 0);
		transition: clip-path 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.3s;
		overflow-y: auto;
	}

	.header-navigation-wrapper.toggled {
		visibility: visible;
		clip-path: inset(0 0 0 0);
	}

	.main-navigation {
		width: 100%;
	}

	.main-navigation ul {
		flex-direction: column;
		align-items: stretch;
		width: 100%;
		gap: 0;
	}

	.main-navigation li {
		padding: 0;
		width: 100%;
		border-bottom: none;
	}

	.main-navigation a {
		padding: 14px 0;
		width: 100%;
		justify-content: space-between;
		font-size: 22px;
		color: #FFFFFF !important;
		font-weight: 600;
	}

	.main-navigation a:hover,
	.main-navigation li.current-menu-item > a,
	.main-navigation li.current_page_item > a {
		color: #00A3FF !important;
	}

	.main-navigation li.menu-item-has-children > a::after {
		margin-left: auto;
	}

	/* Mobile Dropdowns */
	.main-navigation ul ul {
		position: static;
		transform: none !important;
		opacity: 1;
		visibility: visible;
		display: none;
		border: none;
		box-shadow: none;
		padding-left: 16px;
		padding-bottom: 12px;
		background-color: var(--bg-light);
		border-radius: 0;
	}

	.main-navigation li.active > ul {
		display: flex;
	}

	.main-navigation li.menu-item-has-children.active > a::after {
		transform: rotate(180deg);
	}

	.header-actions {
		flex-direction: column;
		align-items: stretch;
		width: 100%;
		gap: 16px;
		margin-top: 16px;
	}

	.btn-login {
		text-align: center;
		border: 1.5px solid var(--secondary-color);
	}

	.btn-login:hover {
		background-color: var(--secondary-color);
		color: var(--text-white) !important;
	}

	.language-switcher {
		width: 100%;
	}

	.lang-toggle {
		width: 100%;
		justify-content: center;
		border: 1.5px solid var(--border-color);
	}

	.lang-dropdown {
		position: static;
		width: 100%;
		opacity: 1;
		visibility: visible;
		transform: none !important;
		display: none;
		margin-top: 8px;
		box-shadow: none;
	}

	.language-switcher:hover .lang-dropdown {
		display: block;
	}

	.admin-bar .header-navigation-wrapper {
		top: 70px;
	}

	@media (max-width: 782px) {
		.admin-bar .header-navigation-wrapper {
			top: 70px;
		}
	}
}

html.menu-open,
body.menu-open {
	overflow: hidden !important;
	height: 100vh !important;
	position: fixed !important;
	width: 100% !important;
}

/* ==========================================================================
   Hero Section Styles
   ========================================================================== */
.hero-section {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	padding: 120px 0 80px 0;
	color: var(--text-white);
	overflow: hidden;
	background-color: #09204b;
}

.hero-bg-image {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-size: cover;
	background-position: center top;
	background-repeat: no-repeat;
	z-index: 0;
	animation: ocean-movement 24s infinite ease-in-out;
}

@keyframes ocean-movement {
	0%, 100% {
		transform: scale(1.05) translate(0, 0) rotate(0deg);
	}
	50% {
		transform: scale(1.12) translate(-1%, 0.8%) rotate(0.4deg);
	}
}

.hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(90deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.45) 50%, rgba(0, 0, 0, 0.1) 100%);
	z-index: 1;
}

.hero-container {
	max-width: 1280px;
	width: 100%;
	margin: 0 auto;
	padding: 0 24px;
	position: relative;
	z-index: 2;
}

.hero-content {
	max-width: 800px;
	margin-bottom: 0;
}

.hero-title {
	font-size: 80px;
	font-weight: 800;
	line-height: 1.15;
	margin: 0;
	letter-spacing: -1.5px;
	text-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.hero-title-accent {
	color: #DFFF00;
}

.hero-description {
	font-size: 20px;
	font-weight: 400;
	color: #E2E8F0;
	line-height: 1.6;
	margin: 20px 0 0 0;
	max-width: 680px;
	text-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.hero-action {
	margin-top: 32px;
	display: flex;
	align-items: center;
}

.btn-hero-whatsapp {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: #DFFF00;
	color: #000000 !important;
	font-weight: 700;
	font-size: 16px;
	padding: 14px 32px;
	border-radius: 30px;
	transition: all 0.3s ease;
	box-shadow: 0 4px 12px rgba(223, 255, 0, 0.2);
	text-decoration: none;
	border: none;
	outline: none;
}

.btn-hero-whatsapp:hover {
	background: #cceb00;
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(223, 255, 0, 0.3);
}

.btn-hero-whatsapp:focus,
.btn-hero-whatsapp:active {
	outline: none !important;
	box-shadow: 0 4px 12px rgba(223, 255, 0, 0.2) !important;
}

/* Banners Grid */
.hero-banners-grid {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: 24px;
	width: 100%;
	margin-top: 40px;
}

.hero-banner-card {
	background: var(--bg-white);
	border-radius: 20px;
	box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.15);
	padding: 24px;
	overflow: hidden;
	color: var(--text-dark);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-banner-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.25);
}

.hero-banner-card .card-inner {
	display: flex;
	gap: 24px;
	align-items: center;
	height: 100%;
}

.hero-banner-card .card-image {
	flex-shrink: 0;
}

.hero-banner-card .card-image img {
	width: 130px;
	height: 130px;
	object-fit: cover;
	border-radius: 16px;
	box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.hero-banner-card .card-content {
	flex-grow: 1;
}

/* Badges */
.card-logo-badge {
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 8px;
	display: inline-flex;
	align-items: center;
	gap: 4px;
	background: rgba(220, 38, 38, 0.06);
	color: var(--primary-color);
	padding: 4px 10px;
	border-radius: 20px;
	font-weight: 700;
}

.card-logo-badge.text-green {
	background: rgba(9, 32, 75, 0.06);
	color: var(--secondary-color);
}

.card-logo-badge .logo-text-light {
	font-weight: 400;
	opacity: 0.8;
}

.hero-banner-card .card-title {
	font-size: 20px;
	font-weight: 700;
	margin: 0 0 8px 0;
	line-height: 1.25;
	letter-spacing: -0.3px;
	color: #0F172A;
}

.hero-banner-card .card-description {
	font-size: 13px;
	color: var(--text-medium);
	margin: 0 0 16px 0;
	line-height: 1.45;
}

/* Action Row */
.referral-action-row {
	display: flex;
	align-items: center;
	gap: 16px;
}

.referral-code-box {
	background: #F8FAFC;
	border: 1px dashed #CBD5E1;
	border-radius: 10px;
	padding: 6px 14px;
	display: flex;
	flex-direction: column;
}

.referral-code-box .code-label {
	font-size: 9px;
	color: var(--text-light);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.referral-code-box .code-value {
	font-size: 14px;
	font-weight: 700;
	color: var(--primary-color);
	letter-spacing: 1px;
}

.btn-share-code {
	background: var(--primary-color);
	color: var(--text-white);
	border: none;
	padding: 10px 20px;
	border-radius: 10px;
	font-weight: 600;
	font-size: 14px;
	cursor: pointer;
	transition: var(--transition-fast);
	font-family: "Plus Jakarta Sans", "Plus Jakarta Sans Placeholder", sans-serif !important;
}

.btn-share-code:hover {
	background: var(--primary-hover);
}

/* Specific Card Layout adjustment */
.card-commodity .card-inner {
	justify-content: space-between;
}

.card-commodity .card-content {
	max-width: 60%;
}

.card-commodity .card-image img {
	width: 140px;
	height: 140px;
}

/* Responsive adjustments */
@media (max-width: 1023px) {
	.hero-section {
		min-height: 100vh;
		padding: 100px 0 60px 0;
	}

	.hero-bg-image {
		background-position: 65% center;
	}

	.hero-title {
		font-size: 46px;
		line-height: 1.2;
		letter-spacing: -1px;
	}

	.hero-description {
		font-size: 18px;
		margin-top: 16px;
		line-height: 1.55;
		max-width: 80%;
	}

	.hero-banners-grid {
		grid-template-columns: 1fr;
		gap: 20px;
		margin-top: 30px;
	}

	.hero-banner-card .card-inner {
		flex-direction: column;
		align-items: flex-start;
		gap: 16px;
	}

	.hero-banner-card .card-image img {
		width: 100%;
		height: 180px;
		border-radius: 12px;
	}
	
	.card-commodity .card-inner {
		flex-direction: column-reverse;
	}

	.card-commodity .card-content {
		max-width: 100%;
	}
}

@media (max-width: 480px) {
	.hero-title {
		font-size: 38px;
	}


	.referral-action-row {
		flex-direction: column;
		align-items: stretch;
	}
	
	.btn-share-code {
		width: 100%;
		text-align: center;
	}
}

/* ==========================================================================
   Profile Section Styles
   ========================================================================== */
.profile-section {
	padding: 100px 0;
	background: var(--bg-white);
	overflow: hidden;
}

.profile-container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 24px;
}

.profile-grid {
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	gap: 64px;
	align-items: center;
}

.profile-content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.profile-subtitle {
	font-size: 14px;
	font-weight: 700;
	color: var(--primary-color);
	text-transform: uppercase;
	letter-spacing: 1.5px;
	display: block;
	margin-bottom: 12px;
}

.profile-title {
	font-size: 44px;
	font-weight: 800;
	color: #00205B;
	line-height: 1.2;
	margin: 0 0 20px 0;
	letter-spacing: -1px;
}

.profile-description {
	font-size: 16px;
	color: var(--text-medium);
	line-height: 1.7;
	margin: 0 0 32px 0;
}

.btn-profile-more {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: #DFFF00;
	color: #000000 !important;
	font-weight: 600;
	font-size: 16px;
	padding: 14px 32px;
	border-radius: 30px;
	transition: var(--transition-fast);
	box-shadow: 0 4px 12px rgba(223, 255, 0, 0.2);
	outline: none;
	border: none;
	white-space: nowrap;
}

.btn-profile-more:focus,
.btn-profile-more:active {
	outline: none !important;
	box-shadow: 0 4px 12px rgba(223, 255, 0, 0.2) !important;
}

.btn-profile-more:hover {
	background: #cceb00;
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(223, 255, 0, 0.3);
	outline: none;
}

.profile-actions {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-top: 24px;
}

.btn-profile-whatsapp {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: #DFFF00;
	color: #000000 !important;
	font-weight: 700;
	font-size: 16px;
	padding: 14px 32px;
	border-radius: 30px;
	transition: all 0.3s ease;
	box-shadow: 0 4px 12px rgba(223, 255, 0, 0.2);
	text-decoration: none;
	border: none;
	outline: none;
	white-space: nowrap;
}

.btn-profile-whatsapp:hover {
	background: #cceb00;
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(223, 255, 0, 0.3);
}

.btn-profile-whatsapp:focus,
.btn-profile-whatsapp:active {
	outline: none !important;
	box-shadow: 0 4px 12px rgba(223, 255, 0, 0.2) !important;
}

.btn-profile-more .arrow-svg {
	transition: transform 0.2s ease;
	display: inline-block;
}

.btn-profile-more:hover .arrow-svg {
	transform: translate(2px, -2px);
}

.profile-illustration {
	display: flex;
	justify-content: center;
	align-items: center;
}

.profile-illustration .illustration-img {
	width: 100%;
	height: auto;
	border-radius: 20px;
	box-shadow: var(--shadow-lg);
}

/* Profile Responsive adjustments */
@media (max-width: 1023px) {
	.profile-section {
		padding: 60px 0;
	}

	.profile-grid {
		display: flex;
		flex-direction: column-reverse;
		gap: 40px;
	}
	
	.profile-title {
		font-size: 38px;
	}

	.profile-description {
		font-size: 17px;
		line-height: 1.65;
		margin-bottom: 24px;
	}
}

/* ==========================================================================
   Floating Sidebar Actions
   ========================================================================== */
.floating-sidebar {
	position: fixed;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	display: flex;
	flex-direction: column;
	gap: 12px;
	z-index: 9999;
}

@media (max-width: 1023px) {
	.floating-sidebar {
		display: none;
	}
}

.float-btn {
	writing-mode: vertical-lr;
	transform: rotate(180deg);
	background: rgba(142, 154, 166, 0.45);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border: 1px solid rgba(255, 255, 255, 0.25);
	border-left: none;
	color: #FFFFFF !important;
	padding: 24px 12px;
	border-radius: 0 10px 10px 0;
	text-decoration: none;
	font-weight: 600;
	font-size: 14px;
	white-space: nowrap;
	box-shadow: -2px 4px 12px rgba(0, 0, 0, 0.1);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	display: flex;
	align-items: center;
	justify-content: center;
	outline: none;
	cursor: pointer;
}

.float-btn:hover {
	background: rgba(142, 154, 166, 0.7);
	border-color: rgba(255, 255, 255, 0.4);
	padding-left: 20px;
	transform: rotate(180deg) translateX(4px);
}

.float-btn:focus,
.float-btn:active {
	outline: none !important;
	box-shadow: -2px 4px 12px rgba(0, 0, 0, 0.15) !important;
}

/* ==========================================================================
   Area / Stats Section Styles
   ========================================================================== */
.area-section {
	position: relative;
	padding: 180px 0;
	color: #FFFFFF;
	overflow: hidden;
}

.area-bg-image {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	z-index: 0;
}

.area-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(15, 23, 42, 0.75);
	z-index: 1;
}

.area-container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 24px;
	position: relative;
	z-index: 2;
}

.area-title {
	font-size: 62px;
	font-weight: 800;
	text-align: left;
	margin: 0 0 60px 0;
	letter-spacing: -1px;
	line-height: 1.2;
}

.area-stats-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 40px;
}

.stat-item {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.stat-number {
	font-size: 54px;
	font-weight: 800;
	line-height: 1;
	margin-bottom: 12px;
	letter-spacing: -1px;
}

.stat-label {
	font-size: 16px;
	color: #A7F3D0;
	font-weight: 500;
}

/* Area Responsive adjustments */
@media (max-width: 1023px) {
	.area-section {
		padding: 120px 0;
	}

	.area-title {
		font-size: 42px;
		margin-bottom: 40px;
	}

	.area-stats-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 30px;
	}

	.stat-number {
		font-size: 48px;
	}

	.stat-label {
		font-size: 17px;
	}
}

@media (max-width: 480px) {
	.area-stats-grid {
		grid-template-columns: 1fr;
		gap: 24px;
	}
}

/* ==========================================================================
   Services Section Styles
   ========================================================================== */
.services-section {
	padding: 100px 0;
	background: #F8FAFC;
	overflow: hidden;
}

.services-container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 24px;
}

.services-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-bottom: 60px;
}

.services-subtitle {
	font-size: 14px;
	font-weight: 700;
	color: var(--primary-color);
	text-transform: uppercase;
	letter-spacing: 1.5px;
	display: block;
	margin-bottom: 12px;
}

.services-title {
	font-size: 44px;
	font-weight: 800;
	color: #00205B;
	line-height: 1.2;
	margin: 0 0 12px 0;
	letter-spacing: -1px;
}

.services-description {
	font-size: 18px;
	color: var(--text-medium);
	margin: 0;
}

.btn-services-more {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: #DFFF00;
	color: #000000 !important;
	font-weight: 600;
	font-size: 15px;
	padding: 12px 28px;
	border-radius: 30px;
	transition: var(--transition-fast);
	box-shadow: 0 4px 12px rgba(223, 255, 0, 0.2);
	outline: none;
	border: none;
}

.btn-services-more:hover {
	background: #cceb00;
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(223, 255, 0, 0.3);
}

.btn-services-more .arrow-svg {
	transition: transform 0.2s ease;
	display: inline-block;
}

.btn-services-more:hover .arrow-svg {
	transform: translate(2px, -2px);
}

.btn-services-more:focus,
.btn-services-more:active {
	outline: none !important;
	box-shadow: 0 4px 12px rgba(223, 255, 0, 0.2) !important;
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

.service-card {
	background: var(--bg-white);
	border-radius: 20px;
	padding: 36px 24px;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.03), 0 2px 4px -2px rgba(0, 0, 0, 0.03);
	border: 1px solid rgba(15, 23, 42, 0.04);
	text-align: center;
	transition: all 0.3s ease;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.service-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.08);
	border-color: rgba(9, 32, 75, 0.2);
}

.icon-container {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	background: rgba(9, 32, 75, 0.06);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 24px;
	color: #09204b;
	transition: all 0.3s ease;
}

.service-card:hover .icon-container {
	background: #09204b;
	color: var(--text-white);
}

.service-icon {
	width: 36px;
	height: 36px;
}

.service-card-title {
	font-size: 20px;
	font-weight: 700;
	color: #00205B;
	margin: 0 0 12px 0;
}

.service-card-desc {
	font-size: 14px;
	color: var(--text-medium);
	line-height: 1.6;
	margin: 0;
}

/* Services Responsive adjustments */
@media (max-width: 1023px) {
	.services-section {
		padding: 60px 0;
	}

	.services-header {
		flex-direction: column;
		align-items: flex-start;
		gap: 24px;
		margin-bottom: 40px;
	}

	.services-title {
		font-size: 38px;
	}

	.services-description {
		font-size: 17px;
	}

	.services-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}

	.service-card {
		padding: 28px 20px;
	}

	.service-card-title {
		font-size: 21px;
	}

	.service-card-desc {
		font-size: 15px;
	}
}

@media (max-width: 640px) {
	.services-grid {
		grid-template-columns: 1fr;
	}
}

/* ==========================================================================
   News & Activities Section Styles
   ========================================================================== */
.news-section {
	padding: 100px 0;
	background: var(--bg-white);
	overflow: hidden;
}

.news-container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 24px;
}

.news-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-bottom: 60px;
}

.news-subtitle {
	font-size: 14px;
	font-weight: 700;
	color: var(--primary-color);
	text-transform: uppercase;
	letter-spacing: 1.5px;
	display: block;
	margin-bottom: 12px;
}

.news-title {
	font-size: 44px;
	font-weight: 800;
	color: #00205B;
	line-height: 1.2;
	margin: 0;
	letter-spacing: -1px;
}

.btn-news-more {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: #DFFF00;
	color: #000000 !important;
	font-weight: 600;
	font-size: 15px;
	padding: 12px 28px;
	border-radius: 30px;
	transition: var(--transition-fast);
	box-shadow: 0 4px 12px rgba(223, 255, 0, 0.2);
	outline: none;
	border: none;
}

.btn-news-more:hover {
	background: #cceb00;
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(223, 255, 0, 0.3);
}

.btn-news-more .arrow-svg {
	transition: transform 0.2s ease;
	display: inline-block;
}

.btn-news-more:hover .arrow-svg {
	transform: translate(2px, -2px);
}

.btn-news-more:focus,
.btn-news-more:active {
	outline: none !important;
	box-shadow: 0 4px 12px rgba(223, 255, 0, 0.2) !important;
}

.news-grid {
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: 48px;
}

.news-featured-card {
	background: #09204b;
	border-radius: 24px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	height: 100%;
	box-shadow: 0 10px 30px -5px rgba(0,0,0,0.1);
}

.featured-image-wrapper {
	width: 100%;
	height: 320px;
	overflow: hidden;
}

.featured-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.news-featured-card:hover .featured-img {
	transform: scale(1.05);
}

.featured-content {
	padding: 32px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 16px;
	flex-grow: 1;
	justify-content: space-between;
}

.news-badge {
	background: rgba(34, 197, 94, 0.12);
	color: #4eabf9;
	font-size: 12px;
	font-weight: 700;
	padding: 6px 16px;
	border-radius: 20px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	display: inline-block;
}

.featured-title {
	font-size: 24px;
	font-weight: 700;
	color: #FFFFFF;
	line-height: 1.4;
	margin: 0;
}

.featured-date {
	font-size: 14px;
	color: #94A3B8;
	display: block;
}

.btn-read-more {
	display: inline-block;
	border: 1px solid rgba(255, 255, 255, 0.3);
	color: #FFFFFF !important;
	font-weight: 600;
	font-size: 14px;
	padding: 10px 24px;
	border-radius: 30px;
	transition: all 0.3s ease;
	text-decoration: none;
}

.btn-read-more:hover {
	background: #FFFFFF;
	color: #0F172A !important;
	border-color: #FFFFFF;
}

.news-list-container {
	display: flex;
	flex-direction: column;
	gap: 32px;
	justify-content: center;
}

.news-list-item {
	display: flex;
	gap: 24px;
	align-items: center;
	transition: transform 0.3s ease;
	cursor: pointer;
}

.news-list-item:hover {
	transform: translateX(6px);
}

.item-thumbnail {
	width: 160px;
	height: 110px;
	border-radius: 16px;
	overflow: hidden;
	flex-shrink: 0;
}

.item-thumbnail img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.item-content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 8px;
}

.item-title {
	font-size: 16px;
	font-weight: 700;
	color: #0F172A;
	line-height: 1.4;
	margin: 0;
	transition: color 0.2s ease;
}

.news-list-item:hover .item-title {
	color: #09204b;
}

.item-date {
	font-size: 13px;
	color: var(--text-light);
	display: block;
}

/* News Responsive adjustments */
@media (max-width: 1023px) {
	.news-section {
		padding: 60px 0;
	}

	.news-header {
		flex-direction: column;
		align-items: flex-start;
		gap: 24px;
		margin-bottom: 40px;
	}

	.news-title {
		font-size: 38px;
	}

	.news-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.featured-image-wrapper {
		height: 280px;
	}

	.featured-title {
		font-size: 22px;
	}

	.news-list-item {
		gap: 16px;
	}

	.item-thumbnail {
		width: 140px;
		height: 95px;
	}
}

@media (max-width: 640px) {
	.news-list-item {
		flex-direction: column;
		align-items: flex-start;
		gap: 16px;
	}

	.item-thumbnail {
		width: 100%;
		height: 180px;
	}
}

/* ==========================================================================
   CTA Section Styles
   ========================================================================== */
.cta-section {
	padding: 80px 0;
	background: var(--bg-white);
	overflow: hidden;
}

.cta-container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 24px;
}

.cta-card {
	background: #DFFF00;
	border-radius: 24px;
	padding: 64px;
	color: #00205B;
	display: flex;
	flex-direction: column;
	gap: 48px;
	box-shadow: 0 20px 40px -15px rgba(223, 255, 0, 0.25);
	overflow: hidden;
}

.cta-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.cta-subtitle {
	font-size: 20px;
	font-weight: 700;
	color: #00205B;
	display: block;
	margin-bottom: 8px;
}

.cta-title {
	font-size: 44px;
	font-weight: 800;
	color: #00205B;
	margin: 0;
	letter-spacing: -1px;
	line-height: 1.2;
}

.btn-cta-book {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: #00205B;
	color: #FFFFFF !important;
	font-weight: 700;
	font-size: 16px;
	padding: 14px 32px;
	border-radius: 30px;
	transition: all 0.3s ease;
	box-shadow: 0 4px 12px rgba(0, 32, 91, 0.15);
	text-decoration: none;
	border: none;
	outline: none;
}

.btn-cta-book:hover {
	background: #00153D;
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(0, 32, 91, 0.25);
}

.btn-cta-book .arrow-svg {
	transition: transform 0.2s ease;
	display: inline-block;
}

.btn-cta-book:hover .arrow-svg {
	transform: translate(2px, -2px);
}

.btn-cta-book:focus,
.btn-cta-book:active {
	outline: none !important;
	box-shadow: 0 4px 12px rgba(0, 32, 91, 0.15) !important;
}

.cta-action {
	display: flex;
	align-items: center;
	gap: 16px;
}

.btn-cta-whatsapp {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: transparent;
	color: #00205B !important;
	font-weight: 700;
	font-size: 16px;
	padding: 13px 31px;
	border-radius: 30px;
	transition: all 0.3s ease;
	text-decoration: none;
	border: 1.5px solid #00205B;
	outline: none;
}

.btn-cta-whatsapp:hover {
	background: rgba(0, 32, 91, 0.05);
	transform: translateY(-2px);
}

.btn-cta-whatsapp:focus,
.btn-cta-whatsapp:active {
	outline: none !important;
}

.whatsapp-svg {
	display: inline-block;
	flex-shrink: 0;
}

.cta-image-wrapper {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: flex-end;
}

.cta-container-img {
	max-width: 80%;
	height: auto;
	transform: translateY(10px);
	transition: transform 0.3s ease;
}

.cta-card:hover .cta-container-img {
	transform: translateY(0);
}

/* CTA Responsive adjustments */
@media (max-width: 1023px) {
	.cta-section {
		padding: 60px 0;
	}

	.cta-card {
		padding: 48px;
		gap: 36px;
	}

	.cta-header {
		flex-direction: column;
		align-items: flex-start;
		gap: 24px;
	}

	.cta-title {
		font-size: 38px;
	}

	.cta-container-img {
		max-width: 100%;
	}
}

@media (max-width: 480px) {
	.cta-card {
		padding: 40px 24px;
	}

	.cta-title {
		font-size: 32px;
	}

	.cta-action {
		flex-direction: column;
		width: 100%;
		align-items: center;
		gap: 12px;
	}

	.btn-cta-book,
	.btn-cta-whatsapp {
		width: auto;
	}
}

/* ==========================================================================
   Footer Section Styles
   ========================================================================== */
.site-footer {
	position: relative;
	overflow: hidden;
	background: #09204b;
	color: #FFFFFF;
	padding: 80px 0 40px 0;
	border-top: none;
}

.footer-bg-illustration {
	position: absolute;
	right: -40px;
	top: 0;
	bottom: 0;
	height: 100% !important;
	width: auto !important;
	object-fit: contain !important;
	opacity: 1;
	pointer-events: none;
	z-index: 1;
}

.footer-container {
	position: relative;
	z-index: 2;
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 24px;
}

.footer-main-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 2fr;
	gap: 48px;
	align-items: flex-start;
	margin-bottom: 60px;
}

.footer-brand-column {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 16px;
}

.footer-logo-wrapper {
	height: 52px;
}

.footer-logo {
	height: 100%;
	width: auto;
	filter: brightness(0) invert(1);
}

.footer-brand-title {
	font-size: 20px;
	font-weight: 700;
	margin: 0;
	color: #FFFFFF;
}

.footer-cs-info {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.cs-title {
	font-size: 14px;
	font-weight: 700;
	color: #A7F3D0;
	margin: 0;
}

.cs-contact {
	font-size: 14px;
	color: #E8F5E9;
	margin: 0;
	line-height: 1.5;
}

.footer-links-column {
	display: flex;
	flex-direction: column;
}

.footer-menu {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.footer-menu a {
	color: #E8F5E9 !important;
	text-decoration: none;
	font-size: 14px;
	font-weight: 500;
	transition: color 0.2s ease;
}

.footer-menu a:hover {
	color: #A7F3D0 !important;
}

.footer-apps-socials-column {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 24px;
}

.footer-download-badges {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.badge-link {
	display: block;
	transition: transform 0.2s ease;
}

.badge-link:hover {
	transform: scale(1.03);
}

.badge-img {
	height: 40px;
	border-radius: 6px;
	border: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-social-links {
	display: flex;
	gap: 16px;
}

.social-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	border: 1.5px solid rgba(255, 255, 255, 0.4);
	color: #FFFFFF !important;
	transition: all 0.3s ease;
}

.social-icon:hover {
	background: #FFFFFF;
	color: #09204b !important;
	border-color: #FFFFFF;
	transform: translateY(-2px);
}

.footer-copyright-row {
	border-top: none;
	padding-top: 40px;
	text-align: center;
}

.copyright-text {
	font-size: 13px;
	color: #E8F5E9;
	margin: 0;
}

/* Footer Responsive adjustments */
@media (max-width: 1023px) {
	.site-footer {
		padding: 60px 0 30px 0;
	}

	.footer-main-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 40px;
	}

	.footer-apps-socials-column {
		align-items: flex-start;
	}

	.footer-download-badges {
		flex-direction: row;
		flex-wrap: wrap;
	}
}

@media (max-width: 767px) {
	.footer-bg-illustration {
		display: block;
		height: 100% !important;
		width: auto !important;
		object-fit: contain !important;
		opacity: 1;
		right: -40px;
		left: auto;
		top: 0;
		bottom: 0;
		transform: none;
	}
}

@media (max-width: 640px) {
	.footer-main-grid {
		grid-template-columns: 1fr;
		gap: 32px;
	}
}

/* ==========================================================================
   Client/Partners Ticker Section Styles
   ========================================================================== */
.client-section {
	padding: 40px 0;
	background: #F8FAFC;
	border-bottom: 1px solid rgba(15, 23, 42, 0.05);
	overflow: hidden;
	position: relative;
}

.client-container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 24px;
}

.logo-ticker-wrapper {
	overflow: hidden;
	width: 100%;
	position: relative;
}

.logo-ticker-wrapper::before,
.logo-ticker-wrapper::after {
	content: "";
	height: 100%;
	position: absolute;
	width: 150px;
	z-index: 2;
	pointer-events: none;
}

.logo-ticker-wrapper::before {
	left: 0;
	top: 0;
	background: linear-gradient(to right, #F8FAFC 0%, transparent 100%);
}

.logo-ticker-wrapper::after {
	right: 0;
	top: 0;
	background: linear-gradient(to left, #F8FAFC 0%, transparent 100%);
}

.logo-ticker-track {
	display: flex;
	width: calc(250px * 10);
	animation: scroll-ticker 20s linear infinite;
}

.logo-ticker-track:hover {
	animation-play-state: paused;
}

.slide {
	width: 250px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 20px;
	flex-shrink: 0;
}

.slide img {
	max-width: 140px;
	max-height: 50px;
	height: auto;
	width: auto;
	object-fit: contain;
	filter: grayscale(100%);
	opacity: 0.6;
	transition: all 0.3s ease;
}

.slide img:hover {
	filter: grayscale(0%);
	opacity: 1;
}

@keyframes scroll-ticker {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(calc(-250px * 5));
	}
}

/* Adjust gradients and spacing on smaller viewports */
@media (max-width: 768px) {
	.client-section {
		padding: 30px 0;
	}

	.logo-ticker-wrapper::before,
	.logo-ticker-wrapper::after {
		width: 60px;
	}

	.slide {
		width: 180px;
	}

	.slide img {
		max-width: 110px;
		max-height: 40px;
	}

	.logo-ticker-track {
		width: calc(180px * 10);
	}

	@keyframes scroll-ticker {
		0% {
			transform: translateX(0);
		}
		100% {
			transform: translateX(calc(-180px * 5));
		}
	}
}

/* ==========================================================================
   Benefits (Keuntungan) Section Styles
   ========================================================================== */
.benefits-section {
	padding: 100px 0;
	background: var(--bg-white);
	overflow: hidden;
}

.benefits-container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 24px;
}

.benefits-header {
	text-align: center;
	max-width: 720px;
	margin: 0 auto 60px auto;
}

.benefits-subtitle {
	font-size: 14px;
	font-weight: 700;
	color: var(--primary-color);
	text-transform: uppercase;
	letter-spacing: 1.5px;
	display: block;
	margin-bottom: 12px;
}

.benefits-title {
	font-size: 44px;
	font-weight: 800;
	color: #00205B;
	line-height: 1.2;
	margin: 0 0 16px 0;
	letter-spacing: -1px;
}

.benefits-description {
	font-size: 18px;
	color: var(--text-medium);
	margin: 0;
	line-height: 1.6;
}

.benefits-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

.benefit-card {
	background: var(--bg-white);
	border-radius: 20px;
	padding: 36px 24px;
	border: 1px solid rgba(15, 23, 42, 0.04);
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02), 0 2px 4px -2px rgba(0, 0, 0, 0.02);
	transition: all 0.3s ease;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	text-align: left;
}

.benefit-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.06), 0 8px 10px -6px rgba(0, 0, 0, 0.06);
	border-color: rgba(9, 32, 75, 0.15);
}

.benefit-icon-wrapper {
	width: 64px;
	height: 64px;
	border-radius: 16px;
	background: rgba(9, 32, 75, 0.06);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 24px;
	color: #09204b;
	transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon-wrapper {
	background: #09204b;
	color: var(--text-white);
}

.benefit-icon {
	width: 32px;
	height: 32px;
}

.benefit-card-title {
	font-size: 20px;
	font-weight: 700;
	color: #00205B;
	margin: 0 0 12px 0;
}

.benefit-card-desc {
	font-size: 14px;
	color: var(--text-medium);
	line-height: 1.6;
	margin: 0;
}

/* Benefits Responsive adjustments */
@media (max-width: 1023px) {
	.benefits-section {
		padding: 60px 0;
	}

	.benefits-header {
		margin-bottom: 40px;
	}

	.benefits-title {
		font-size: 38px;
	}

	.benefits-description {
		font-size: 17px;
	}

	.benefits-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}

	.benefit-card {
		padding: 28px 20px;
	}

	.benefit-card-title {
		font-size: 21px;
	}

	.benefit-card-desc {
		font-size: 15px;
	}
}

@media (max-width: 640px) {
	.benefits-grid {
		grid-template-columns: 1fr;
	}
}

/* Fix WordPress Admin Bar mobile spacer showing as transparent white bar */
html {
	margin-top: 0 !important;
}
* html body {
	margin-top: 0 !important;
}
@media screen and (max-width: 782px) {
	html {
		margin-top: 0 !important;
	}
	#wpadminbar {
		display: none !important;
	}
}

/* Global arrow SVG spacing */
.arrow-svg {
	margin-left: 8px;
}

/* Index Page Styles */
.index-main {
	max-width: 1280px;
	margin: 0 auto;
	padding: 60px 24px;
	min-height: 60vh;
}

.index-article {
	margin-bottom: 40px;
	background: var(--bg-white);
	padding: 24px;
	border-radius: 12px;
	border: 1px solid var(--border-color);
}

.index-entry-header {
	margin-bottom: 12px;
}

.index-entry-title {
	margin: 0;
	font-size: 24px;
}

.index-entry-link {
	color: var(--text-dark);
}

.index-entry-content {
	color: var(--text-medium);
}

.index-no-posts {
	text-align: center;
	padding: 40px;
	background: var(--bg-white);
	border-radius: 12px;
	border: 1px solid var(--border-color);
}

.index-no-posts-text {
	margin: 0;
	color: var(--text-medium);
}

/* ==========================================================================
   Scroll Animations (In & Out)
   ========================================================================== */
.scroll-animate {
	opacity: 0;
	transform: translateY(40px);
	transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
	will-change: opacity, transform;
}

.scroll-animate.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.scroll-animate-left {
	opacity: 0;
	transform: translateX(-40px);
	transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
	will-change: opacity, transform;
}

.scroll-animate-left.is-visible {
	opacity: 1;
	transform: translateX(0);
}

.scroll-animate-right {
	opacity: 0;
	transform: translateX(40px);
	transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
	will-change: opacity, transform;
}

.scroll-animate-right.is-visible {
	opacity: 1;
	transform: translateX(0);
}

/* Transition Delays for Staggered Animations */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }
.delay-7 { transition-delay: 0.7s; }
.delay-8 { transition-delay: 0.8s; }

/* Floating WhatsApp Button */
.fixed-whatsapp-btn {
	position: fixed;
	bottom: 24px;
	right: 24px;
	width: 60px;
	height: 60px;
	background-color: #25D366;
	color: #FFFFFF !important;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
	z-index: 99999;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	text-decoration: none;
}

.fixed-whatsapp-btn:hover {
	background-color: #20ba56;
	transform: scale(1.1) translateY(-2px);
	box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
}

.fixed-whatsapp-btn:active {
	transform: scale(0.95);
}

/* Mobile Bottom Navigation */
.mobile-bottom-nav {
	display: none;
}

@media (max-width: 767px) {
	.mobile-bottom-nav {
		display: flex;
		position: fixed;
		bottom: 0;
		left: 0;
		right: 0;
		height: 64px;
		background: #FFFFFF;
		border-top-left-radius: 20px;
		border-top-right-radius: 20px;
		box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.08);
		z-index: 99998;
		justify-content: space-around;
		align-items: center;
		padding: 6px 12px 10px 12px;
	}

	.mobile-nav-item {
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 4px;
		color: #00205B;
		text-decoration: none;
		transition: color 0.2s ease;
		flex: 1;
		justify-content: center;
	}

	.mobile-nav-item.active,
	.mobile-nav-item:active {
		color: #00A3FF;
	}

	.mobile-nav-icon {
		display: block;
		width: 20px;
		height: 20px;
		stroke: currentColor;
		transition: transform 0.2s ease;
	}

	.mobile-nav-item:active .mobile-nav-icon {
		transform: scale(0.9);
	}

	.mobile-nav-label {
		font-size: 10px;
		font-weight: 700;
		letter-spacing: 0.5px;
		line-height: 1;
	}

	/* Adjust floating WhatsApp button on mobile so it doesn't overlap bottom nav */
	.fixed-whatsapp-btn {
		bottom: 80px;
		right: 16px;
		width: 50px;
		height: 50px;
	}
	
	.fixed-whatsapp-btn svg {
		width: 26px;
		height: 26px;
	}
}

/* Articles List Page Styling */
.articles-list-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
}

.articles-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
	margin-bottom: 60px;
}

.article-card {
	background: #FFFFFF;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(9, 32, 75, 0.04);
	border: 1px solid rgba(9, 32, 75, 0.05);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	display: flex;
	flex-direction: column;
	height: 100%;
}

.article-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 15px 40px rgba(9, 32, 75, 0.08);
}

.article-thumbnail {
	position: relative;
	width: 100%;
	padding-top: 70%; /* Increased Height */
	overflow: hidden;
}

.article-thumbnail img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.article-card:hover .article-thumbnail img {
	transform: scale(1.05);
}

.fallback-thumbnail {
	background: #09204b;
}

.fallback-img-placeholder {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #FFFFFF;
	font-weight: 800;
	font-size: 20px;
	letter-spacing: -0.5px;
}

.article-card-content {
	padding: 24px;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.article-date {
	font-size: 13px;
	color: var(--text-medium);
	font-weight: 600;
	margin-bottom: 12px;
}

.article-card-title {
	font-size: 20px;
	font-weight: 700;
	line-height: 1.4;
	margin: 0 0 12px 0;
}

.article-card-title a {
	color: #00205B !important;
	text-decoration: none;
	transition: color 0.2s ease;
}

.article-card-title a:hover {
	color: #00A3FF !important;
}

.article-excerpt {
	font-size: 14px;
	line-height: 1.6;
	color: var(--text-medium);
	margin-bottom: 20px;
	flex-grow: 1;
}

.btn-article-read {
	align-self: flex-start;
	font-size: 14px;
	font-weight: 700;
	color: #00205B !important;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	transition: color 0.2s ease;
}

.btn-article-read::after {
	content: '→';
	transition: transform 0.2s ease;
}

.btn-article-read:hover {
	color: #00A3FF !important;
}

.btn-article-read:hover::after {
	transform: translateX(4px);
}

.pagination {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 40px;
	width: 100%;
}

.pagination .screen-reader-text {
	display: none !important;
}

.pagination .nav-links {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
}

.pagination .page-numbers,
.pagination .nav-links .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	padding: 0 14px;
	border-radius: 8px;
	background: #FFFFFF;
	border: 1px solid rgba(9, 32, 75, 0.08);
	color: #00205B !important;
	text-decoration: none;
	font-weight: 700;
	font-size: 14px;
	transition: all 0.2s ease;
}

.pagination .page-numbers:hover,
.pagination .page-numbers.current,
.pagination .nav-links .page-numbers:hover,
.pagination .nav-links .page-numbers.current {
	background: #00205B;
	color: #FFFFFF !important;
	border-color: #00205B;
}

@media (max-width: 1023px) {
	.articles-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 24px;
	}
}

@media (max-width: 640px) {
	.articles-grid {
		grid-template-columns: 1fr;
		gap: 24px;
	}
	
	.article-card-content {
		padding: 20px;
	}
	
	.article-card-title {
		font-size: 18px;
	}
}

/* Page & Single Template Styles */
.page-hero-section {
	background: #09204b;
	padding: 160px 0 60px 0;
	position: relative;
	overflow: hidden;
	color: #FFFFFF;
	text-align: center;
}

.page-hero-section::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: radial-gradient(circle at 80% 20%, rgba(0, 163, 255, 0.15) 0%, transparent 50%),
	            radial-gradient(circle at 20% 80%, rgba(223, 255, 0, 0.05) 0%, transparent 50%);
	pointer-events: none;
}

.page-hero-title {
	font-size: 42px;
	font-weight: 800;
	color: #FFFFFF;
	margin: 0;
	letter-spacing: -0.5px;
	line-height: 1.2;
}

.page-hero-meta {
	margin-top: 12px;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.7);
}

.page-main {
	padding: 40px 0 120px 0;
	background: var(--bg-light);
	min-height: 40vh;
}

.page-container {
	width: calc(100% - 48px);
	max-width: 960px;
	margin: 0 auto;
	padding: 48px;
	background: #FFFFFF;
	border-radius: 16px;
	box-shadow: 0 10px 30px rgba(9, 32, 75, 0.05);
	position: relative;
	margin-top: 0;
	z-index: 10;
}

.page-content {
	font-size: 16px;
	line-height: 1.8;
	color: var(--text-dark);
}

.page-content p {
	margin-bottom: 20px;
}

.page-content h1, .page-content h2, .page-content h3 {
	color: #00205B;
	margin: 32px 0 16px 0;
	font-weight: 700;
}

.page-content ol {
	list-style: decimal !important;
	margin-bottom: 20px;
	padding-left: 24px !important;
}

.page-content ul {
	list-style: disc !important;
	margin-bottom: 20px;
	padding-left: 24px !important;
}

.page-content li {
	display: list-item !important;
	margin-bottom: 8px;
}

@media (max-width: 767px) {
	.page-hero-section {
		padding: 120px 0 40px 0;
	}

	.page-hero-title {
		font-size: 32px;
	}

	.page-main {
		padding: 24px 0 80px 0;
	}

	.page-container {
		width: calc(100% - 32px);
		padding: 24px;
		border-radius: 12px;
		margin-top: 0;
	}
}

/* Legalitas Page Styles */
.legalitas-intro {
	margin-bottom: 32px;
}

.legalitas-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.legal-card {
	background: #FFFFFF;
	border: 1px solid rgba(9, 32, 75, 0.08);
	border-radius: 12px;
	padding: 24px;
	box-shadow: 0 4px 15px rgba(9, 32, 75, 0.02);
	display: flex;
	flex-direction: column;
	gap: 16px;
	transition: all 0.3s ease;
	position: relative;
}

.legal-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 25px rgba(9, 32, 75, 0.06);
	border-color: #00A3FF;
}

.legal-icon {
	color: #FF3B30;
	background: rgba(255, 59, 48, 0.08);
	width: 48px;
	height: 48px;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.pdf-icon {
	width: 28px;
	height: 28px;
}

.legal-info {
	display: flex;
	flex-direction: column;
	gap: 4px;
	flex-grow: 1;
}

.legal-doc-title {
	font-size: 16px;
	font-weight: 700;
	color: #00205B;
	margin: 0;
	line-height: 1.4;
}

.legal-file-size {
	font-size: 12px;
	color: var(--text-medium);
	font-weight: 600;
}

.legal-actions {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-top: 8px;
}

.btn-preview-pdf {
	background: #00205B;
	color: #FFFFFF !important;
	border: none;
	border-radius: 6px;
	padding: 10px 16px;
	font-size: 13px;
	font-weight: 700;
	cursor: pointer;
	flex-grow: 1;
	text-align: center;
	transition: background 0.2s ease;
}

.btn-preview-pdf:hover {
	background: #00A3FF;
}

.btn-download-pdf {
	color: #00205B !important;
	background: rgba(0, 32, 91, 0.05);
	width: 38px;
	height: 38px;
	border-radius: 6px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	transition: all 0.2s ease;
}

.btn-download-pdf:hover {
	color: #FFFFFF !important;
	background: #00205B;
}

.no-docs {
	grid-column: 1 / -1;
	text-align: center;
	padding: 48px;
	color: var(--text-medium);
	font-weight: 600;
}

/* PDF Preview Modal Styles */
.pdf-modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(9, 32, 75, 0.85);
	backdrop-filter: blur(5px);
	z-index: 100100;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
}

.pdf-modal.active {
	opacity: 1;
	visibility: visible;
}

.pdf-modal-content {
	background: #FFFFFF;
	width: 90%;
	max-width: 960px;
	height: 85%;
	border-radius: 16px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
	transform: scale(0.95);
	transition: transform 0.3s ease;
}

.pdf-modal.active .pdf-modal-content {
	transform: scale(1);
}

.pdf-modal-header {
	padding: 16px 24px;
	background: #00205B;
	color: #FFFFFF;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.pdf-modal-header h3 {
	margin: 0;
	font-size: 18px;
	font-weight: 700;
	color: #FFFFFF;
}

.close-modal {
	background: transparent;
	border: none;
	color: #FFFFFF;
	font-size: 28px;
	cursor: pointer;
	line-height: 1;
	transition: opacity 0.2s ease;
}

.close-modal:hover {
	opacity: 0.8;
}

.pdf-modal-body {
	flex-grow: 1;
	background: #F4F6F9;
}

#pdf-iframe {
	width: 100%;
	height: 100%;
	border: none;
}

@media (max-width: 1023px) {
	.legalitas-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 640px) {
	.legalitas-grid {
		grid-template-columns: 1fr;
	}
	
	.pdf-modal-content {
		width: 95%;
		height: 90%;
	}
	
	.pdf-modal-header {
		padding: 12px 16px;
	}
	
	.pdf-modal-header h3 {
		font-size: 15px;
	}
}

/* Single Post Featured Image Styles */
.single-post-thumbnail {
	width: 100%;
	max-height: none;
	overflow: hidden;
	border-radius: 12px;
	margin-bottom: 32px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.single-post-thumbnail img {
	width: 100%;
	height: auto;
	object-fit: cover;
	display: block;
}

/* Articles Search Styles */
.articles-search-wrapper {
	max-width: 500px;
	margin: 0 auto 48px auto;
}

.search-input-group {
	display: flex;
	align-items: center;
	background: #FFFFFF;
	border: 2px solid rgba(9, 32, 75, 0.08);
	border-radius: 30px;
	padding: 4px 6px 4px 18px;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(9, 32, 75, 0.02);
}

.search-input-group:focus-within {
	border-color: #00A3FF;
	box-shadow: 0 8px 25px rgba(0, 163, 255, 0.1);
}

.search-field {
	flex-grow: 1;
	border: none;
	background: transparent;
	font-size: 15px;
	font-weight: 500;
	color: #00205B;
	padding: 10px 0;
	outline: none;
	width: 100%;
}

.search-field::placeholder {
	color: var(--text-medium);
	opacity: 0.8;
}

.search-submit {
	background: #00205B;
	color: #FFFFFF !important;
	border: none;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: background 0.2s ease;
	flex-shrink: 0;
}

.search-submit:hover {
	background: #00A3FF;
}

.search-results-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 40px;
	padding-bottom: 20px;
	border-bottom: 1px solid rgba(9, 32, 75, 0.08);
	flex-wrap: wrap;
}

.search-results-title {
	font-size: 22px;
	font-weight: 800;
	color: #00205B;
	margin: 0;
}

.search-results-title span {
	color: #00A3FF;
}

.btn-clear-search {
	font-size: 13px;
	font-weight: 700;
	color: #FF3B30 !important;
	text-decoration: none;
	background: rgba(255, 59, 48, 0.08);
	padding: 8px 16px;
	border-radius: 20px;
	transition: all 0.2s ease;
}

.btn-clear-search:hover {
	background: #FF3B30;
	color: #FFFFFF !important;
}

@media (max-width: 640px) {
	.articles-search-wrapper {
		margin-bottom: 32px;
	}
	
	.search-results-header {
		flex-direction: column;
		align-items: flex-start;
		gap: 12px;
	}
}

/* Related Articles Styles */
.related-posts-section {
	background: var(--bg-light);
	padding: 0 0 80px 0;
}

.related-posts-container {
	max-width: 960px;
	margin: 0 auto;
	padding: 0 24px;
}

.related-section-title {
	font-size: 28px;
	font-weight: 800;
	color: #00205B;
	margin-bottom: 32px;
	text-align: left;
}

.related-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.related-card {
	background: #FFFFFF;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 5px 20px rgba(9, 32, 75, 0.03);
	border: 1px solid rgba(9, 32, 75, 0.05);
	transition: all 0.3s ease;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.related-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 10px 25px rgba(9, 32, 75, 0.06);
}

.related-thumbnail {
	position: relative;
	width: 100%;
	padding-top: 56.25%;
	overflow: hidden;
}

.related-thumbnail img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.related-card:hover .related-thumbnail img {
	transform: scale(1.05);
}

.related-card-content {
	padding: 20px;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.related-date {
	font-size: 12px;
	color: var(--text-medium);
	font-weight: 600;
	margin-bottom: 8px;
}

.related-card-title {
	font-size: 16px;
	font-weight: 700;
	line-height: 1.4;
	margin: 0;
}

.related-card-title a {
	color: #00205B !important;
	text-decoration: none;
	transition: color 0.2s ease;
}

.related-card-title a:hover {
	color: #00A3FF !important;
}

@media (max-width: 767px) {
	.related-posts-section {
		padding-bottom: 60px;
	}

	.related-section-title {
		font-size: 22px;
		margin-bottom: 24px;
	}

	.related-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}
}

