/**
 * 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: 500px;
	padding: 10px 25px;
	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%;
	justify-content: space-between;
	align-items: center;
}

.floating-contact-menu .contact-item {
	flex-grow: 1;
	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: 12px;
	font-weight: bold;
	padding: 5px;
	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 .btn-text {
	white-space: nowrap;
}

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

	.floating-contact-menu .contact-btn {
		font-size: 11px;
		padding: 3px;
	}

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