/* Eduint4u Multistep Journey — base styles
   All colors/sizes here are fallbacks; Elementor's Style controls
   override them per-instance via inline CSS variables/selectors. */

.e4u-steps-widget {
	--e4u-connector-active: #0B6E4F;
	max-width: 100%;
	font-family: inherit;
}

/* ---------- Horizontal stepper track ---------- */
.e4u-steps-track {
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 32px;
	gap: 8px;
}

.e4u-steps-track::before {
	content: "";
	position: absolute;
	top: 22px;
	left: 5%;
	right: 5%;
	height: 3px;
	background-color: #E9ECF3;
	z-index: 0;
}

.e4u-step {
	position: relative;
	z-index: 1;
	background: none;
	border: none;
	cursor: pointer;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	flex: 1 1 0;
	padding: 0;
	font-family: inherit;
}

.e4u-step-dot {
	width: 44px;
	height: 44px;
	line-height: 44px;
	border-radius: 50%;
	background-color: #E9ECF3;
	color: #7A8699;
	font-weight: 700;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: background-color .25s ease, color .25s ease, transform .2s ease;
	font-size: 16px;
}

.e4u-step-check { display: none; }

.e4u-step.is-active .e4u-step-dot {
	background-color: #0B6E4F;
	color: #fff;
	transform: scale(1.08);
}

.e4u-step.is-complete .e4u-step-dot {
	background-color: #B7E4D2;
	color: #0B6E4F;
}

.e4u-step.is-complete .e4u-step-num { display: none; }
.e4u-step.is-complete .e4u-step-check { display: inline; }

.e4u-step-labels {
	margin-top: 10px;
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.e4u-step-eyebrow {
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: .06em;
	color: #9AA5B4;
	font-weight: 600;
}

.e4u-step.is-active .e4u-step-eyebrow { color: #0B6E4F; }

.e4u-step-summary {
	font-size: 13px;
	color: #4B5768;
	max-width: 130px;
	line-height: 1.35;
}

/* ---------- Panels ---------- */
.e4u-panels { position: relative; }

.e4u-step-panel {
	display: none;
	background-color: #fff;
	border-radius: 12px;
	padding: 32px;
	box-sizing: border-box;
}

.e4u-step-panel.is-active { display: block; animation: e4u-fade-in .28s ease; }

@keyframes e4u-fade-in {
	from { opacity: 0; transform: translateY(6px); }
	to { opacity: 1; transform: translateY(0); }
}

.e4u-step-eyebrow-mobile {
	display: none;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .05em;
	color: #0B6E4F;
	margin-bottom: 8px;
}

.e4u-step-title {
	margin: 0 0 14px;
	font-size: 22px;
	font-weight: 700;
	color: #12213B;
	line-height: 1.3;
}

.e4u-step-content {
	color: #4B5768;
	font-size: 15px;
	line-height: 1.7;
}

.e4u-step-content p { margin: 0 0 14px; }
.e4u-step-content p:last-child { margin-bottom: 0; }

.e4u-list {
	margin: 0 0 14px;
	padding-left: 20px;
}

.e4u-list li { margin-bottom: 6px; }

/* ---------- Nav buttons ---------- */
.e4u-nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 24px;
	gap: 16px;
}

.e4u-btn {
	appearance: none;
	border: none;
	cursor: pointer;
	font-family: inherit;
	font-size: 15px;
	font-weight: 600;
	padding: 12px 26px;
	border-radius: 8px;
	transition: opacity .2s ease, transform .15s ease;
}

.e4u-btn:hover { opacity: .9; }
.e4u-btn:active { transform: scale(.98); }

.e4u-btn-prev {
	background-color: #E9ECF3;
	color: #4B5768;
}

.e4u-btn-prev:disabled {
	opacity: .45;
	cursor: not-allowed;
}

.e4u-btn-next {
	background-color: #0B6E4F;
	color: #fff;
	margin-left: auto;
}

.e4u-progress-text {
	font-size: 13px;
	color: #9AA5B4;
	font-weight: 600;
	white-space: nowrap;
}

/* ---------- Vertical timeline layout ---------- */
.e4u-vertical-list { display: flex; flex-direction: column; }

.e4u-vstep {
	display: flex;
	gap: 20px;
}

.e4u-vstep-marker {
	display: flex;
	flex-direction: column;
	align-items: center;
	flex-shrink: 0;
}

.e4u-vline {
	flex: 1;
	width: 3px;
	background-color: #E9ECF3;
	margin: 6px 0;
	min-height: 24px;
}

.e4u-vstep .e4u-step-panel {
	padding: 0 0 32px;
	background: none;
	box-shadow: none !important;
}

.e4u-vstep:last-child .e4u-step-panel { padding-bottom: 0; }

/* ---------- Accordion layout ---------- */
.e4u-accordion { display: flex; flex-direction: column; gap: 12px; }

.e4u-acc-item {
	border: 1px solid #E9ECF3;
	border-radius: 12px;
	overflow: hidden;
	background: #fff;
}

.e4u-acc-header {
	width: 100%;
	display: flex;
	align-items: center;
	gap: 16px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 18px 20px;
	text-align: left;
	font-family: inherit;
}

.e4u-acc-header .e4u-step-dot {
	width: 36px;
	height: 36px;
	line-height: 36px;
	font-size: 14px;
	flex-shrink: 0;
}

.e4u-acc-header .e4u-step-title {
	margin: 0;
	font-size: 17px;
	flex: 1;
}

.e4u-acc-arrow {
	width: 10px;
	height: 10px;
	border-right: 2px solid #9AA5B4;
	border-bottom: 2px solid #9AA5B4;
	transform: rotate(45deg);
	transition: transform .2s ease;
	flex-shrink: 0;
}

.e4u-acc-item.is-active .e4u-acc-arrow { transform: rotate(-135deg); }

.e4u-acc-body {
	max-height: 0;
	overflow: hidden;
	transition: max-height .3s ease;
	padding: 0 20px;
}

.e4u-acc-item.is-active .e4u-acc-body {
	padding: 0 20px 20px 72px;
}

/* ---------- Responsive ---------- */
@media (max-width: 767px) {
	.e4u-steps-track {
		overflow-x: auto;
		justify-content: flex-start;
		padding-bottom: 6px;
	}

	.e4u-steps-track::before { left: 22px; right: 22px; }

	.e4u-step { flex: 0 0 auto; min-width: 76px; }

	.e4u-step-summary { display: none; }

	.e4u-step-eyebrow-mobile { display: block; }

	.e4u-step-panel { padding: 22px; }

	.e4u-step-title { font-size: 19px; }

	.e4u-nav { flex-wrap: wrap; }

	.e4u-btn { flex: 1 1 auto; text-align: center; }

	.e4u-acc-item.is-active .e4u-acc-body { padding-left: 20px; }
}
