@import url("https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap");

:root {
	/* color */
	--mainColor: #eaeaea;
	--secodColor: #e3ba59;
	--colorBlueDark: #21752f;
	/* font */
	--mainFont: "Work Sans", sans-serif;
}

html {
	scroll-padding-top: 5rem;
}

* {
	margin: 0;
	padding: 0;
	font-family: var(--mainFont);
}

.navbar-brand {
	font-family: var(--mainFont);
	color: #21752f;
	font-size: 16px;
	font-weight: 700;
}

/* hamburger Menu */
.navbar-toggler {
	border: 0;
}

.navbar-toggler:focus,
.navbar-toggler:active,
.navbar-toggler-icon {
	border: 0;
	box-shadow: none;
	outline: none;
}
.toggler-icon {
	width: 30px;
	height: 3px;
	background-color: var(--secodColor);
	border-radius: 12px;
	display: block;
	transition: all 1s ease-in-out;
}
.mid-bar {
	margin: 5px auto;
	background-color: var(--colorBlueDark);
}
.navbar-toggler .top-bar {
	transform: rotate(45deg);
	transform-origin: 10% 10%;
}
.navbar-toggler .mid-bar {
	opacity: 0;
	filter: alpha(opacity=0);
}
.navbar-toggler .bottom-bar {
	transform: rotate(-45deg);
	transform-origin: 10% 10%;
}
.navbar-toggler.collapsed .top-bar {
	transform: rotate(0);
}
.navbar-toggler.collapsed .mid-bar {
	opacity: 1;
	filter: alpha(opacity=100);
}
.navbar-toggler.collapsed .bottom-bar {
	transform: rotate(0);
}

/* menu */
nav,
nav * {
	font-size: 14px;
}

.navbar-nav {
	padding-left: 80px;
}

.navbar-nav .nav-item {
	margin-right: 50px;
}

.navbar-nav .nav-link {
	font-family: var(--mainFont);
	position: relative;
	color: var(--colorBlueDark);
	font-weight: 600;
}

.navbar-nav .nav-link::after {
	content: "";
	display: block;
	width: 0;
	height: 2px;
	background-color: var(--secodColor);
	position: absolute;
	bottom: -5px;
	left: 0;
	transition: width 0.3s;
}

.navbar-nav .nav-link:hover::after {
	width: 100%;
}

.navbar-nav .nav-link:hover {
	color: var(--secodColor);
}

.navbar-nav .nav-link.actived::after {
	content: "";
	display: block;
	width: 100%;
	height: 2px;
	background-color: var(--secodColor);
	position: absolute;
	bottom: -5px;
	left: 0;
}

/* dropdown-menu */
.nav-item.dropdown .dropdown-menu,
.dropdown-submenu .dropdown-menu {
	display: none;
	position: absolute;
	background-color: white;
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
	z-index: 1000;
}

.nav-item.dropdown:hover > .dropdown-menu {
	display: block;
}

.dropdown-submenu {
	position: relative;
}

.dropdown-submenu:hover > .dropdown-menu {
	display: block;
}

/* Atur posisi submenu */
.dropdown-submenu .dropdown-menu {
	top: 0;
	left: 100%;
	margin-top: -1px;
}

/* Style item dropdown */
.dropdown-menu .dropdown-item {
	padding: 10px 20px;
	color: #000;
	text-decoration: none;
	display: block;
}

.dropdown-menu .dropdown-item:hover {
	background-color: var(--secodColor);
	color: white;
}

.dropdown-toggle {
	text-decoration: none;
	color: #000 !important;
}

/* top header */
.top-header {
	background-color: var(--colorBlueDark);
	padding: 10px 0;
	position: relative;
}

.top-header a {
	text-decoration: none;
	color: #ffffff;
	font-family: var(--mainFont);
	display: inline-block;
	padding: 0 15px;
}

.top-header p {
	font-size: 14px;
}

.top-header .search-box {
	display: none;
	position: absolute;
	top: 100%;
	right: 0;
	left: 0;
	width: 100%;
	background-color: var(--colorBlueDark);
	border: 0;
	padding: 10px;
	z-index: 9999;
	/* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2); */
}

.top-header .search-box form {
	display: flex;
}

.top-header .search-box input[type="search"] {
	flex: 1;
	padding: 5px;
	border: none;
	outline: none;
	border-radius: 10px;
}

.top-header .search-box input::placeholder {
	color: #000000;
}

