/**
 * Floating quick-contact CTA (right side)
 * Icon stays fixed on the right; label expands left on hover.
 */
.as-sticky-cta {
	position: fixed;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	z-index: 1200;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 8px;
	margin: 0;
	padding: 0;
	border: 0;
	background: transparent;
}

.as-sticky-cta-btn {
	display: flex;
	flex-direction: row-reverse; /* icon stays on the right edge */
	align-items: center;
	width: 48px;
	height: 48px;
	margin: 0;
	padding: 0;
	border: 0;
	border-radius: 10px 0 0 10px;
	overflow: hidden;
	box-shadow: 0 8px 20px rgba(18, 28, 48, 0.18);
	text-decoration: none !important;
	color: #fff !important;
	white-space: nowrap;
	transition: width 0.35s cubic-bezier(0.22, 1, 0.36, 1),
		box-shadow 0.35s ease,
		background-color 0.25s ease;
	will-change: width;
}

.as-sticky-cta-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	flex: 0 0 48px;
	font-size: 18px;
	line-height: 1;
}

.as-sticky-cta-label {
	display: inline-flex;
	align-items: center;
	height: 48px;
	padding: 0 4px 0 14px;
	font-family: "Segoe UI", Tahoma, sans-serif;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.02em;
	line-height: 1;
}

.as-sticky-cta-btn.is-call {
	background: #1a2744;
}

.as-sticky-cta-btn.is-wa {
	background: #128c7e;
}

.as-sticky-cta-btn.is-mail {
	background: #c45c26;
}

.as-sticky-cta-btn:hover,
.as-sticky-cta-btn:focus-visible {
	width: 128px;
	color: #fff !important;
	box-shadow: 0 12px 28px rgba(18, 28, 48, 0.28);
	outline: none;
	z-index: 2;
}

.as-sticky-cta-btn.is-call:hover,
.as-sticky-cta-btn.is-call:focus-visible {
	background: #121c30;
}

.as-sticky-cta-btn.is-wa:hover,
.as-sticky-cta-btn.is-wa:focus-visible {
	background: #0e7a6e;
}

.as-sticky-cta-btn.is-mail:hover,
.as-sticky-cta-btn.is-mail:focus-visible {
	background: #a84c1e;
}

@media (max-width: 767px) {
	.as-sticky-cta {
		top: auto;
		bottom: 86px;
		transform: none;
		gap: 6px;
	}

	.as-sticky-cta-btn {
		width: 44px;
		height: 44px;
		border-radius: 8px 0 0 8px;
	}

	.as-sticky-cta-btn:hover,
	.as-sticky-cta-btn:focus-visible {
		width: 118px;
	}

	.as-sticky-cta-icon,
	.as-sticky-cta-label {
		height: 44px;
	}

	.as-sticky-cta-icon {
		width: 44px;
		flex-basis: 44px;
		font-size: 16px;
	}

	.as-sticky-cta-label {
		font-size: 12px;
		padding: 0 2px 0 12px;
	}
}

@media (max-width: 480px) {
	.as-sticky-cta {
		bottom: 78px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.as-sticky-cta-btn {
		transition: none;
	}
}
