:root {
	--bs-primary: #10b981;
	--bs-white: #ffffff;
	--bs-dark: #065f46;
	--bs-light: #d1fae5;
	--bs-body: #6b7280;
	--bs-effect: rgb(68 246 160 / 40%);
	--primary: #355efc;
	--secondary: #e93c05;
	--tertiary: #555555;
	--light: #dfe4fd;
	--dark: #011a41;
	--gold: #c8951e;
}

/* ===== FONT STACK MIRIP MEDIUM ===== */
/* Body/Artikel: charter → Georgia → Cambria → Times → serif */
body {
	font-family: "Georgia", Cambria, "Times New Roman", Times, serif;
	font-size: 16px;
	line-height: 1.58;
	color: #292929;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/* UI/Headings: soehne → system font stack */
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
.navbar-brand h1,
.nav-link,
.btn,
.btn.btn-primary,
.btn.btn-light,
.btn.btn-dark,
.quote-btn,
.section-badge,
.section-title,
.share-buttons-wrapper .btn,
.cta-content h2,
.bg-breadcrumb .display-4,
.bg-breadcrumb .breadcrumb-item,
.footer .footer-item a,
.footer .footer-item p,
.service .service-content .service-content-inner,
.service .service-content .service-content-inner a.h4,
.project .project-content .project-content-inner a.h4,
.user-meta,
.btn-nav,
.slide-counter {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
		Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

/* Artikel/Blog content khusus */
.article-content-body {
	font-family: "Georgia", Cambria, "Times New Roman", Times, serif;
	font-size: 21px;
	line-height: 1.58;
	color: #292929;
}

.article-content-body p:first-of-type {
	font-size: 24px;
	line-height: 1.8;
}

/* Testimoni text */
.testimoni-text {
	font-family: "Georgia", Cambria, "Times New Roman", Times, serif;
	font-style: italic;
}

/* CTA paragraph */
.cta-content p {
	font-family: "Georgia", Cambria, "Times New Roman", Times, serif;
}

/* Subtitle */
.section-subtitle {
	font-family: "Georgia", Cambria, "Times New Roman", Times, serif;
}

.bg-primary,
.bg-join {
	background: linear-gradient(135deg, var(--bs-primary), #0a4730);
	color: var(--bs-white);
}

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

#spinner {
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
	z-index: 99999;
}

#spinner.show {
	opacity: 1;
	visibility: visible;
	transition: opacity 0.5s ease-out, visibility 0s linear 0s;
}

.back-to-top {
	position: fixed;
	right: 30px;
	bottom: 30px;
	width: 45px;
	height: 45px;
	z-index: 99;
	font-size: 1.4rem;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: 0.5s;
}

.whatsapp-redirect {
	position: fixed;
	right: 100px;
	bottom: 30px;
	width: 45px;
	height: 45px;
	z-index: 99;
	font-size: 1.8rem;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: 0.5s;
}

.btn {
	font-weight: 600;
	transition: 0.5s;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square,
.btn-xl-square {
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: normal;
	border-radius: 50%;
}

.btn-square {
	width: 32px;
	height: 32px;
}
.btn-sm-square {
	width: 34px;
	height: 34px;
}
.btn-md-square {
	width: 44px;
	height: 44px;
}
.btn-lg-square {
	width: 56px;
	height: 56px;
}
.btn-xl-square {
	width: 66px;
	height: 66px;
}

.btn.btn-primary,
.btn.btn-light {
	background: var(--bs-primary) !important;
	color: var(--bs-white) !important;
	font-family: "Roboto", sans-serif;
	border: none;
	font-weight: 400;
	transition: 0.5s;
}

.btn.btn-dark {
	background: var(--bs-dark) !important;
	color: var(--bs-white) !important;
	font-family: "Roboto", sans-serif;
	border: none;
	font-weight: 400;
	transition: 0.5s;
}

.btn.btn-primary:hover {
	background: var(--bs-dark) !important;
	color: var(--bs-light) !important;
}

.btn.btn-dark:hover {
	background: var(--bs-white) !important;
	color: var(--bs-dark) !important;
}

.btn.btn-light:hover {
	background: var(--bs-white) !important;
	color: var(--bs-dark) !important;
}

.topbar {
	padding: 2px 10px 2px 20px;
	background: var(--bs-dark) !important;
}

@media (max-width: 768px) {
	.topbar {
		display: none;
	}
}

.fixed-top {
	background: transparent !important;
	backdrop-filter: none !important;
	-webkit-backdrop-filter: none !important;
	border-bottom: 1px solid transparent !important;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	z-index: 1030;
}

.fixed-top.scrolled {
	background: linear-gradient(
		135deg,
		rgba(255, 255, 255, 0.95) 0%,
		rgba(255, 255, 255, 0.98) 100%
	) !important;
	backdrop-filter: blur(15px) !important;
	-webkit-backdrop-filter: blur(15px) !important;
	border-bottom: 1px solid rgba(16, 185, 129, 0.1) !important;
	box-shadow: 0 10px 40px rgba(6, 95, 70, 0.1);
}

.fixed-top.scrolled + .top-bar-modern {
	transform: translateY(-100%);
	opacity: 0;
	visibility: hidden;
	height: 0;
	padding: 0;
	margin: 0;
	overflow: hidden;
}

.top-bar-modern {
	background: linear-gradient(135deg, var(--bs-dark) 0%, #0a4730 100%);
	padding: 8px 0;
	position: relative;
	overflow: hidden;
	transition: all 0.3s ease;
	transform: translateY(0);
	z-index: 1029;
}

.top-bar-modern::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(255, 255, 255, 0.1),
		transparent
	);
	animation: shimmer 3s infinite;
}

@keyframes shimmer {
	0% {
		transform: translateX(-100%);
	}
	100% {
		transform: translateX(100%);
	}
}

.top-bar-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	color: white;
}