.top-header .search-box .btn-search {
	background: none;
	border: none;
	color: #ffffff;
	cursor: pointer;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* ================= HERO SECTION ================= */
#hero {
	background-image:
		linear-gradient(
			90deg,
			rgba(255, 255, 255, 0.96) 0%,
			rgba(255, 255, 255, 0.88) 38%,
			rgba(255, 255, 255, 0.35) 65%,
			rgba(255, 255, 255, 0.05) 100%
		),
		url("../../assets/img/bg-hero.png");
	background-size: cover;
	background-position: center right;
	background-repeat: no-repeat;
	min-height: 100vh;
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: center;
	font-family: "Poppins", Arial, sans-serif;
}

/* Optional garis dekorasi kecil */
#hero::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 6px;
	height: 100%;
	background: linear-gradient(180deg, #7dbb2f, #159947, #158bd1);
}

#hero .container-fluid {
	position: relative;
	z-index: 2;
	padding-left: 7%;
	padding-right: 7%;
}

#hero .row {
	min-height: 100vh;
}

#hero .judul {
	width: 520px;
	max-width: 100%;
	padding: 32px 0;
}

/* Judul utama */
#hero h1 {
	color: #133b2f;
	font-size: 46px;
	font-weight: 800;
	line-height: 1.18;
	margin-bottom: 14px;
	letter-spacing: -0.8px;
}

/* Typed text */
#hero .typed-container {
	min-height: 54px;
	margin-bottom: 18px;
}

#hero h2 {
	color: #133b2f;
	font-size: 28px;
	font-weight: 700;
	line-height: 1.35;
	margin: 0;
}

/* Paragraf */
#hero p {
	color: #425466;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.85;
	text-align: justify;
	margin-bottom: 28px;
	max-width: 520px;
}

/* Tombol jika nanti mau ditambahkan */
#hero .btn-hero {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 13px 24px;
	border-radius: 999px;
	background: linear-gradient(135deg, #2f8f3a, #8cc63f);
	color: #fff;
	font-size: 15px;
	font-weight: 700;
	text-decoration: none;
	box-shadow: 0 12px 28px rgba(47, 143, 58, 0.25);
	transition: all 0.25s ease;
}

#hero .btn-hero:hover {
	transform: translateY(-3px);
	box-shadow: 0 16px 35px rgba(47, 143, 58, 0.35);
	color: #fff;
}

/* Responsive tablet */
@media (max-width: 991px) {
	#hero {
		background-position: center right;
		min-height: 760px;
	}

	#hero .container-fluid {
		padding-left: 6%;
		padding-right: 6%;
	}

	#hero .judul {
		width: 520px;
	}

	#hero h1 {
		font-size: 38px;
	}

	#hero h2 {
		font-size: 24px;
	}

	#hero p {
		font-size: 15px;
	}
}

/* Responsive HP */
@media (max-width: 575px) {
	#hero {
		min-height: 100vh;
		background-image:
			linear-gradient(
				180deg,
				rgba(255, 255, 255, 0.85) 0%,
				rgba(255, 255, 255, 0.7) 55%,
				rgba(255, 255, 255, 0.4) 100%
			),
			url("../../assets/img/bg-hero.png");
		background-position: center right;
		background-size: cover;
		background-repeat: no-repeat;
	}

	/* #hero {
		min-height: 100vh;
		background-image:
			linear-gradient(
				180deg,
				rgba(255, 255, 255, 0.8) 0%,
				rgba(255, 255, 255, 0.5) 40%,
				rgba(255, 255, 255, 0.1) 100%
			),
			url("../../assets/img/bg-hero.png");
		background-position: center right;
		background-size: cover;
		background-repeat: no-repeat;
	} */

	#hero .container-fluid {
		padding-left: 24px;
		padding-right: 24px;
	}

	#hero .row {
		min-height: 100vh;
	}

	#hero .judul {
		width: 100%;
		padding-top: 80px;
	}

	#hero .judul::before {
		font-size: 10px;
		padding: 7px 13px;
		margin-bottom: 15px;
	}

	#hero h1 {
		font-size: 31px;
		line-height: 1.23;
		letter-spacing: -0.4px;
		margin-bottom: 12px;
	}

	#hero .typed-container {
		min-height: 45px;
		margin-bottom: 14px;
	}

	#hero h2 {
		font-size: 21px;
	}

	#hero p {
		font-size: 14px;
		line-height: 1.75;
	}
}

