.dr1015floatingbuttons {
	/* Container scope if needed */
	
}

.dr1015floatingbuttons body {
	margin: 0;
	padding: 0;
	font-family: 'Poppins', sans-serif;
	background: #fffaf2; /* Gentle ivory background */
	min-height: 100vh;
	position: relative;
}

.dr1015floatingbuttons h1 {
	text-align: center;
	padding-top: 100px;
	color: #444;
	font-weight: 600;
}

.dr1015floatingbuttons p {
	max-width: 600px;
	margin: 20px auto;
	text-align: center;
	color: #777;
	font-size: 18px;
}

.dr1015floatingbuttons .floating-buttons {
	position: fixed;
	bottom: 20px;
	right: 20px;
	z-index: 1000;
	display: flex;
	flex-direction: column;
	gap: 15px;
}

/* Floating Button Styles */
.dr1015floatingbuttons .fab-btn {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 24px;
	border: none;
	cursor: pointer;
	text-decoration: none;
	background: #d4af37; /* fallback gold */
	box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
	transition: all 0.3s ease;
}

.dr1015floatingbuttons .fab-btn:hover {
	transform: translateY(-6px) scale(1.08);
	box-shadow: 0 10px 30px rgba(212, 175, 55, 0.6);
}

/* Button Variants */
.dr1015floatingbuttons .fab-btn.whatsapp {
	background: linear-gradient(145deg, #25d366, #1ebea5);
	/* WhatsApp green */
	box-shadow: 0 6px 15px rgba(37, 211, 102, 0.4);
}

.dr1015floatingbuttons .fab-btn.phone {
	background: linear-gradient(145deg, #b8860b, #daa520);
	/* Rich gold brown */
	box-shadow: 0 6px 15px rgba(218, 165, 32, 0.4);
}

.dr1015floatingbuttons .fab-btn.top {
	background: linear-gradient(145deg, #ffcc00, #ffdf70);
	/* Elegant gold */
	box-shadow: 0 6px 15px rgba(255, 204, 0, 0.4);
}

/* Add a glowing effect */
.dr1015floatingbuttons .fab-btn::after {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	box-shadow: 0 0 12px rgba(255, 215, 0, 0.3);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.dr1015floatingbuttons .fab-btn:hover::after {
	opacity: 1;
}

/* Mobile Responsive */
@media screen and (max-width: 480px) {
	.dr1015floatingbuttons .floating-buttons {
		bottom: 15px;
		right: 15px;
		gap: 12px;
	}
	.dr1015floatingbuttons .fab-btn {
		width: 52px;
		height: 52px;
		font-size: 20px;
	}
}