.dr1048floatingbuttons .floating-buttons {
	position: fixed;
	bottom: 20px;
	right: 20px;
	z-index: 10000;
	display: flex;
	flex-direction: column;
	gap: 14px;
	align-items: flex-end;
	animation: slideUpFade 0.8s ease forwards 0.5s;
	opacity: 0;
	font-family: 'Noto Sans Telugu', 'Poppins', sans-serif;
}

/* Base FAB Button – Gold Heritage Theme */
.dr1048floatingbuttons .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;
	background: radial-gradient(circle at 30% 30%, #fff8dc, #d4af37, #a67c00);
	box-shadow:
		inset 1px 1px 4px rgba(255, 255, 255, 0.3),
		inset -2px -2px 6px rgba(0, 0, 0, 0.2),
		0 6px 12px rgba(0, 0, 0, 0.3);
	border: 3px solid transparent;
	border-image: linear-gradient(135deg, #fff8e1, #fbc02d, #d4af37) 1;
}

/* Hover Glow */
.dr1048floatingbuttons .fab-btn:hover {
	transform: scale(1.12) rotate(-2deg) translateY(-4px);
	box-shadow: 0 14px 26px rgba(0, 0, 0, 0.5);
}

/* Icon */
.dr1048floatingbuttons .fab-btn .icon {
	color: #ffffff;
	font-size: 24px;
}

/* Hidden Label */
.dr1048floatingbuttons .fab-btn .label {
	display: none;
}

/* Tooltip Label on Hover – Mahogany Velvet + Gold */
.dr1048floatingbuttons .fab-btn:hover .label {
	display: block;
	position: absolute;
	right: 72px;
	top: 50%;
	transform: translateY(-50%);
	background: #4a2c24;
	color: #ffd54f;
	padding: 7px 14px;
	border-radius: 12px;
	font-size: 14px;
	font-family: 'Noto Sans Telugu', 'Poppins', sans-serif;
	font-weight: 600;
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
	white-space: nowrap;
	transition: all 0.3s ease;
}

/* WhatsApp – Emerald Green */
.dr1048floatingbuttons .fab-btn.whatsapp {
	background: linear-gradient(135deg, #1b5e20, #43a047);
	border-color: #a5d6a7;
}

/* Share – Royal Ruby */
.dr1048floatingbuttons .fab-btn.share {
	background: linear-gradient(135deg, #880e4f, #c2185b);
	border-color: #f8bbd0;
}

/* Call – Rich Bronze */
.dr1048floatingbuttons .fab-btn.phone {
	background: linear-gradient(135deg, #4e342e, #3e2723);
	border-color: #d7ccc8;
}

/* Top – Vibrant Saffron Gold */
.dr1048floatingbuttons .fab-btn.top {
	background: linear-gradient(135deg, #f57c00, #e65100);
	border-color: #ffe0b2;
}

/* Sparkle Shine Effect */
.dr1048floatingbuttons .fab-btn::after {
	content: '';
	position: absolute;
	top: -30%;
	left: -30%;
	width: 160%;
	height: 160%;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
	transform: rotate(45deg);
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s ease;
}
.dr1048floatingbuttons .fab-btn:hover::after {
	opacity: 1;
	animation: sparkleMove 1.5s linear infinite;
}

/* Slide Up Animation */
@keyframes slideUpFade {
	from {
		opacity: 0;
		transform: translateY(50px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Sparkle Trail Animation */
@keyframes sparkleMove {
	0% {
		transform: translate(-50%, -50%) rotate(45deg);
	}
	100% {
		transform: translate(60%, 60%) rotate(45deg);
	}
}

/* 📱 Mobile Styles */
@media screen and (max-width: 480px) {
	.dr1048floatingbuttons .fab-btn {
		width: 50px;
		height: 50px;
		font-size: 20px;
	}

	.dr1048floatingbuttons .fab-btn .icon {
		font-size: 20px;
	}

	.dr1048floatingbuttons .fab-btn:hover .label {
		right: 60px;
		font-size: 13px;
		padding: 6px 10px;
	}
}