@media (max-width: 991px) {
}

@media (max-width: 575px) {
}

/* ========== SECTION CHANNELING ========== */
#channeling {
	background: linear-gradient(180deg, #f8faff 0%, #ffffff 100%);
	padding: 80px 0;
	position: relative;
}

#channeling::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, #1a3a5c, #2c7abc, #4a9ad4);
}

/* Section Header */
.section-badge {
	display: inline-block;
	background: linear-gradient(135deg, #1a3a5c, #2c5a8c);
	color: #ffffff;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 2px;
	padding: 6px 20px;
	border-radius: 30px;
	text-transform: uppercase;
	margin-bottom: 12px;
}

.section-title {
	color: #1a2a3a;
	font-size: 36px;
	font-weight: 800;
	margin-bottom: 16px;
	font-family: "Poppins", sans-serif;
}

.section-subtitle {
	color: #5a6a7a;
	font-size: 16px;
	max-width: 750px;
	margin: 0 auto;
	line-height: 1.8;
}

/* ========== PRODUCT CARD ========== */
.product-card {
	background: #ffffff;
	border-radius: 20px;
	padding: 0;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
	transition: all 0.4s ease;
	border: 1px solid rgba(0, 0, 0, 0.04);
	overflow: hidden;
	height: 100%;
	position: relative;
}

.product-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 12px 40px rgba(26, 58, 92, 0.12);
}

.product-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
}

.product-express::before {
	background: linear-gradient(90deg, #f59e0b, #f97316);
}

.product-reguler::before {
	background: linear-gradient(90deg, #1a5a8c, #2c7abc);
}

/* Product Header */
.product-header {
	padding: 24px 28px 20px;
	text-align: center;
	border-bottom: 1px solid #f0f4f8;
}

.product-icon {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	margin-bottom: 12px;
}

.product-express .product-icon {
	background: #fef3c7;
	color: #f59e0b;
}

.product-reguler .product-icon {
	background: #dbeafe;
	color: #1a5a8c;
}

.product-title {
	font-size: 20px;
	font-weight: 800;
	color: #1a2a3a;
	margin-bottom: 4px;
	font-family: "Poppins", sans-serif;
}

.product-badge {
	display: inline-block;
	font-size: 11px;
	font-weight: 700;
	padding: 4px 14px;
	border-radius: 30px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.product-express .product-badge {
	background: #fef3c7;
	color: #d97706;
}

.product-reguler .product-badge {
	background: #dbeafe;
	color: #1a5a8c;
}

/* Product Body */
.product-body {
	padding: 20px 28px 24px;
}

.product-item {
	display: flex;
	justify-content: space-between;
	padding: 10px 0;
	border-bottom: 1px solid #f0f4f8;
	font-size: 14px;
}

.product-item:last-child {
	border-bottom: none;
}

.product-label {
	color: #5a6a7a;
	font-weight: 500;
}

.product-value {
	color: #1a2a3a;
	font-weight: 600;
	text-align: right;
}

.product-value.highlight {
	color: #1a5a8c;
	font-weight: 700;
}

/* Product Footer */
/* .product-footer {
	padding: 0 28px 28px;
}

.btn-product {
	display: inline-block;
	width: 100%;
	padding: 14px 28px;
	border-radius: 50px;
	font-weight: 700;
	font-size: 14px;
	text-align: center;
	text-decoration: none;
	transition: all 0.3s ease;
	border: none;
	cursor: pointer;
} */

.product-express .btn-product {
	background: linear-gradient(135deg, #f59e0b, #d97706);
	color: #ffffff;
	box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.product-express .btn-product:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
}

.product-reguler .btn-product {
	background: linear-gradient(135deg, #1a5a8c, #2c7abc);
	color: #ffffff;
	box-shadow: 0 4px 15px rgba(26, 90, 140, 0.3);
}

.product-reguler .btn-product:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(26, 90, 140, 0.4);
}

/* Note Text */
.note-text {
	color: #6a7a8a;
	font-size: 13px;
	opacity: 0.8;
}

.note-text i {
	color: #1a5a8c;
	margin-right: 6px;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 991px) {
	#channeling {
		padding: 60px 0;
	}
	.section-title {
		font-size: 30px;
	}
}

@media (max-width: 767px) {
	#channeling {
		padding: 40px 0;
	}
	.section-title {
		font-size: 26px;
	}
	.section-subtitle {
		font-size: 14px;
	}
	.product-card {
		max-width: 400px;
		margin: 0 auto;
	}
	.product-header {
		padding: 20px;
	}
	.product-body {
		padding: 16px 20px 20px;
	}
	.product-footer {
		padding: 0 20px 24px;
	}
	.product-item {
		font-size: 13px;
		flex-wrap: wrap;
		gap: 4px;
	}
	.product-value {
		text-align: left;
		width: 100%;
	}
}

@media (max-width: 480px) {
	.section-title {
		font-size: 22px;
	}
	.product-title {
		font-size: 18px;
	}
	.btn-product {
		font-size: 13px;
		padding: 12px 20px;
	}
}

/* ================= MITRA / TESTIMONI SECTION ================= */
#testimoni.mitra-section {
	padding: 90px 0;
	background:
		linear-gradient(135deg, rgba(19, 59, 47, 0.94), rgba(47, 143, 58, 0.92)),
		url("../../assets/img/bg-hero.png");
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	position: relative;
	overflow: hidden;
	font-family: "Poppins", Arial, sans-serif;
}

#testimoni.mitra-section::before {
	content: "";
	position: absolute;
	width: 420px;
	height: 420px;
	right: -140px;
	top: -140px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.08);
}

