/* =========================================================
   TaxiERP Global Floating Contact Buttons
   Call + WhatsApp
   Works on all frontend pages
   ========================================================= */

.bt-floating-contact {
	position: fixed;
	right: 20px;
	bottom: 22px;
	z-index: 99999;

	display: flex;
	flex-direction: column;
	gap: 10px;
	align-items: flex-end;
}

.bt-floating-contact a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;

	min-height: 46px;
	padding: 0 18px;

	border-radius: 30px;
	text-decoration: none !important;

	font-size: 14px;
	font-weight: 700;
	line-height: 1;

	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.20);

	transition:
		transform 0.2s ease,
		box-shadow 0.2s ease,
		opacity 0.2s ease;
}

.bt-floating-contact a:hover {
	transform: translateY(-2px);
	box-shadow: 0 9px 24px rgba(0, 0, 0, 0.28);
	opacity: 0.96;
}

.bt-floating-call {
	background: #e53935;
	color: #ffffff !important;
}

.bt-floating-whatsapp {
	background: #25d366;
	color: #ffffff !important;
}

.bt-floating-contact i {
	font-size: 17px;
	width: 18px;
	text-align: center;
}

/* Mobile */

@media (max-width: 767px) {

	.bt-floating-contact {
		right: 12px;
		bottom: 14px;
		gap: 8px;
	}

	.bt-floating-contact a {
		min-height: 42px;
		padding: 0 14px;
		font-size: 13px;
	}

	.bt-floating-contact i {
		font-size: 16px;
	}

}