/*===================================== 
YOU CAN WRIGHT CUSTOME CSS 
======================================*/

/* Floating Information Button */
.floating-info-btn {
	height: 40px;
	width: 40px;
	background: #11507f !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: #0d3f5f !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: #11507f;
	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: #11507f;
	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: #11507f;
	text-decoration: none;
	transition: color 0.2s ease;
}

.contact-details a:hover {
	color: #0d3f5f;
	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;
	}
}

/* Navbar Sticky Fix - Keep same appearance as top */
.sticky-header {
	position: relative;
	z-index: 999;
}

.sticky-header.is-fixed {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	z-index: 9999;
	background: transparent;
	box-shadow: none;
	transition: none;
}

.sticky-header.is-fixed .main-bar {
	width: 100%;
	position: relative;
	background: #fff;
	box-shadow: none;
	padding: 0px 0px;
}

.sticky-header.is-fixed.color-fill .main-bar {
	background: #fff;
	box-shadow: none;
	padding: 0px 0px;
}

/* Ensure navbar stays on top when sticky - no visual changes */
.is-fixed .main-bar {
	width: 100% !important;
	z-index: 9999;
	background: #fff !important;
	box-shadow: none !important;
}

/* Keep same padding and margins */
.is-fixed .main-bar,
.is-fixed.color-fill .main-bar {
	padding: 0px 0px !important;
}

/* Fix for navbar container width when sticky */
.is-fixed .main-bar .container {
	width: 100%;
	max-width: 100%;
}

/* Ensure nav links look exactly the same as original */
.is-fixed .header-nav .nav > li,
.is-fixed.color-fill .header-nav .nav > li {
	margin: -1px 0 !important;
	padding: 0px 0 !important;
}

.is-fixed .header-nav .nav > li > a,
.is-fixed.color-fill .header-nav .nav > li > a {
	padding: 25px 12px !important;
	margin: 0px 0 !important;
	font-size: 14px !important;
	font-weight: 600 !important;
}

/* Ensure logo and other elements stay the same */
.is-fixed .logo-header,
.is-fixed.color-fill .logo-header {
	height: auto !important;
}

/* Remove any box-shadow or visual changes */
.sticky-header.is-fixed,
.sticky-header.is-fixed.color-fill {
	box-shadow: none !important;
}

.sticky-header.is-fixed .main-bar,
.sticky-header.is-fixed.color-fill .main-bar {
	box-shadow: none !important;
}

@media only screen and (min-width: 1200px) {
	.is-fixed .main-bar .container {
		max-width: 1200px;
		margin: 0 auto;
	}
}

/* Responsive: Keep same appearance on all screen sizes */
@media only screen and (max-width: 767px) {
	.is-fixed .header-nav .nav > li > a,
	.is-fixed.color-fill .header-nav .nav > li > a {
		padding: 12px 15px !important;
	}
}

@media only screen and (max-width: 991px) {
	.is-fixed .header-nav .nav > li > a,
	.is-fixed.color-fill .header-nav .nav > li > a {
		padding: 25px 12px !important;
	}
}

/* Top Bar Social Media Icons Alignment */
.mt-topbar-right {
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.mt-topbar-right .social-icons {
	display: flex;
	align-items: center;
	margin: 0;
	padding: 0;
}

.mt-topbar-right .social-icons li {
	display: flex;
	align-items: center;
	margin: 0 8px;
}

.mt-topbar-right .social-icons li:first-child {
	margin-left: 0;
}

.mt-topbar-right .social-icons li:last-child {
	margin-right: 0;
}

.mt-topbar-right .social-icons li a.fa {
	background-color: transparent !important;
	border: none !important;
	width: auto !important;
	height: auto !important;
	padding: 0 !important;
	font-size: 18px !important;
	color: #ffffff !important;
}