#testimoni.mitra-section::after {
	content: "";
	position: absolute;
	width: 300px;
	height: 300px;
	left: -100px;
	bottom: -100px;
	border-radius: 50%;
	background: rgba(21, 139, 209, 0.16);
}

#testimoni .container {
	position: relative;
	z-index: 2;
}

#testimoni .section-badge {
	display: inline-block;
	padding: 8px 16px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.15);
	color: #ffffff;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	margin-bottom: 14px;
	border: 1px solid rgba(255, 255, 255, 0.22);
}

#testimoni h1 {
	color: #ffffff;
	font-size: 38px;
	font-weight: 800;
	margin-bottom: 14px;
}

#testimoni .col-lg-8 > p {
	color: rgba(255, 255, 255, 0.82);
	font-size: 16px;
	line-height: 1.8;
	margin-bottom: 0;
}

.mitra-carousel .item {
	padding: 12px;
}

.mitra-card {
	min-height: 220px;
	background: rgba(255, 255, 255, 0.96);
	border-radius: 24px;
	padding: 34px 26px;
	border: 1px solid rgba(255, 255, 255, 0.35);
	box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
	transition: all 0.3s ease;
}

.mitra-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
}

.mitra-icon {
	width: 82px;
	height: 82px;
	margin: 0 auto 22px;
	border-radius: 24px;
	background: linear-gradient(
		135deg,
		rgba(47, 143, 58, 0.12),
		rgba(140, 198, 63, 0.2)
	);
	display: flex;
	align-items: center;
	justify-content: center;
}

.mitra-icon img {
	width: 48px;
	height: 48px;
	object-fit: contain;
}

.mitra-card h5 {
	color: #133b2f;
	font-size: 20px;
	font-weight: 800;
	margin-bottom: 14px;
}

.mitra-card p {
	color: #637083 !important;
	font-size: 14px !important;
	line-height: 1.75;
}

/* Owl dots */
#testimoni .owl-theme .owl-dots .owl-dot span {
	width: 10px;
	height: 10px;
	background: rgba(255, 255, 255, 0.45);
	transition: all 0.25s ease;
}

#testimoni .owl-theme .owl-dots .owl-dot.active span {
	width: 28px;
	background: #ffffff;
}

/* Responsive */
@media (max-width: 991px) {
	#testimoni.mitra-section {
		padding: 75px 0;
		background-attachment: scroll;
	}

	#testimoni h1 {
		font-size: 32px;
	}

	.mitra-card {
		min-height: 330px;
	}
}

@media (max-width: 575px) {
	#testimoni.mitra-section {
		padding: 60px 0;
	}

	#testimoni h1 {
		font-size: 27px;
	}

	#testimoni .col-lg-8 > p {
		font-size: 14px;
	}

	.mitra-card {
		min-height: auto;
		padding: 28px 22px;
		border-radius: 22px;
	}

	.mitra-card h5 {
		font-size: 18px;
	}

	.mitra-icon {
		width: 82px;
		height: 82px;
	}
}

