/* ===== Floating Buttons Wrapper ===== */
.dr1019floatingbuttons .floating-buttons {
	position: fixed;
	bottom: 20px;
	right: 20px;
	z-index: 1000;
	display: flex;
	flex-direction: column;
	gap: 14px;
	align-items: flex-end;
}

/* ===== Circular Glassy Buttons ===== */
.dr1019floatingbuttons .fab-btn {
	width: 54px;
	height: 54px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	font-size: 22px;
	color: #ffffff;
	background: rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(12px);
	box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
	transition: all 0.3s ease;
	border: 1.5px solid rgba(255, 255, 255, 0.3);
	position: relative;
}

/* Hover Effect */
.dr1019floatingbuttons .fab-btn:hover {
	transform: scale(1.1);
	box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
}

/* ===== Icon Styling ===== */
.dr1019floatingbuttons .fab-btn .icon {
	font-size: 24px;
	color: #ffffff;
}

/* ===== Hide Labels ===== */
.dr1019floatingbuttons .fab-btn .label {
	display: none;
}

/* ===== Dental-Themed Button Colors ===== */
.dr1019floatingbuttons .fab-btn.whatsapp {
	background: linear-gradient(135deg, #00c9a7, #00acc1);
	box-shadow: 0 6px 16px rgba(0, 172, 193, 0.4);
}

.dr1019floatingbuttons .fab-btn.phone {
	background: linear-gradient(135deg, #4dd0e1, #0097a7);
	box-shadow: 0 6px 16px rgba(0, 150, 136, 0.4);
}

.dr1019floatingbuttons .fab-btn.top {
	background: linear-gradient(135deg, #a7ffeb, #1de9b6);
	box-shadow: 0 6px 16px rgba(38, 198, 218, 0.3);
}

/* ===== Responsive for Mobile ===== */
@media screen and (max-width: 480px) {
	.dr1019floatingbuttons .fab-btn {
		width: 46px;
		height: 46px;
		font-size: 20px;
	}
}