.dr1052floatingbuttons .floating-buttons {
	position: fixed;
	bottom: 25px;
	right: 25px;
	z-index: 10000;
	display: flex;
	flex-direction: column;
	gap: 14px;
	align-items: flex-end;
	font-family: 'Montserrat', sans-serif;
}

/* Base Button */
.dr1052floatingbuttons .fab-btn {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	color: #fff;
	position: relative;
	text-decoration: none;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 8px 18px rgba(0, 0, 0, 0.45);
	border: 2px solid rgba(255, 183, 3, 0.4);
	background: transparent;
}

/* Hover Effect */
.dr1052floatingbuttons .fab-btn:hover {
	transform: scale(1.12) translateY(-4px);
	box-shadow: 0 16px 35px rgba(255, 183, 3, 0.7);
}

/* Icon */
.dr1052floatingbuttons .fab-btn .icon {
	font-size: 24px;
}

/* Label */
.dr1052floatingbuttons .fab-btn .label {
	display: none;
}

.dr1052floatingbuttons .fab-btn:hover .label {
	display: block;
	position: absolute;
	right: 72px;
	top: 50%;
	transform: translateY(-50%);
	background: #1a1a1d;
	color: #ffb703;
	padding: 8px 16px;
	border-radius: 14px;
	font-size: 14px;
	font-weight: 700;
	white-space: nowrap;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
	border: 1px solid rgba(255, 183, 3, 0.5);
}

/* WhatsApp – Green + Gold Accent */
.dr1052floatingbuttons .fab-btn.whatsapp {
	background: linear-gradient(135deg, #065f46, #ffb703);
	color: #000;
}

/* Share – Deep Cyan + Gold Accent */
.dr1052floatingbuttons .fab-btn.share {
	background: linear-gradient(135deg, #0f4444, #ffb703);
	color: #000;
}

/* Call – Gold Gradient */
.dr1052floatingbuttons .fab-btn.phone {
	background: linear-gradient(135deg, #ffb703, #ff7b00);
	color: #1f2933;
}

/* Top – Dark Metallic */
.dr1052floatingbuttons .fab-btn.top {
	background: linear-gradient(135deg, #222, #555);
	color: #ffb703;
}

/* Mobile */
@media ( max-width : 480px) {
	.dr1052floatingbuttons .fab-btn {
		width: 50px;
		height: 50px;
		font-size: 20px;
	}
	.dr1052floatingbuttons .fab-btn .icon {
		font-size: 20px;
	}
	.dr1052floatingbuttons .fab-btn:hover .label {
		right: 60px;
		font-size: 13px;
		padding: 6px 12px;
	}
}