.dr1030floatingbuttons .floating-buttons {
	position: fixed;
	bottom: 20px;
	right: 20px;
	z-index: 10000;
	display: flex;
	flex-direction: column;
	gap: 16px;
	align-items: flex-end;
	opacity: 0;
	transform: translateY(50px);
	animation: slideUpFade 0.8s ease forwards 0.5s;
}

/* Button Base */
.dr1030floatingbuttons .fab-btn {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	font-size: 24px;
	color: #fff;
	position: relative;
	cursor: pointer;
	transition: all 0.3s ease;
	background: linear-gradient(145deg, #d4af37, #a67c00);
	box-shadow:
		inset 2px 2px 6px rgba(255, 255, 255, 0.2),
		inset -2px -2px 4px rgba(0, 0, 0, 0.2),
		0 6px 12px rgba(0, 0, 0, 0.3),
		0 1px 1px rgba(255, 255, 255, 0.4) inset;
	border: 3px solid;
	border-image: linear-gradient(135deg, #fff8e1, #fbc02d, #d4af37) 1;
	transform-style: preserve-3d;
}

/* Sparkle animation layer */
.dr1030floatingbuttons .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;
}

.dr1030floatingbuttons .fab-btn:hover::after {
	opacity: 1;
	animation: sparkleMove 1.2s linear infinite;
}

/* Hover lift and glow */
.dr1030floatingbuttons .fab-btn:hover {
	transform: scale(1.15) rotate(-3deg) translateY(-5px);
	box-shadow: 0 12px 24px rgba(0, 0, 0, 0.35);
}

/* Icon styling */
.dr1030floatingbuttons .fab-btn .icon {
	font-size: 26px;
	color: #ffffff;
}

/* Label hidden initially */
.dr1030floatingbuttons .fab-btn .label {
	display: none;
}

/* Label shown on hover */
.dr1030floatingbuttons .fab-btn:hover .label {
	display: block;
	position: absolute;
	right: 72px;
	background: #4b2e1f;
	color: #ffd700;
	padding: 7px 14px;
	border-radius: 12px;
	font-size: 15px;
	font-family: 'Noto Sans Telugu', sans-serif;
	white-space: nowrap;
	font-weight: 600;
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

/* WhatsApp – Emerald */
.dr1030floatingbuttons .fab-btn.whatsapp {
	background: linear-gradient(135deg, #1b5e20, #388e3c);
	border-color: #c8e6c9;
	box-shadow: 0 6px 14px rgba(27, 94, 32, 0.4);
}

.dr1030floatingbuttons .fab-btn.whatsapp:hover {
	transform: scale(1.15) rotate(2deg) translateY(-5px);
	box-shadow: 0 10px 22px rgba(46, 125, 50, 0.5);
}

/* Share – Ruby */
.dr1030floatingbuttons .fab-btn.share {
	background: linear-gradient(135deg, #b71c1c, #880e4f);
	border-color: #f8bbd0;
	box-shadow: 0 6px 14px rgba(136, 14, 79, 0.4);
}

.dr1030floatingbuttons .fab-btn.share:hover {
	transform: scale(1.15) rotate(-2deg) translateY(-5px);
	box-shadow: 0 10px 22px rgba(183, 28, 28, 0.5);
}

/* Call – Bronze */
.dr1030floatingbuttons .fab-btn.phone {
	background: linear-gradient(135deg, #6d4c41, #3e2723);
	border-color: #d7ccc8;
	box-shadow: 0 6px 14px rgba(62, 39, 35, 0.4);
}

.dr1030floatingbuttons .fab-btn.phone:hover {
	transform: scale(1.15) rotate(2deg) translateY(-5px);
	box-shadow: 0 10px 22px rgba(62, 39, 35, 0.5);
}

/* Top – Saffron */
.dr1030floatingbuttons .fab-btn.top {
	background: linear-gradient(135deg, #ff6f00, #e65100);
	border-color: #ffe0b2;
	box-shadow: 0 6px 14px rgba(255, 111, 0, 0.4);
	color: #fff;
}

.dr1030floatingbuttons .fab-btn.top:hover {
	transform: scale(1.15) rotate(-1deg) translateY(-5px);
	box-shadow: 0 10px 22px rgba(230, 81, 0, 0.5);
	color: #fffde7;
}

/* Animation keyframes */
@keyframes sparkleMove {
	0% {
		transform: translate(-50%, -50%) rotate(45deg);
	}
	100% {
		transform: translate(60%, 60%) rotate(45deg);
	}
}

@keyframes slideUpFade {
	from {
		opacity: 0;
		transform: translateY(50px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Mobile */
@media screen and (max-width: 480px) {
	.dr1030floatingbuttons .fab-btn {
		width: 50px;
		height: 50px;
		font-size: 20px;
	}
	.dr1030floatingbuttons .fab-btn:hover .label {
		right: 60px;
		font-size: 13px;
		padding: 6px 12px;
	}
}