/* Contact Floating Icons Styles */

.euro-event-contact-floating {
	position: fixed;
	right: 20px;
	bottom: 20px;
	z-index: 9999;
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.euro-event-contact-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: #ffffff;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	transition: all 3s ease;
	text-decoration: none;
	overflow: hidden;
}

.euro-event-contact-icon:hover {
	transform: scale(1.1);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
	animation: euro-event-wiggle 0.6s ease-in-out;
}

.euro-event-contact-icon img {
	width: 60px;
	height: 60px;
	object-fit: cover;
	display: block;
}

.euro-event-phone-icon {
	animation: euro-event-pulse-phone 2s infinite, euro-event-shake-continuous 4s ease-in-out infinite;
}

.euro-event-zalo-icon {
	animation: euro-event-pulse-zalo 2s infinite 0.5s, euro-event-shake-continuous 4s ease-in-out infinite 0.5s;
}

@keyframes euro-event-pulse-phone {
	0%, 100% {
		box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	}
	50% {
		box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15), 0 0 0 8px rgba(66, 133, 244, 0.3);
	}
}

@keyframes euro-event-pulse-zalo {
	0%, 100% {
		box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	}
	50% {
		box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15), 0 0 0 8px rgba(0, 150, 255, 0.3);
	}
}

@keyframes euro-event-shake {
	0%, 100% {
		transform: scale(1.1) rotate(0deg);
	}
	10%, 30%, 50%, 70%, 90% {
		transform: scale(1.1) rotate(-10deg);
	}
	20%, 40%, 60%, 80% {
		transform: scale(1.1) rotate(10deg);
	}
}

@keyframes euro-event-wiggle {
	0%, 100% {
		transform: scale(1.1) rotate(0deg);
	}
	15% {
		transform: scale(1.1) rotate(-5deg);
	}
	30% {
		transform: scale(1.1) rotate(5deg);
	}
	45% {
		transform: scale(1.1) rotate(-3deg);
	}
	60% {
		transform: scale(1.1) rotate(3deg);
	}
	75% {
		transform: scale(1.1) rotate(-1deg);
	}
}

@keyframes euro-event-shake-continuous {
	0% {
		transform: rotate(0deg);
	}
	2.5% {
		transform: rotate(-10deg);
	}
	5% {
		transform: rotate(10deg);
	}
	7.5% {
		transform: rotate(-10deg);
	}
	10% {
		transform: rotate(10deg);
	}
	12.5% {
		transform: rotate(-10deg);
	}
	15% {
		transform: rotate(10deg);
	}
	17.5% {
		transform: rotate(-10deg);
	}
	20% {
		transform: rotate(10deg);
	}
	22.5% {
		transform: rotate(-10deg);
	}
	25%, 100% {
		transform: rotate(0deg);
	}
}

/* Responsive Design */
@media (max-width: 768px) {
	.euro-event-contact-floating {
		right: 15px;
		bottom: 15px;
		gap: 10px;
	}

	.euro-event-contact-icon {
		width: 55px;
		height: 55px;
	}

	.euro-event-contact-icon img {
		width: 55px;
		height: 55px;
	}
}

@media (max-width: 480px) {
	.euro-event-contact-floating {
		right: 10px;
		bottom: 10px;
		gap: 8px;
	}

	.euro-event-contact-icon {
		width: 50px;
		height: 50px;
	}

	.euro-event-contact-icon img {
		width: 50px;
		height: 50px;
	}
}
