/* Floating Contact Bar Widget */

.floating-contact-bar {
	position: fixed !important;
	z-index: 9999 !important;
	background-color: #d80031;
	padding: 20px;
	border-radius: 12px;
	display: flex;
	flex-direction: column;
	gap: 15px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
	transition: transform 0.3s ease;
}

.floating-contact-bar.position-right {
	right: 20px !important;
	top: 50%;
	transform: translateY(-50%);
}

.floating-contact-bar.position-left {
	left: 20px !important;
	top: 50%;
	transform: translateY(-50%);
}

.floating-contact-bar .phone-item {
	display: flex;
	flex-direction: column;
	gap: 8px;
	color: #ffffff;
}

.floating-contact-bar .phone-item .phone-header {
	display: flex;
	align-items: center;
	gap: 8px;
}

.floating-contact-bar .phone-item .phone-icon {
	width: 32px;
	height: 32px;
	flex-shrink: 0;
}

.floating-contact-bar .phone-item .phone-label {
	font-size: 14px;
	line-height: 1.2;
	opacity: 0.95;
}

.floating-contact-bar .phone-item .phone-number {
	font-size: 20px;
	font-weight: bold;
	line-height: 1.2;
	color: #ffffff;
	text-decoration: none;
	letter-spacing: 0.5px;
	display: block;
}

.floating-contact-bar .phone-item .phone-number:hover {
	text-decoration: underline;
}

.floating-contact-bar .contact-button {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	background-color: #ffffff;
	color: #d80031;
	padding: 12px 20px;
	border-radius: 8px;
	text-decoration: none;
	font-size: 16px;
	font-weight: 500;
	transition: all 0.3s ease;
	cursor: pointer;
}

.floating-contact-bar .contact-button:hover {
	background-color: #f5f5f5;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.floating-contact-bar .contact-button .button-icon {
	width: 20px;
	height: 20px;
	flex-shrink: 0;
}

/* Responsive - Tablet */
@media (max-width: 1100px) {
	.floating-contact-bar {
		padding: 15px;
		gap: 12px;
	}
	
	.floating-contact-bar.position-right {
		right: 15px;
	}
	
	.floating-contact-bar.position-left {
		left: 15px;
	}
	
	.floating-contact-bar .phone-item .phone-icon {
		width: 28px;
		height: 28px;
	}
	
	.floating-contact-bar .phone-item .phone-label {
		font-size: 13px;
	}
	
	.floating-contact-bar .phone-item .phone-number {
		font-size: 18px;
	}
	
	.floating-contact-bar .contact-button {
		padding: 10px 16px;
		font-size: 15px;
	}
}

/* Hide on mobile */
@media (max-width: 750px) {
	.floating-contact-bar.hide-on-mobile {
		display: none !important;
	}
}

/* Responsive - Mobile */
@media (max-width: 750px) {
	.floating-contact-bar {
		position: fixed;
		bottom: 0;
		left: 0;
		right: 0;
		top: auto;
		transform: none;
		border-radius: 0;
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: space-between;
		padding: 12px 15px;
		gap: 10px;
	}
	
	.floating-contact-bar.position-right,
	.floating-contact-bar.position-left {
		right: 0;
		left: 0;
		top: auto;
		transform: none;
	}
	
	.floating-contact-bar .phone-item {
		width: calc(50% - 5px);
		flex-direction: column;
		align-items: flex-start;
		gap: 6px;
	}
	
	.floating-contact-bar .phone-item .phone-icon {
		width: 24px;
		height: 24px;
	}
	
	.floating-contact-bar .phone-item .phone-label {
		font-size: 12px;
	}
	
	.floating-contact-bar .phone-item .phone-number {
		font-size: 16px;
	}
	
	.floating-contact-bar .contact-button {
		width: calc(50% - 5px);
		padding: 10px 12px;
		font-size: 14px;
		gap: 6px;
	}
	
	.floating-contact-bar .contact-button .button-icon {
		width: 18px;
		height: 18px;
	}
}
