/* ================= STICKY DISCLAIMER ================= */
.dr1058disclaimerbottomsticky {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	z-index: 9999;

	display: flex;
	flex-direction: column;
	gap: 2px;

	padding: 10px 16px;

	background: rgba(2, 6, 23, 0.92);
	backdrop-filter: blur(8px);

	border-top: 1px solid rgba(255, 255, 255, 0.08);

	text-align: center;
}

/* ================= TEXT ================= */
.dr1058disclaimerbottomsticky p {
	margin: 0;
	font-size: 11.5px;
	line-height: 1.4;
	color: #cbd5e1;
}

.dr1058disclaimerbottomsticky p:first-child {
	color: #facc15;
	font-weight: 500;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
	.dr1058disclaimerbottomsticky {
		padding: 8px 10px;
	}

	.dr1058disclaimerbottomsticky p {
		font-size: 10.5px;
		line-height: 1.3;
	}
}

/* ================= FLOATING BUTTON ROOT ================= */
.dr1058floatingbuttons {
	position: relative;
	z-index: 10000; /* ABOVE disclaimer */
}

/* ================= WRAPPER ================= */
.dr1058floatingbuttons .floating-buttons {
	position: fixed;
	right: 20px;
	bottom: 35px; /* pushed above sticky disclaimer */

	display: flex;
	flex-direction: column;
	gap: 16px;
	align-items: flex-end;
}

/* ================= BASE BUTTON ================= */
.dr1058floatingbuttons .fab-btn {
	position: relative;
	width: 58px;
	height: 58px;
	border-radius: 50%;

	display: flex;
	align-items: center;
	justify-content: center;

	color: #fff;
	text-decoration: none;
	font-size: 22px;

	background: rgba(255, 255, 255, 0.12);
	backdrop-filter: blur(16px) saturate(180%);
	-webkit-backdrop-filter: blur(16px) saturate(180%);

	border: 1px solid rgba(255,255,255,0.25);

	box-shadow:
		0 10px 25px rgba(0,0,0,0.15),
		inset 0 1px 0 rgba(255,255,255,0.6);

	transition: all 0.35s cubic-bezier(.4,0,.2,1);

	animation: dr1058Float 5s ease-in-out infinite;
}

/* stagger animation */
.dr1058floatingbuttons .fab-btn:nth-child(2){animation-delay:.2s;}
.dr1058floatingbuttons .fab-btn:nth-child(3){animation-delay:.4s;}
.dr1058floatingbuttons .fab-btn:nth-child(4){animation-delay:.6s;}
.dr1058floatingbuttons .fab-btn:nth-child(5){animation-delay:.8s;}

/* floating animation */
@keyframes dr1058Float {
	0%,100% { transform: translateY(0); }
	50% { transform: translateY(-8px); }
}

/* ================= ICON ================= */
.dr1058floatingbuttons .fab-btn .icon {
	font-size: 22px;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* ================= GLOSS EFFECT ================= */
.dr1058floatingbuttons .fab-btn::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: 50%;

	background: linear-gradient(
		120deg,
		transparent 30%,
		rgba(255,255,255,0.7),
		transparent 70%
	);

	opacity: 0;
	transition: 0.5s;
}

.dr1058floatingbuttons .fab-btn:hover::before {
	opacity: 1;
}

/* ================= HOVER ================= */
.dr1058floatingbuttons .fab-btn:hover {
	transform: translateY(-8px) scale(1.12);

	box-shadow:
		0 18px 40px rgba(0,0,0,0.25),
		inset 0 1px 0 rgba(255,255,255,0.8);
}

/* ================= LABEL ================= */
.dr1058floatingbuttons .fab-btn .label {
	position: absolute;
	right: 72px;
	top: 50%;
	transform: translateY(-50%) translateX(10px);

	opacity: 0;
	visibility: hidden;

	padding: 10px 16px;
	border-radius: 24px;

	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.3px;
	color: #fff;

	background: rgba(15,23,42,0.85);
	backdrop-filter: blur(12px);

	border: 1px solid rgba(255,255,255,0.15);

	box-shadow:
		0 6px 20px rgba(0,0,0,0.25);

	transition: 0.35s;
}

.dr1058floatingbuttons .fab-btn:hover .label {
	opacity: 1;
	visibility: visible;
	transform: translateY(-50%) translateX(0);
}

/* ================= COLORS ================= */

/* WhatsApp */
.dr1058floatingbuttons .fab-btn.whatsapp {
	background: linear-gradient(135deg, #25D366, #128C7E);
	box-shadow:
		0 12px 30px rgba(37,211,102,0.35),
		inset 0 1px 0 rgba(255,255,255,0.5);
}

/* Call */
.dr1058floatingbuttons .fab-btn.phone {
	background: linear-gradient(135deg, #2563eb, #60a5fa);
	box-shadow:
		0 12px 30px rgba(37,99,235,0.4),
		inset 0 1px 0 rgba(255,255,255,0.6);
}

/* Email */
.dr1058floatingbuttons .fab-btn.email {
	background: linear-gradient(135deg, #0ea5e9, #38bdf8);
	box-shadow:
		0 12px 30px rgba(14,165,233,0.35),
		inset 0 1px 0 rgba(255,255,255,0.5);
}

/* Share */
.dr1058floatingbuttons .fab-btn.share {
	background: linear-gradient(135deg, #6366f1, #a855f7);
	box-shadow:
		0 12px 30px rgba(139,92,246,0.35);
}

/* Top */
.dr1058floatingbuttons .fab-btn.top {
	background: linear-gradient(135deg, #0f172a, #020617);
	box-shadow:
		0 12px 30px rgba(0,0,0,0.5);
}

/* ================= ACTIVE ================= */
.dr1058floatingbuttons .fab-btn:active {
	transform: scale(0.95);
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

	.dr1058floatingbuttons .floating-buttons {
		right: 14px;
		bottom: 30px; /* adjusted for mobile */
		gap: 12px;
	}

	.dr1058floatingbuttons .fab-btn {
		width: 50px;
		height: 50px;
		font-size: 18px;
	}

	.dr1058floatingbuttons .fab-btn .label {
		display: none;
	}
}