.international-detail {
	position: relative;
	padding: 150px 120px;
	background: url("/finsdemy-ci3/assets/tentangkami/tentangkami.png") center /
		cover no-repeat;
	overflow: hidden;
}

.international-detail-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		90deg,
		rgba(11, 27, 63, 0.85) 0%,
		rgba(2, 48, 97, 0.78) 55%,
		rgba(2, 48, 97, 0.55) 100%
	);
}

.international-detail-container {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: 70px;
	max-width: 1200px;
	margin: auto;
	align-items: center;
}

.international-detail-media {
	background: linear-gradient(145deg, #ffffff, #bedced);
	padding: 30px;
	border-radius: 24px;
	box-shadow: 0 40px 80px rgba(0, 0, 0, 0.35);
}

.international-detail-media img {
	width: 100%;
	border-radius: 18px;
}

.international-detail-content {
	color: #ffffff;
}

.detail-badge {
	display: inline-block;
	background: rgba(190, 220, 237, 0.15);
	color: #bedced;
	padding: 8px 16px;
	border-radius: 30px;
	font-size: 12px;
	font-weight: 700;
	margin-bottom: 18px;
	letter-spacing: 0.5px;
}

.detail-title {
	font-size: 34px;
	font-weight: 800;
	line-height: 1.3;
	margin-bottom: 20px;
}

.detail-desc {
	font-size: 15px;
	line-height: 1.8;
	color: #d6e6f2;
	margin-bottom: 32px;
}

.detail-meta {
	display: flex;
	gap: 40px;
	margin-bottom: 28px;
}

.detail-meta-item span {
	display: block;
	font-size: 13px;
	color: #bedced;
	margin-bottom: 6px;
}

.detail-meta-item strong {
	font-size: 18px;
	font-weight: 800;
	color: #ffffff;
}

.detail-alert {
	background: rgba(255, 255, 255, 0.08);
	padding: 16px 20px;
	border-left: 4px solid #bedced;
	border-radius: 10px;
	margin-bottom: 18px;
}

.detail-alert p {
	font-size: 14px;
	color: #e9f3f9;
}

.detail-stat p {
	font-size: 13px;
	color: #bedced;
	opacity: 0.9;
	display: flex;
	align-items: center;
}
.detail-stat p ion-icon {
	margin-right: 5px;
	font-size: 20px;
}

@media (max-width: 1024px) {
	.international-detail {
		padding: 80px 40px;
	}

	.international-detail-container {
		grid-template-columns: 1fr;
		gap: 50px;
	}
	.international-detail-media {
		background: linear-gradient(145deg, #ffffff, #bedced);
		padding: 20px;
		border-radius: 24px;
		box-shadow: 0 40px 80px rgba(0, 0, 0, 0.35);
		width: 40%;
		margin-top: 50px;
	}

	.international-detail-media img {
		width: 100%;
		border-radius: 18px;
	}
}

@media (max-width: 430px) {
	.international-detail {
		padding: 60px 16px;
	}
	.international-detail-media {
		background: linear-gradient(145deg, #ffffff, #bedced);
		padding: 20px;
		border-radius: 24px;
		box-shadow: 0 40px 80px rgba(0, 0, 0, 0.35);
		width: 100%;
		margin-top: 80px;
	}

	.detail-title {
		font-size: 24px;
	}

	.detail-desc {
		font-size: 14px;
	}

	.detail-meta {
		flex-direction: column;
		gap: 18px;
	}

	.international-detail-media {
		padding: 20px;
	}
}

.certif-course-section {
	padding: 100px 120px;
	background: linear-gradient(180deg, #ffffff 0%, #f1f6fb 100%);
}

.certif-course-container {
	max-width: 1200px;
	margin: auto;
}

.certif-course-tabs {
	display: flex;
	justify-content: space-between;
	align-items: center;
	text-align: center;
	margin-bottom: 50px;
	border: 1px solid #023061;
	border-radius: 20px;
}

.tab-btn {
	padding: 12px 26px;
	border: 1px solid transparent;
	background: #ffffff;
	font-size: 14px;
	font-weight: 700;
	color: #023061;
	cursor: pointer;
	width: 100%;
	transition: all 0.25s ease;
}
#tab-btn-left {
	border-bottom-left-radius: 20px;
	border-top-left-radius: 20px;
}
#tab-btn-right {
	border-bottom-right-radius: 20px;
	border-top-right-radius: 20px;
}

@media (max-width: 430px) {
	.certif-course-tabs {
		margin-bottom: 30px;
		border-radius: 14px;
	}

	.tab-btn {
		padding: 10px 12px;
		font-size: 13px;
		font-weight: 700;
	}

	#tab-btn-left {
		border-top-left-radius: 14px;
		border-bottom-left-radius: 14px;
	}

	#tab-btn-right {
		border-top-right-radius: 14px;
		border-bottom-right-radius: 14px;
	}

	.tab-btn.active,
	.tab-btn:hover {
		font-size: 13px;
	}
}

