/* WhatsApp Floating Button */
.whatsapp-float {
	position: fixed;
	left: 25px;
	bottom: 25px;
	z-index: 9999;
}

.whatsapp-icon {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 65px;
	height: 65px;
	background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
	border-radius: 50%;
	color: #fff;
	font-size: 35px;
	box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	text-decoration: none;
	animation: whatsappBounce 2s infinite;
	position: relative;
}

.whatsapp-icon::before {
	content: '';
	position: absolute;
	inset: -5px;
	border-radius: 50%;
	border: 2px solid rgba(37, 211, 102, 0.5);
	animation: whatsappPulse 2s ease-out infinite;
}

.whatsapp-icon:hover {
	transform: scale(1.15);
	box-shadow: 0 15px 50px rgba(37, 211, 102, 0.6);
	color: #fff;
}

.whatsapp-icon i {
	position: relative;
	z-index: 2;
}

/* Bouncing animation */
@keyframes whatsappBounce {
	0%, 20%, 50%, 80%, 100% {
		transform: translateY(0);
	}
	40% {
		transform: translateY(-10px);
	}
	60% {
		transform: translateY(-5px);
	}
}

/* Pulse animation */
@keyframes whatsappPulse {
	0% {
		transform: scale(1);
		opacity: 1;
	}
	100% {
		transform: scale(1.5);
		opacity: 0;
	}
}

/* Tooltip */
.whatsapp-tooltip {
	position: absolute;
	left: 80px;
	top: 50%;
	transform: translateY(-50%);
	background: #fff;
	color: #333;
	padding: 10px 20px;
	border-radius: 8px;
	font-size: 14px;
	font-weight: 600;
	white-space: nowrap;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
	opacity: 0;
	pointer-events: none;
	transition: all 0.3s ease;
}

.whatsapp-tooltip::after {
	content: '';
	position: absolute;
	left: -8px;
	top: 50%;
	transform: translateY(-50%);
	width: 0;
	height: 0;
	border-right: 8px solid #fff;
	border-top: 8px solid transparent;
	border-bottom: 8px solid transparent;
}

.whatsapp-float:hover .whatsapp-tooltip {
	opacity: 1;
	left: 85px;
}

/* Responsive */
@media (max-width: 768px) {
	.whatsapp-float {
		left: 15px;
		bottom: 15px;
	}
	
	.whatsapp-icon {
		width: 55px;
		height: 55px;
		font-size: 30px;
	}
	
	.whatsapp-tooltip {
		display: none;
	}
}
