/* ========== Request Callback CTA ========== */
.asmorix-callback {
	--acb-blue: #0c5adb;
	--acb-navy: #041424;
	--acb-font: "Nunito", "Poppins", sans-serif;
	--acb-display: "Rajdhani", "Nunito", sans-serif;
	position: relative;
	padding: 12px 0 32px;
	background: transparent;
	font-family: var(--acb-font);
}

.asmorix-callback__inner {
	position: relative;
	display: flex;
	align-items: center;
	gap: 16px 24px;
	width: min(1100px, calc(100% - 40px));
	margin: 0 auto;
	padding: 22px 24px 22px 86px;
	border-radius: 16px;
	border: 1px solid rgba(12, 90, 219, 0.12);
	background: linear-gradient(135deg, #e8f3ff 0%, #d7ebff 55%, #eef6ff 100%);
	box-shadow:
		0 10px 28px rgba(12, 90, 219, 0.1),
		inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.asmorix-callback__icon {
	position: absolute;
	left: 16px;
	top: 50%;
	width: 62px;
	height: 62px;
	transform: translateY(-50%);
	filter: drop-shadow(0 8px 16px rgba(12, 90, 219, 0.3));
	animation: asmorix-callback-float 2.4s ease-in-out infinite;
}

.asmorix-callback__bubble {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 62px;
	height: 62px;
	border-radius: 50%;
	background: linear-gradient(160deg, #1a6ef0 0%, #0c5adb 55%, #0948b8 100%);
	color: #fff;
	font-family: var(--acb-display);
	font-size: 32px;
	font-weight: 800;
	line-height: 1;
	border: 3px solid rgba(255, 255, 255, 0.35);
	animation: asmorix-callback-pulse 2.4s ease-in-out infinite;
}

.asmorix-callback__bubble::after {
	content: "";
	position: absolute;
	left: 15px;
	bottom: -3px;
	width: 15px;
	height: 15px;
	background: #0c5adb;
	border-radius: 0 0 0 10px;
	transform: rotate(-28deg);
}

@keyframes asmorix-callback-float {
	0%,
	100% {
		transform: translateY(-50%);
	}
	50% {
		transform: translateY(calc(-50% - 6px));
	}
}

@keyframes asmorix-callback-pulse {
	0%,
	100% {
		box-shadow: 0 0 0 0 rgba(12, 90, 219, 0.35);
		transform: scale(1);
	}
	50% {
		box-shadow: 0 0 0 10px rgba(12, 90, 219, 0);
		transform: scale(1.06);
	}
}

.asmorix-callback__copy {
	flex: 1 1 auto;
	min-width: 180px;
}

.asmorix-callback__text {
	margin: 0;
	font-size: 24px;
	font-style: italic;
	font-weight: 700;
	line-height: 1.3;
	color: #1e293b;
}

.asmorix-callback__sub {
	margin: 6px 0 0 !important;
	font-size: 16px !important;
	font-weight: 600;
	line-height: 1.4;
	color: #64748b;
}

.asmorix-callback__form {
	flex: 0 1 auto;
	margin: 0;
	min-width: 0;
}

.asmorix-callback__hp {
	position: absolute !important;
	left: -9999px !important;
	width: 1px !important;
	height: 1px !important;
	opacity: 0 !important;
	pointer-events: none !important;
}

.asmorix-callback__group {
	display: flex;
	align-items: stretch;
	width: min(440px, 100%);
	border-radius: 12px;
	overflow: hidden;
	background: #fff;
	border: 1px solid #cfe0f5;
	box-shadow: 0 6px 18px rgba(4, 20, 36, 0.08);
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.asmorix-callback__group.is-focus {
	border-color: rgba(12, 90, 219, 0.45);
	box-shadow: 0 0 0 3px rgba(12, 90, 219, 0.12), 0 8px 20px rgba(12, 90, 219, 0.12);
}

.asmorix-callback__group.is-error {
	border-color: #f87171;
	box-shadow: 0 0 0 3px rgba(248, 113, 113, 0.15);
}

.asmorix-callback__country,
.asmorix-callback__code {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0 12px;
	background: #f8fbff;
	border-right: 1px solid #e5ebf2;
	font-size: 14px;
	font-weight: 700;
	color: #334155;
	white-space: nowrap;
}

.asmorix-callback__country::after {
	content: "";
	display: inline-block;
	width: 0;
	height: 0;
	margin-left: 6px;
	border-left: 4px solid transparent;
	border-right: 4px solid transparent;
	border-top: 5px solid #64748b;
}

.asmorix-callback__input {
	flex: 1 1 auto;
	min-width: 0;
	width: 100%;
	height: 48px;
	padding: 0 14px;
	border: none;
	outline: none;
	background: #fff;
	font-family: var(--acb-font);
	font-size: 15px;
	font-weight: 600;
	color: var(--acb-navy);
}

.asmorix-callback__input::placeholder {
	color: #94a3b8;
	font-weight: 500;
}

.asmorix-callback__submit {
	flex: 0 0 auto;
	height: 48px;
	padding: 0 20px;
	border: none;
	background: linear-gradient(180deg, #1a6ef0 0%, #0c5adb 100%);
	color: #fff;
	font-family: var(--acb-display);
	font-size: 15px;
	font-weight: 800;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	cursor: pointer;
	transition: filter 0.2s ease, transform 0.2s ease;
}

.asmorix-callback__submit:hover:not(:disabled) {
	filter: brightness(1.05);
}

.asmorix-callback__submit:active:not(:disabled) {
	transform: translateY(1px);
}

.asmorix-callback__submit:disabled {
	opacity: 0.7;
	cursor: wait;
}

.asmorix-callback__msg {
	margin: 10px 0 0 !important;
	font-size: 13px !important;
	font-weight: 700;
	line-height: 1.4;
	color: #0f766e;
}

.asmorix-callback__msg.is-error {
	color: #b91c1c;
}

.asmorix-callback__sr {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

@media (max-width: 900px) {
	.asmorix-callback__inner {
		flex-wrap: wrap;
		padding: 22px 18px 18px 86px;
	}
	.asmorix-callback__copy {
		flex: 1 1 100%;
	}
	.asmorix-callback__form {
		flex: 1 1 100%;
	}
	.asmorix-callback__group {
		width: 100%;
	}
}

@media (max-width: 560px) {
	.asmorix-callback {
		padding: 8px 0 24px;
	}
	.asmorix-callback__inner {
		width: min(100% - 28px, 1100px);
		padding: 58px 14px 16px;
		border-radius: 14px;
	}
	.asmorix-callback__icon {
		left: 50%;
		top: 0;
		transform: translate(-50%, -30%);
		width: 54px;
		height: 54px;
		animation: asmorix-callback-float-mobile 2.4s ease-in-out infinite;
	}
	.asmorix-callback__bubble {
		width: 54px;
		height: 54px;
		font-size: 28px;
	}
	.asmorix-callback__copy {
		text-align: center;
	}
	.asmorix-callback__text {
		font-size: 20px;
	}
	.asmorix-callback__sub {
		font-size: 15px !important;
	}
	.asmorix-callback__country,
	.asmorix-callback__code {
		padding: 0 8px;
		font-size: 12px;
	}
	.asmorix-callback__input,
	.asmorix-callback__submit {
		height: 46px;
	}
	.asmorix-callback__submit {
		padding: 0 14px;
		font-size: 13px;
	}
}
