/*===================================== 
FLOATING CONTACT INFO BUTTON
======================================*/

/* Floating Information Button */
.floating-info-btn {
	height: 40px;
	width: 40px;
	background: #85378F !important;
	border: none !important;
	position: relative !important;
	text-transform: uppercase;
	margin: 0 !important;
	padding: 0 !important;
	cursor: pointer !important;
	display: block !important;
	visibility: visible !important;
	opacity: 1 !important;
	text-align: center;
	color: #fff !important;
	border-radius: 50% !important;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3) !important;
	transition: all 0.3s ease;
	overflow: visible !important;
	pointer-events: auto !important;
}

.floating-info-btn:hover {
	background: #BF5DA7 !important;
	transform: scale(1.1) !important;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4) !important;
}

.floating-info-btn i {
	font-size: 20px;
	line-height: 40px;
}

@media only screen and (max-width: 480px) {
	.floating-info-btn {
		height: 35px;
		width: 35px;
		bottom: 60px;
		right: 15px;
	}
	
	.floating-info-btn i {
		font-size: 18px;
		line-height: 35px;
	}
}

/* Floating Info Wrapper */
.floating-info-wrapper {
	position: fixed;
	right: 15px;
	bottom: 70px;
	z-index: 999999;
}

/* Contact Info Popup */
.contact-info-popup {
	position: absolute;
	bottom: 50px;
	right: 0;
	width: 320px;
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px) scale(0.95);
	transition: all 0.3s ease;
	z-index: 1000000;
}

.contact-info-popup.show {
	opacity: 1;
	visibility: visible;
	transform: translateY(0) scale(1);
}

.contact-info-popup::after {
	content: '';
	position: absolute;
	bottom: -8px;
	right: 20px;
	width: 0;
	height: 0;
	border-left: 8px solid transparent;
	border-right: 8px solid transparent;
	border-top: 8px solid #fff;
}

.contact-popup-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px 20px;
	border-bottom: 1px solid #eee;
	background: #85378F;
	border-radius: 8px 8px 0 0;
}

.contact-popup-header h4 {
	margin: 0;
	color: #fff;
	font-size: 18px;
	font-weight: 600;
}

.contact-popup-close {
	background: none;
	border: none;
	color: #fff;
	font-size: 24px;
	cursor: pointer;
	padding: 0;
	width: 24px;
	height: 24px;
	line-height: 24px;
	text-align: center;
	transition: transform 0.2s ease;
}

.contact-popup-close:hover {
	transform: rotate(90deg);
}

.contact-popup-content {
	padding: 20px;
}

.contact-info-item {
	display: flex;
	align-items: flex-start;
	margin-bottom: 20px;
	padding-bottom: 20px;
	border-bottom: 1px solid #f0f0f0;
}

.contact-info-item:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}

.contact-icon {
	width: 40px;
	height: 40px;
	background: #85378F;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 18px;
	margin-right: 15px;
	flex-shrink: 0;
}

.contact-details h5 {
	margin: 0 0 5px 0;
	font-size: 14px;
	font-weight: 600;
	color: #333;
}

.contact-details p {
	margin: 0;
	font-size: 14px;
	color: #666;
}

.contact-details a {
	color: #85378F;
	text-decoration: none;
	transition: color 0.2s ease;
}

.contact-details a:hover {
	color: #BF5DA7;
	text-decoration: underline;
}

@media only screen and (max-width: 480px) {
	.floating-info-wrapper {
		bottom: 60px;
		right: 15px;
	}
	
	.contact-info-popup {
		width: 280px;
		right: -10px;
	}
	
	.contact-popup-header {
		padding: 12px 15px;
	}
	
	.contact-popup-header h4 {
		font-size: 16px;
	}
	
	.contact-popup-content {
		padding: 15px;
	}
	
	.contact-info-item {
		margin-bottom: 15px;
		padding-bottom: 15px;
	}
	
	.contact-icon {
		width: 35px;
		height: 35px;
		font-size: 16px;
		margin-right: 12px;
	}
}

