/* ========== CSS VARIABLES ========== */
:root {
	--navy: #0A1B5E;
	--navy-dark: #071245;
	--navy-light: #0D2370;
	--teal-bar: #B5E0EA;
	--yellow: #E8D2A5;
	--brown: #4C370A;
	--white: #FFFFFF;
	--gray-50: #F8F9FA;
	--gray-100: #F0F2F5;
	--gray-200: #E2E8F0;
	--gray-400: #94A3B8;
	--gray-600: #64748B;
	--gray-800: #1E293B;
	--scale-xs: 4px;
	--scale-sm: 8px;
	--scale-md: 16px;
	--scale-lg: 24px;
	--scale-xl: 32px;
	--scale-xxl: 64px;
	--shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
	--shadow-md: 0 4px 16px rgba(0, 0, 0, 0.10);
	--shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.14);

	/* Color styles */
	--dark--blue: rgba(7, 30, 73, 1);
	--royal--blue: rgba(65, 105, 225, 1);
	--dodger--blue: rgba(30, 144, 255, 1);
	--steel--blue: rgba(70, 130, 180, 1);
	--deep--sky--blue: rgba(0, 191, 255, 1);
	--light--sky--blue: rgba(135, 206, 235, 1);
	--pastel--light--blue: rgba(181, 224, 234, 1);
	--medium--green: rgba(111, 191, 80, 1);
	--bright--green: rgba(146, 208, 93, 1);
	--gold: rgba(209, 176, 108, 1);
	--earthy--brown: rgba(141, 110, 99, 1);
	--dark--charcoal: rgba(51, 51, 51, 1);
	--white--surface: rgb(248, 250, 252);

	--text: var(--dark--blue);

}

@media screen and (max-width: 1080px) {
	:root {
		--scale-sm: 6px;
		--scale-md: 12px;
		--scale-lg: 18px;
		--scale-xl: 24px;
		--scale-xxl: 32px;
	}
}

/* ========== RESET & BASE ========== */
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	font-family: 'Urbanist', sans-serif;
	color: var(--text);
	background: var(--dark--blue);
}

a {
	text-decoration: none;
	color: inherit;
}

ul {
	list-style: none;
}

button {
	cursor: pointer;
	font-family: inherit;
	border: none;
	background: none;
}

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

/* ========== TOPBAR ========== */
.topbar {
	background: white;
	position: sticky;
	top: 0;
	z-index: 900;
}

.topbar-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: 1280px;
	margin: 0 auto;
	min-height: 92px;
	padding: 0 24px;
}

.topbar-logo {
	display: flex;
	align-items: center;
	gap: 10px;
}

.topbar-logo-icon {
	width: 44px;
	height: 44px;
	background: var(--white);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 800;
	font-size: 11px;
	color: var(--dark--blue);
	text-align: center;
	line-height: 1.1;
	padding: 4px;
}

.topbar-logo-text {
	color: var(--white);
	font-size: 16px;
	font-weight: 700;
	line-height: 1.3;
	letter-spacing: 0.5px;
}

.topbar-logo-text span {
	display: block;
	font-size: 10px;
	font-weight: 500;
	opacity: 0.8;
}

.topbar-search {
	display: flex;
	align-items: center;
	background: var(--white);
	border-radius: 6px;
	overflow: hidden;
	width: 100%;
}

.topbar-search input {
	flex: 1;
	border: none;
	outline: none;
	padding: 12px 16px;
	font-size: 16px;
	font-family: inherit;
	color: var(--gray-800);
	border: 1px solid #CAD5E2;
	height: 40px;
	border-top-left-radius: 40px;
	border-bottom-left-radius: 40px;
}

.topbar-search input::placeholder {
	color: var(--gray-400);
}

.topbar-search button {
	background: var(--dark--blue);
	padding: 8px 12px;
	display: flex;
	align-items: center;
	color: var(--white);
	height: 40px;
	border-top-right-radius: 40px;
	border-bottom-right-radius: 40px;
}

.topbar-search button svg {
	width: 16px;
	height: 16px;
}

.topbar .navbar-toggler {
	margin-left: auto;
	border-color: rgba(7, 30, 73, 0.2);
}

.topbar .navbar-toggler:focus {
	box-shadow: none;
}

.topbar .navbar-collapse {
	flex-grow: 1;
}

.topbar-actions {
	display: flex;
	align-items: center;
	gap: 12px;
	width: 100%;
	margin-left: auto;
}

@media screen and (min-width: 992px) {
	.topbar-actions {
		justify-content: flex-end;
	}

	.topbar-search {
		max-width: 460px;
	}
}

/* FLOATING BUTTON */
.survey-float-btn {
	position: fixed;
	right: 25px;
	bottom: 80px;
	/* width: 62px;
																																		height: 62px; */
	z-index: 9999;
	font-size: 24px;
	animation: pulse 2s infinite;
	color: #f8eeda !important;
	font-weight: 700;
	border: 2px solid #D2C09C !important;
}

@keyframes pulse {
	0% {
		transform: scale(1);
	}

	50% {
		transform: scale(1.03);
	}

	100% {
		transform: scale(1);
	}
}

.survey-group .btn {
	min-width: 140px;
}

.btn_klik {
	padding: 10px 22px !important;
	justify-content: center !important;
}

.btn_klik.active,
.btn_klik.btn-warning {
	color: #fff !important;
}



/* ========== NAVBAR ========== */
nav.navbar:not(.topbar-inner) {
	background: var(--pastel--light--blue);
	position: sticky;
	top: 92px;
	padding: 0;
	z-index: 899;
	width: 100%;
}

.navbar-inner {
	display: flex;
	align-items: center;
	gap: 4px;
	max-width: 1280px;
	padding: 0 12px;
	margin: 0 auto;
	width: 100%;
}

.nav-item {
	position: relative;
	display: flex;
	align-items: center;
	gap: 4px;
	padding: 16px 12px;
	font-size: 16px;
	font-weight: 500;
	color: var(--navy-dark);
	transition: background 0.15s;
	border-radius: 4px;
	white-space: nowrap;
}

.nav-item:hover {
	background: rgba(10, 27, 94, 0.08);
}

.nav-item.active {
	font-weight: 700;
}

.nav-chevron {
	width: 16px;
	height: 16px;
	transition: transform .2s;
	flex-shrink: 0;
}

.nav-item.open .nav-chevron {
	transform: rotate(180deg);
}

.nav-dropdown-wrapper {
	position: relative;
}

.dropdown {
	position: absolute;
	top: calc(100% + 8px);
	left: 0;
	background: #fff;
	border: 0.5px solid #e0e0e0;
	border-radius: 8px;
	min-width: 250px;
	box-shadow: 0 6px 20px rgba(0, 0, 0, .09);
	display: none;
	z-index: 999;
	overflow: hidden;
	padding: 6px;
}

