/* ================= TENTANG KAMI SECTION ================= */
.tentangkami-section {
	position: relative;
	min-height: 100vh;
	padding: 120px 0;
	background: url("/finsdemy-ci3/assets/tentangkami/tentangkami.png")
		center/cover no-repeat;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.tentangkami-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		135deg,
		rgba(10, 37, 64, 0.4),
		rgba(18, 59, 110, 0.65)
	);
	z-index: 1;
}

.tentangkami-container {
	position: relative;
	z-index: 2;
	max-width: 900px;
	padding: 80px 70px;
	text-align: center;

	background: linear-gradient(
		160deg,
		rgba(255, 255, 255, 0.12),
		rgba(255, 255, 255, 0.04)
	);
	backdrop-filter: blur(14px);
	border-radius: 28px;
	border: 1px solid rgba(255, 255, 255, 0.15);
	box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
	margin-top: 50px;
}

.tentangkami-badge {
	display: inline-block;
	font-size: 12px;
	letter-spacing: 1.3px;
	padding: 7px 22px;
	margin-bottom: 26px;
	color: #ffffff;
	background-color: #0b1b3f;
	border-radius: 30px;
}

.tentangkami-title {
	font-size: 44px;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 14px;
}

.tentangkami-subtitle {
	font-size: 20px;
	font-weight: 500;
	color: #bedced;
	margin-bottom: 28px;
}

.tentangkami-divider {
	width: 90px;
	height: 3px;
	background: linear-gradient(90deg, #6fb1ff, #2d6cdf);
	margin: 0 auto 34px;
	border-radius: 10px;
}

.tentangkami-desc {
	font-size: 16.5px;
	line-height: 2;
	color: rgba(255, 255, 255, 0.92);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
	.tentangkami-container {
		padding: 60px 40px;
	}

	.tentangkami-title {
		font-size: 36px;
	}
}

@media (max-width: 768px) {
	.tentangkami-section {
		padding: 80px 20px;
	}

	.tentangkami-container {
		padding: 50px 26px;
	}

	.tentangkami-title {
		font-size: 32px;
	}

	.tentangkami-subtitle {
		font-size: 18px;
	}

	.tentangkami-desc {
		font-size: 15px;
	}
}

@media (max-width: 360px) {
	.tentangkami-title {
		font-size: 28px;
	}

	.tentangkami-desc {
		font-size: 14px;
		line-height: 1.9;
	}
}

/* ================= PENGAJAR SECTION ================= */

/* ================= PENGAJAR SECTION ================= */
.pengajar-section {
	padding: 120px 0 70px;
	background: #1d546d;
}

.pengajar-container {
	width: 90%;
	max-width: 1200px;
	margin: auto;
}

/* TITLE */
.pengajar-title {
	text-align: center;
	margin-bottom: 60px;
}

.pengajar-title h1 {
	font-size: 36px;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 12px;
}

.pengajar-title p {
	font-size: 16px;
	color: #bedced;
}

/* CARD */
.pengajar-card {
	background: #ffffff;
	border-radius: 20px;
	padding: 64px 26px 70px;
	text-align: center;
	box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
	transition: all 0.35s ease;
	position: relative;
	margin-bottom: 50px;
}

.pengajar-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 28px 60px rgba(0, 0, 0, 0.15);
}

/* IMAGE */
.pengajar-card img {
	width: 96px;
	height: 96px;
	border-radius: 50%;
	object-fit: cover;
	margin-bottom: 18px;
}

/* NAME */
.pengajar-card h4 {
	font-size: 16px;
	font-weight: 600;
	color: #0a2540;
	margin-bottom: 8px;
}

/* BADGE */
.pengajar-badge {
	display: inline-block;
	background: #0a2540;
	color: #bedced;
	font-size: 12px;
	padding: 4px 12px;
	border-radius: 12px;
	margin-bottom: 10px;
}

/* SKILL */
.pengajar-card p {
	font-size: 12px;
	color: #0a2540;
	margin-bottom: 16px;
}

/* LINKEDIN */
.pengajar-card a {
	font-size: 14px;
	color: #ffffff;
	text-decoration: none;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 6px;
	font-weight: 500;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	background-color: #0a2540;
	padding: 12px;
	border-radius: 0 0 20px 20px;
}
.pengajar-swiper {
	padding-bottom: 0 !important;
}

.swiper-wrapper {
	align-items: stretch;
}

.swiper {
	padding-bottom: 10px;
}

.swiper-pagination {
	position: relative !important;
	margin-top: 14px;
}

.swiper-pagination-bullet {
	background: #cfd8e3;
	opacity: 1;
}

.swiper-pagination-bullet-active {
	background: #2d6cdf;
}

/* BUTTON */
.pengajar-btn {
	text-align: center;
	margin-top: 18px;
}

.pengajar-btn a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 14px 28px;
	background: #0a2540;
	color: #ffffff;
	border-radius: 14px;
	text-decoration: none;
	font-weight: 600;
}

/* ================= CONTACT HERO ================= */
.contact-hero {
	min-height: 100vh;
	background: #1d546d;
	display: flex;
	align-items: center;
}

.contact-container {
	width: 90%;
	max-width: 1200px;
	margin: auto;
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 80px;
}

/* LEFT CONTENT */
.contact-content {
	color: #ffffff;
}

.contact-badge {
	display: inline-block;
	padding: 8px 18px;
	background: rgba(255, 255, 255, 0.12);
	border-radius: 50px;
	font-size: 12px;
	letter-spacing: 1px;
	margin-bottom: 24px;
}

.contact-content h1 {
	font-size: 54px;
	font-weight: 800;
	line-height: 1.15;
	margin-bottom: 20px;
}

.contact-content h1 span {
	color: #bedced;
}

.contact-content p {
	font-size: 18px;
	color: #d6ebf6;
	max-width: 520px;
	margin-bottom: 40px;
	line-height: 1.7;
}

/* CTA */
.contact-cta {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	padding: 16px 34px;
	background: linear-gradient(135deg, #25d366, #1ebe5d);
	color: #ffffff;
	font-size: 16px;
	font-weight: 700;
	border-radius: 60px;
	text-decoration: none;
	box-shadow: 0 20px 40px rgba(37, 211, 102, 0.4);
	transition: all 0.35s ease;
}

.contact-cta:hover {
	transform: translateY(-4px);
	box-shadow: 0 30px 60px rgba(37, 211, 102, 0.6);
}

/* RIGHT INFO */
.contact-info {
	background: rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(18px);
	border-radius: 28px;
	padding: 46px 40px;
	display: flex;
	flex-direction: column;
	gap: 28px;
}

.info-item {
	display: flex;
	gap: 18px;
	align-items: flex-start;
	color: #ffffff;
}

.info-item ion-icon {
	font-size: 26px;
	color: #bedced;
	margin-top: 4px;
}

.info-item small {
	font-size: 12px;
	letter-spacing: 1px;
	color: #9ecae1;
	display: block;
	margin-bottom: 4px;
}

.info-item p,
.info-item a {
	font-size: 16px;
	font-weight: 600;
	color: #ffffff;
	text-decoration: none;
}

/* RESPONSIVE */
@media (max-width: 992px) {
	.contact-container {
		grid-template-columns: 1fr;
		gap: 60px;
	}

	.contact-content h1 {
		font-size: 42px;
	}

	.contact-hero {
		padding: 100px 0;
		min-height: auto;
	}
}
