/* Sabit WhatsApp ve Arama Butonları */
.floating-buttons {
	position: fixed;
	left: 20px;
	bottom: 20px;
	display: flex;
	flex-direction: column;
	gap: 15px;
	z-index: 999;
}

.floating-btn {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	color: white;
	text-decoration: none;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
	transition: transform 0.3s, box-shadow 0.3s;
	position: relative;
}

	.floating-btn:hover {
		transform: translateY(-5px) scale(1.05);
		box-shadow: 0 6px 15px rgba(0, 0, 0, 0.35);
	}

	.floating-btn i {
		font-size: 1.5rem;
	}

	.floating-btn.whatsapp {
		background-color: #25D366;
	}

	.floating-btn.call {
		background-color: #0088cc;
	}

.floating-btn-label {
	position: absolute;
	left: 70px;
	background-color: rgba(0, 0, 0, 0.8);
	color: white;
	padding: 5px 10px;
	border-radius: 5px;
	font-size: 0.9rem;
	white-space: nowrap;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s;
	transform: translateX(-10px);
}

.floating-btn:hover .floating-btn-label {
	opacity: 1;
	visibility: visible;
	transform: translateX(0);
}

/* Mobil Görünüm İçin Düzenlemeler */
@media (max-width: 768px) {
	.floating-buttons {
		left: 15px;
		bottom: 15px;
		gap: 10px;
	}

	.floating-btn {
		width: 50px;
		height: 50px;
	}

		.floating-btn i {
			font-size: 1.2rem;
		}
}

/* Telefon Zil Animasyonu */
@keyframes ringing {
	0% {
		transform: rotate(0deg);
	}

	5% {
		transform: rotate(10deg);
	}

	10% {
		transform: rotate(-10deg);
	}

	15% {
		transform: rotate(10deg);
	}

	20% {
		transform: rotate(-10deg);
	}

	25% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(0deg);
	}
}

.floating-btn.call:hover i {
	animation: ringing 1.5s infinite;
}

/* WhatsApp Titreme Animasyonu */
@keyframes shake {
	0% {
		transform: translate(0, 0);
	}

	10% {
		transform: translate(-1px, -1px);
	}

	20% {
		transform: translate(1px, 1px);
	}

	30% {
		transform: translate(-1px, -1px);
	}

	40% {
		transform: translate(1px, 1px);
	}

	50% {
		transform: translate(0, 0);
	}

	100% {
		transform: translate(0, 0);
	}
}

.floating-btn.whatsapp:hover i {
	animation: shake 1.5s infinite;
}
