/**
 * Floating Contact CTA — yuvarlak halka (200×200) + merkez ok
 */

a.fcw-cta.fcw-float,
a.contact.fcw-float {
	position: fixed;
	bottom: var(--fcw-bottom, 24px);
	z-index: 100090;
	width: 200px;
	height: 200px;
	display: block;
	margin: 0;
	padding: 0;
	border: none;
	background: transparent;
	box-shadow: none;
	text-decoration: none;
	overflow: visible;
	-webkit-tap-highlight-color: transparent;

	--fcw-bob-y: 0px;
	transform: translateY(var(--fcw-bob-y)) scale(var(--fcw-scale, 1));
	transition: filter 0.2s ease;
}

a.fcw-cta.fcw-float.fcw--right,
a.contact.fcw-float.fcw--right {
	right: var(--fcw-side, 24px);
	left: auto;
	transform-origin: bottom right;
}

a.fcw-cta.fcw-float.fcw--left,
a.contact.fcw-float.fcw--left {
	left: var(--fcw-side, 24px);
	right: auto;
	transform-origin: bottom left;
}

a.fcw-cta.fcw-float:hover,
a.contact.fcw-float:hover {
	filter: brightness(1.05) drop-shadow(0 6px 14px rgba(0, 0, 0, 0.18));
}

a.fcw-cta.fcw-float:focus,
a.contact.fcw-float:focus {
	outline: none;
}

a.fcw-cta.fcw-float:focus-visible,
a.contact.fcw-float:focus-visible {
	outline: 3px solid var(--fcw-dark, #062a22);
	outline-offset: 6px;
	border-radius: 8px;
}

.fcw-spin {
	position: absolute;
	left: 0;
	top: 0;
	width: 200px;
	height: 200px;
	z-index: 1;
	transform-origin: 50% 50%;
	animation: fcw-spin-rotate var(--fcw-spin-s, 22s) linear infinite;
	will-change: transform;
	filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.08));
}

.fcw-spin-disk {
	display: block;
	width: 200px;
	height: 200px;
}

.fcw-spin-disk .fcw-ring-svg-text {
	pointer-events: none;
	user-select: none;
}

@keyframes fcw-spin-rotate {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(360deg);
	}
}

.fcw-arrow {
	position: absolute;
	left: 50%;
	top: 50%;
	z-index: 4;
	width: 78px;
	height: auto;
	aspect-ratio: 72 / 40;
	margin: 0;
	display: block;
	pointer-events: none;
	filter: drop-shadow(0 1px 0 rgba(255, 255, 255, 0.22)) drop-shadow(0 1px 1px rgba(6, 42, 34, 0.2));
	transform: translate(calc(-50% - 1px), calc(-50% + 2px)) scale(var(--fcw-arrow-scale, 1));
	transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

a.fcw-cta.fcw-float:hover .fcw-arrow,
a.contact.fcw-float:hover .fcw-arrow,
a.fcw-cta.fcw-float:focus-visible .fcw-arrow,
a.contact.fcw-float:focus-visible .fcw-arrow {
	transform: translate(calc(-50% - 1px), calc(-50% + 2px)) scale(calc(var(--fcw-arrow-scale, 1) * 1.2));
}

.fcw--left .fcw-arrow {
	transform: translate(calc(-50% + 1px), calc(-50% + 2px)) scale(var(--fcw-arrow-scale, 1)) scaleX(-1);
}

.fcw--left.fcw-float:hover .fcw-arrow,
.fcw--left.fcw-float:focus-visible .fcw-arrow {
	transform: translate(calc(-50% + 1px), calc(-50% + 2px)) scale(calc(var(--fcw-arrow-scale, 1) * 1.2)) scaleX(-1);
}

/* Bright Biotech tarzı maskot (koyun vb.) — z-index ile ok / halkanın üstünde */
.fcw-mascot {
	position: absolute;
	z-index: 6;
	bottom: -6px;
	left: -20px;
	max-width: 96px;
	width: auto;
	height: auto;
	pointer-events: none;
	user-select: none;
}

.fcw--left .fcw-mascot {
	left: auto;
	right: -20px;
}

@media (prefers-reduced-motion: reduce) {
	.fcw-spin {
		animation: none !important;
	}

	.fcw-arrow {
		transition: none !important;
	}

	a.fcw-cta.fcw-float:hover .fcw-arrow,
	a.contact.fcw-float:hover .fcw-arrow,
	a.fcw-cta.fcw-float:focus-visible .fcw-arrow,
	a.contact.fcw-float:focus-visible .fcw-arrow {
		transform: translate(calc(-50% - 1px), calc(-50% + 2px)) scale(var(--fcw-arrow-scale, 1));
	}

	.fcw--left .fcw-arrow {
		transform: translate(calc(-50% + 1px), calc(-50% + 2px)) scale(var(--fcw-arrow-scale, 1)) scaleX(-1);
	}

	.fcw--left.fcw-float:hover .fcw-arrow,
	.fcw--left.fcw-float:focus-visible .fcw-arrow {
		transform: translate(calc(-50% + 1px), calc(-50% + 2px)) scale(var(--fcw-arrow-scale, 1)) scaleX(-1);
	}
}

@media (max-width: 600px) {
	a.fcw-cta.fcw-float,
	a.contact.fcw-float {
		width: 200px;
		height: 200px;
	}
}

.fcw-cta-wrap:empty {
	display: none;
}
