/* Floating Contact Buttons CSS */
.contact-buttons {
	position: fixed;
	bottom: 65px;
	left: 5px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	z-index: 1000;
}
.contact-buttons a {
	color: white;
	font-size: 15px;
	padding: 10px 10px;
	border-radius: 50px;
	box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
	text-align: center;
	transition: all 0.3s;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 500;
	width: 125px;
	text-decoration: none;
	transition: transform 0.3s ease;
	font-family: "Roboto Condensed", sans-serif;
	letter-spacing: 1px;
}
.contact-buttons a.call-button {
	background-color: #da251c;
}
.contact-buttons a.whatsapp-button {
	background-color: #25D366;
}
.contact-buttons a i {
	margin-right: 10px;
}
.contact-buttons a:hover {
	transform: scale(0.95);
}
@media (max-width: 768px) { 
	.contact-buttons {
		width: 100%;
		margin: 0;
		padding: 0;
		position: fixed;
		left: 0;
		bottom: 0;
		z-index: 99;
		display: block;
	}
	.contact-buttons a {
		min-width: auto;
        padding: 10px 12px;
        font-size: 14px;
        float: left;
        width: 50%;
        overflow: hidden;
        text-align: center;
        border-radius: 0;
	}
}