/* Floating call & WhatsApp — icon-only, desktop breakpoint */
.northway-floating-contact {
	display: none;
	position: fixed;
	right: 24px;
	bottom: 29%;
	z-index: 99990;
	flex-direction: column;
	gap: 14px;
	align-items: flex-end;
}

@media (min-width: 1024px) {
	.northway-floating-contact {
		display: flex;
	}
}

/* Circular icon buttons — Offshore Genesis coral on call, WhatsApp green on chat */
.northway-fc-btn {
	--northway-fc-size: 56px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: var(--northway-fc-size);
	height: var(--northway-fc-size);
	padding: 0;
	border-radius: 50%;
	text-decoration: none;
	color: #fff;
	border: none;
	cursor: pointer;
	box-shadow:
		0 4px 18px rgba(0, 0, 0, 0.2),
		0 2px 6px rgba(0, 0, 0, 0.12);
	transition:
		transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
		box-shadow 0.35s ease,
		filter 0.35s ease;
	will-change: transform;
}

.northway-fc-btn:hover,
.northway-fc-btn:focus {
	color: #fff;
	transform: scale(1.08) translateY(-3px);
	outline: none;
	animation: none;
}

.northway-fc-btn:focus-visible {
	outline: 2px solid #fff;
	outline-offset: 3px;
}

/* Brand accent (logo “G” coral) */
.northway-fc-call {
	background: #ff6354;
	animation: northway-fc-pulse-call 2.8s ease-in-out infinite;
}

.northway-fc-call:hover,
.northway-fc-call:focus {
	box-shadow:
		0 8px 28px rgba(255, 99, 84, 0.45),
		0 4px 12px rgba(0, 0, 0, 0.15);
	filter: brightness(1.06);
}

.northway-fc-wa {
	background: #25d366;
	animation: northway-fc-pulse-wa 2.8s ease-in-out 0.4s infinite;
}

.northway-fc-wa:hover,
.northway-fc-wa:focus {
	box-shadow:
		0 8px 28px rgba(37, 211, 102, 0.45),
		0 4px 12px rgba(0, 0, 0, 0.15);
	filter: brightness(1.05);
}

.northway-fc-icon {
	display: flex;
	flex-shrink: 0;
	line-height: 0;
}

.northway-fc-icon svg {
	display: block;
}

@keyframes northway-fc-pulse-call {
	0%,
	100% {
		box-shadow:
			0 4px 18px rgba(0, 0, 0, 0.2),
			0 0 0 0 rgba(255, 99, 84, 0.5);
	}
	50% {
		box-shadow:
			0 6px 22px rgba(0, 0, 0, 0.22),
			0 0 0 10px rgba(255, 99, 84, 0);
	}
}

@keyframes northway-fc-pulse-wa {
	0%,
	100% {
		box-shadow:
			0 4px 18px rgba(0, 0, 0, 0.2),
			0 0 0 0 rgba(37, 211, 102, 0.45);
	}
	50% {
		box-shadow:
			0 6px 22px rgba(0, 0, 0, 0.22),
			0 0 0 10px rgba(37, 211, 102, 0);
	}
}

@media (prefers-reduced-motion: reduce) {
	.northway-fc-btn {
		transition: box-shadow 0.2s ease, filter 0.2s ease;
		animation: none;
	}

	.northway-fc-btn:hover,
	.northway-fc-btn:focus {
		transform: none;
	}
}
