/* THOWL Floating Contact */
.thowl-floating-contact {
	position: fixed;
	right: 22px;
	bottom: 22px;
	z-index: 99999;
	display: flex;
	flex-direction: column;
	gap: 12px;
	align-items: flex-end;
}
.thowl-contact-btn {
	position: relative;
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	width: 58px;
	height: 58px;
	border-radius: 50%;
	text-decoration: none !important;
	box-shadow: 0 8px 24px rgba(0,0,0,.18);
	transition: transform .18s ease, box-shadow .18s ease;
}
.thowl-contact-btn:hover,
.thowl-contact-btn:focus {
	transform: translateY(-2px);
	box-shadow: 0 10px 28px rgba(0,0,0,.23);
}
.thowl-contact-btn svg {
	width: 29px;
	height: 29px;
	fill: #fff;
}
.thowl-contact-whatsapp { background: #25D366; }
.thowl-contact-phone { background: #0b3c67; }
.thowl-contact-tooltip {
	position: absolute;
	right: 70px;
	top: 50%;
	transform: translateY(-50%);
	white-space: nowrap;
	padding: 7px 10px;
	border-radius: 6px;
	background: #11283f;
	color: #fff;
	font-size: 13px;
	font-weight: 700;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity .15s ease, visibility .15s ease;
}
.thowl-contact-btn:hover .thowl-contact-tooltip,
.thowl-contact-btn:focus .thowl-contact-tooltip {
	opacity: 1;
	visibility: visible;
}
@media (max-width: 767px) {
	.thowl-floating-contact { right: 15px; bottom: 16px; gap: 10px; }
	.thowl-contact-btn { width: 54px; height: 54px; }
	.thowl-contact-btn svg { width: 27px; height: 27px; }
	.thowl-contact-tooltip { display: none; }
}
#kt-scroll-up,
.scroll-up-wrap,
.scroll-to-top {
	margin-bottom: 136px !important;
}