.dropdown.open {
	display: block;
}

.dropdown-item {
	display: block;
	padding: 14px 16px;
	font-size: 16px;
	color: var(--text);
	text-decoration: none;
	border-left: 4px solid transparent;
	transition: background .1s, color .1s;
	border-radius: 4px;
}

.dropdown-item:hover {
	background: #f1f1f1;
	color: var(--text);
	font-weight: 600;
	border-left-color: var(--dark--blue);
}

.nav-overlay {
	display: none;
	position: fixed;
	inset: 0;
	z-index: 500;
}

.nav-overlay.open {
	display: block;
}

/* ========== HERO ========== */
.hero {
	background: var(--dark--blue);
	height: 600px;
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* decorative pattern */
.hero::before {
	content: '';
	position: absolute;
	right: -80px;
	top: -80px;
	width: 600px;
	height: 600px;
	background-image: radial-gradient(circle, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
	background-size: 40px 40px;
	pointer-events: none;
}

.hero-inner {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 48px;
	max-width: 1280px;
	width: 100%;
	padding: 0 24px;
}


@media screen and (max-width: 1080px) {
	.hero {
		height: fit-content;
		padding: 80px 0;
	}

	.hero-inner {
		flex-direction: column;
	}
}

.hero-left {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.hero-tag {
	font-size: 16px;
	font-weight: 600;
	color: #EAEAEA;
	letter-spacing: 1.5px;
	text-transform: uppercase;
}

.hero-title {
	font-size: 48px;
	font-weight: 800;
	color: var(--white);
	line-height: 1.25;
}

.hero-desc {
	font-size: 20px;
	color: #EAEAEA;
	line-height: 1.75;
}

/* Quick Access Cards */
.hero-right {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	flex-shrink: 0;
}

.quick-card-wrapper {
	display: grid;
	gap: var(--scale-md);
	margin-bottom: var(--scale-xl);
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}

.quick-card {
	background: white;
	border-radius: var(--scale-md);
	padding: 22px 20px;
	display: flex;
	gap: 10px;
	transition: transform 0.2s, box-shadow 0.2s;
	cursor: pointer;
	width: 100%;
}

.quick-card.unavailable {
	opacity: 0.6;
	cursor: not-allowed;
}

.quick-card:hover {
	transform: translateY(-2px);
}

.quick-card-icon {
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--navy);
}

.quick-card-icon svg {
	width: 32px;
	height: 32px;
}

.quick-card p,
.quick-card a {
	font-size: 18px;
	font-weight: 600;
	color: var(--navy-dark);
	line-height: 1.4;
	margin-bottom: 0
}

/* Hero slider */
.hero-slider {
	width: 100%;
	aspect-ratio: 16 / 9;
}

.bgn-swiper-button,
.bgn-swiper-button {
	position: absolute;
	left: 12px;
	top: 50%;
	transform: translateY(-50%);
	z-index: 10;
	background: rgba(255, 255, 255, .4);
	border: 1.5px solid rgba(255, 255, 255, 0.8);
	border-radius: 50%;
	width: 40px;
	height: 40px;
	cursor: pointer;
	backdrop-filter: blur(4px);
	display: flex;
	align-items: center;
	justify-content: center;
}

.bgn-swiper-button.swiper-button-lock {
	display: none;
}

.bgn-swiper-button i {
	color: white;
	font-size: 24px;
}

.bgn-swiper-button-next {
	left: auto;
	right: 12px;
}

.bgn-swiper-pagination {
	bottom: 48px !important;
}

.bgn-swiper-pagination .swiper-pagination-bullet {
	width: 32px;
	height: 6px;
	background: rgba(255, 255, 255, 0.4);
	opacity: 1;
	border-radius: 200px;
	margin: 0 4px;
}

.bgn-swiper-pagination .swiper-pagination-bullet-active {
	background: var(--gold);
}

@media screen and (max-width: 720px) {
	.hero-slider {
		aspect-ratio: 3 / 4;
	}

	.bgn-swiper-pagination {
		bottom: 32px !important;
	}

	.bgn-swiper-button {
		display: none;
	}
}

/* ========== STATS ========== */
.stats {
	background: var(--white--surface);
	padding: var(--scale-xxl) var(--scale-xl);
	border-radius: var(--scale-xxl) var(--scale-xxl) 0 0;
	margin-top: -24px;
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.stats-inner {
	display: flex;
	align-items: center;
	justify-content: space-evenly;
	max-width: 1280px;
	width: 100%;
	margin: 0 24px;
	background-color: white;
	border-radius: var(--scale-lg);
	padding: var(--scale-lg);
	border-radius: var(--scale-lg);
	margin: 0 24px;
}

.stat-divider {
	width: 1px;
	height: 48px;
	background: var(--gray-200);
}

.stat-item {
	text-align: center;
}

.stat-value {
	font-size: 40px;
	font-weight: 800;
	color: var(--navy);
	line-height: 1;
	margin-bottom: 8px;
}

.stat-label {
	font-size: 18px;
	color: var(--gray-600);
	font-weight: 500;
}

@media screen and (max-width: 1080px) {
	.stats-inner {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 2rem;
	}

	.stat-divider {
		display: none;
	}
}

/* ========== SECTION SHARED ========== */
.section {
	padding: var(--scale-xxl) 0;
	background-color: var(--white--surface);
}

.section--rounded-top {
	border-top-left-radius: var(--scale-xxl);
	border-top-right-radius: var(--scale-xxl);
}

.section-header {
	margin-bottom: 32px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

/* mobile breakpoints */
@media (max-width: 768px) {
	.section-header {
		flex-direction: column;
		align-items: flex-start;
		gap: 12px;
	}
}

.section-title {
	font-size: 40px;
	font-weight: 800;
	color: var(--text);
}

/* ========== BERITA PPID ========== */
.berita {
	background: var(--white--surface);
	padding: var(--scale-xxl) 0;
}


/* ── TOP SECTION: Swiper + Berita BGN ── */
.top-section {
	display: grid;
	grid-template-columns: 1fr 360px;
	gap: 24px;
	margin-bottom: 40px;
	/*  */
}

/* BERITA BGN - vertical scroll panel */
.berita-bgn {
	display: flex;
	flex-direction: column;
}

.panel-title {
	font-size: 20px;
	font-weight: 700;
	color: var(--primary);
	margin-bottom: 14px;
	padding-bottom: 10px;
	border-bottom: 2px solid var(--primary-light);
}

.berita-bgn-list {
	flex: 1;
	overflow-y: auto;
	max-height: 420px;
	display: flex;
	flex-direction: column;
	gap: 2px;
	padding-right: 0px;
}

/* Custom scrollbar */
.berita-bgn-list::-webkit-scrollbar {
	width: 4px;
}

.berita-bgn-list::-webkit-scrollbar-track {
	background: var(--border);
	border-radius: 4px;
}

.berita-bgn-list::-webkit-scrollbar-thumb {
	background: var(--primary);
	border-radius: 4px;
}

.bgn-item {
	display: flex;
	gap: 12px;
	align-items: center;
	padding: 10px 0px;
	border-radius: 10px;
	cursor: pointer;
	transition: background 0.18s;
	text-decoration: none;
	color: inherit;
}

.bgn-item:hover {
	background: var(--primary-light);
}

.bgn-item img {
	width: 80px;
	height: 60px;
	object-fit: cover;
	border-radius: 8px;
	flex-shrink: 0;
}

.bgn-item-body {
	flex: 1;
	min-width: 0;
}

.bgn-item-title {
	font-size: 16px;
	font-weight: 600;
	line-height: 1.4;
	color: var(--text-dark);
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	margin-bottom: 4px;
}

.bgn-item-meta {
	font-size: 12px;
	color: var(--text-label);
	font-weight: 500;
}

.bgn-item-meta span {
	color: var(--text-muted);
	font-weight: 400;
}

/* ── BOTTOM SECTION: Berita Nasional ── */

.bottom-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 16px;
}

.bottom-title {
	font-size: 20px;
	font-weight: 700;
	color: var(--primary);
}

.btn-lihat {
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 8px 16px;
	border: 1.5px solid var(--border);
	border-radius: 8px;
	font-size: 16px;
	font-weight: 600;
	color: var(--text-dark);
	background: var(--card-bg);
	cursor: pointer;
	transition: border-color 0.2s, background 0.2s;
	text-decoration: none;
}

.btn-lihat:hover {
	border-color: var(--primary);
	background: var(--primary-light);
}

/* Horizontal scroll container */
.nasional-scroll-wrapper {
	position: relative;
}

.nasional-list {
	display: flex;
	gap: 16px;
	overflow-x: auto;
	padding-bottom: 12px;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
}

.nasional-list::-webkit-scrollbar {
	height: 5px;
}

.nasional-list::-webkit-scrollbar-track {
	background: var(--border);
	border-radius: 4px;
}

.nasional-list::-webkit-scrollbar-thumb {
	background: var(--primary);
	border-radius: 4px;
}

.nasional-card {
	flex: 0 0 300px;
	height: 200px;
	border-radius: var(--scale);
	overflow: hidden;
	position: relative;
	scroll-snap-align: start;
	cursor: pointer;
	box-shadow: var(--shadow);
	transition: transform 0.22s, box-shadow 0.22s;
	border-radius: 12px;
}

.nasional-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
}

.nasional-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.nasional-card-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.1) 60%, transparent 100%);
	padding: 12px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}