.mitra-empty {
	padding: 34px 28px;
	border-radius: 22px;
	background: rgba(255, 255, 255, 0.12);
	border: 1px dashed rgba(255, 255, 255, 0.35);
}

.mitra-empty h5 {
	color: #ffffff;
	font-size: 22px;
	font-weight: 800;
	margin-bottom: 10px;
}

.mitra-empty p {
	color: rgba(255, 255, 255, 0.82);
	font-size: 15px;
	line-height: 1.8;
	margin-bottom: 0;
}

/* ========== MEKANISME SECTION ========== */
#mekanisme {
	background: linear-gradient(180deg, #f8faff 0%, #ffffff 100%);
	padding: 80px 0;
	position: relative;
}

#mekanisme::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, #1a3a5c, #2c7abc, #4a9ad4);
}

/* Section Header */
.section-badge {
	display: inline-block;
	background: linear-gradient(135deg, #1a3a5c, #2c5a8c);
	color: #ffffff;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 2px;
	padding: 6px 20px;
	border-radius: 30px;
	text-transform: uppercase;
	margin-bottom: 12px;
}

.section-title {
	color: #1a2a3a;
	font-size: 36px;
	font-weight: 800;
	margin-bottom: 16px;
	font-family: "Poppins", sans-serif;
}

.section-subtitle {
	color: #5a6a7a;
	font-size: 16px;
	max-width: 700px;
	margin: 0 auto;
	line-height: 1.8;
}

/* ========== TIMELINE WRAPPER ========== */
.timeline-wrapper {
	position: relative;
	padding: 20px 0;
}

/* Garis vertikal di tengah */
.timeline-wrapper::before {
	content: "";
	position: absolute;
	left: 50%;
	top: 0;
	bottom: 0;
	width: 3px;
	background: linear-gradient(180deg, #1a5a8c, #2c7abc, #4a9ad4);
	transform: translateX(-50%);
	border-radius: 10px;
}

/* ========== TIMELINE ITEM ========== */
.timeline-item {
	position: relative;
	margin-bottom: 40px;
	display: flex;
	justify-content: flex-end;
	padding-right: 50%;
}

.timeline-item:nth-child(even) {
	justify-content: flex-start;
	padding-right: 0;
	padding-left: 50%;
}

.timeline-item:last-child {
	margin-bottom: 0;
}

/* Nomor Urut */
.timeline-number {
	position: absolute;
	left: 50%;
	top: 0;
	transform: translateX(-50%);
	width: 40px;
	height: 40px;
	background: linear-gradient(135deg, #1a5a8c, #2c7abc);
	color: #ffffff;
	font-size: 14px;
	font-weight: 800;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 2;
	box-shadow: 0 4px 12px rgba(26, 90, 140, 0.3);
	border: 3px solid #ffffff;
}

/* Content */
.timeline-content {
	display: flex;
	gap: 16px;
	background: #ffffff;
	border-radius: 16px;
	padding: 20px 24px;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
	border: 1px solid rgba(0, 0, 0, 0.04);
	transition: all 0.3s ease;
	width: 100%;
	max-width: 420px;
	position: relative;
}

.timeline-item:nth-child(odd) .timeline-content {
	margin-right: 20px;
}

.timeline-item:nth-child(even) .timeline-content {
	margin-left: 20px;
}

.timeline-content:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 28px rgba(26, 58, 92, 0.1);
	border-color: rgba(26, 90, 140, 0.15);
}

/* Icon */
.timeline-icon {
	width: 44px;
	height: 44px;
	min-width: 44px;
	border-radius: 12px;
	background: linear-gradient(135deg, #e8f0fe, #dbeafe);
	color: #1a5a8c;
	font-size: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* Body */
.timeline-body {
	flex: 1;
}

.timeline-title {
	color: #1a2a3a;
	font-size: 15px;
	font-weight: 700;
	margin-bottom: 4px;
	font-family: "Poppins", sans-serif;
}

.timeline-desc {
	color: #5a6a7a;
	font-size: 13px;
	line-height: 1.6;
	margin-bottom: 0;
}

/* ========== CTA ========== */
.mekanisme-cta {
	background: linear-gradient(135deg, #f0f6fe, #e8f0fe);
	border-radius: 16px;
	padding: 20px 28px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 12px;
	border: 1px solid rgba(26, 90, 140, 0.1);
}

.mekanisme-cta i {
	color: #1a5a8c;
	font-size: 18px;
}

.mekanisme-cta span {
	color: #2a4a6a;
	font-weight: 500;
	font-size: 14px;
}

.btn-cta {
	display: inline-block;
	padding: 10px 28px;
	border-radius: 50px;
	font-weight: 700;
	font-size: 13px;
	color: #ffffff;
	background: linear-gradient(135deg, #1a5a8c, #2c7abc);
	text-decoration: none;
	transition: all 0.3s ease;
}

.btn-cta:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(26, 90, 140, 0.3);
	color: #ffffff;
}

.btn-cta i {
	transition: transform 0.3s ease;
}

.btn-cta:hover i {
	transform: translateX(4px);
}

/* Warna icon berbeda untuk setiap proses */
.timeline-item:nth-child(1) .timeline-icon {
	background: #e8f0fe;
	color: #1a5a8c;
}
.timeline-item:nth-child(2) .timeline-icon {
	background: #fef3c7;
	color: #d97706;
}
.timeline-item:nth-child(3) .timeline-icon {
	background: #dcfce7;
	color: #16a34a;
}
.timeline-item:nth-child(4) .timeline-icon {
	background: #dbeafe;
	color: #2563eb;
}
.timeline-item:nth-child(5) .timeline-icon {
	background: #e0f2fe;
	color: #0891b2;
}
.timeline-item:nth-child(6) .timeline-icon {
	background: #fce7f3;
	color: #db2777;
}
.timeline-item:nth-child(7) .timeline-icon {
	background: #fef3c7;
	color: #b45309;
}
.timeline-item:nth-child(8) .timeline-icon {
	background: #dcfce7;
	color: #15803d;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 991px) {
	#mekanisme {
		padding: 60px 0;
	}
	.section-title {
		font-size: 30px;
	}
	.timeline-wrapper::before {
		left: 24px;
	}
	.timeline-item {
		padding-right: 0 !important;
		padding-left: 60px !important;
		justify-content: flex-start !important;
	}
	.timeline-number {
		left: 24px;
		transform: translateX(-50%);
		width: 34px;
		height: 34px;
		font-size: 12px;
	}
	.timeline-item:nth-child(odd) .timeline-content,
	.timeline-item:nth-child(even) .timeline-content {
		margin-left: 0;
		margin-right: 0;
		max-width: 100%;
	}
	.mekanisme-cta {
		flex-direction: column;
		text-align: center;
		padding: 20px;
	}
	.btn-cta {
		margin-left: 0 !important;
	}
}

@media (max-width: 767px) {
	#mekanisme {
		padding: 40px 0;
	}
	.section-title {
		font-size: 26px;
	}
	.section-subtitle {
		font-size: 14px;
	}
	.timeline-content {
		padding: 16px 18px;
	}
	.timeline-icon {
		width: 36px;
		height: 36px;
		min-width: 36px;
		font-size: 14px;
	}
	.timeline-title {
		font-size: 14px;
	}
	.timeline-desc {
		font-size: 12px;
	}
}

@media (max-width: 480px) {
	.section-title {
		font-size: 22px;
	}
	.timeline-item {
		padding-left: 48px !important;
	}
	.timeline-wrapper::before {
		left: 16px;
	}
	.timeline-number {
		left: 16px;
		width: 28px;
		height: 28px;
		font-size: 10px;
	}
	.timeline-content {
		padding: 14px;
		flex-direction: column;
		align-items: flex-start;
	}
}

/* media query phone */
@media (max-width: 455px) {
}

/* media query mobile */
@media (max-width: 576px) {
	#hero h1 {
		font-size: 44px;
	}

	#hero h2 {
		font-size: 24px;
	}

	#hero .judul {
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		width: 100%;
		text-align: left;
		padding: 0 10px;
	}
}

/* media query tablet */
@media (max-width: 768px) {
	.top-header .col-md-6 {
		justify-content: center;
		text-align: center;
	}

	.top-header .col-md-6 a {
		display: block;
		margin-bottom: 5px;
	}

	.top-header a {
		padding: 0px;
	}
}

/* media query tablet */
@media (max-width: 1199px) {
	.navbar-nav {
		padding-left: 0;
	}
}

@media (min-width: 1200px) {
}

/* media query desktop */
@media (max-width: 992px) {
	#hero .judul {
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		width: 100%;
		text-align: left;
		padding: 0 10px;
	}
}

/* media query large desktop */
@media (max-width: 1200px) {
}
