:root {
	--kit-teal: #00AA9B;
	/* sama persis SPP */
	--kit-green: #34cc67;
	--kit-dark: #172333;
}

/* HERO */
.hero-kit {
	min-height: 90vh;
	padding-top: 140px;
	background:
		linear-gradient(135deg,
			rgba(0, 0, 0, 0.4),
			rgba(0, 0, 0, 0.4)),
		url("../../image/bg-kit.jpeg") center/cover no-repeat;
	color: #fff;
}

.hero-title {
	font-size: 3.5rem;
	font-weight: 800;
}

.hero-desc {
	font-size: 1.1rem;
	opacity: 0.85;
}

/* BADGE */
.badge-kit {
	background: #FFC107;
	color: #172333;
	border: 1px solid rgba(255, 255, 255, 0.4);
	font-weight: 700;
	padding: 8px 18px;
	border-radius: 50px;
	font-size: 0.75rem;
}

/* BUTTON */
.btn-kit {
	background: #fff;
	color: var(--kit-teal);
	padding: 14px 34px;
	border-radius: 14px;
	font-weight: 700;
	text-decoration: none;
	transition: .3s;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-kit:hover {
	background: var(--kit-teal);
	color: #fff;
}

.btn-outline-kit {
	border: 2px solid #fff;
	color: #fff;
	padding: 14px 34px;
	border-radius: 14px;
	font-weight: 700;
	text-decoration: none;
}

.btn-outline-kit:hover {
	background: #fff;
	color: var(--kit-teal);
}

/* STATS */
.stats-box {
	background: linear-gradient(135deg,
			rgba(255, 255, 255, 0.95),
			rgba(240, 253, 250, 0.95));
	color: #172333;
	padding: 45px;
	border-radius: 30px;
	margin-top: 40px;
	box-shadow: 0 30px 70px rgba(0, 170, 155, 0.25);
}

.stats-box h2 {
	color: var(--kit-teal);
	font-weight: 800;
}



.stat-value {
	font-weight: 800;
	color: var(--kit-teal);
}

/* SECTION */
.section {
	padding: 80px 0;
	scroll-margin-top: 100px;
}

.section-light {
	background: #f8f9fa;
	padding-top: 30px !important;
}

.section-subtitle {
	color: var(--kit-teal);
	text-transform: uppercase;
	font-weight: 700;
	letter-spacing: 2px;
}

.section-title {
	font-weight: 800;
}

/* FEATURE LIST */
.feature-list {
	list-style: none;
	padding: 0;
}

.feature-list li {
	margin-bottom: 10px;
	color: #555;
}

.feature-list i {
	color: var(--kit-teal);
	margin-right: 8px;
}

/* MAP */
.map-box {
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, .15);
}

.map-box iframe {
	width: 100%;
	height: 100%;
	border: 0;
}

/* CARD */
.invest-card {
	background: #fff;
	padding: 30px 25px;
	border-radius: 20px;
	text-align: center;
	transition: 0.3s ease;
	border: 1px solid rgba(0, 170, 155, 0.15);
}

.invest-card i {
	color: var(--kit-teal) !important;
	background: rgba(0, 170, 155, 0.15);
	padding: 16px;
	border-radius: 16px;
	margin-bottom: 10px;
}

.invest-card h6 {
	color: #172333;
}

.invest-card p {
	color: #6b7280;
}

.invest-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(0, 170, 155, 0.18);
	border-color: var(--kit-teal);
}

.icon-box {
	width: 64px;
	height: 64px;
	background: #00AA9B !important;
	color: #fff !important;
	border-radius: 16px;
	display: flex !important;
	align-items: center;
	justify-content: center;
	margin: 0 auto 15px;
	font-size: 30px !important;
	box-shadow: 0 10px 25px rgba(0, 170, 155, 0.35);
}

.icon-box i {
	color: #fff !important;
	font-size: 30px !important;
}

.invest-card:hover .icon-box {
	transform: scale(1.08);
	box-shadow: 0 18px 40px rgba(0, 170, 155, 0.45);
}

.media-container {
	transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
	cursor: pointer;
	background: #fff;
}

.media-container:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 40px rgba(0, 170, 155, 0.15) !important;
}

/* Penyesuaian lebar kolom di layar besar agar tidak terlalu memenuhi lebar layar */
@media (min-width: 1200px) {
	.col-lg-5 {
		flex: 0 0 auto;
		width: 45%;
	}
}

.media-container {
	transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
	cursor: pointer;
	background: #fff;
}

.media-container:hover {
	transform: translateY(-12px);
	box-shadow: 0 25px 50px rgba(0, 170, 155, 0.15) !important;
	/* Glow warna teal khas SPP */
}

/* Memastikan video vertical responsive di mobile */
@media (max-width: 768px) {
	.media-container {
		max-width: 320px;
		margin: 0 auto;
	}
}

.hero-logo-img {
	max-width: 268px;
	width: 100%;
	height: auto;
}

.hero-logo-content {
	flex: 1;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	padding-left: 60px;
}


@media (max-width: 768px){

	.hero-logo-content{
		justify-content: center;
		margin-top: 30px;
	}

	.hero-logo-img{
		max-width: 260px;
	}

}