.nasional-card-title {
	font-size: 16px;
	font-weight: 700;
	color: #fff;
	line-height: 1.4;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	margin-bottom: 6px;
}

.nasional-card-meta {
	font-size: 12px;
	color: rgba(255, 255, 255, 0.7);
	font-weight: 500;
}

/* Arrow nav for nasional scroll */
.scroll-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: #fff;
	border: 1.5px solid var(--border);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 10;
	transition: background 0.2s, border-color 0.2s;
}

.scroll-arrow:hover {
	background: var(--primary);
	border-color: var(--primary);
}

.scroll-arrow:hover svg {
	stroke: #fff;
}

.scroll-arrow svg {
	width: 18px;
	height: 18px;
	stroke: var(--text-dark);
	transition: stroke 0.2s;
}

.arrow-left {
	left: -18px;
}

.arrow-right {
	right: -18px;
}

@media (max-width: 900px) {
	.top-section {
		grid-template-columns: 1fr;
	}

	.berita-bgn-list {
		max-height: 300px;
	}

	.arrow-left {
		left: 4px;
	}

	.arrow-right {
		right: 4px;
	}
}

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

.news-card {
	background: var(--white);
	border-radius: var(--scale-md);
	overflow: hidden;
	box-shadow: var(--shadow-sm);
	transition: box-shadow 0.2s, transform 0.2s;
	cursor: pointer;
}

.news-card:hover {
	box-shadow: var(--shadow-md);
	transform: translateY(-2px);
}

.news-thumb {
	width: 100%;
	height: 180px;
	background: var(--gray-200);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--gray-400);
	font-size: 12px;
}

.news-thumb.featured {
	background: var(--navy);
	color: var(--yellow);
	font-size: 20px;
	font-weight: 800;
	text-align: center;
	padding: 20px;
	line-height: 1.2;
}

.news-body {
	padding: 18px 20px;
}

.news-title {
	font-size: 14px;
	font-weight: 700;
	color: var(--text);
	margin-bottom: 6px;
	line-height: 1.4;
}

.news-date {
	font-size: 12px;
	color: var(--gray-400);
}

.news-controls {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.news-nav {
	display: flex;
	gap: 8px;
}

.nav-btn {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	border: 2px solid var(--gray-200) !important;
	background: var(--white) !important;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--gray-600);
	transition: all 0.15s;
	cursor: pointer;
}

.nav-btn:hover {
	border-color: var(--navy) !important;
	color: var(--navy);
}

.btn-primary {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--dark--blue);
	color: var(--white);
	padding: 10px 22px;
	border-radius: 50px;
	font-size: 16px;
	transition: background 0.15s;
	border: 1px solid var(--dark--blue);
}

.btn-primary:hover {
	background-color: var(--navy-dark);
}

.btn-primary svg {
	width: 16px;
	height: 16px;
}

/* geleri video */
.galeri-video {
	background-color: var(--white--surface);
}

.video-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 24px;
}

.video-card {
	background-color: white;
	border-radius: var(--scale-md);
	overflow: hidden;
	box-shadow: var(--shadow-sm);
	transition: box-shadow 0.2s, transform 0.2s;
	cursor: pointer;
	position: relative;
}

.video-card:hover {
	transform: translateY(-2px);
}

.video-media {
	position: relative;
	aspect-ratio: 3 / 2;
	overflow: hidden;
}

.video-card-body {
	padding: 8px 12px 10px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: #fff;
}

