/* ================= FLOATING ROOT ================= */
.dr1059floatingbuttons {
	position: relative;
	z-index: 10000;
}

/* ================= WRAPPER ================= */
.dr1059floatingbuttons .floating-buttons {
	position: fixed;
	right: 22px;
	bottom: 42px;

	display: flex;
	flex-direction: column;
	gap: 14px;
	align-items: flex-end;
}

/* ================= BASE BUTTON ================= */
.dr1059floatingbuttons .fab-btn {
	width: 60px;
	height: 60px;

	border-radius: 14px;

	display: flex;
	align-items: center;
	justify-content: center;

	color: #fff;
	text-decoration: none;

	font-size: 18px;

	background: rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(24px);
	-webkit-backdrop-filter: blur(24px);

	border: 1px solid rgba(212,175,55,0.22);

	box-shadow:
		0 18px 45px rgba(0,0,0,0.18),
		inset 0 1px 0 rgba(255,255,255,0.25);

	position: relative;
	overflow: hidden;

	transition: all 0.35s ease;

	animation: caFloat 6s ease-in-out infinite;
}

/* ================= FLOAT ANIMATION ================= */
@keyframes caFloat {
	0%,100% { transform: translateY(0); }
	50% { transform: translateY(-6px); }
}

/* ================= GOLD SHINE EFFECT ================= */
.dr1059floatingbuttons .fab-btn::before {
	content: "";
	position: absolute;
	inset: 0;

	background: linear-gradient(
		120deg,
		transparent 25%,
		rgba(212,175,55,0.35),
		transparent 70%
	);

	transform: translateX(-120%);
	transition: 0.7s ease;
}

.dr1059floatingbuttons .fab-btn:hover::before {
	transform: translateX(120%);
}

/* ================= HOVER ================= */
.dr1059floatingbuttons .fab-btn:hover {
	transform: translateY(-6px) scale(1.07);

	box-shadow:
		0 28px 65px rgba(0,0,0,0.28),
		inset 0 1px 0 rgba(255,255,255,0.35);
}

/* ================= ICON ================= */
.dr1059floatingbuttons .fab-btn .icon {
	font-size: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* ================= LABEL ================= */
.dr1059floatingbuttons .fab-btn .label {
	position: absolute;
	right: 78px;
	top: 50%;
	transform: translateY(-50%) translateX(10px);

	padding: 9px 13px;
	border-radius: 10px;

	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.2px;

	color: #fff;

	background: rgba(15, 23, 42, 0.92);
	backdrop-filter: blur(16px);

	border: 1px solid rgba(212,175,55,0.25);

	box-shadow: 0 10px 25px rgba(0,0,0,0.25);

	opacity: 0;
	visibility: hidden;

	transition: all 0.3s ease;
}

.dr1059floatingbuttons .fab-btn:hover .label {
	opacity: 1;
	visibility: visible;
	transform: translateY(-50%) translateX(0);
}

/* ================= BUTTON COLORS (CA PREMIUM SYSTEM) ================= */

/* WhatsApp - Trust Green */
.dr1059floatingbuttons .fab-btn.whatsapp {
	background: linear-gradient(135deg, #15803d, #22c55e);
	box-shadow: 0 16px 40px rgba(34,197,94,0.22);
}

/* Call - Corporate Navy Blue */
.dr1059floatingbuttons .fab-btn.phone {
	background: linear-gradient(135deg, #0f2f55, #1d4ed8);
	box-shadow: 0 16px 40px rgba(29,78,216,0.25);
}

/* Email - Professional Sky Blue */
.dr1059floatingbuttons .fab-btn.email {
	background: linear-gradient(135deg, #0369a1, #38bdf8);
	box-shadow: 0 16px 40px rgba(56,189,248,0.22);
}

/* Share - Premium Purple */
.dr1059floatingbuttons .fab-btn.share {
	background: linear-gradient(135deg, #4f46e5, #a855f7);
	box-shadow: 0 16px 40px rgba(139,92,246,0.22);
}

/* Top - Luxury Dark Finance */
.dr1059floatingbuttons .fab-btn.top {
	background: linear-gradient(135deg, #0b1220, #020617);
	box-shadow: 0 16px 40px rgba(0,0,0,0.45);
}

/* ================= SMS BUTTON (NEW) ================= */
.dr1059floatingbuttons .fab-btn.sms {
	background: linear-gradient(135deg, #f59e0b, #f97316);
	box-shadow:
		0 16px 40px rgba(245,158,11,0.25),
		inset 0 1px 0 rgba(255,255,255,0.3);
}

.dr1059floatingbuttons .fab-btn.sms:hover {
	box-shadow:
		0 28px 65px rgba(245,158,11,0.35),
		inset 0 1px 0 rgba(255,255,255,0.35);
}

/* ================= ACTIVE ================= */
.dr1059floatingbuttons .fab-btn:active {
	transform: scale(0.94);
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

	.dr1059floatingbuttons .floating-buttons {
		right: 14px;
		bottom: 30px;
		gap: 10px;
	}

	.dr1059floatingbuttons .fab-btn {
		width: 52px;
		height: 52px;
		border-radius: 12px;
	}

	.dr1059floatingbuttons .fab-btn .label {
		display: none;
	}
}