.top-bar-left,
.top-bar-right {
	display: flex;
	align-items: center;
	gap: 30px;
}

.top-bar-item {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 0.9rem;
	transition: all 0.3s ease;
}

.top-bar-item i {
	color: var(--bs-primary);
	font-size: 1rem;
	transition: transform 0.3s ease;
}

.top-bar-item:hover i {
	transform: scale(1.2);
}
[data-slider] {
	display: flex;
	align-items: center;
	gap: 8px;
	height: 1.2em;
	position: relative;
}

[data-slider] .slider-content {
	flex: 1;
	position: relative;
	height: 100%;
	display: flex;
	align-items: center;
	line-height: 1.4;
}

[data-slider] .slider-item {
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	transform: translateY(100%);
	transition: transform 0.5s, opacity 0.5s;
	display: flex;
	align-items: center;
	height: 100%;
	white-space: nowrap;
	width: 100%;
}

[data-slider] .slider-item.active {
	opacity: 1;
	transform: translateY(0);
}

[data-slider] .slider-item.exit {
	opacity: 0;
	transform: translateY(-100%);
}

.quote-btn {
	background: var(--bs-primary);
	color: white;
	padding: 6px 20px;
	border-radius: 25px;
	font-weight: 600;
	font-size: 0.9rem;
	border: 2px solid var(--bs-primary);
	transition: all 0.3s ease;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.quote-btn:hover {
	background: transparent;
	color: var(--bs-primary);
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(16, 185, 129, 0.3);
}

.navbar {
	min-height: 86px;
}

.navbar-brand {
	transition: all 0.3s ease;
	position: relative;
}

.navbar-brand h1 {
	font-weight: 800;
	font-size: 2.2rem;
	letter-spacing: -0.5px;
	background: linear-gradient(45deg, var(--bs-dark), var(--bs-primary));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	position: relative;
	display: inline-block;
}

.navbar-brand h1::after {
	content: "";
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 100%;
	height: 3px;
	background: linear-gradient(90deg, var(--bs-primary), transparent);
	border-radius: 2px;
}

.navbar-nav {
	gap: 5px;
	margin-left: auto;
	margin-right: auto;
}

.nav-item {
	position: relative;
	margin: 0 2px !important;
}

.nav-link {
	padding: 25px 20px !important;
	font-weight: 600;
	font-size: 1.05rem;
	color: var(--bs-dark) !important;
	position: relative;
	transition: all 0.3s ease;
	letter-spacing: 0.3px;
}

.nav-link:hover,
.nav-link.active {
	color: var(--bs-primary) !important;
	transform: translateY(-2px);
}

.dropdown-toggle::after {
	border: none;
	content: "\f107";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	vertical-align: middle;
	margin-left: 8px;
	transition: transform 0.3s ease;
}

.dropdown-menu:not(.mega-menu) {
	border: none;
	border-radius: 12px;
	padding: 15px 0;
	box-shadow: 0 15px 50px rgba(6, 95, 70, 0.15);
	border-top: 3px solid var(--bs-primary);
	animation: dropdownSlide 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	min-width: 220px;
}

@keyframes dropdownSlide {
	from {
		opacity: 0;
		transform: translateY(-15px) scale(0.95);
	}
	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

.dropdown-item {
	padding: 12px 25px;
	font-weight: 500;
	color: var(--bs-dark);
	transition: all 0.3s ease;
	position: relative;
	display: flex;
	align-items: center;
	gap: 10px;
}

.dropdown-item i {
	color: var(--bs-primary);
	font-size: 0.9rem;
	width: 20px;
	transition: transform 0.3s ease;
}

.dropdown-item:hover {
	background: linear-gradient(90deg, rgba(16, 185, 129, 0.1), transparent);
	color: var(--bs-primary);
	padding-left: 30px;
}

.dropdown-item:hover i {
	transform: translateX(5px);
}

@media (min-width: 992px) {
	.nav-item.mega-menu-parent {
		position: static !important;
	}

	.mega-menu.dropdown-menu {
		position: fixed !important;
		left: 50% !important;
		transform: translateX(-50%) !important;
		margin-top: 60px !important;
		width: 90vw !important;
		max-width: 1200px !important;
		min-width: 800px !important;
		animation: none !important;
		transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
		padding: 30px !important;
		background: white !important;
		box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15) !important;
		border: 1px solid rgba(16, 185, 129, 0.2) !important;
		border-top: 3px solid var(--bs-primary) !important;
		border-radius: 15px !important;
		opacity: 0 !important;
		visibility: hidden !important;
		pointer-events: none !important;
		display: block !important;
	}

	.nav-item.mega-menu-parent:hover .mega-menu,
	.nav-item.mega-menu-parent.show .mega-menu {
		opacity: 1 !important;
		visibility: visible !important;
		pointer-events: auto !important;
		transform: translateX(-50%) translateY(0) !important;
	}

	.mega-menu .container {
		padding: 0 !important;
		max-width: 100% !important;
	}

	.mega-grid {
		display: grid !important;
		grid-template-columns: repeat(4, 1fr) !important;
		gap: 30px !important;
		padding: 10px 0 !important;
	}

	.navbar-main {
		padding: 10px 0 !important;
		transition: padding 0.3s ease;
	}
	.fixed-top.scrolled .navbar-main {
		padding: 0 !important;
	}

	.nav-link {
		padding: 25px 20px !important;
		color: white !important;
		transition: all 0.3s ease;
	}

	.fixed-top.scrolled .nav-link {
		color: var(--bs-dark) !important;
	}
	.fixed-top.scrolled .nav-link:hover,
	.fixed-top.scrolled .nav-link.active {
		color: var(--bs-primary) !important;
	}

	.fixed-top:not(.scrolled) .search-btn,
	.fixed-top:not(.scrolled) .social-btn {
		background: rgba(255, 255, 255, 0.2);
		border-color: rgba(255, 255, 255, 0.3);
		color: white !important;
	}

	.fixed-top:not(.scrolled) .search-btn:hover,
	.fixed-top:not(.scrolled) .social-btn:hover {
		background: rgba(255, 255, 255, 0.3);
		border-color: white;
	}

	.fixed-top:not(.scrolled) .dropdown-menu {
		background: rgba(255, 255, 255, 0.95);
		backdrop-filter: blur(10px);
		-webkit-backdrop-filter: blur(10px);
	}
}

@media (min-width: 1200px) {
	.mega-menu.dropdown-menu {
		width: 85vw !important;
		max-width: 1400px !important;
	}
}

@media (min-width: 1400px) {
	.mega-menu.dropdown-menu {
		width: 80vw !important;
		max-width: 1600px !important;
	}
}

.mega-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 40px;
	padding: 20px 0;
}

