/* Floating Contact Icons */
.remons-floating-icons {
	position: fixed;
	left: 20px;
	bottom: 20px;
	z-index: 9999;
	display: flex;
	flex-direction: column;
	gap: 15px;
}

@media (max-width: 767px) {
	.remons-floating-icons {
		left: 15px;
		bottom: 15px;
		gap: 12px;
	}
}

.remons-floating-icon {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	transition: all 0.3s ease;
	text-decoration: none;
	color: #fff;
	font-size: 24px;
	position: relative;
	overflow: hidden;
}

@media (max-width: 767px) {
	.remons-floating-icon {
		width: 50px;
		height: 50px;
		font-size: 22px;
	}
}

.remons-floating-icon:hover {
	transform: translateY(-5px);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.remons-floating-icon:active {
	transform: translateY(-2px);
}

.remons-floating-icon svg {
	width: 24px;
	height: 24px;
	transition: transform 0.3s ease;
	position: relative;
	z-index: 2;
}

@media (max-width: 767px) {
	.remons-floating-icon svg {
		width: 22px;
		height: 22px;
	}
}

.remons-floating-icon:hover svg {
	transform: scale(1.1);
}

/* Call Icon */
.remons-floating-icon.remons-floating-call {
	background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
}

.remons-floating-icon.remons-floating-call:hover {
	background: linear-gradient(135deg, #0056b3 0%, #007bff 100%);
}

/* WhatsApp Icon */
.remons-floating-icon.remons-floating-whatsapp {
	background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.remons-floating-icon.remons-floating-whatsapp:hover {
	background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);
}

/* WhatsApp Button */
.whatsapp-btn {
	background: #ee0b5e !important;
}

/* Pulse Animation */
.remons-floating-icon::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.3);
	transform: translate(-50%, -50%);
	transition: width 0.6s ease, height 0.6s ease;
}

.remons-floating-icon:hover::before {
	width: 100%;
	height: 100%;
	animation: pulse 1.5s ease-out infinite;
}

@keyframes pulse {
	0% {
		transform: translate(-50%, -50%) scale(0.8);
		opacity: 1;
	}
	100% {
		transform: translate(-50%, -50%) scale(1.5);
		opacity: 0;
	}
}

/* RTL Support */
body.rtl .remons-floating-icons {
	left: auto;
	right: 20px;
}

@media (max-width: 767px) {
	body.rtl .remons-floating-icons {
		right: 15px;
	}
}

