/* =========================
   FLOATING BUTTONS SECTION
========================= */
.dr1056floatingbuttons {
	position: relative;
	z-index: 9999;
}

/* =========================
   BUTTONS WRAPPER
========================= */
.dr1056floatingbuttons .floating-buttons {
	position: fixed;
	right: 18px;
	bottom: 18px;
	display: flex;
	flex-direction: column;
	gap: 14px;
	align-items: flex-end;
	z-index: 10000;
	font-family: 'Poppins', sans-serif;
}

/* =========================
   BASE BUTTON (FLAT STYLE)
========================= */
.dr1056floatingbuttons .fab-btn {
	position: relative;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.2);

	display: flex;
	align-items: center;
	justify-content: center;

	cursor: pointer;
	text-decoration: none;
	color: #fff;
	font-size: 20px;

	background: rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);

	/* ❌ removed shadows */
	box-shadow: none;

	transition: transform 0.3s ease, background 0.3s ease;
	animation: dr1056FabFloat 4s ease-in-out infinite;
}

/* stagger animation */
.dr1056floatingbuttons .fab-btn:nth-child(2) { animation-delay: 0.3s; }
.dr1056floatingbuttons .fab-btn:nth-child(3) { animation-delay: 0.6s; }
.dr1056floatingbuttons .fab-btn:nth-child(4) { animation-delay: 0.9s; }
.dr1056floatingbuttons .fab-btn:nth-child(5) { animation-delay: 1.2s; }

/* floating animation */
@keyframes dr1056FabFloat {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-5px); }
}

/* =========================
   ICON
========================= */
.dr1056floatingbuttons .fab-btn .icon {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
}

/* =========================
   HOVER (SIMPLE)
========================= */
.dr1056floatingbuttons .fab-btn:hover {
	transform: translateY(-5px) scale(1.05);
}

.dr1056floatingbuttons .fab-btn:active {
	transform: scale(0.95);
}

/* =========================
   REMOVE SHINE EFFECT
========================= */
.dr1056floatingbuttons .fab-btn::before {
	display: none;
}

/* =========================
   TOOLTIP LABEL
========================= */
.dr1056floatingbuttons .fab-btn .label {
	position: absolute;
	right: 65px;
	top: 50%;
	transform: translateY(-50%) translateX(10px);

	opacity: 0;
	visibility: hidden;

	white-space: nowrap;
	padding: 8px 14px;
	border-radius: 20px;

	font-size: 12px;
	font-weight: 600;
	color: #fff;

	background: rgba(0, 0, 0, 0.85);
	border: 1px solid rgba(255, 255, 255, 0.15);

	/* ❌ removed shadow */
	box-shadow: none;

	transition: 0.3s;
}

.dr1056floatingbuttons .fab-btn .label::after {
	content: "";
	position: absolute;
	right: -6px;
	top: 50%;
	width: 10px;
	height: 10px;
	background: rgba(0, 0, 0, 0.85);
	transform: translateY(-50%) rotate(45deg);
}

.dr1056floatingbuttons .fab-btn:hover .label {
	opacity: 1;
	visibility: visible;
	transform: translateY(-50%) translateX(0);
}

/* =========================
   BUTTON COLORS (FLAT)
========================= */

/* WHATSAPP */
.dr1056floatingbuttons .fab-btn.whatsapp {
	background: #25D366;
	animation: none; /* ❌ removed pulse */
}

/* PHONE */
.dr1056floatingbuttons .fab-btn.phone {
	background: #ff8a00;
}

/* BROCHURES */
.dr1056floatingbuttons .fab-btn.brochures {
	background: #4facfe;
}

/* SHARE */
.dr1056floatingbuttons .fab-btn.share {
	background: #7f00ff;
}

/* TOP */
.dr1056floatingbuttons .fab-btn.top {
	background: #333;
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {

	.dr1056floatingbuttons .floating-buttons {
		right: 12px;
		bottom: 12px;
		gap: 10px;
	}

	.dr1056floatingbuttons .fab-btn {
		width: 46px;
		height: 46px;
	}

	.dr1056floatingbuttons .fab-btn .label {
		display: none;
	}
}