.social-floating {
	position: fixed;
	right: 18px;
	top: 50%;
	transform: translateY(-50%);
	z-index: 9999;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.social-floating a {
	width: 48px;
	height: 48px;
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #ffffff;
	text-decoration: none;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.social-floating a:hover {
	transform: translateX(-4px) scale(1.06);
	box-shadow: 0 14px 35px rgba(0, 0, 0, 0.25);
}

.social-floating svg {
	width: 23px;
	height: 23px;
	fill: currentColor;
}

.social-floating .facebook {
	background: #1877f2;
}

.social-floating .instagram {
	background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af, #515bd4);
}

.social-floating .linkedin {
	background: #0a66c2;
}

@media (max-width: 768px) {
	.social-floating {
		right: 12px;
		bottom: 18px;
		top: auto;
		transform: none;
		flex-direction: row;
	}

	.social-floating a {
		width: 44px;
		height: 44px;
		border-radius: 14px;
	}
}