/* CredentialFied WhatsApp floating widget */
.cf-whatsapp-widget {
	position: fixed;
	left: 24px;
	bottom: 24px;
	z-index: 99999;
	display: flex;
	align-items: center;
	gap: 0;
	text-decoration: none;
	font-family: 'Fustat', sans-serif;
	transition: transform 0.3s ease;
}

.cf-whatsapp-widget:hover {
	transform: translateY(-3px);
	text-decoration: none;
}

.cf-whatsapp-widget:focus {
	outline: 2px solid #25D366;
	outline-offset: 4px;
}

.cf-whatsapp-bubble {
	position: relative;
	display: flex;
	align-items: center;
	gap: 12px;
	background: #25D366;
	color: #fff;
	border-radius: 50px;
	padding: 10px 20px 10px 10px;
	box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45), 0 2px 8px rgba(0, 0, 0, 0.15);
	animation: cf-wa-bounce-in 0.6s ease-out;
}

.cf-whatsapp-widget:hover .cf-whatsapp-bubble {
	box-shadow: 0 8px 32px rgba(37, 211, 102, 0.55), 0 4px 12px rgba(0, 0, 0, 0.2);
}

.cf-whatsapp-pulse {
	position: absolute;
	left: 10px;
	top: 50%;
	width: 48px;
	height: 48px;
	margin-top: -24px;
	border-radius: 50%;
	background: rgba(37, 211, 102, 0.4);
	animation: cf-wa-pulse 2s ease-out infinite;
	pointer-events: none;
}

.cf-whatsapp-icon {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	background: #fff;
	border-radius: 50%;
	flex-shrink: 0;
}

.cf-whatsapp-icon i {
	font-size: 28px;
	color: #25D366;
}

.cf-whatsapp-text {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	line-height: 1.2;
	padding-right: 4px;
}

.cf-whatsapp-text strong {
	font-size: 15px;
	font-weight: 700;
	color: #fff;
	white-space: nowrap;
}

.cf-whatsapp-text span {
	font-size: 12px;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.9);
	white-space: nowrap;
}

@keyframes cf-wa-pulse {
	0% {
		transform: scale(1);
		opacity: 0.7;
	}
	70% {
		transform: scale(1.6);
		opacity: 0;
	}
	100% {
		transform: scale(1.6);
		opacity: 0;
	}
}

@keyframes cf-wa-bounce-in {
	0% {
		opacity: 0;
		transform: translateY(20px) scale(0.8);
	}
	60% {
		transform: translateY(-4px) scale(1.02);
	}
	100% {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

@media (max-width: 767px) {
	.cf-whatsapp-widget {
		left: 16px;
		bottom: 16px;
	}

	.cf-whatsapp-bubble {
		padding: 8px;
		border-radius: 50%;
	}

	.cf-whatsapp-text {
		display: none;
	}

	.cf-whatsapp-pulse {
		left: 8px;
		width: 44px;
		height: 44px;
		margin-top: -22px;
	}

	.cf-whatsapp-icon {
		width: 44px;
		height: 44px;
	}

	.cf-whatsapp-icon i {
		font-size: 26px;
	}
}

@media (max-width: 480px) {
	.cf-whatsapp-widget {
		left: 12px;
		bottom: 20px;
	}
}

/* Footer WhatsApp link */
.footer-contact-info p a[href*="wa.me"] i.fa-whatsapp {
	color: #25D366;
}