.btn-card-detail {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	padding: 5px 14px;
	border: 1.5px solid var(--color-primary, #1a3c7d);
	border-radius: 999px;
	color: var(--color-primary, #1a3c7d);
	font-size: 0.78rem;
	font-weight: 600;
	text-decoration: none;
	background: transparent;
	transition: background 0.2s, color 0.2s;
	cursor: pointer;
}

.btn-card-detail:hover {
	background: var(--color-primary, #1a3c7d);
	color: #fff;
	text-decoration: none;
}

.foto-card-action {
	margin-top: 8px;
	display: flex;
	justify-content: flex-end;
}

/* ---- Video detail page ---- */
.video-detail-wrap {
	max-width: 900px;
	margin: 0 auto;
}

.video-detail-player {
	position: relative;
	aspect-ratio: 16 / 9;
	border-radius: var(--scale-md, 8px);
	overflow: hidden;
	background: #000;
}

.video-detail-player iframe,
.video-detail-player video {
	width: 100%;
	height: 100%;
	display: block;
}

.video-detail-desc {
	margin-top: 20px;
	color: var(--color-muted, #6b7280);
	font-size: 0.95rem;
	line-height: 1.6;
}

.video-detail-back {
	margin-top: 28px;
	display: flex;
}

.video-thumb {
	position: relative;
	width: 100%;
	height: 100%;
}

.video-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.video-thumb-placeholder {
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #1a2e5a 0%, #2d4a8a 100%);
}

.video-play-btn {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(0, 0, 0, 0.35);
	border: none;
	cursor: pointer;
	transition: background 0.2s;
	width: 100%;
	height: 100%;
	padding: 0;
	opacity: 0;
}

.video-play-btn:hover {
	background: rgba(0, 0, 0, 0.55);
	opacity: 1;
}

.video-play-btn svg {
	width: 56px;
	height: 56px;
	color: white;
	filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
}

.video-player {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.video-card-title {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 8px 12px;
	background: linear-gradient(transparent, rgba(0, 0, 0, 0.6));
	color: #fff;
	font-size: 0.8rem;
	font-weight: 500;
	line-height: 1.3;
	z-index: 2;
}

/* ---- Galeri Tabs Nav ---- */
.galeri-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 24px;
}

.galeri-tabs-nav {
	display: flex;
	gap: 8px;
}

.galeri-tab-btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 7px 18px;
	border: 2px solid var(--color-primary, #1a3c7d);
	border-radius: 999px;
	background: transparent;
	color: var(--color-primary, #1a3c7d);
	font-size: 0.875rem;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.2s, color 0.2s;
}

.galeri-tab-btn.active,
.galeri-tab-btn:hover {
	background: var(--color-primary, #1a3c7d);
	color: #fff;
}

/* ---- Foto Grid ---- */
.foto-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 24px;
}

.foto-card {
	background: #fff;
	border-radius: var(--scale-md, 8px);
	overflow: hidden;
	box-shadow: var(--shadow-sm, 0 1px 4px rgba(0, 0, 0, 0.08));
	cursor: pointer;
	transition: box-shadow 0.2s, transform 0.2s;
}

.foto-card:hover {
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
	transform: translateY(-2px);
}

.foto-card-thumb {
	position: relative;
	width: 100%;
	aspect-ratio: 4 / 3;
	overflow: hidden;
}

.foto-card-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.3s;
}

.foto-card:hover .foto-card-thumb img {
	transform: scale(1.04);
}

.foto-thumb-placeholder {
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #1a2e5a 0%, #2d4a8a 100%);
}

.foto-card-count {
	position: absolute;
	bottom: 8px;
	right: 8px;
	display: inline-flex;
	align-items: center;
	gap: 4px;
	padding: 3px 8px;
	background: rgba(0, 0, 0, 0.55);
	color: #fff;
	font-size: 0.75rem;
	border-radius: 999px;
	backdrop-filter: blur(2px);
}

.foto-card-body {
	padding: 12px 14px 14px;
}

.foto-card-judul {
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--color-text, #1a2e5a);
	line-height: 1.3;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.foto-card-ket {
	font-size: 0.78rem;
	color: var(--color-muted, #6b7280);
	margin-top: 4px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

/* ---- Foto card as link ---- */
.foto-card--link {
	display: block;
	text-decoration: none;
	color: inherit;
}

.foto-card--link:hover {
	text-decoration: none;
	color: inherit;
}

/* ---- Galeri footer (lihat selengkapnya) ---- */
.galeri-footer {
	display: flex;
	justify-content: center;
	margin-top: 32px;
}

.btn-lihat-selengkapnya {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 10px 28px;
	border: 2px solid var(--color-primary, #1a3c7d);
	border-radius: 999px;
	background: transparent;
	color: var(--color-primary, #1a3c7d);
	font-size: 0.9rem;
	font-weight: 600;
	text-decoration: none;
	transition: background 0.2s, color 0.2s;
}

.btn-lihat-selengkapnya:hover {
	background: var(--color-primary, #1a3c7d);
	color: #fff;
	text-decoration: none;
}

/* ---- Galeri detail page ---- */
.galeri-detail-desc {
	color: var(--color-muted, #6b7280);
	margin-bottom: 28px;
	font-size: 0.95rem;
}

.foto-detail-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	gap: 16px;
}

.foto-detail-item {
	position: relative;
	border: none;
	padding: 0;
	background: none;
	cursor: pointer;
	border-radius: var(--scale-md, 8px);
	overflow: hidden;
	aspect-ratio: 4 / 3;
	display: block;
	width: 100%;
}

.foto-detail-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.3s;
}

.foto-detail-item:hover img {
	transform: scale(1.05);
}

.foto-detail-item-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 8px 10px;
	background: linear-gradient(transparent, rgba(0, 0, 0, 0.6));
	color: #fff;
	font-size: 0.78rem;
	line-height: 1.3;
}

/* ---- Galeri empty state ---- */
.galeri-empty {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	padding: 48px 0;
	color: var(--color-muted, #9ca3af);
}

.galeri-empty p {
	margin: 0;
	font-size: 0.95rem;
}

/* ---- Foto Lightbox ---- */
.foto-lightbox-overlay {
	position: fixed;
	inset: 0;
	z-index: 9999;
	background: rgba(0, 0, 0, 0.88);
	display: flex;
	align-items: center;
	justify-content: center;
}

.foto-lb-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	max-width: 90vw;
	max-height: 90vh;
}

.foto-lb-header {
	color: #fff;
	font-size: 1rem;
	font-weight: 700;
	margin-bottom: 10px;
	text-align: center;
	max-width: 80vw;
}

.foto-lb-img {
	max-width: 80vw;
	max-height: 70vh;
	object-fit: contain;
	border-radius: 4px;
	display: block;
}

.foto-lb-caption {
	color: #ccc;
	font-size: 0.83rem;
	margin-top: 8px;
	text-align: center;
	min-height: 1.2em;
}

.foto-lb-counter {
	color: #999;
	font-size: 0.78rem;
	margin-top: 4px;
}

.foto-lb-close {
	position: fixed;
	top: 18px;
	right: 22px;
	background: none;
	border: none;
	color: #fff;
	font-size: 2.2rem;
	line-height: 1;
	cursor: pointer;
	z-index: 10000;
	padding: 4px 8px;
	opacity: 0.85;
	transition: opacity 0.2s;
}

.foto-lb-close:hover {
	opacity: 1;
}

.foto-lb-nav {
	position: fixed;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(255, 255, 255, 0.12);
	border: none;
	color: #fff;
	font-size: 2.5rem;
	line-height: 1;
	cursor: pointer;
	padding: 8px 14px;
	border-radius: 4px;
	z-index: 10000;
	transition: background 0.2s;
}

.foto-lb-nav:hover {
	background: rgba(255, 255, 255, 0.25);
}

.foto-lb-prev {
	left: 16px;
}

.foto-lb-next {
	right: 16px;
}

/* ========== KATEGORI ========== */
.kategori {
	background: var(--white--surface);
	padding: var(--scale-xxl) 0;
}

.kategori-tabs {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	margin-bottom: 1rem;
}

.kategori-item {
	background: white;
	border-radius: var(--scale-md);
	padding: 16px;
	border-radius: 16px;
	transition: box-shadow 0.2s, transform 0.2s;
	display: flex;
	flex-direction: column;
}

.kategori-item-title {
	font-size: 16px;
	font-weight: 600;
}

.kategori-item-meta {
	font-size: 14px;
}

.tab-pill {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 24px;
	border-radius: 24px;
	font-size: 14px;
	font-weight: 600;
	color: var(--dark--blue);
	background: var(--white);
	cursor: pointer;
	transition: all 0.15s;
}

.tab-pill:hover,
.tab-pill.active {
	border-color: var(--navy);
	color: var(--navy);
	background: rgba(10, 27, 94, 0.05);
}

.tab-pill svg {
	width: 18px;
	height: 18px;
	opacity: 0.7;
}

/* ========== FAQ ========== */
.faq {
	background: var(--gray-50);
	border-bottom-left-radius: var(--scale-xxl);
	border-bottom-right-radius: var(--scale-xxl);
}

.faq-header {
	text-align: center;
	margin-bottom: 48px;
}

.faq-subtitle {
	font-size: 16px;
	color: var(--gray-600);
	margin-top: 8px;
}

.faq-list {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.faq-item {
	background-color: white;
	border-radius: var(--scale-lg);
	padding: var(--scale-lg);
}

.faq-item:first-child {}

.faq-question {
	display: flex;
	align-items: center;
	justify-content: space-between;
	cursor: pointer;
	font-size: 16px;
	font-weight: 600;
	color: var(--text);
	gap: 16px;
}

.faq-question:hover {
	color: var(--navy);
}

.faq-chevron {
	width: 20px;
	height: 20px;
	flex-shrink: 0;
	color: var(--gray-400);
	transition: transform 0.2s;
}

.faq-question .faq-chevron {
	transform: rotate(180deg);
}

.faq-question.collapsed .faq-chevron {
	transform: rotate(0deg);
}


.faq-answer {
	padding-top: var(--scale-md);
	font-size: 16px;
	color: var(--gray-600);
	line-height: 1.75;
}

/* ========== SURVEY CTA ========== */
.survey-cta {
	background: var(--dark--blue);
	padding: var(--scale-xxl) 0;
	position: relative;
	overflow: hidden;
}


.survey-inner {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 24px;
}

.survey-title {
	font-size: 40px;
	font-weight: 800;
	color: var(--white);
	line-height: 1.35;
	max-width: 560px;
	margin-bottom: 32px;
}

.btn-survey {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: var(--yellow);
	color: var(--dark--blue);
	padding: 8px 8px 8px 16px;
	border-radius: 50px;
	font-size: 16px;
	font-weight: 700;
	transition: opacity 0.15s, transform 0.15s;
	cursor: pointer;
}

.btn-survey:hover {
	opacity: 0.9;
	transform: translateY(-1px);
}

.btn-survey-icon {
	width: 28px;
	height: 28px;
	background: var(--dark--blue);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.btn-survey-icon svg {
	width: 14px;
	height: 14px;
	color: var(--white);
}

/* ========== FOOTER ========== */
.footer {
	background: var(--white);
	border-top: 1px solid var(--gray-100);
	padding: 64px 0 32px;
}

.footer-inner {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 24px;
}

.footer-top {
	display: grid;
	grid-template-columns: 280px 1fr 1fr 1fr;
	gap: 48px;
	margin-bottom: 48px;
}

.footer-brand {}

.footer-logo {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 20px;
}

.footer-logo-icon {
	width: 44px;
	height: 44px;
	background: var(--navy);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 800;
	font-size: 9px;
	color: var(--white);
	text-align: center;
	line-height: 1.1;
	padding: 4px;
}

.footer-logo-text {
	font-size: 16px;
	font-weight: 700;
	color: var(--navy-dark);
	line-height: 1.3;
}

.footer-logo-text span {
	display: block;
	font-size: 10px;
	font-weight: 500;
	color: var(--gray-600);
}

.footer-contact {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.footer-contact-item {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	font-size: 16px;
	color: var(--gray-600);
	line-height: 1.5;
}

.footer-contact-item svg {
	width: 16px;
	height: 16px;
	flex-shrink: 0;
	margin-top: 2px;
	color: var(--navy);
}

.footer-col-title {
	font-size: 24px;
	font-weight: 700;
	color: var(--text);
	margin-bottom: 16px;
	padding-bottom: 8px;
	border-bottom: 2px solid var(--navy);
	display: inline-block;
}

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

.footer-links a {
	font-size: 16px;
	color: var(--gray-600);
	transition: color 0.15s;
}

.footer-links a:hover {
	color: var(--navy);
}

.newsletter-desc {
	font-size: 16px;
	color: var(--gray-600);
	margin-bottom: 16px;
	line-height: 1.5;
}

.newsletter-input-wrap {
	display: flex;
	gap: 8px;
	margin-bottom: 16px;
}

.newsletter-input-wrap input {
	flex: 1;
	padding: 9px 14px;
	border: 1.5px solid var(--gray-200);
	border-radius: var(--scale-sm);
	font-size: 16px;
	font-family: inherit;
	outline: none;
	transition: border-color 0.15s;
}

.newsletter-input-wrap input:focus {
	border-color: var(--navy);
}

.newsletter-input-wrap button {
	background: var(--navy);
	color: var(--white);
	padding: 9px 16px;
	border-radius: var(--scale-sm);
	font-size: 16px;
	font-weight: 600;
	transition: background 0.15s;
}

.newsletter-input-wrap button:hover {
	background: var(--navy-light);
}

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

.social-link {
	width: 34px;
	height: 34px;
	border: 1.5px solid var(--gray-200);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--gray-600);
	transition: all 0.15s;
}

.social-link:hover {
	border-color: var(--navy);
	color: var(--navy);
}

.social-link svg {
	width: 16px;
	height: 16px;
}

.footer-bottom {
	border-top: 1px solid var(--gray-100);
	padding-top: 24px;
	text-align: center;
	font-size: 16px;
	color: var(--text);
}

.footer-item-right {
	margin-left: auto;
}

@media screen and (max-width: 1199.98px) {
	.footer-top {
		grid-template-columns: 1.2fr 1fr 1fr;
		gap: 32px;
	}
}

@media screen and (max-width: 991.98px) {
	.footer {
		padding: 48px 0 24px;
	}

	.footer-top {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 28px 24px;
		margin-bottom: 32px;
	}

	.footer-brand {
		grid-column: 1 / -1;
	}

	.footer-col-title {
		font-size: 20px;
		margin-bottom: 12px;
	}
}

@media screen and (max-width: 575.98px) {
	.footer-inner {
		padding: 0 16px;
	}

	.footer-top {
		grid-template-columns: 1fr;
		gap: 22px;
	}

	.footer-brand {
		grid-column: auto;
	}

	.footer-logo {
		margin-bottom: 14px;
	}

	.footer-contact {
		gap: 8px;
	}

	.footer-contact-item {
		font-size: 14px;
		line-height: 1.45;
	}

	.footer-links a {
		font-size: 15px;
	}

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

	.footer-bottom {
		font-size: 14px;
		padding-top: 18px;
	}
}


.page-header {
	padding: var(--scale-xxl) 0;
	background-color: var(--dark--blue);
	color: white;
	min-height: 250px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	overflow: hidden;
}

.page-header__title {
	font-size: 40px;
	font-weight: 800;
	line-height: 1.2;
}

.page-header .breadcrumb {
	margin-bottom: 16px;
}

.page-header.breadcrumb {
	background-color: transparent;
	padding: 0;
	margin-bottom: var(--scale-xs);
	list-style: none;
	display: flex;
	flex-wrap: wrap;
}

.page-header .breadcrumb-item {
	font-size: 14px;
	color: var(--gray);
	padding-left: 0 !important;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
	display: none;
}

.page-header .breadcrumb-item a {
	color: var(--gray);
	text-decoration: none;
}

.page-header .breadcrumb-item a:hover {
	text-decoration: underline;
}

.page-header .breadcrumb-item.active {
	color: var(--primary);
	font-weight: 600;
}

.page-header .breadcrumb-separator {
	margin: 0 0.5rem;
	color: var(--gray-400);
}

.post-text *:not(:where(pre, code, i)) {
	font-family: "Urbanist", Arial, sans-serif !important;
}

/* collab */
/* Section */
.collab-section {
	position: relative;
	padding: 60px 20px;
	background-color: var(--white--surface);
	overflow: hidden;
}

/* Title */
.collab-section .title {
	color: var(--dark--blue);
	font-size: 28px;
	margin-bottom: 30px;
}

/* Wrapper */
.logo-wrapper {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 2rem;
	position: relative;
	z-index: 2;
}

/* Item */
.logo-item {
	animation: fadeUp 0.6s ease forwards;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;
}

/* Title */
.logo-title {
	font-size: 1rem;
	color: #1a1a1a;
	text-align: center;
	max-width: 140px;
	margin: 0;
	line-height: 1.4;
	font-weight: 600;
}

/* Box */
.logo-box {
	width: 130px;
	height: 130px;
	border-radius: 20px;
	background: rgba(255, 255, 255, 0.5);
	backdrop-filter: blur(10px);

	display: flex;
	align-items: center;
	justify-content: center;
}

/* Image */
.logo-box img {
	width: 100px;
	height: 100px;
	object-fit: contain;
}

/* Responsive */
@media (min-width: 992px) {
	.logo-box {
		width: 150px;
		height: 150px;
	}

	.logo-box img {
		width: 115px;
		height: 115px;
	}
}

@media (max-width: 578px) {
	.quick-card {
		width: auto;
	}
}

/* Pattern */
.pattern {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 320px;
	opacity: 0.1;
	z-index: 1;
}

.pattern.left {
	left: -120px;
}

.pattern.right {
	right: -120px;
	transform: translateY(-50%) rotate(180deg);
}

.pattern img {
	width: 100%;
}

/* Desktop opacity */
@media (min-width: 992px) {
	.pattern {
		opacity: 0.5;
	}
}

/* Animation */
@keyframes fadeUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* shared card */
.card {
	background: var(--white);
	border-radius: var(--scale-md);
	padding: 2rem;
	border: none;
}

.text-primary {
	color: var(--dodger--blue) !important;
}

@media screen and (max-width: 991.98px) {

	.hero-right {
		width: 100%;
	}

	.quick-card {
		width: 100% !important;
	}

	.navbar-inner {
		align-items: start;
	}

	.topbar-inner {
		padding: 14px 24px;
	}

	.topbar-logo img {
		height: 52px !important;
	}

	.topbar .navbar-collapse {
		margin-top: 14px;
		padding-top: 14px;
		border-top: 1px solid #e2e8f0;
	}

	.topbar-actions {
		flex-direction: column;
		align-items: stretch;
		padding-bottom: 10px;
	}

	.topbar .btn.btn-primary {
		width: 100%;
	}

	.topbar .nav-dropdown-wrapper {
		width: 100%;
	}

	.topbar .nav-dropdown-wrapper>.nav-item {
		justify-content: space-between;
		width: 100%;
		/* padding: 12px 14px; */
		/* border: 1px solid #CAD5E2; */
		/* border-radius: 8px; */
	}

	.topbar .nav-dropdown-wrapper>.dropdown {
		position: static;
		margin-top: 8px;
		width: 100%;
		min-width: 100%;
		border: 1px solid #e2e8f0;
		box-shadow: none;
	}

	.stats-inner {
		display: flex;
		align-items: center;
		justify-content: center;
		flex-wrap: wrap;

		.stat-item {
			width: 130px;

			.stat-value {
				font-size: 32px;
			}

			.stat-label {
				font-size: .75rem;
			}
		}
	}

	.footer {
		.footer-logo {
			justify-content: center;

			img {
				width: 160px !important;
			}
		}

		.footer-contact {
			text-align: center;
			align-items: center;

			svg {
				display: none;
			}
		}

		.footer-top {
			justify-content: center;
		}

		.footer-item {
			text-align: center;
		}

		.social-links {
			justify-content: center;
		}
	}
}

.btn-sm {
	padding: var(--scale-xs) var(--scale-sm);
	font-size: 14px;
	border-radius: var(--scale-sm);
}

/* --- Primary (var(--dark--blue) Royal Blue) --- */
.btn-primary {
	background-color: var(--dark--blue);
	border-color: var(--dark--blue);
	color: #fff;
}

.btn-primary.disabled,
.btn-primary:disabled {
	background-color: var(--dark--blue);
	border-color: var(--dark--blue);
}

.btn-outline-primary {
	color: var(--dark--blue);
	border-color: var(--dark--blue);
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
	background-color: var(--dark--blue);
	border-color: var(--dark--blue);
	color: #fff;
}

.bg-primary {
	background-color: var(--dark--blue) !important;
}

.text-primary {
	color: var(--dark--blue) !important;
}

.border-primary {
	border-color: var(--dark--blue) !important;
}

.badge-primary {
	background-color: var(--dark--blue);
	color: #fff;
}

.badge-primary[href]:hover,
.badge-primary[href]:focus {
	background-color: #1e90ff;
}

/* Pagination */
.page-link {
	color: var(--dark--blue);
}

.page-link:hover {
	color: #1e90ff;
}

.page-item.active .page-link {
	background-color: var(--dark--blue);
	border-color: var(--dark--blue);
}

/* Nav pills */
.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
	background-color: var(--dark--blue);
}

/* List group */
.list-group-item.active {
	background-color: var(--dark--blue);
	border-color: var(--dark--blue);
}

/* Dropdown active */
.dropdown-item.active,
.dropdown-item:active {
	background-color: var(--dark--blue);
}

/* Progress */
.progress-bar {
	background-color: var(--dark--blue);
}

/* Checkbox/radio */
.custom-control-input:checked~.custom-control-label::before,
.custom-checkbox .custom-control-input:checked~.custom-control-label::before,
.custom-checkbox .custom-control-input:indeterminate~.custom-control-label::before,
.custom-radio .custom-control-input:checked~.custom-control-label::before {
	background-color: var(--dark--blue);
}

/* Alert */
.alert-primary {
	color: #1e3d80;
	background-color: #dde6fa;
	border-color: #c8d8f8;
}

/* --- Info (#1e90ff Dodger Blue) --- */
.btn-info {
	background-color: var(--pastel--light--blue);
	border-color: var(--pastel--light--blue);
	color: var(--dark--blue);
}

.btn-info:hover,
.btn-info:focus {
	background-color: var(--pastel--light--blue);
	border-color: var(--pastel--light--blue);
	color: var(--dark--blue);
	box-shadow: 0 0 0 0.2rem var(--light--sky--blue);
}

.btn-info:active,
.btn-info.active {
	background-color: var(--light--sky--blue) !important;
	color: var(--dark--blue) !important;
}

.btn-info.disabled,
.btn-info:disabled {
	background-color: var(--pastel--light--blue);
	border-color: var(--pastel--light--blue);
}

.btn-outline-info {
	color: var(--pastel--light--blue);
	border-color: var(--pastel--light--blue);
}

.btn-outline-info:hover,
.btn-outline-info:focus {
	background-color: var(--pastel--light--blue);
	border-color: var(--pastel--light--blue);
	color: var(--dark--blue);
}

.bg-info {
	background-color: var(--pastel--light--blue) !important;
}

.text-info {
	color: var(--pastel--light--blue) !important;
}

.badge-info {
	background-color: var(--pastel--light--blue);
	color: var(--dark--blue);
}

.alert-info {
	color: #0a4d99;
	background-color: #d0e9ff;
	border-color: #b8dcff;
}

/* --- Success (#6fbf50 Medium Green) --- */
.btn-success {
	background-color: var(--medium--green);
	border-color: var(--medium--green);
	color: #fff;
}

.btn-success:hover,
.btn-success:focus {
	background-color: var(--bright--green);
	border-color: var(--bright--green);
	color: #fff;
	box-shadow: 0 0 0 0.2rem var(--bright--green);
}

.btn-success:active,
.btn-success.active {
	background-color: var(--bright--green) !important;
	color: #fff;
}

.btn-success.disabled,
.btn-success:disabled {
	background-color: var(--medium--green);
	border-color: var(--medium--green);
}

.btn-outline-success {
	color: var(--medium--green);
	border-color: var(--medium--green);
}

.btn-outline-success:hover,
.btn-outline-success:focus {
	background-color: var(--medium--green);
	border-color: var(--medium--green);
	color: #fff;
}

.bg-success {
	background-color: var(--medium--green) !important;
}

.text-success {
	color: var(--medium--green) !important;
}

.badge-success {
	background-color: var(--medium--green);
	color: #fff;
}

.alert-success {
	color: #2e6620;
	background-color: #dbf0d3;
	border-color: #cce9c0;
}

/* --- Warning (#d1b06c Gold) --- */
.btn-warning {
	background-color: #d1b06c;
	border-color: #d1b06c;
	color: #fff;
}

.btn-warning:hover,
.btn-warning:focus {
	background-color: #c09a50;
	border-color: #c09a50;
	color: #fff;
	box-shadow: 0 0 0 0.2rem rgba(209, 176, 108, 0.4);
}

.btn-warning:active,
.btn-warning.active {
	background-color: #c09a50;
	color: #fff;
}

.btn-warning.disabled,
.btn-warning:disabled {
	background-color: #d1b06c;
	border-color: #d1b06c;
}

.btn-outline-warning {
	color: #d1b06c;
	border-color: #d1b06c;
}

.btn-outline-warning:hover,
.btn-outline-warning:focus {
	background-color: #d1b06c;
	border-color: #d1b06c;
	color: #fff;
}

.bg-warning {
	background-color: #d1b06c !important;
}

.text-warning {
	color: #d1b06c !important;
}

.badge-warning {
	background-color: #d1b06c;
	color: #fff;
}

.alert-warning {
	color: #7a6130;
	background-color: #f8edda;
	border-color: #f3e1c1;
}

/* ========== PETA PERSEBARAN PEMOHON ========== */
.peta-persebaran {
	background: var(--white--surface);
}

.peta-persebaran .section-subtitle {
	color: var(--gray-600);
	font-size: 15px;
	margin-top: 4px;
}

.peta-wrapper {
	display: flex;
	gap: 24px;
	align-items: flex-start;
}

.peta-map-container {
	flex: 1;
	min-width: 0;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: var(--shadow-md);
	background: #dbeafe;
	width: 100%;
}

#peta-indonesia {
	border-radius: 16px;
}

.peta-sidebar {
	width: 260px;
	flex-shrink: 0;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.peta-total-box {
	background: var(--dark--blue);
	color: #fff;
	border-radius: 12px;
	padding: 16px 20px;
	text-align: center;
}

.peta-total-label {
	font-size: 13px;
	opacity: 0.8;
	margin-bottom: 4px;
}

.peta-total-value {
	font-size: 32px;
	font-weight: 800;
	letter-spacing: -0.5px;
}

.peta-ranking-title {
	font-size: 14px;
	font-weight: 700;
	color: var(--dark--blue);
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.peta-ranking-list {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.peta-rank-item {
	display: flex;
	align-items: center;
	gap: 10px;
}

.peta-rank-num {
	width: 22px;
	height: 22px;
	background: var(--dark--blue);
	color: #fff;
	border-radius: 50%;
	font-size: 11px;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.peta-rank-detail {
	flex: 1;
	min-width: 0;
}

.peta-rank-name {
	font-size: 12px;
	font-weight: 600;
	color: var(--gray-800);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	text-transform: capitalize;
	margin-bottom: 3px;
}

.peta-rank-name::first-letter {
	text-transform: uppercase;
}

.peta-rank-bar-wrap {
	background: var(--gray-200);
	border-radius: 4px;
	height: 5px;
	overflow: hidden;
}

.peta-rank-bar {
	height: 100%;
	background: var(--dark--blue);
	border-radius: 4px;
	transition: width 0.6s ease;
}

.peta-rank-count {
	font-size: 12px;
	font-weight: 700;
	color: var(--dark--blue);
	flex-shrink: 0;
}

.peta-legend {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-top: 4px;
}

.peta-legend-label {
	font-size: 11px;
	color: var(--gray-600);
	flex-shrink: 0;
}

.peta-legend-gradient {
	flex: 1;
	height: 8px;
	border-radius: 4px;
	background: linear-gradient(to right, #93c5fd, #1e3a8a);
}

/* Leaflet tooltip override */
.peta-tooltip {
	background: rgba(7, 30, 73, 0.92);
	color: #fff;
	border: none;
	border-radius: 8px;
	font-size: 13px;
	padding: 8px 12px;
	box-shadow: var(--shadow-md);
}

.peta-tooltip::before {
	display: none;
}

.main {
	position: relative;
}

@media (max-width: 900px) {
	.peta-wrapper {
		flex-direction: column;
	}

	.peta-sidebar {
		width: 100%;
	}

	#peta-indonesia {
		height: 300px !important;
	}
}

.form-control {
	border: 1.5px solid var(--gray-200);
	border-radius: var(--scale-sm);
	padding: 12px 14px;
	font-size: 16px;
	font-family: inherit;
	outline: none;
	transition: border-color 0.15s;
}


.auth {
	display: flex;
	height: 100vh;
	width: 100vw;
}

.auth--side {
	width: 45%;
	display: flex;
	justify-content: center;
	flex-direction: column;
	padding: 2rem;
	background-color: #f8f9fa;
}

.auth--splash {
	flex-grow: 1;
	position: relative;
}

.auth--splash-img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	position: absolute;
	inset: 0;
}

.auth--splash-logo {

	position: absolute;
	top: 2rem;
	right: 2rem;
	z-index: 999;
}

@media screen and (max-width: 720px) {
	.auth--splash-logo {
		display: none;
	}

	.auth--side {
		width: 100%;
	}
}

/* Form Label */
.form-label {
	font-size: 0.9rem;
	font-weight: 500;
	color: #495057;
	margin-bottom: 8px;
}

/* Bootstrap Form Control Override */
.form-control,
.form-select {
	border: 1px solid #e9ecef;
	border-radius: 14px;
	background: #fff;

	padding: 14px 16px;
	font-size: 0.95rem;
	color: #212529;

	box-shadow: none !important;
	transition: all 0.2s ease;
}

/* Placeholder */
.form-control::placeholder {
	color: #adb5bd;
}

/* Focus State */
.form-control:focus,
.form-select:focus {
	border-color: #212529;
	box-shadow: 0 0 0 4px rgba(33, 37, 41, 0.06) !important;
	background: #fff;
}

/* Textarea */
textarea.form-control {
	resize: vertical;
	min-height: 120px;
}

/* Disabled */
.form-control:disabled,
.form-select:disabled {
	background: #f8f9fa;
	opacity: 0.8;
}

/* Validation states */
.form-control.is-invalid,
.was-validated .form-control:invalid {
	border-color: #dc3545;
}

.form-control.is-valid,
.was-validated .form-control:valid {
	border-color: #198754;
}

/* Optional: smoother spacing */
.mb-3 {
	margin-bottom: 1.25rem !important;
}


/* Select2Custom */
.select2-container--default {
	display: block !important;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
	margin-top: 8px !important;
}

.select2-container .select2-search--inline .select2-search__field {
	margin-top: 8px !important;
	display: block;
}

.select2-container .select2-selection--multiple {
	min-height: 40px !important;
	padding: 0rem .75rem !important;
}

.select2-container .select2-selection--single {
	height: 40px !important;
	padding: .47rem .75rem;
}

.select2-container .select2-selection--multiple,
.select2-container .select2-selection--single {
	display: block !important;
	width: 100%;
	font-size: .8125rem;
	font-weight: 400;
	line-height: 1.5;
	color: #495057;
	background-clip: padding-box;
	border: 1px solid #e5e5e5 !important;
	border-radius: 14px !important;
	-webkit-transition: border-color .15s ease-in-out, -webkit-box-shadow .15s ease-in-out;
	transition: border-color .15s ease-in-out, -webkit-box-shadow .15s ease-in-out;
	transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
	transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out, -webkit-box-shadow .15s ease-in-out;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
	top: 50% !important;
	transform: translateY(-50%);
}

.select2-container .select2-selection--single .select2-selection__rendered {
	padding-left: 0px !important;
	font-size: 0.95rem;
	line-height: 22px !important;
}

.select2-hidden-accessible::after {
	content: attr(data-placeholder);
	position: fixed;
}

.select2-hidden-accessible[readonly]~.select2-container--default .select2-selection--multiple {
	background-color: #f3f4f6 !important;
	pointer-events: none;
}

.select2-dropdown {
	border: 1px solid #e5e5e5 !important;
	overflow: hidden;
	border-radius: 8px !important;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
	border-color: #e5e5e5 !important;
	border-radius: 4px;
}

.select2-container--default.select2-container--disabled .select2-selection--single {
	background-color: #f3f4f6 !important;
}

.select2-container--default.select2-container--disabled .select2-selection--multiple {
	background-color: #f3f4f6 !important;
}

@media screen and (max-width: 425px) {

	.video-grid {
		display: grid;
		grid-template-columns: repeat(auto-fill, 100%);
		gap: 24px;
	}
}