.tab-btn.active,
.tab-btn:hover {
	width: 100%;
	background: #023061;
	color: #ffffff;
	border-color: #023061;
}

.certif-course-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
}

.certif-course-card {
	display: flex;
	background: #ffffff;
	border-radius: 22px;
	box-shadow: 0 25px 60px rgba(11, 27, 63, 0.08);
	overflow: hidden;
	transition: all 0.3s ease;
}

.certif-course-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 35px 90px rgba(11, 27, 63, 0.15);
}

.course-visual {
	position: relative;
	width: 230px;
	background: linear-gradient(160deg, #7a0f0f, #b11c1c);
	display: flex;
	align-items: center;
	justify-content: center;
}

.certif-course-card.completed .course-visual {
	background: linear-gradient(160deg, #0b1b3f, #023061);
}

.course-visual img {
	width: 100%;
	height: 100%;
}

.course-badge {
	position: absolute;
	top: 16px;
	left: 16px;
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 6px 12px;
	border-radius: 20px;
	font-size: 12px;
	font-weight: 800;
	color: #ffffff;
}

.course-badge.danger {
	background: #ff5b5b;
}

.course-badge.success {
	background: #22c55e;
}

.course-body {
	flex: 1;
	padding: 26px 28px;
	display: flex;
	flex-direction: column;
}

.course-body h3 {
	font-size: 18px;
	font-weight: 800;
	color: #0b1b3f;
	margin-bottom: 8px;
}

.course-body p {
	font-size: 14px;
	line-height: 1.7;
	color: #4a5d73;
	margin-bottom: 22px;
}

.course-progress {
	margin-bottom: 24px;
}

.progress-label {
	display: flex;
	justify-content: space-between;
	font-size: 13px;
	font-weight: 700;
	color: #023061;
	margin-bottom: 8px;
}

.progress-bar {
	width: 100%;
	height: 8px;
	background: #e6eef6;
	border-radius: 20px;
	overflow: hidden;
}

.progress-fill {
	height: 100%;
	background: linear-gradient(90deg, #ff5b5b, #b11c1c);
	border-radius: 20px;
}

.progress-fill.full {
	width: 100%;
	background: linear-gradient(90deg, #22c55e, #16a34a);
}

.course-footer {
	margin-top: auto;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
}

.course-status {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 13px;
	font-weight: 700;
	margin-top: 20px;
}

.course-status.lock {
	color: #b11c1c;
}

.course-status.done {
	color: #16a34a;
}

/* BUTTON */
.course-action {
	padding: 10px 22px;
	border-radius: 30px;
	font-size: 13px;
	font-weight: 800;
	text-decoration: none;
	transition: all 0.25s ease;
}

.course-action.primary {
	background: linear-gradient(135deg, #0b1b3f, #023061);
	color: #ffffff;
}
.course-action.primary:hover {
	background: #e6eef6;
	color: #023061;
	transition: all 0.3s ease-in-out;
}

.course-action.secondary {
	background: #e6eef6;
	color: #023061;
}
.course-action.secondary:hover {
	background: linear-gradient(135deg, #0b1b3f, #023061);
	color: #ffffff;
	transition: all 0.3s ease-in-out;
}

.course-action:hover {
	transform: translateY(-2px);
}

/* ===============================
   RESPONSIVE
   =============================== */

@media (max-width: 1024px) {
	.certif-course-section {
		padding: 70px 40px;
	}

	.certif-course-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 480px) {
	.course-visual {
		display: none;
	}
}

/* ===============================
   CERTIFICATION DESCRIPTION
   =============================== */

.certif-description-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 40px;
	margin-top: 80px;
}

.certif-desc-main {
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.certif-desc-block {
	background: #ffffff;
	border-left: 6px solid #023061;
	padding: 32px 36px;
	border-radius: 20px;
	box-shadow: 0 20px 60px rgba(11, 27, 63, 0.06);
	line-height: 1.8; /* Memberi ruang antar baris agar nyaman dibaca */
}

.certif-desc-block h4 {
	font-size: 20px;
	font-weight: 800;
	color: #023061;
	margin-bottom: 20px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

/* Styling untuk paragraf di dalam deskripsi API */
.certif-desc-block p {
	color: #475569;
	font-size: 15.5px;
	margin-bottom: 12px;
	line-height: 1.6;
}

/* PERBAIKAN: Jangan gunakan display: block agar titik dua (:) tidak turun */
.certif-desc-block strong {
	color: #0b1b3f;
	font-weight: 700;
	font-size: 16px;
	/* Memberikan sedikit jarak atas hanya jika dia adalah judul bagian utama */
	display: inline-block;
	margin-top: 8px;
}

/* Jika ingin membuat judul section seperti "Fasilitas" lebih menonjol */
.certif-desc-block strong:only-child,
.certif-desc-block p > strong:first-child {
	display: block;
	font-size: 17px;
	color: #023061;
	margin-bottom: 5px;
	text-decoration: underline;
	text-underline-offset: 4px;
	text-decoration-color: rgba(2, 48, 97, 0.2);
}

.desc-lead {
	font-size: 15px;
	line-height: 1.8;
	color: #4a5d73;
	margin-bottom: 22px;
}

/* LIST */
.desc-list {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.desc-list li {
	font-size: 14px;
	line-height: 1.7;
	color: #4a5d73;
	padding-left: 26px;
	position: relative;
}

.desc-list li span {
	font-weight: 800;
	color: #023061;
}

/* CHECK STYLE */
.desc-list.check li::before {
	content: "✔";
	position: absolute;
	left: 0;
	top: 0;
	color: #16a34a;
	font-weight: 900;
}

.certif-desc-side {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

/* SCHEDULE CARD */
.schedule-card {
	padding: 28px;
	border-radius: 22px;
	background: #ffffff;
	color: #0b1b3f;
	border-left: 6px solid #023061;
	box-shadow: 0 25px 60px rgba(11, 27, 63, 0.08);
}
.schedule-item.highlight strong {
	color: #16a34a;
	font-weight: 900;
}

.schedule-card h4 {
	font-size: 17px;
	font-weight: 800;
	margin-bottom: 22px;
}

.schedule-item {
	display: flex;
	flex-direction: column;
	padding: 14px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

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

.schedule-item span {
	font-size: 13px;
	opacity: 0.85;
	margin-bottom: 5px;
}

.schedule-item strong {
	font-size: 14px;
	font-weight: 800;
}

.schedule-item.highlight strong {
	color: #22c55e;
}

.contact-card {
	background: #ffffff;
	padding: 26px;
	border-radius: 20px;
	box-shadow: 0 20px 60px rgba(11, 27, 63, 0.08);
	text-align: center;
	border-left: 6px solid #023061;
}

.contact-card p {
	font-size: 13px;
	color: #6b7c93;
	margin-bottom: 6px;
}

.contact-card h3 {
	font-size: 20px;
	font-weight: 900;
	color: #023061;
	margin-bottom: 4px;
}

.contact-card span {
	font-size: 13px;
	color: #6b7c93;
}

@media (max-width: 1024px) {
	.certif-description-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 480px) {
	.certif-desc-block,
	.schedule-card,
	.contact-card {
		padding: 22px;
	}
}
@media (max-width: 430px) {
	/* GRID & SPACING */
	.certif-description-grid {
		gap: 24px;
		margin-top: 48px;
	}

	.certif-desc-main {
		gap: 24px;
	}

	/* BLOCK */
	.certif-desc-block {
		padding: 20px 20px;
		border-radius: 16px;
	}

	.certif-desc-block h4 {
		font-size: 16px;
		margin-bottom: 10px;
	}

	.desc-lead {
		font-size: 13.5px;
		line-height: 1.7;
		margin-bottom: 16px;
	}

	/* LIST */
	.desc-list {
		gap: 10px;
	}

	.desc-list li {
		font-size: 13px;
		line-height: 1.6;
		padding-left: 22px;
	}

	.desc-list li span {
		font-size: 13px;
	}

	/* SIDE COLUMN */
	.certif-desc-side {
		gap: 20px;
	}

	/* SCHEDULE CARD */
	.schedule-card {
		padding: 20px;
		border-radius: 16px;
	}

	.schedule-card h4 {
		font-size: 15px;
		margin-bottom: 16px;
	}

	.schedule-item {
		padding: 10px 0;
	}

	.schedule-item span {
		font-size: 12px;
	}

	.schedule-item strong {
		font-size: 13px;
	}

	/* CONTACT CARD */
	.contact-card {
		padding: 20px;
		border-radius: 16px;
	}

	.contact-card p {
		font-size: 12px;
	}

	.contact-card h3 {
		font-size: 17px;
	}

	.contact-card span {
		font-size: 12px;
	}
}

/* ================= FAQ CERTIFICATION ================= */

.certif-faq-grid {
	margin-top: 60px;
}

.faq-items {
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.faq-item {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 16px;
	background: #ffffff;
	border-radius: 16px;
	padding: 22px 24px;
	border: 1px solid #eef1f6;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
	transition: all 0.3s ease;
}

.faq-item:hover {
	border-color: #dbe7ff;
	box-shadow: 0 18px 40px rgba(0, 0, 0, 0.06);
}

/* Icon kiri */
.faq-item ion-icon[name="help-circle"] {
	font-size: 30px;
	color: #4f7cff;
	margin-top: 4px;
	flex-shrink: 0;
}

/* QnA wrapper */
.faq-qna {
	width: 100%;
}

/* Question */
.faq-question {
	display: flex;
	justify-content: space-between;
	align-items: center;
	cursor: pointer;
}

.faq-question h4 {
	font-size: 16px;
	font-weight: 600;
	color: #023061;
	line-height: 1.5;
}

/* Toggle icon */
.faq-toggle ion-icon {
	font-size: 20px;
	color: #64748b;
	transition: transform 0.35s ease, color 0.35s ease;
}

/* Answer */
.faq-answer {
	max-height: 0;
	overflow: hidden;
	opacity: 0;
	transition: max-height 0.45s ease, opacity 0.35s ease;
}

.faq-answer p {
	margin-top: 14px;
	font-size: 14.5px;
	line-height: 1.8;
	color: #475569;
}

/* ACTIVE STATE */
.faq-item.active {
	background: linear-gradient(180deg, #f9fbff, #ffffff);
	border-color: #4f7cff;
}

.faq-item.active .faq-question h4 {
	color: #1d4ed8;
}

.faq-item.active .faq-toggle ion-icon {
	transform: rotate(180deg);
	color: #1d4ed8;
}

.faq-item.active .faq-answer {
	max-height: 300px;
	opacity: 1;
}

@media (max-width: 430px) {
	.certif-faq-grid {
		margin-top: 40px;
	}

	.faq-items {
		gap: 14px;
	}

	.faq-item {
		align-items: flex-start;
		gap: 12px;
		padding: 18px 18px;
		border-radius: 14px;
	}

	/* Icon kiri */
	.faq-item ion-icon[name="help-circle"] {
		font-size: 24px;
		margin-top: 2px;
	}

	/* Question */
	.faq-question h4 {
		font-size: 14.5px;
		line-height: 1.45;
	}

	/* Toggle icon */
	.faq-toggle ion-icon {
		font-size: 18px;
	}

	/* Answer */
	.faq-answer p {
		margin-top: 10px;
		font-size: 13.5px;
		line-height: 1.65;
	}

	/* Active state tweak */
	.faq-item.active {
		box-shadow: 0 14px 28px rgba(79, 124, 255, 0.15);
	}

	.faq-item.active .faq-question h4 {
		font-weight: 700;
	}
}

/* ================= TAB NAV ================= */

.certif-tabs-content {
	position: relative;
}

.tab-content {
	display: none;
	animation: fadeSlide 0.45s ease;
}

.tab-content.active {
	display: block;
}

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