.creative-hero--section{
	position: relative;
	overflow: hidden;
	height: 765px;
}
.creative-hero--section .bg {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background-repeat: no-repeat;
	background-position: 50%;
	background-size: cover;
}

.auto-container {
    position: relative; /* penting agar overlay absolute nempel di sini */
    background-image: url('/img/hero.webp');
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 800px;
    overflow: hidden;
}

.auto-container .bg-overlay {
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0; /* alternatif dari inset: 0; */
    background-color: rgba(51, 77, 51, 0.6); /* hijau tua transparan */
}

.content-box {
    display: flex; /* Mengaktifkan Flex untuk dua kolom */
    max-width: 1350px;
    width: 100%;
    animation: fadeInUp 1s ease-in-out 0.6s forwards;
	padding-bottom: 148px;
}

.left-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
}

.right-column {
    flex: 1;
}


.hero-subtitle {
	display: block;
	font-size: 18px;
	line-height: 22px;
	color: #CAF8BF;
	font-weight: 700;
	letter-spacing: .8px;
	margin-bottom: 20px;
	opacity: 0;
	animation: fadeInUp 0.6s ease-in-out 0.6s forwards;
}
.hero-title {
	color: #19EC15;
	line-height: 1.1em;
	letter-spacing: -3px;
	text-transform: capitalize;
	margin-bottom: 28px;
	font-size: 70px;
	font-weight: 600;
	opacity: 0;
	animation: fadeInUp 0.6s ease-in-out 0.9s forwards;
}
.hero-desc {
	color: #fff;
	margin-bottom: 40px;
	font-size: 16px;
	font-weight: 400;
	line-height: 32px;
	opacity: 0;
	animation: fadeInUp 0.6s ease-in-out 1.2s forwards;
}
.btn-box{
	opacity: 0;
	animation: fadeInUp 0.6s ease-in-out 1.6s forwards;
}
.hero-cta {
	position: relative;
	font-size: 16px;
	line-height: 24px;
	padding: 20px 40px;
	font-weight: 600;
	overflow: hidden;
	color: #CAF8BF;
	background: #146A0E;
	letter-spacing: .8px;
	border-radius: 7px;
	text-decoration: none;
	display: inline-flex;
	justify-content: center;
	text-align: center;
	white-space: nowrap;
	transition: all .3s ease;
}

.hero-cta:before {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	content: "";
	border-radius: 7px;
	transform: scaleX(0);
	transform-origin: top right;
	transition: transform .5s cubic-bezier(.86, 0, .07, 1);
	background-color: #CAF8BF;
}

.hero-cta:hover {
	box-shadow: 0 10px 30px rgba(0, 0, 0, .1);
	color: #146A0E;
	z-index: 10;
}

.hero-cta:hover:before {
	transform: scaleX(1);
	transform-origin: bottom left;
}

.cta-title{
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

.cta-title i{
	position: relative;
	display: block;
	margin-left: 10px;
}


@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translate3d(0, 40px, 0);
	}
	to {
		opacity: 1;
		transform: translate3d(0, 0, 0);
	}
}