.mega-column {
	padding-right: 20px;
}

.mega-column:not(:last-child) {
	border-right: 1px solid rgba(16, 185, 129, 0.1);
}

.mega-title {
	color: var(--bs-dark);
	font-weight: 700;
	font-size: 1.1rem;
	margin-bottom: 20px;
	padding-bottom: 10px;
	position: relative;
	display: flex;
	align-items: center;
	gap: 10px;
}

.mega-title::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 40px;
	height: 2px;
	background: var(--bs-primary);
}

.mega-title i {
	color: var(--bs-primary);
	font-size: 1.2rem;
}

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

.mega-list li {
	margin-bottom: 12px;
}

.mega-list a {
	color: var(--bs-body-color);
	text-decoration: none;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 8px 0;
	border-radius: 6px;
	padding-left: 10px;
}

.mega-list a:hover {
	color: var(--bs-primary);
	background: rgba(16, 185, 129, 0.05);
	padding-left: 15px;
	transform: translateX(5px);
}

.mega-list a i {
	color: var(--bs-primary);
	font-size: 0.9rem;
	transition: transform 0.3s ease;
}

.mega-list a:hover i {
	transform: scale(1.2);
}

.search-container {
	margin-left: 20px;
	position: relative;
}

.search-btn {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: white;
	border: 2px solid rgba(16, 185, 129, 0.1);
	color: var(--bs-primary);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
	cursor: pointer;
}

.search-btn::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, var(--bs-primary), #0a4730);
	transform: scale(0);
	transition: transform 0.3s ease;
	border-radius: 50%;
	z-index: 0;
}

.search-btn i {
	position: relative;
	z-index: 1;
	transition: all 0.3s ease;
	font-size: 1rem;
}

.search-btn:hover {
	border-color: var(--bs-primary);
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(16, 185, 129, 0.15);
}

.search-btn:hover::before {
	transform: scale(1);
}
.search-btn:hover i {
	color: white !important;
	transform: scale(1.05);
}

