/**
 * Floating Contact Menu - Neil Theme
 * Styles for the bottom floating contact bar.
 */

.floating-contact-menu {
	position: fixed;
	bottom: 15px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 9999;
	width: 92%;
	max-width: 680px;
	padding: 10px 18px;
	border-radius: 28px;
	border: 1px solid rgba(255, 255, 255, 0.15);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
	background-color: rgba(25, 25, 25, 0.9);
	display: flex;
	align-items: center;
	justify-content: space-between;
	transition: all 0.3s ease-in-out;
}

.floating-contact-menu .contact-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	width: 100%;
	gap: 4px;
	justify-content: space-between;
	align-items: center;
}

.floating-contact-menu .contact-item {
	flex: 1 1 0;
	min-width: 0;
	text-align: center;
	margin-bottom: 0;
	padding-bottom: 0;
}

.floating-contact-menu .contact-btn {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	color: #fff;
	font-size: 11px;
	font-weight: bold;
	padding: 5px 3px;
	transition: transform 0.2s ease-in-out;
}

.floating-contact-menu .contact-btn:hover {
	transform: translateY(-3px);
}

.floating-contact-menu .contact-btn img {
	width: 26px;
	height: 26px;
	margin-bottom: 4px;
}

.floating-contact-menu .contact-btn svg,
.floating-contact-menu .contact-btn i {
	width: 26px;
	height: 26px;
	font-size: 26px;
	line-height: 26px;
	margin-bottom: 4px;
	color: #fff;
}

.floating-contact-menu .contact-btn .btn-text {
	white-space: nowrap;
	max-width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
}

.floating-contact-menu--vertical {
	top: 50%;
	right: 15px;
	bottom: auto;
	left: auto;
	width: auto;
	max-width: none;
	padding: 12px 8px;
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 28px;
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
	background-color: rgba(25, 25, 25, 0.9);
	transform: translateY(-50%);
}

.floating-contact-menu--vertical .contact-list {
	width: auto;
	flex-direction: column;
	justify-content: center;
	gap: 10px;
}

.floating-contact-menu--vertical .contact-item {
	flex: 0 0 auto;
}

.floating-contact-menu--vertical .contact-btn {
	width: 72px;
	min-height: 70px;
	padding: 7px 5px 6px;
	border-radius: 18px;
	background-color: transparent;
	box-shadow: none;
	font-size: 10px;
	line-height: 1.1;
}

.floating-contact-menu--vertical .contact-btn img {
	width: 40px;
	height: 40px;
	margin-bottom: 5px;
}

.floating-contact-menu--vertical .contact-btn svg,
.floating-contact-menu--vertical .contact-btn i {
	width: 40px;
	height: 40px;
	font-size: 40px;
	line-height: 40px;
	margin-bottom: 5px;
}

.floating-contact-menu--vertical .contact-btn .btn-text {
	display: block;
	white-space: nowrap;
	max-width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
}

@media (max-width: 768px) {
	.floating-contact-menu {
		width: calc(100% - 30px);
		bottom: 10px;
		padding: 7px 8px;
		border-radius: 22px;
	}

	.floating-contact-menu .contact-btn {
		font-size: 9px;
		line-height: 1.1;
		padding: 3px 1px;
	}

	.floating-contact-menu .contact-btn img {
		width: 20px;
		height: 20px;
		margin-bottom: 2px;
	}

	.floating-contact-menu .contact-btn svg,
	.floating-contact-menu .contact-btn i {
		width: 20px;
		height: 20px;
		font-size: 20px;
		line-height: 20px;
		margin-bottom: 2px;
	}

	.floating-contact-menu--vertical {
		top: auto;
		right: 10px;
		bottom: 70px;
		left: auto;
		width: auto;
		padding: 9px 6px;
		border-radius: 22px;
		transform: none;
	}

	.floating-contact-menu--vertical .contact-list {
		width: auto;
		flex-direction: column-reverse;
		gap: 8px;
	}

	.floating-contact-menu--vertical .contact-btn {
		width: 58px;
		min-height: 56px;
		padding: 5px 4px 4px;
		border-radius: 15px;
		font-size: 8px;
		line-height: 1.05;
	}

	.floating-contact-menu--vertical .contact-btn img {
		width: 30px;
		height: 30px;
		margin-bottom: 3px;
	}

	.floating-contact-menu--vertical .contact-btn svg,
	.floating-contact-menu--vertical .contact-btn i {
		width: 30px;
		height: 30px;
		font-size: 30px;
		line-height: 30px;
		margin-bottom: 3px;
	}

}
