.floating-contact {
			position: fixed;
			bottom: 20px;
			right: 20px;
			z-index: 9999;
			display: flex;
			flex-direction: column;
			gap: 15px;
		}

		.floating-contact a {
			display: flex;
			align-items: center;
			justify-content: center;
			width: 55px;
			height: 55px;
			border-radius: 50%;
			background-color: #25D366;
			/* WhatsApp green */
			color: white;
			font-size: 24px;
			box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
			transition: all 0.3s ease;
			text-decoration: none;
		}

		.floating-contact a.contact {
			background-color: #007bff;
			/* Blue for contact */
		}

		.floating-contact a:hover {
			transform: scale(1.1);
		}