.search-input {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	padding: 0 20px 0 45px;
	border: 2px solid rgba(16, 185, 129, 0.1);
	border-radius: 30px;
	background: white;
	font-size: 0.95rem;
	color: #333;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
	z-index: 2;
	outline: none;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.search-btn:focus-within {
	width: 280px;
	border-radius: 30px;
	border-color: var(--bs-primary);
}

.search-btn:focus-within .search-input {
	opacity: 1;
	visibility: visible;
}

.search-btn:focus-within i {
	left: 15px;
	position: absolute;
	transform: translateY(-50%);
	top: 50%;
	z-index: 3;
	color: var(--bs-primary);
}

.search-btn:focus-within i {
	color: var(--bs-primary) !important;
}
.search-input:focus {
	border-color: var(--bs-primary);
	box-shadow: 0 2px 12px rgba(16, 185, 129, 0.1);
}

.search-input::placeholder {
	color: rgba(0, 0, 0, 0.4);
	font-weight: 400;
}

.img-navbar {
	max-height: 60px;
}

.social-container {
	display: flex;
	gap: 10px;
	margin-left: 20px;
}

.social-btn {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: white;
	border: 2px solid rgba(16, 185, 129, 0.1);
	color: var(--bs-primary);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.social-btn::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, var(--bs-primary), #0a4730);
	transform: scale(0);
	transition: transform 0.3s ease;
	border-radius: 50%;
}

.social-btn i {
	position: relative;
	z-index: 1;
	transition: all 0.3s ease;
}

.social-btn:hover {
	border-color: var(--bs-primary);
	transform: translateY(-3px);
	box-shadow: 0 8px 20px rgba(16, 185, 129, 0.2);
}

.social-btn:hover::before {
	transform: scale(1);
}
.social-btn:hover i {
	color: white !important;
	transform: scale(1.1);
}

@media (max-width: 991.98px) {
	.navbar-collapse {
		position: fixed;
		top: 0;
		left: -100%;
		width: 85%;
		height: 100vh;
		background: white;
		padding: 20px 20px 20px 20px;
		overflow-y: auto;
		transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
		box-shadow: 10px 0 40px rgba(0, 0, 0, 0.1);
		z-index: 1050;
		display: block !important;
	}

	.navbar-collapse.show {
		left: 0;
	}

	.navbar-collapse.show::before {
		content: "";
		position: fixed;
		top: 0;
		right: 0;
		width: 15%;
		height: 100%;
		background: rgba(0, 0, 0, 0.5);
		z-index: -1;
	}

	.close-menu {
		position: absolute;
		top: 20px;
		right: 20px;
		width: 40px;
		height: 40px;
		background: var(--bs-primary);
		color: white;
		border: none;
		border-radius: 50%;
		display: flex;
		align-items: center;
		justify-content: center;
		font-size: 1.2rem;
		cursor: pointer;
		z-index: 1060;
		transition: all 0.3s ease;
	}

	.close-menu:hover {
		background: var(--bs-dark);
		transform: rotate(90deg);
	}

	.navbar-nav {
		margin: 0;
		padding: 0;
	}

	.nav-item {
		margin: 0 !important;
		border-bottom: 1px solid rgba(16, 185, 129, 0.1);
	}

	.nav-link {
		padding: 18px 0 !important;
		display: flex;
		justify-content: space-between;
		align-items: center;
		width: 100%;
		text-align: left;
	}

	.nav-link.dropdown-toggle::after {
		transition: transform 0.3s ease;
		float: right;
	}

	.nav-link.dropdown-toggle[aria-expanded="true"]::after {
		transform: rotate(180deg);
	}

	.dropdown-menu {
		position: static !important;
		float: none !important;
		width: 100% !important;
		margin: 0 !important;
		padding: 0 !important;
		border: none !important;
		box-shadow: none !important;
		background: rgba(16, 185, 129, 0.05) !important;
		display: none;
		transition: all 0.4s ease;
	}

	.dropdown-menu.show {
		display: block !important;
		padding: 10px 0 !important;
	}

	.dropdown-item {
		padding: 12px 0 12px 25px !important;
		border-bottom: 1px solid rgba(16, 185, 129, 0.05);
	}

	.mega-menu {
		padding: 15px !important;
		background: rgba(16, 185, 129, 0.03) !important;
	}

	.mega-grid {
		grid-template-columns: 1fr !important;
		gap: 20px !important;
	}

	.mega-column {
		border-right: none !important;
		border-bottom: 1px solid rgba(16, 185, 129, 0.1);
		padding-bottom: 20px;
		margin-bottom: 20px;
	}

	.mega-column:last-child {
		border-bottom: none;
		margin-bottom: 0;
		padding-bottom: 0;
	}

	.mega-title {
		margin-bottom: 15px;
		font-size: 1rem;
		padding-left: 10px;
	}

	.mega-list {
		padding-left: 10px;
	}

	.search-container,
	.social-container {
		width: 100%;
		margin: 20px 0;
	}

	.search-box {
		width: 100%;
	}
	.social-container {
		justify-content: center;
	}

	.mega-menu {
		opacity: 1 !important;
		visibility: visible !important;
		transform: none !important;
	}

	.fixed-top {
		background: linear-gradient(
			135deg,
			rgba(255, 255, 255, 0.95) 0%,
			rgba(255, 255, 255, 0.98) 100%
		) !important;
		backdrop-filter: blur(15px) !important;
		-webkit-backdrop-filter: blur(15px) !important;
	}

	.header-carousel {
		margin-top: 86px;
	}
	.nav-link {
		color: var(--bs-dark) !important;
	}
}

.navbar-toggler {
	border: none;
	background: transparent;
	padding: 10px;
	position: relative;
	z-index: 1060;
}

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

.navbar-toggler-icon {
	display: block;
	width: 24px;
	height: 2px;
	background: var(--bs-primary);
	position: relative;
	transition: all 0.3s ease;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
	content: "";
	position: absolute;
	width: 24px;
	height: 2px;
	background: var(--bs-primary);
	left: 0;
	transition: all 0.3s ease;
}

.navbar-toggler-icon::before {
	top: -8px;
}
.navbar-toggler-icon::after {
	bottom: -8px;
}

.navbar-toggler.active .navbar-toggler-icon {
	background: transparent;
}
.navbar-toggler.active .navbar-toggler-icon::before {
	transform: rotate(45deg);
	top: 0;
}
.navbar-toggler.active .navbar-toggler-icon::after {
	transform: rotate(-45deg);
	bottom: 0;
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.nav-item {
	animation: fadeInUp 0.5s ease forwards;
	opacity: 0;
}
.nav-item:nth-child(1) {
	animation-delay: 0.1s;
}
.nav-item:nth-child(2) {
	animation-delay: 0.2s;
}
.nav-item:nth-child(3) {
	animation-delay: 0.3s;
}
.nav-item:nth-child(4) {
	animation-delay: 0.4s;
}
.nav-item:nth-child(5) {
	animation-delay: 0.5s;
}

.hero-section {
	position: relative;
	z-index: 1;
}

.header-carousel .header-carousel-item {
	height: 100vh;
	min-height: 700px;
	position: relative;
	overflow: hidden;
	z-index: 1;
}

.header-carousel-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.owl-prev,
.owl-next {
	position: absolute;
	width: 60px;
	height: 60px;
	top: 50%;
	transform: translateY(-50%);
	padding: 20px 20px;
	border-radius: 40px;
	background: var(--bs-primary);
	color: var(--bs-white);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: 0.5s;
}

.owl-prev {
	left: 30px;
}
.owl-next {
	right: 30px;
}

.owl-prev:hover,
.owl-next:hover {
	background: var(--bs-dark) !important;
	color: var(--bs-white) !important;
}

.header-carousel .header-carousel-item-img-1::before,
.header-carousel .header-carousel-item-img-2::before,
.header-carousel .header-carousel-item-img-3::before {
	content: "";
	position: absolute;
	width: 600px;
	height: 600px;
	top: -300px;
	right: -300px;
	border-radius: 300px;
	border: 100px solid rgba(16, 185, 129, 0.1);
	animation: RotateMoveCircle 10s linear infinite;
	background: transparent;
	z-index: 3 !important;
}

@keyframes RotateMoveCircle {
	0% {
		top: -400px;
	}
	50% {
		right: -200px;
	}
	75% {
		top: -200px;
	}
	100% {
		top: -400px;
	}
}

.header-carousel .header-carousel-item-img-1::after,
.header-carousel .header-carousel-item-img-2::after,
.header-carousel .header-carousel-item-img-3::after {
	content: "";
	position: absolute;
	width: 150px;
	height: 1200px;
	top: -150px;
	left: 70px;
	transform: rotate(-30deg);
	background: rgba(16, 185, 129, 0.1);
	animation: RotateMoveRight 5s linear infinite;
	z-index: 3 !important;
}

@keyframes RotateMoveRight {
	0% {
		left: 0px;
	}
	50% {
		left: 70px;
	}
	100% {
		left: 0px;
	}
}

.header-carousel .header-carousel-item::before {
	content: "";
	position: absolute;
	width: 300px;
	height: 1200px;
	top: -150px;
	left: -265px;
	transform: rotate(-30deg);
	background: var(--bs-dark);
	animation: RotateMoveLeft 5s linear infinite;
	opacity: 0.7;
	z-index: 2 !important;
}

@keyframes RotateMoveLeft {
	0% {
		left: -240px;
	}
	50% {
		left: -300px;
	}
	100% {
		left: -240px;
	}
}

.header-carousel .header-carousel-item::after {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: linear-gradient(
		to bottom,
		rgba(0, 0, 0, 0.3),
		rgba(0, 0, 0, 0.7)
	);
	z-index: 2;
}

.header-carousel .header-carousel-item .carousel-caption {
	position: absolute;
	width: 80%;
	height: 100%;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	flex-direction: column;
	justify-content: center;
	z-index: 9;
	padding-top: 120px;
}

@media (max-width: 992px) {
	.header-carousel .header-carousel-item .carousel-caption {
		width: 100% !important;
		margin-left: 0 !important;
		padding: 0 10px;
	}
	.header-carousel-item img {
		height: 700px;
		object-fit: cover;
	}

	.owl-prev,
	.owl-next {
		top: 40px !important;
	}

	.owl-prev {
		left: 65%;
	}

	.header-carousel-item {
		height: 90vh;
		min-height: 600px;
	}
}

@media (max-width: 991.98px) {
	.hero-section {
		margin-top: 0;
	}
	.header-carousel-item {
		height: 80vh;
		min-height: 500px;
	}

	.header-carousel .header-carousel-item .carousel-caption {
		width: 100% !important;
		padding: 0 15px;
		padding-top: 100px;
	}
}

@media (max-width: 767.98px) {
	.header-carousel-item {
		height: 70vh;
		min-height: 400px;
	}
}

.bg-breadcrumb {
	position: relative;
	overflow: hidden;

	background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
		url(../images/service-3.jpg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	padding-top: 150px;
	padding-bottom: 20px;
}

.bg-breadcrumb .display-4 {
	color: #ffffff !important;
	font-weight: 800;

	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
	line-height: 1.2;
}

.bg-breadcrumb .breadcrumb {
	--bs-breadcrumb-divider-color: rgba(255, 255, 255, 0.8);
	background-color: transparent !important;
}

.bg-breadcrumb .breadcrumb-item a {
	font-weight: 600;
	color: #f8f9fa !important;
	text-decoration: none;
	transition: color 0.2s;
}

.bg-breadcrumb .breadcrumb-item a:hover {
	color: #ffffff !important;
}

.bg-breadcrumb .breadcrumb-item.active {
	color: #66bb6a !important;
	font-weight: 700;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.blog .container {
	padding-top: 50px !important;
	padding-bottom: 50px !important;
}

.hero-image-container {
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
	margin-bottom: 3rem !important;
}

.hero-image-container img {
	transform: scale(1);
	transition: transform 0.5s ease;
	border-radius: 25px;
}

.hero-image-container:hover img {
	transform: scale(1.03);
}

.article-content-body {
	font-size: 1.1rem;
	line-height: 1.75;
	color: #343a40;
}

.article-content-body h2,
.article-content-body h3 {
	color: #0b5030;
	border-left: 5px solid #008040;
	padding-left: 15px;
	margin-top: 2.5rem;
	margin-bottom: 1.5rem;
	font-weight: 700;
}

.article-content-body ul {
	list-style: none;
	padding-left: 0;
}

.article-content-body ul li {
	position: relative;
	padding-left: 1.5rem;
	margin-bottom: 0.8rem;
}

.article-content-body ul li::before {
	content: "\f058";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	color: #008040;
	position: absolute;
	left: 0;
	top: 0.1rem;
	font-size: 1rem;
}

.about .text {
	position: relative;
}

.about .text::after {
	content: "";
	width: 4px;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: var(--bs-primary);
}

.service .service-item {
	box-shadow: 0 0 45px rgba(0, 0, 0, 0.3);
	display: flex;
	flex-direction: column;
	height: 100%;
}

.service .service-item .service-img {
	position: relative;
	overflow: hidden;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
}

.service .service-item .service-img img {
	transition: 0.5s;
}
.service .service-item:hover .service-img img {
	transform: scale(1.2);
}

.service .service-item .service-img::after {
	content: "";
	width: 0;
	height: 0;
	position: absolute;
	top: 0;
	right: 0;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	background: var(--bs-effect);
	transition: 0.5s;
}

.service .service-item:hover .service-img::after {
	width: 100% !important;
	height: 100% !important;
}

.service .service-item .service-content {
	position: relative;
	flex: 1 1 auto;
}

.service .service-item .service-content::after {
	content: "";
	position: absolute;
	inset: 0; /* bikin overlay full cover */
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
	background: var(--bs-dark);
	opacity: 0;
	transition: 0.5s;
	z-index: 1;
}

.service .service-item:hover .service-content::after {
	opacity: 1;
}

.service .service-item .service-content .service-content-inner {
	transition: 0.5s;
}

.service .service-item:hover .service-content .service-content-inner {
	position: relative;
	color: var(--bs-white) !important;
	transition: 0.5s;
	z-index: 2;
}

.service .service-item:hover .service-content .service-content-inner a.h4 {
	color: var(--bs-white) !important;
	transition: 0.5s;
}

.service
	.service-item:hover
	.service-content
	.service-content-inner
	a.h4:hover {
	color: var(--bs-primary) !important;
}

.project .project-carousel.owl-carousel {
	height: 100%;
}
.project .project-carousel .project-item {
	position: relative;
	overflow: hidden;
}

.project .project-carousel .project-item .project-img {
	position: relative;
	overflow: hidden;
	border-radius: 10px;
}

.project .project-carousel .project-item .project-img::after {
	content: "";
	width: 100%;
	height: 0;
	position: absolute;
	top: 0;
	left: 0;
	border-radius: 10px;
	background: var(--bs-effect);
	transition: 0.5s;
}

.project .project-carousel .project-item:hover .project-img::after {
	height: 100%;
}
.project .project-carousel .project-item .project-img img {
	transition: 0.5s;
}
.project .project-carousel .project-item:hover .project-img img {
	transform: scale(1.2);
}

.project .project-carousel .project-item .project-content {
	position: relative;
	width: 75%;
	height: 100%;
	bottom: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	box-shadow: 0 0 45px rgba(0, 0, 0, 0.08);
}

.project .project-carousel .project-item .project-content::after {
	content: "";
	position: absolute;
	width: 100%;
	height: 0;
	bottom: 0;
	left: 0;
	border-radius: 10px !important;
	background: var(--bs-dark);
	transition: 0.5s;
}

.project .project-carousel .project-item:hover .project-content::after {
	height: 100%;
}

.project
	.project-carousel
	.project-item
	.project-content
	.project-content-inner {
	position: relative;
	z-index: 2;
}

.project
	.project-carousel
	.project-item:hover
	.project-content
	.project-content-inner
	p,
.project
	.project-carousel
	.project-item:hover
	.project-content
	.project-content-inner
	a.h4,
.project
	.project-carousel
	.project-item:hover
	.project-content
	.project-content-inner
	.project-icon
	i {
	color: var(--bs-white) !important;
	transition: 0.5s;
}

.project
	.project-carousel
	.project-item:hover
	.project-content
	.project-content-inner
	a.h4:hover {
	color: var(--bs-primary) !important;
}

.project-carousel .owl-dots {
	position: absolute;
	width: 100%;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: -120px;
	transition: 0.5s;
}

.project-carousel .owl-dots .owl-dot {
	width: 20px;
	height: 20px;
	border-radius: 20px;
	margin-right: 15px;
	background: var(--bs-dark);
	transition: 0.5s;
}

.project-carousel .owl-dots .owl-dot.active {
	width: 30px;
	height: 30px;
	border-radius: 40px;
	border: 8px solid var(--bs-primary);
}

.footer {
	background: linear-gradient(135deg, var(--bs-dark) 0%, #0a4730 100%);
	position: relative; 
	overflow: hidden;
}
.footer::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(255, 255, 255, 0.1),
		transparent
	);
	animation: shimmer 3s infinite;
}
.footer .footer-item a {
	line-height: 35px;
	color: var(--bs-body);
	transition: 0.5s;
}

.footer .footer-item p {
	line-height: 35px;
}
.footer .footer-item a:hover {
	letter-spacing: 1px;
	color: var(--bs-primary);
}

.footer .footer-item-post a {
	transition: 0.5s;
}
.footer .footer-item-post a:hover {
	color: var(--bs-primary) !important;
}
.footer .footer-item-post .footer-btn a {
	transition: 0.5s;
}
.footer .footer-item-post .footer-btn a:hover {
	color: var(--bs-dark);
}

.footer-links {
	display: flex;
	flex-direction: column;
}
.footer-link {
	display: flex;
	align-items: center;
	text-decoration: none;
	transition: all 0.3s ease;
	line-height: 1.5;
	padding: 5px 0;
}

.footer-link i {
	width: 20px;
	text-align: center;
	font-size: 0.9rem;
}
.footer-link:hover {
	color: var(--bs-primary) !important;
	padding-left: 5px;
}

.footer-service-links a {
	display: grid;
	grid-template-columns: 20px auto;
	gap: 8px;
	align-items: center;
	text-decoration: none;
	padding: 4px 0;
}

.footer-service-links i {
	text-align: center;
	font-size: 0.9rem;
}

.copyright {
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	background: var(--bs-dark) !important;
}

.top-bar-content-mobile {
	display: flex;
	flex-direction: column;
}
.mobile-top-bar-left,
.mobile-top-bar-right {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.mobile-top-bar-item {
	display: flex;
	align-items: center;
	padding: 8px 0;
	border-bottom: 1px solid rgba(16, 185, 129, 0.1);
	min-height: 24px;
}

.mobile-top-bar-item:last-child {
	border-bottom: none;
}
.mobile-top-bar-item i {
	width: 20px;
	font-size: 1rem; /* Pastikan ukuran icon konsisten */
	line-height: 1.5;
	vertical-align: middle;
}

.mobile-top-bar-item span {
	line-height: 1.5;
	vertical-align: middle;
}

a {
	text-decoration: none !important;
}

.share-buttons-wrapper {
	border-top: 1px solid #dee2e6;
	padding-top: 1.5rem;
	margin-top: 1rem;
}

.share-buttons-wrapper h5 {
	color: #333;
	font-weight: 600;
	margin-bottom: 15px !important;
	font-size: 1.15rem;
}

.share-buttons-wrapper .btn {
	border-radius: 0.3rem;
	font-size: 0.85rem;
	padding: 0.4rem 0.8rem;
	transition: all 0.2s ease-in-out;

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

.share-buttons-wrapper .btn i {
	font-size: 1rem;
	margin-right: 0.4rem !important;
}

.share-buttons-wrapper .btn-primary {
	background-color: #3b5998 !important;
	border-color: #3b5998 !important;
}
.share-buttons-wrapper .btn-primary:hover {
	background-color: #2d4373 !important;
	border-color: #2d4373 !important;
	transform: translateY(-1px);
}

.share-buttons-wrapper .btn-info {
	background-color: #000000 !important;
	border-color: #000000 !important;
	color: #ffffff !important;
}
.share-buttons-wrapper .btn-info:hover {
	background-color: #333333 !important;
	border-color: #333333 !important;
	transform: translateY(-1px);
}

.share-buttons-wrapper .btn-success {
	background-color: #25d366 !important;
	border-color: #25d366 !important;
}
.share-buttons-wrapper .btn-success:hover {
	background-color: #1da851 !important;
	border-color: #1da851 !important;
	transform: translateY(-1px);
}

.share-buttons-wrapper .btn-secondary {
	background-color: #0e76a8 !important;
	border-color: #0e76a8 !important;
	color: #ffffff !important;
}
.share-buttons-wrapper .btn-secondary:hover {
	background-color: #0a5f87 !important;
	border-color: #0a5f87 !important;
	transform: translateY(-1px);
}

.share-buttons-wrapper .btn-dark {
	background-color: #0088cc !important;
	border-color: #0088cc !important;
}
.share-buttons-wrapper .btn-dark:hover {
	background-color: #006da3 !important;
	border-color: #006da3 !important;
	transform: translateY(-1px);
}

.share-buttons-wrapper .btn-light {
	background-color: #f8f9fa !important;
	border-color: #ced4da !important;
	color: #333 !important;
}
.share-buttons-wrapper .btn-light:hover {
	background-color: #e2e6ea !important;
	border-color: #b8bbbe !important;
	transform: translateY(-1px);
}

.share-buttons-wrapper .copylink {
	color: #6c757d !important;
	border-color: #6c757d !important;
}
.share-buttons-wrapper .copylink:hover {
	background-color: #6c757d !important;
	color: #ffffff !important;
	transform: translateY(-1px);
}

@media (max-width: 576px) {
	.share-buttons-wrapper {
		gap: 0.5rem !important;
	}
	.share-buttons-wrapper .btn {
		flex-grow: 1;
		font-size: 0.8rem;
	}

	.header-carousel .header-carousel-item .carousel-caption {
		width: 100% !important;
		padding: 0 15px;
		padding-top: 0px;
		top: -8%;
	}
}
/* Testimoni Section - IMPROVED */
/* Testimoni Section */
.testimoni-section {
	background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
	position: relative;
	overflow: hidden;
}

/* Background shapes */
.shape {
	position: absolute;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--bs-effect) 0%, transparent 100%);
	z-index: 1;
	animation: float 6s ease-in-out infinite;
}

.shape-1 {
	width: 300px;
	height: 300px;
	top: -150px;
	right: -150px;
	animation-delay: 0s;
}

.shape-2 {
	width: 200px;
	height: 200px;
	bottom: 100px;
	left: -100px;
	animation-delay: 2s;
}

.shape-3 {
	width: 150px;
	height: 150px;
	top: 30%;
	right: 10%;
	animation-delay: 4s;
}

@keyframes float {
	0%,
	100% {
		transform: translateY(0) rotate(0deg);
	}
	50% {
		transform: translateY(-20px) rotate(5deg);
	}
}

/* Section header */
.section-badge {
	display: inline-block;
	background: var(--bs-light);
	color: var(--bs-dark);
	padding: 8px 20px;
	border-radius: 30px;
	font-weight: 600;
	font-size: 0.95rem;
	border: 2px solid rgba(16, 185, 129, 0.2);
}

.text-gradient {
	background: linear-gradient(135deg, var(--bs-primary), var(--gold));
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.section-subtitle {
	color: var(--bs-body);
	font-size: 1.1rem;
	max-width: 600px;
	margin: 0 auto;
}

/* Carousel wrapper */
.testimoni-carousel-wrapper {
	padding: 20px 0;
}

.carousel-overlay {
	position: absolute;
	top: 0;
	bottom: 0;
	width: 100px;
	z-index: 2;
	pointer-events: none;
}

.left-overlay {
	left: 0;
	background: linear-gradient(90deg, #f8fafc 0%, transparent 100%);
}

.right-overlay {
	right: 0;
	background: linear-gradient(270deg, #f8fafc 0%, transparent 100%);
}

/* Testimoni card */
.testimoni-card {
	background: var(--bs-white);
	border-radius: 16px;
	border: none;
	box-shadow: 0 10px 40px rgba(1, 26, 65, 0.08);
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	overflow: hidden;
	position: relative;
	height: 100%;
}

.testimoni-card:hover {
	transform: translateY(-10px) scale(1.02);
	box-shadow: 0 20px 60px rgba(53, 94, 252, 0.15);
}

.card-accent {
	position: absolute;
	top: 0;
	left: 0;
	width: 6px;
	height: 100%;
	background: linear-gradient(to bottom, var(--bs-primary), var(--gold));
}

/* Quote icon */
.quote-icon {
	position: absolute;
	top: 20px;
	right: 20px;
	font-size: 2.5rem;
	color: rgba(53, 94, 252, 0.1);
}

/* User info */
.user-avatar img {
	width: 48px;
	height: 48px;
	object-fit: cover;
	border: 3px solid white;
	box-shadow: 0 4px 12px rgba(53, 94, 252, 0.15);
}

.user-meta {
	font-size: 0.85rem;
	color: var(--bs-body);
}

.user-meta .position {
	font-weight: 500;
	color: var(--bs-dark);
}

.user-meta .company {
	display: block;
	color: var(--primary);
	font-size: 0.8rem;
	margin-top: 2px;
}

.verified-badge {
	color: var(--primary);
	font-size: 1.2rem;
	background: rgba(53, 94, 252, 0.1);
	width: 30px;
	height: 30px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* Testimoni text */
.testimoni-text {
	font-style: italic;
	line-height: 1.7;
	color: var(--dark);
	font-size: 1.05rem;
	padding-left: 22px;
	position: relative;
	quotes: "“" "”";
}

.testimoni-text::before {
	content: open-quote;
	position: absolute;
	left: 0;
	top: -6px;
	font-size: 42px;
	color: var(--primary);
	opacity: 0.15;
	font-family: Georgia, serif;
	line-height: 1;
}

/* Timeline indicator */
.timeline-indicator {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.timeline-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--light);
	transition: all 0.3s ease;
}

.timeline-dot.active {
	background: var(--primary);
	transform: scale(1.3);
}

/* Action buttons */
.btn-action {
	background: none;
	border: none;
	color: var(--bs-body);
	font-size: 0.9rem;
	padding: 5px 0;
	transition: all 0.2s ease;
	display: inline-flex;
	align-items: center;
}

.btn-action:hover {
	color: var(--primary);
	transform: translateY(-2px);
}

.btn-action i {
	font-size: 1.1rem;
}

.btn-like:hover {
	color: #ef4444;
}

/* Navigation */
.carousel-navigation {
	gap: 30px;
}

.btn-nav {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: var(--bs-white);
	border: 2px solid var(--light);
	color: var(--primary);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	font-size: 1.1rem;
}

.btn-nav:hover {
	background: var(--primary);
	color: var(--bs-white);
	border-color: var(--primary);
	transform: scale(1.1);
	box-shadow: 0 8px 20px rgba(53, 94, 252, 0.3);
}

.slide-counter {
	background: rgba(53, 94, 252, 0.1);
	padding: 8px 20px;
	border-radius: 30px;
	min-width: 100px;
	text-align: center;
	font-size: 1.2rem;
	backdrop-filter: blur(10px);
	border: 1px solid rgba(53, 94, 252, 0.2);
}

.slide-counter .current {
	color: var(--primary);
	font-size: 1.3rem;
}

.slide-counter .separator {
	color: var(--bs-body);
	opacity: 0.5;
}

.slide-counter .total {
	color: var(--tertiary);
}

/* CTA Section */
.cta-wrapper {
	background: linear-gradient(135deg, var(--bs-primary) 0%, var(--gold) 100%);
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 20px 40px rgb(67 252 53 / 20%);
}

.cta-background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.cta-bg-shape {
	position: absolute;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.1);
}

.cta-bg-shape.shape-1 {
	width: 200px;
	height: 200px;
	top: -100px;
	right: -100px;
}

.cta-bg-shape.shape-2 {
	width: 150px;
	height: 150px;
	bottom: -75px;
	left: -75px;
}

.cta-content {
	position: relative;
	z-index: 2;
}

.btn-light {
	background: var(--bs-white) !important;
	color: var(--primary) !important;
	font-weight: 600;
	border: none;
	transition: all 0.3s ease;
}

.btn-light:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2) !important;
}

/* Responsive */
@media (max-width: 768px) {
	.shape {
		display: none;
	}

	.carousel-overlay {
		width: 30px;
	}

	.testimoni-card:hover {
		transform: translateY(-5px);
	}

	.btn-nav {
		width: 45px;
		height: 45px;
	}

	.slide-counter {
		padding: 6px 15px;
		min-width: 80px;
		font-size: 1.1rem;
	}

	.cta-content {
		padding: 3rem 1rem !important;
	}
}

@media (max-width: 576px) {
	.carousel-overlay {
		display: none;
	}

	.testimoni-text {
		font-size: 1rem;
		padding-left: 15px;
	}

	.testimoni-text::before {
		font-size: 30px;
	}
}

.detail-articel {
	overflow: visible !important;
}
.detail-articel .sticky-sidebar {
	position: sticky;
	top: 100px;
	max-height: calc(100vh - 120px); /* tinggi layar - jarak navbar */
	overflow-y: auto;
	padding-right: 6px; /* biar scrollbar nggak nabrak konten */
}

/* Optional: scrollbar lebih tipis */
.detail-articel .sticky-sidebar::-webkit-scrollbar {
	width: 6px;
}

.detail-articel .sticky-sidebar::-webkit-scrollbar-thumb {
	background: rgba(0, 0, 0, 0.2);
	border-radius: 10px;
}

.text-warning-sd {
    color: var(--gold);
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5),
                 0 0 2px rgba(255, 193, 7, 0.3);
}
