/* ========== Asmorix multi-popups — 3 distinct styles ========== */
body.asmorix-pop-lock { overflow: hidden; }

.asmorix-pop {
	--font: "Nunito", "Poppins", sans-serif;
	--display: "Rajdhani", "Nunito", sans-serif;
	position: fixed;
	inset: 0;
	z-index: 1000000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 18px;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity .28s ease, visibility .28s ease;
}
.asmorix-pop.is-open {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}
.asmorix-pop__backdrop {
	position: absolute;
	inset: 0;
}
.asmorix-pop__close {
	position: absolute;
	top: 12px;
	right: 12px;
	width: 36px;
	height: 36px;
	border: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 3;
	line-height: 0;
}
.asmorix-pop__close svg { width: 16px; height: 16px; }
.asmorix-pop__hp {
	position: absolute !important;
	left: -9999px !important;
	opacity: 0 !important;
	pointer-events: none !important;
}
.asmorix-pop__msg {
	margin: 0;
	padding: 10px 12px;
	border-radius: 10px;
	font-size: 13.5px;
	line-height: 1.4;
}
.asmorix-pop__msg.is-error { background: rgba(231,76,60,.1); color: #b03a2e; }
.asmorix-pop__msg.is-success { background: rgba(39,174,96,.12); color: #1e8449; }

/* In-place success panel (replaces form content) */
.asmorix-pop__success {
	display: grid;
	justify-items: center;
	text-align: center;
	gap: 10px;
	padding: 28px 18px 22px;
	animation: asmorix-pop-success-in .35s ease;
}
.asmorix-pop__success[hidden] { display: none !important; }
.asmorix-pop__view[hidden] { display: none !important; }
.asmorix-pop.is-success [data-pop-view="form"] { display: none !important; }
.asmorix-pop.is-success [data-pop-success] { display: grid !important; }
@keyframes asmorix-pop-success-in {
	from { opacity: 0; transform: translateY(10px); }
	to { opacity: 1; transform: none; }
}
.asmorix-pop__success-icon {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	color: #16a34a;
	background: rgba(22, 163, 74, .12);
	margin-bottom: 4px;
}
.asmorix-pop__success-icon svg { width: 40px; height: 40px; }
.asmorix-pop__success-title {
	margin: 0;
	font-family: var(--display);
	font-size: clamp(1.35rem, 2.4vw, 1.7rem);
	font-weight: 700;
	line-height: 1.2;
	color: #041424;
	letter-spacing: -.02em;
}
.asmorix-pop__success-text {
	margin: 0;
	max-width: 36ch;
	font-size: 14.5px;
	line-height: 1.5;
	color: #4a5b6c;
}
.asmorix-pop__success-note {
	margin: 2px 0 0;
	font-size: 12.5px;
	font-weight: 700;
	color: #16a34a;
}
.asmorix-pop__success-phone {
	margin: 4px 0 0;
	font-size: 13px;
	font-weight: 700;
	color: #3a4a5c;
}
.asmorix-pop__success-phone a {
	color: #0c5adb;
	text-decoration: none;
	font-weight: 800;
}
.asmorix-pop__success-phone a:hover { text-decoration: underline; }
.asmorix-pop__success-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: center;
	margin-top: 10px;
}
.asmorix-pop__success-again,
.asmorix-pop__success-close {
	min-height: 42px;
	padding: 0 18px;
	border-radius: 10px;
	font: 700 13.5px/1 var(--font);
	cursor: pointer;
	transition: .18s ease;
}
.asmorix-pop__success-again {
	border: 0;
	background: #0c5adb;
	color: #fff;
}
.asmorix-pop__success-again:hover { filter: brightness(1.06); }
.asmorix-pop__success-close {
	border: 1.5px solid #c9d6e8;
	background: #fff;
	color: #041424;
}
.asmorix-pop__success-close:hover { border-color: #0c5adb; color: #0c5adb; }
.asmorix-pop--counsellor .asmorix-pop__success-icon { color: #0f9aa8; background: rgba(15, 154, 168, .14); }
.asmorix-pop--counsellor .asmorix-pop__success-note { color: #1aa87a; }
.asmorix-pop--counsellor .asmorix-pop__success-phone a { color: #0f9aa8; }
.asmorix-pop--counsellor .asmorix-pop__success-again {
	background: linear-gradient(135deg, #0f9aa8, #7ed957);
}
.asmorix-pop--callback .asmorix-pop__success-title { color: #fff; }
.asmorix-pop--callback .asmorix-pop__success-text { color: #9db0c3; }
.asmorix-pop--callback .asmorix-pop__success-note { color: #ffd200; }
.asmorix-pop--callback .asmorix-pop__success-phone { color: #9eb0c4; }
.asmorix-pop--callback .asmorix-pop__success-phone a { color: #ffd200; }
.asmorix-pop--callback .asmorix-pop__success-icon {
	color: #ffd200;
	background: rgba(255, 210, 0, .14);
}
.asmorix-pop--callback .asmorix-pop__success-again {
	background: #ffd200;
	color: #041424;
}
.asmorix-pop--callback .asmorix-pop__success-close {
	border-color: rgba(255,255,255,.2);
	background: rgba(255,255,255,.06);
	color: #fff;
}
.asmorix-pop--enquiry .asmorix-pop__success-icon {
	color: #0c5adb;
	background: rgba(12, 90, 219, .12);
}
.asmorix-pop--enquiry .asmorix-pop__success-note { color: #0c5adb; }
.asmorix-pop__field select[name="course"],
.asmorix-pop__field select[name="course"] option,
.asmorix-pop__field select[name="course"] optgroup {
	color: #000 !important;
	font-style: normal;
}
.asmorix-pop__field select[name="course"] optgroup {
	font-weight: 700;
	background: #fff;
}
.asmorix-pop__field select[name="course"] option {
	font-weight: 500;
	background: #fff;
	color: #000 !important;
}
.asmorix-pop__label { margin: 0; font-weight: 700; font-size: 12.5px; }
.asmorix-pop__label em { font-style: normal; color: #c0392b; }
.asmorix-pop__row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.asmorix-pop__phone {
	display: grid;
	grid-template-columns: 108px 1fr;
	overflow: hidden;
}
.asmorix-pop__cc { position: relative; }
.asmorix-pop__cc select {
	width: 100%;
	height: 100%;
	min-height: 44px;
	border: 0;
	padding: 0 24px 0 10px;
	font-size: 12.5px;
	font-weight: 700;
	appearance: none;
	-webkit-appearance: none;
	background: transparent;
	cursor: pointer;
}
.asmorix-pop__cc::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 10px;
	width: 6px;
	height: 6px;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: translateY(-65%) rotate(45deg);
	opacity: .55;
	pointer-events: none;
}
.asmorix-pop__slots {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 8px;
}
.asmorix-pop__slot { position: relative; cursor: pointer; }
.asmorix-pop__slot input { position: absolute; opacity: 0; pointer-events: none; }
.asmorix-pop__slot span {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 8px;
	text-align: center;
	font-size: 13px;
	font-weight: 700;
	transition: .2s ease;
}
.asmorix-pop__field.is-error input,
.asmorix-pop__field.is-error select,
.asmorix-pop__field.is-error textarea,
.asmorix-pop__phone.is-error {
	border-color: #e74c3c !important;
	box-shadow: 0 0 0 3px rgba(231,76,60,.12);
}
.asmorix-pop__field-error {
	margin: 4px 0 0;
	font-size: 11.5px;
	font-weight: 700;
	line-height: 1.3;
	color: #c0392b;
}
.asmorix-pop__field.is-error .asmorix-pop__locs span,
.asmorix-pop__field.is-error .asmorix-pop__slots span,
.asmorix-pop__locs.is-error span,
.asmorix-pop__slots.is-error span {
	border-color: #e74c3c !important;
}

/* ===== 1) Talk to Counsellor — teal → lime green (user palette) ===== */
.asmorix-pop--counsellor .asmorix-pop__backdrop {
	background:
		radial-gradient(720px 400px at 12% 0%, rgba(15, 154, 168, .38), transparent 52%),
		radial-gradient(640px 360px at 92% 100%, rgba(126, 217, 87, .32), transparent 55%),
		rgba(8, 40, 42, .62);
	backdrop-filter: blur(8px);
}
.asmorix-pop--counsellor .asmorix-pop__dialog {
	position: relative;
	z-index: 1;
	width: min(760px, 100%);
	display: grid;
	grid-template-columns: 240px 1fr;
	overflow: hidden;
	border-radius: 22px;
	background: linear-gradient(180deg, #ffffff 0%, #f4fcf8 55%, #eefaf2 100%);
	border: 1px solid rgba(15, 154, 168, .28);
	box-shadow:
		0 32px 72px rgba(15, 154, 168, .22),
		0 0 0 1px rgba(255, 255, 255, .65) inset;
	font-family: var(--font);
	transform: translateY(20px) scale(.97);
	opacity: 0;
	transition: transform .34s cubic-bezier(.22,1,.36,1), opacity .28s ease;
}
.asmorix-pop--counsellor.is-open .asmorix-pop__dialog {
	transform: none;
	opacity: 1;
}
.asmorix-pop--counsellor .asmorix-pop__aside {
	position: relative;
	padding: 28px 22px;
	background: linear-gradient(180deg, #0f9aa8 0%, #2db88a 48%, #7ed957 100%);
	color: #fff;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 20px;
	overflow: hidden;
}
.asmorix-pop--counsellor .asmorix-pop__aside::before {
	content: "";
	position: absolute;
	right: -36px;
	top: -28px;
	width: 170px;
	height: 170px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(255, 255, 255, .32), transparent 68%);
	pointer-events: none;
}
.asmorix-pop--counsellor .asmorix-pop__aside::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 4px;
	background: linear-gradient(90deg, #0f9aa8, #7ed957, #0f9aa8);
}
.asmorix-pop--counsellor .asmorix-pop__aside > * { position: relative; z-index: 1; }
.asmorix-pop--counsellor .asmorix-pop__aside-icon {
	width: 54px;
	height: 54px;
	border-radius: 16px;
	background: rgba(255, 255, 255, .28);
	border: 1px solid rgba(255, 255, 255, .45);
	display: grid;
	place-items: center;
	box-shadow: 0 8px 20px rgba(8, 80, 70, .18);
}
.asmorix-pop--counsellor .asmorix-pop__aside-icon svg { width: 28px; height: 28px; }
.asmorix-pop--counsellor .asmorix-pop__aside h2 {
	margin: 12px 0 8px;
	font-family: var(--display);
	font-size: 28px;
	line-height: 1.1;
	font-weight: 700;
	color: #fff;
	text-shadow: 0 2px 12px rgba(8, 70, 60, .22);
}
.asmorix-pop--counsellor .asmorix-pop__aside p {
	margin: 0;
	font-size: 14px;
	line-height: 1.5;
	color: rgba(255, 255, 255, .95);
}
.asmorix-pop--counsellor .asmorix-pop__aside ul {
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 8px;
}
.asmorix-pop--counsellor .asmorix-pop__aside li {
	font-size: 13px;
	font-weight: 700;
	color: #f3fff0;
}
.asmorix-pop--counsellor .asmorix-pop__body { padding: 26px 24px 22px; background: transparent; }
.asmorix-pop--counsellor .asmorix-pop__close {
	background: #fff;
	color: #0f9aa8;
	border-radius: 12px;
	border: 1px solid rgba(15, 154, 168, .35);
	box-shadow: 0 6px 16px rgba(15, 154, 168, .16);
}
.asmorix-pop--counsellor .asmorix-pop__close:hover {
	background: linear-gradient(135deg, #0f9aa8, #7ed957);
	color: #fff;
	border-color: transparent;
}
.asmorix-pop--counsellor .asmorix-pop__form { display: grid; gap: 12px; }
.asmorix-pop--counsellor .asmorix-pop__label { color: #0d3f42; }
.asmorix-pop--counsellor input,
.asmorix-pop--counsellor select,
.asmorix-pop--counsellor textarea {
	width: 100%;
	box-sizing: border-box;
	border: 1.5px solid #b8e8d8;
	border-radius: 12px;
	padding: 11px 12px;
	font: 500 14.5px/1.35 var(--font);
	color: #0d3f42;
	background: linear-gradient(180deg, #ffffff 0%, #f5fcf8 100%);
	transition: border-color .2s ease, box-shadow .2s ease;
}
.asmorix-pop--counsellor select[name="course"],
.asmorix-pop--counsellor select[name="course"] option,
.asmorix-pop--counsellor select[name="course"] optgroup {
	color: #000 !important;
	background: #fff;
	font-style: normal;
}
.asmorix-pop--counsellor .asmorix-pop__phone {
	border: 1.5px solid #b8e8d8;
	border-radius: 12px;
	background: linear-gradient(180deg, #ffffff 0%, #f5fcf8 100%);
	overflow: hidden;
}
.asmorix-pop--counsellor .asmorix-pop__cc {
	border-right: 1.5px solid #b8e8d8;
	background: linear-gradient(180deg, #d8f5ee 0%, #c8f0d8 100%);
	color: #0f9aa8;
}
.asmorix-pop--counsellor .asmorix-pop__phone input { border: 0; border-radius: 0; background: transparent; }
.asmorix-pop--counsellor input:focus,
.asmorix-pop--counsellor select:focus,
.asmorix-pop--counsellor textarea:focus {
	outline: none;
	border-color: #0f9aa8;
	background: #fff;
	box-shadow: 0 0 0 3px rgba(15, 154, 168, .2);
}
.asmorix-pop--counsellor .asmorix-pop__phone:focus-within {
	border-color: #0f9aa8;
	box-shadow: 0 0 0 3px rgba(15, 154, 168, .2);
}
.asmorix-pop--counsellor .asmorix-pop__slot span {
	border: 1.5px solid #b8e8d8;
	border-radius: 999px;
	background: #fff;
	color: #0d3f42;
}
.asmorix-pop--counsellor .asmorix-pop__slot:hover span {
	border-color: #0f9aa8;
	color: #0f9aa8;
}
.asmorix-pop--counsellor .asmorix-pop__slot input:checked + span {
	background: linear-gradient(135deg, #0f9aa8 0%, #7ed957 100%);
	border-color: #0f9aa8;
	color: #fff;
	box-shadow: 0 8px 18px rgba(15, 154, 168, .28);
}
.asmorix-pop--counsellor .asmorix-pop__submit {
	width: 100%;
	min-height: 48px;
	border: 0;
	border-radius: 14px;
	background: linear-gradient(135deg, #0f9aa8 0%, #2db88a 50%, #7ed957 100%);
	color: #fff;
	font-family: var(--display);
	font-size: 17px;
	font-weight: 700;
	cursor: pointer;
	box-shadow: 0 12px 28px rgba(15, 154, 168, .34);
	transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}
.asmorix-pop--counsellor .asmorix-pop__submit:hover {
	filter: brightness(1.06);
	transform: translateY(-1px);
	box-shadow: 0 16px 32px rgba(15, 154, 168, .42);
}
.asmorix-pop--counsellor .asmorix-pop__submit:disabled { opacity: .8; cursor: wait; transform: none; }
.asmorix-pop--counsellor .asmorix-pop__note {
	margin: 0;
	text-align: center;
	font-size: 12px;
	color: #5b8a7e;
}
.asmorix-pop__contact {
	margin: 2px 0 0;
	text-align: center;
	font-size: 12.5px;
	font-weight: 700;
	line-height: 1.4;
	color: #041424;
}
.asmorix-pop__contact a {
	color: #0c5adb;
	text-decoration: none;
	font-weight: 800;
	white-space: nowrap;
}
.asmorix-pop__contact a:hover { text-decoration: underline; }
.asmorix-pop--counsellor .asmorix-pop__contact { color: #4a7a70; }
.asmorix-pop--counsellor .asmorix-pop__contact a { color: #0f9aa8; }
.asmorix-pop--callback .asmorix-pop__contact { color: #9eb0c4; }
.asmorix-pop--callback .asmorix-pop__contact a { color: #ffd200; }
.asmorix-pop--enquiry .asmorix-pop__contact { color: #3a4a5c; }
.asmorix-pop--enquiry .asmorix-pop__contact a { color: #0c5adb; }

/* ===== 2) Request a Callback — bold yellow punch card ===== */
.asmorix-pop--callback .asmorix-pop__backdrop {
	background:
		radial-gradient(600px 300px at 80% 0%, rgba(255,210,0,.28), transparent 50%),
		rgba(4, 20, 36, .8);
	backdrop-filter: blur(8px);
}
.asmorix-pop--callback .asmorix-pop__dialog {
	position: relative;
	z-index: 1;
	width: min(480px, 100%);
	border-radius: 18px;
	background: #041424;
	color: #fff;
	overflow: hidden;
	box-shadow: 0 28px 70px rgba(0,0,0,.45);
	font-family: var(--font);
	transform: translateY(24px);
	opacity: 0;
	transition: transform .32s cubic-bezier(.22,1,.36,1), opacity .28s ease;
}
.asmorix-pop--callback.is-open .asmorix-pop__dialog {
	transform: none;
	opacity: 1;
}
.asmorix-pop--callback .asmorix-pop__dialog::before {
	content: "";
	display: block;
	height: 8px;
	background: linear-gradient(90deg, #ffd200, #ffb800);
}
.asmorix-pop--callback .asmorix-pop__body { padding: 22px 22px 20px; }
.asmorix-pop--callback .asmorix-pop__eyebrow {
	margin: 0 0 8px;
	display: inline-flex;
	padding: 5px 10px;
	border-radius: 999px;
	background: rgba(255,210,0,.16);
	color: #ffd200 !important;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: .06em;
	text-transform: uppercase;
}
.asmorix-pop--callback #asmorix-pop-callback-title,
.asmorix-pop--callback h2 {
	margin: 0 0 8px;
	font-family: var(--display);
	font-size: clamp(1.65rem, 4vw, 1.95rem);
	line-height: 1.08;
	font-weight: 700;
	color: #ffffff !important;
	letter-spacing: -.02em;
}
.asmorix-pop--callback #asmorix-pop-callback-title span,
.asmorix-pop--callback h2 span {
	color: #ffd200 !important;
}
.asmorix-pop--callback .asmorix-pop__lead {
	margin: 0 0 16px;
	color: #9db0c3;
	font-size: 14px;
	line-height: 1.45;
}
.asmorix-pop--callback .asmorix-pop__close {
	background: rgba(255,255,255,.08);
	color: #fff;
	border-radius: 999px;
}
.asmorix-pop--callback .asmorix-pop__form { display: grid; gap: 12px; }
.asmorix-pop--callback .asmorix-pop__label { color: #d7e2ee; }
.asmorix-pop--callback .asmorix-pop__label em { color: #ffd200; }
.asmorix-pop--callback input,
.asmorix-pop--callback select {
	width: 100%;
	box-sizing: border-box;
	border: 1.5px solid rgba(255,255,255,.14);
	border-radius: 10px;
	padding: 12px;
	font: 600 14.5px/1.3 var(--font);
	color: #fff;
	background: rgba(255,255,255,.06);
}
.asmorix-pop--callback .asmorix-pop__phone {
	border: 1.5px solid rgba(255,255,255,.14);
	border-radius: 10px;
	background: rgba(255,255,255,.06);
}
.asmorix-pop--callback .asmorix-pop__cc {
	border-right: 1.5px solid rgba(255,255,255,.14);
	background: rgba(255,210,0,.1);
	color: #ffd200;
}
.asmorix-pop--callback .asmorix-pop__phone input { border: 0; background: transparent; border-radius: 0; }
.asmorix-pop--callback input:focus,
.asmorix-pop--callback select:focus {
	outline: none;
	border-color: #ffd200;
	box-shadow: 0 0 0 3px rgba(255,210,0,.18);
}
.asmorix-pop--callback .asmorix-pop__phone:focus-within {
	border-color: #ffd200;
	box-shadow: 0 0 0 3px rgba(255,210,0,.18);
}
.asmorix-pop--callback .asmorix-pop__slots {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 8px;
}
.asmorix-pop--callback .asmorix-pop__slot { position: relative; cursor: pointer; }
.asmorix-pop--callback .asmorix-pop__slot input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
	width: 0;
	height: 0;
	padding: 0;
	border: 0;
}
.asmorix-pop--callback .asmorix-pop__slot span {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 8px 6px;
	border: 1.5px solid rgba(255,255,255,.14);
	border-radius: 10px;
	background: rgba(255,255,255,.04);
	color: #d7e2ee;
	font-size: 13px;
	font-weight: 700;
	text-align: center;
	transition: .18s ease;
}
.asmorix-pop--callback .asmorix-pop__slot:hover span {
	border-color: rgba(255, 210, 0, .55);
	color: #ffd200;
}
.asmorix-pop--callback .asmorix-pop__slot input:checked + span {
	background: #ffd200;
	border-color: #ffd200;
	color: #041424;
	box-shadow: 0 8px 18px rgba(255, 210, 0, .28);
}
.asmorix-pop--callback .asmorix-pop__submit {
	width: 100%;
	min-height: 50px;
	border: 0;
	border-radius: 10px;
	background: #ffd200;
	color: #041424;
	font-family: var(--display);
	font-size: 18px;
	font-weight: 700;
	text-transform: uppercase;
	cursor: pointer;
	box-shadow: 4px 4px 0 rgba(255,210,0,.25);
	transition: filter .18s ease, transform .18s ease;
}
.asmorix-pop--callback .asmorix-pop__submit:hover {
	filter: brightness(1.05);
	transform: translateY(-1px);
}
.asmorix-pop--callback .asmorix-pop__note {
	margin: 0;
	text-align: center;
	color: #7f93a8;
	font-size: 12px;
}
.asmorix-pop--callback .asmorix-pop__msg.is-error { background: rgba(231,76,60,.18); color: #ffb4ab; }
.asmorix-pop--callback .asmorix-pop__msg.is-success { background: rgba(39,174,96,.18); color: #9dffc0; }

/* ===== 3) Enquiry Form — corporate-style 2-column (blue aside + form) ===== */
.asmorix-pop--enquiry .asmorix-pop__backdrop {
	background:
		radial-gradient(1000px 480px at 20% 0%, rgba(12, 90, 219, 0.32), transparent 55%),
		radial-gradient(700px 360px at 90% 100%, rgba(255, 210, 0, 0.12), transparent 50%),
		rgba(4, 20, 36, 0.76);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}
.asmorix-pop--enquiry .asmorix-pop__dialog {
	position: relative;
	z-index: 1;
	width: min(920px, 100%);
	max-height: min(92vh, 760px);
	overflow: auto;
	overscroll-behavior: contain;
	display: grid;
	grid-template-columns: minmax(240px, 0.9fr) 1.35fr;
	background: #fff;
	border-radius: 22px;
	border: 0;
	box-shadow:
		0 0 0 1px rgba(255, 255, 255, 0.28),
		0 32px 90px rgba(4, 20, 36, 0.42);
	font-family: var(--font);
	color: #041424;
	transform: translateY(20px) scale(0.97);
	opacity: 0;
	transition: transform 0.34s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.28s ease;
}
.asmorix-pop--enquiry .asmorix-pop__dialog::before,
.asmorix-pop--enquiry .asmorix-pop__dialog::after {
	display: none;
}
.asmorix-pop--enquiry.is-open .asmorix-pop__dialog {
	transform: translateY(0) scale(1);
	opacity: 1;
}
.asmorix-pop--enquiry .asmorix-pop__aside {
	position: relative;
	padding: 28px 24px 24px;
	background: linear-gradient(165deg, #062a63 0%, #0c5adb 48%, #0a3f9e 100%);
	color: #fff;
	overflow: hidden;
}
.asmorix-pop--enquiry .asmorix-pop__aside::before {
	content: "";
	position: absolute;
	inset: auto -40px -60px auto;
	width: 220px;
	height: 220px;
	border-radius: 50%;
	background: rgba(255, 210, 0, 0.16);
	pointer-events: none;
}
.asmorix-pop--enquiry .asmorix-pop__aside::after {
	content: "";
	position: absolute;
	top: -50px;
	left: -40px;
	width: 160px;
	height: 160px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.08);
	pointer-events: none;
}
.asmorix-pop--enquiry .asmorix-pop__aside-eyebrow {
	position: relative;
	z-index: 1;
	display: inline-flex;
	align-items: center;
	margin: 0 0 14px;
	padding: 5px 10px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.14);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #fff;
}
.asmorix-pop--enquiry .asmorix-pop__aside-title {
	position: relative;
	z-index: 1;
	margin: 0 0 10px;
	font-family: var(--display);
	font-size: clamp(26px, 3vw, 34px);
	font-weight: 700;
	line-height: 1.15;
	letter-spacing: -0.02em;
	color: #ffffff !important;
}
.asmorix-pop--enquiry .asmorix-pop__aside-title span {
	color: #ffd200 !important;
}
.asmorix-pop--enquiry .asmorix-pop__aside-lead {
	position: relative;
	z-index: 1;
	margin: 0 0 18px;
	font-size: 14px;
	line-height: 1.55;
	color: rgba(255, 255, 255, 0.86);
}
.asmorix-pop--enquiry .asmorix-pop__aside-list {
	position: relative;
	z-index: 1;
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 10px;
}
.asmorix-pop--enquiry .asmorix-pop__aside-list li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 13.5px;
	font-weight: 600;
	line-height: 1.4;
	color: #fff;
}
.asmorix-pop--enquiry .asmorix-pop__aside-list li svg {
	width: 18px;
	height: 18px;
	flex-shrink: 0;
	margin-top: 1px;
	color: #ffd200;
}
.asmorix-pop--enquiry .asmorix-pop__aside-foot {
	position: relative;
	z-index: 1;
	margin-top: 22px;
	padding-top: 16px;
	border-top: 1px solid rgba(255, 255, 255, 0.18);
	font-size: 12.5px;
	color: rgba(255, 255, 255, 0.8);
}
.asmorix-pop--enquiry .asmorix-pop__aside-foot a {
	color: #fff;
	font-weight: 800;
	text-decoration: none;
	border-bottom: 1px solid rgba(255, 210, 0, 0.55);
}
.asmorix-pop--enquiry .asmorix-pop__body {
	position: relative;
	z-index: 1;
	padding: 24px 26px 22px;
	background: linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
	overflow: auto;
}
.asmorix-pop--enquiry .asmorix-pop__body::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, #ffd200 0%, #ffe566 40%, #0c5adb 100%);
}
.asmorix-pop--enquiry .asmorix-pop__title {
	margin: 0 0 4px;
	padding-right: 40px;
	font-family: var(--display);
	font-size: clamp(22px, 2.6vw, 28px);
	font-weight: 700;
	line-height: 1.15;
	letter-spacing: -0.02em;
	color: #041424;
}
.asmorix-pop--enquiry .asmorix-pop__title span {
	color: #0c5adb;
}
.asmorix-pop--enquiry .asmorix-pop__lead {
	margin: 0 0 14px;
	font-size: 13.5px;
	line-height: 1.5;
	color: #5b6b7c;
}
.asmorix-pop--enquiry .asmorix-pop__close {
	top: 12px;
	right: 12px;
	width: 34px;
	height: 34px;
	border-radius: 999px;
	background: #f4f7fb;
	color: #041424;
	border: 0;
	box-shadow: none;
}
.asmorix-pop--enquiry .asmorix-pop__close:hover {
	background: #e8eef7;
	color: #0c5adb;
}
.asmorix-pop--enquiry .asmorix-pop__form { display: grid; gap: 12px; }
.asmorix-pop--enquiry .asmorix-pop__field { display: grid; gap: 5px; }
.asmorix-pop--enquiry .asmorix-pop__row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
}
.asmorix-pop--enquiry .asmorix-pop__label {
	margin: 0;
	font-size: 12.5px;
	font-weight: 700;
	color: #041424;
}
.asmorix-pop--enquiry .asmorix-pop__label em { color: #e11d48; }
.asmorix-pop--enquiry input,
.asmorix-pop--enquiry select,
.asmorix-pop--enquiry textarea {
	width: 100%;
	min-height: 42px;
	padding: 0 12px;
	border: 1.5px solid #e4ebf3;
	border-radius: 10px;
	background: #fff;
	font: 600 14px/1.3 var(--font);
	color: #041424;
	outline: none;
	transition: border-color .18s ease, box-shadow .18s ease;
	box-sizing: border-box;
}
.asmorix-pop--enquiry select[name="course"],
.asmorix-pop--enquiry select[name="course"] option,
.asmorix-pop--enquiry select[name="course"] optgroup {
	color: #041424;
	background: #fff;
}
.asmorix-pop--enquiry .asmorix-pop__phone {
	display: grid;
	grid-template-columns: 104px 1fr;
	align-items: stretch;
	border: 1.5px solid #e4ebf3;
	border-radius: 10px;
	overflow: hidden;
	background: #fff;
}
.asmorix-pop--enquiry .asmorix-pop__cc {
	border-right: 1.5px solid #e4ebf3;
	background: #f4f7fb;
}
.asmorix-pop--enquiry .asmorix-pop__cc select {
	min-height: 40px;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
}
.asmorix-pop--enquiry .asmorix-pop__phone input {
	border: 0;
	border-radius: 0;
	min-height: 40px;
	background: transparent;
	box-shadow: none;
}
.asmorix-pop--enquiry input:focus,
.asmorix-pop--enquiry select:focus,
.asmorix-pop--enquiry textarea:focus {
	border-color: #0c5adb;
	box-shadow: 0 0 0 3px rgba(12, 90, 219, .12);
}
.asmorix-pop--enquiry .asmorix-pop__phone:focus-within {
	border-color: #0c5adb;
	box-shadow: 0 0 0 3px rgba(12, 90, 219, .12);
}
.asmorix-pop--enquiry .asmorix-pop__locs {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 8px;
}
.asmorix-pop--enquiry .asmorix-pop__loc { position: relative; cursor: pointer; }
.asmorix-pop--enquiry .asmorix-pop__loc input { position: absolute; opacity: 0; pointer-events: none; }
.asmorix-pop--enquiry .asmorix-pop__loc span {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 40px;
	padding: 0 8px;
	border-radius: 10px;
	border: 1.5px solid #e4ebf3;
	background: #fff;
	font-size: 13px;
	font-weight: 700;
	color: #3a4a5c;
	transition: .18s ease;
}
.asmorix-pop--enquiry .asmorix-pop__loc:hover span {
	border-color: #0c5adb;
	color: #0c5adb;
}
.asmorix-pop--enquiry .asmorix-pop__loc input:checked + span {
	background: #0c5adb;
	border-color: #0c5adb;
	color: #ffd200;
	box-shadow: 0 8px 18px rgba(12, 90, 219, .28);
}
.asmorix-pop--enquiry textarea {
	min-height: 64px;
	max-height: 96px;
	resize: vertical;
	padding-top: 10px;
	padding-bottom: 10px;
}
.asmorix-pop--enquiry .asmorix-pop__submit {
	width: 100%;
	min-height: 46px;
	margin-top: 2px;
	border: 0;
	border-radius: 12px;
	background: linear-gradient(135deg, #0c5adb 0%, #0946b0 55%, #041424 140%);
	color: #fff;
	font-family: var(--display);
	font-size: 15px;
	font-weight: 700;
	letter-spacing: .05em;
	text-transform: uppercase;
	cursor: pointer;
	box-shadow: 0 12px 28px rgba(12, 90, 219, .34);
	position: relative;
	overflow: hidden;
	transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}
.asmorix-pop--enquiry .asmorix-pop__submit::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 3px;
	background: #ffd200;
}
.asmorix-pop--enquiry .asmorix-pop__submit:hover {
	filter: brightness(1.06);
	transform: translateY(-1px);
	box-shadow: 0 16px 32px rgba(12, 90, 219, .4);
}
.asmorix-pop--enquiry .asmorix-pop__submit:disabled {
	opacity: .72;
	cursor: wait;
	transform: none;
}
.asmorix-pop--enquiry .asmorix-pop__msg { padding: 8px 10px; font-size: 12.5px; border-radius: 10px; }
.asmorix-pop--enquiry .asmorix-pop__contact {
	margin: 0;
	text-align: center;
	font-size: 12.5px;
}

/* ===== 4) Start Course — student enrollment interest ===== */
.asmorix-pop--startcourse .asmorix-pop__backdrop {
	background:
		radial-gradient(720px 400px at 80% 0%, rgba(30, 75, 178, .32), transparent 52%),
		radial-gradient(640px 360px at 10% 100%, rgba(197, 108, 214, .28), transparent 55%),
		rgba(18, 12, 42, .78);
	backdrop-filter: blur(8px);
}
.asmorix-pop--startcourse .asmorix-pop__dialog {
	position: relative;
	z-index: 1;
	width: min(720px, 100%);
	max-height: none;
	overflow: hidden;
	border-radius: 18px;
	background: linear-gradient(165deg, #ffffff 0%, #f5f3fb 55%, #f8effa 100%);
	border: 1px solid rgba(110, 88, 196, .22);
	box-shadow: 0 28px 70px rgba(34, 20, 72, .34);
	font-family: var(--font);
	transform: translateY(16px);
	opacity: 0;
	transition: transform .3s ease, opacity .28s ease;
}
.asmorix-pop--startcourse .asmorix-pop__dialog::before {
	content: "";
	position: absolute;
	inset: 0 0 auto 0;
	height: 5px;
	background: linear-gradient(90deg, #1d4db7 0%, #6e58c4 50%, #c56cd6 100%);
	z-index: 2;
}
.asmorix-pop--startcourse.is-open .asmorix-pop__dialog {
	transform: none;
	opacity: 1;
}
.asmorix-pop--startcourse .asmorix-pop__body {
	position: relative;
	z-index: 1;
	padding: 20px 24px 18px;
	overflow: hidden;
}
.asmorix-pop--startcourse .asmorix-pop__header {
	margin: 0 0 14px;
	padding: 14px 16px;
	border-radius: 14px;
	background: linear-gradient(135deg, #1d4db7 0%, #6e58c4 52%, #c56cd6 100%);
	box-shadow: 0 12px 28px rgba(110, 88, 196, .28);
}
.asmorix-pop--startcourse .asmorix-pop__eyebrow {
	margin: 0 0 4px;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, .88);
}
.asmorix-pop--startcourse .asmorix-pop__header h2 {
	margin: 0 0 4px;
	font-family: var(--display);
	font-size: clamp(1.3rem, 2.1vw, 1.65rem);
	font-weight: 700;
	color: #fff;
	letter-spacing: -.02em;
	line-height: 1.15;
}
.asmorix-pop--startcourse .asmorix-pop__header p {
	margin: 0;
	color: rgba(255, 255, 255, .86);
	font-size: 12.5px;
	line-height: 1.4;
}
.asmorix-pop--startcourse .asmorix-pop__close {
	top: 12px;
	right: 12px;
	width: 34px;
	height: 34px;
	background: #fff;
	color: #6e58c4;
	border-radius: 10px;
	border: 1px solid rgba(110, 88, 196, .28);
	box-shadow: 0 6px 16px rgba(34, 20, 72, .1);
}
.asmorix-pop--startcourse .asmorix-pop__close:hover {
	background: linear-gradient(135deg, #1d4db7, #c56cd6);
	color: #fff;
	border-color: transparent;
}
.asmorix-pop--startcourse .asmorix-pop__form { display: grid; gap: 10px; }
.asmorix-pop--startcourse .asmorix-pop__field { display: grid; gap: 5px; }
.asmorix-pop--startcourse .asmorix-pop__row { gap: 10px; }
.asmorix-pop--startcourse .asmorix-pop__label {
	color: #24183f;
	font-size: 12px;
}
.asmorix-pop--startcourse .asmorix-pop__label em { color: #e11d48; }
.asmorix-pop--startcourse input,
.asmorix-pop--startcourse select {
	width: 100%;
	box-sizing: border-box;
	border: 1.5px solid #d5cceb;
	border-radius: 10px;
	padding: 9px 11px;
	font: 500 13.5px/1.3 var(--font);
	color: #24183f;
	background: linear-gradient(180deg, #fff 0%, #f8f5fc 100%);
	min-height: 40px;
	transition: border-color .2s ease, box-shadow .2s ease;
}
.asmorix-pop--startcourse select[name="course"],
.asmorix-pop--startcourse select[name="course"] option,
.asmorix-pop--startcourse select[name="course"] optgroup {
	color: #000 !important;
	background: #fff;
}
.asmorix-pop--startcourse .asmorix-pop__phone {
	border: 1.5px solid #d5cceb;
	border-radius: 10px;
	background: linear-gradient(180deg, #fff 0%, #f8f5fc 100%);
	min-height: 40px;
	overflow: hidden;
}
.asmorix-pop--startcourse .asmorix-pop__cc {
	border-right: 1.5px solid #d5cceb;
	background: linear-gradient(180deg, #e8e2f8 0%, #f0dff6 100%);
	color: #5b45b0;
}
.asmorix-pop--startcourse .asmorix-pop__phone input {
	border: 0;
	border-radius: 0;
	min-height: 38px;
	background: transparent;
}
.asmorix-pop--startcourse input:focus,
.asmorix-pop--startcourse select:focus {
	outline: none;
	border-color: #6e58c4;
	background: #fff;
	box-shadow: 0 0 0 3px rgba(110, 88, 196, .18);
}
.asmorix-pop--startcourse .asmorix-pop__phone:focus-within {
	border-color: #6e58c4;
	box-shadow: 0 0 0 3px rgba(110, 88, 196, .18);
}
.asmorix-pop--startcourse .asmorix-pop__locs,
.asmorix-pop--startcourse .asmorix-pop__slots--batch {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 8px;
}
.asmorix-pop--startcourse .asmorix-pop__slots--start {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 8px;
}
.asmorix-pop--startcourse .asmorix-pop__loc,
.asmorix-pop--startcourse .asmorix-pop__slot { position: relative; cursor: pointer; }
.asmorix-pop--startcourse .asmorix-pop__loc input,
.asmorix-pop--startcourse .asmorix-pop__slot input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
	width: 0;
	height: 0;
	padding: 0;
	border: 0;
}
.asmorix-pop--startcourse .asmorix-pop__loc span,
.asmorix-pop--startcourse .asmorix-pop__slot span {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 36px;
	padding: 6px 4px;
	border: 1.5px solid #d5cceb;
	border-radius: 10px;
	background: #fff;
	font-size: 12px;
	font-weight: 700;
	color: #3a2a5c;
	text-align: center;
	transition: .18s ease;
}
.asmorix-pop--startcourse .asmorix-pop__loc:hover span,
.asmorix-pop--startcourse .asmorix-pop__slot:hover span {
	border-color: #6e58c4;
	color: #5b45b0;
}
.asmorix-pop--startcourse .asmorix-pop__loc input:checked + span,
.asmorix-pop--startcourse .asmorix-pop__slot input:checked + span {
	border-color: #1d4db7;
	background: linear-gradient(135deg, #1d4db7 0%, #6e58c4 50%, #c56cd6 100%);
	color: #fff;
	box-shadow: 0 8px 18px rgba(110, 88, 196, .28);
}
.asmorix-pop--startcourse .asmorix-pop__submit {
	width: 100%;
	min-height: 44px;
	margin-top: 2px;
	border: 0;
	border-radius: 12px;
	background: linear-gradient(135deg, #1d4db7 0%, #6e58c4 50%, #c56cd6 100%);
	color: #fff;
	font-family: var(--display);
	font-size: 15px;
	font-weight: 700;
	letter-spacing: .03em;
	text-transform: uppercase;
	cursor: pointer;
	box-shadow: 0 12px 28px rgba(110, 88, 196, .34);
	transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}
.asmorix-pop--startcourse .asmorix-pop__submit:hover {
	filter: brightness(1.05);
	transform: translateY(-1px);
	box-shadow: 0 16px 32px rgba(110, 88, 196, .42);
}
.asmorix-pop--startcourse .asmorix-pop__submit:disabled {
	opacity: .72;
	cursor: wait;
	transform: none;
}
.asmorix-pop--startcourse .asmorix-pop__note {
	margin: 0;
	text-align: center;
	font-size: 12px;
	color: #6b5b88;
}
.asmorix-pop--startcourse .asmorix-pop__contact { color: #4a3a6a; }
.asmorix-pop--startcourse .asmorix-pop__contact a { color: #5b45b0; }
.asmorix-pop--startcourse .asmorix-pop__success-icon {
	color: #6e58c4;
	background: rgba(110, 88, 196, .14);
}
.asmorix-pop--startcourse .asmorix-pop__success-note { color: #6e58c4; }
.asmorix-pop--startcourse .asmorix-pop__success-phone a { color: #5b45b0; }
.asmorix-pop--startcourse .asmorix-pop__success-again {
	background: linear-gradient(135deg, #1d4db7, #c56cd6);
}

@media (max-width: 720px) {
	.asmorix-pop--counsellor .asmorix-pop__dialog,
	.asmorix-pop--enquiry .asmorix-pop__dialog {
		grid-template-columns: 1fr;
		max-height: 92vh;
		overflow: auto;
	}
	.asmorix-pop--counsellor .asmorix-pop__aside { padding: 18px; }
	.asmorix-pop--counsellor .asmorix-pop__aside h2 { font-size: 24px; }
	.asmorix-pop--counsellor .asmorix-pop__aside ul { display: none; }
	.asmorix-pop--enquiry .asmorix-pop__aside { padding: 20px 18px 16px; }
	.asmorix-pop--enquiry .asmorix-pop__aside-title { font-size: 24px; }
	.asmorix-pop--enquiry .asmorix-pop__aside-list { display: none; }
}
@media (max-width: 560px) {
	.asmorix-pop { padding: 10px; align-items: flex-end; }
	.asmorix-pop__row,
	.asmorix-pop--enquiry .asmorix-pop__row,
	.asmorix-pop--enquiry .asmorix-pop__locs,
	.asmorix-pop--startcourse .asmorix-pop__locs,
	.asmorix-pop--startcourse .asmorix-pop__slots--batch,
	.asmorix-pop--startcourse .asmorix-pop__slots--start,
	.asmorix-pop__slots { grid-template-columns: 1fr 1fr; }
	.asmorix-pop--callback h2 { font-size: 26px; }
	.asmorix-pop--enquiry .asmorix-pop__dialog,
	.asmorix-pop--startcourse .asmorix-pop__dialog {
		width: 100%;
		max-height: 92vh;
		overflow: auto;
	}
	.asmorix-pop--enquiry .asmorix-pop__body,
	.asmorix-pop--startcourse .asmorix-pop__body { padding: 16px 14px 14px; }
}
