/* ===== MWTS header/footer refresh ===== */

/* -- Header -- */
#site-header.site-header {
	position: sticky;
	top: 0;
	z-index: 999;
	background: #fff;
	padding: 14px 24px !important;
	box-shadow: 0 2px 14px rgba(0, 0, 0, 0.07);
}
#site-header .header-inner {
	max-width: 1180px;
	margin: 0 auto;
	width: 100%;
	align-items: center;
}
#site-header .site-branding {
	gap: 0 !important;
}
#site-header .custom-logo-link img {
	height: 46px;
	width: auto;
}
#site-header .site-description {
	display: none;
}
#site-header .site-navigation {
	gap: 4px;
}
#site-header .site-navigation ul.menu li a {
	color: #2e2e2e;
	font-weight: 600;
	font-size: 15px;
	padding: 10px 16px;
	border-radius: 7px;
	transition: color 0.15s ease, background-color 0.15s ease;
}
#site-header .site-navigation ul.menu li a:hover,
#site-header .site-navigation ul.menu li.current-menu-item > a {
	color: #1c9ec1;
	background: rgba(28, 158, 193, 0.08);
}
.header-phone-cta {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: #1c9ec1;
	color: #fff !important;
	font-weight: 600;
	font-size: 14px;
	padding: 10px 20px;
	border-radius: 30px;
	margin-inline-start: 10px;
	text-decoration: none;
	transition: background-color 0.15s ease, transform 0.15s ease;
	white-space: nowrap;
}
.header-phone-cta:hover {
	background: #167f9c;
	transform: translateY(-1px);
}
.header-phone-cta .fi {
	flex: none;
}
@media (max-width: 991px) {
	.header-phone-cta span {
		display: none;
	}
	.header-phone-cta {
		padding: 10px;
		margin-inline-start: 8px;
	}
}

/* mobile dropdown polish (structure/behaviour untouched, styling only) */
.site-navigation-toggle-holder .site-navigation-toggle {
	background: rgba(28, 158, 193, 0.1) !important;
	color: #1c9ec1 !important;
}
.site-navigation-dropdown ul.menu li a {
	font-weight: 500;
	font-size: 15px;
}
.site-navigation-dropdown ul.menu li.current-menu-item a {
	background: #1c9ec1 !important;
}

/* -- Footer -- */
.site-footer-refresh {
	background: #24282b;
	color: #cfd3d6;
	margin-top: 64px;
}
.footer-refresh {
	max-width: 1180px;
	margin: 0 auto;
	padding: 56px 24px 34px;
	display: grid;
	grid-template-columns: 1.3fr 1fr 1.3fr;
	gap: 40px;
}
.footer-refresh .footer-col h4 {
	color: #fff;
	font-size: 16px;
	font-weight: 700;
	letter-spacing: 0.3px;
	margin: 0 0 18px;
}
.footer-brand img {
	height: 42px;
	width: auto;
	margin-bottom: 16px;
	border-radius: 8px;
}
.footer-brand p {
	font-size: 14px;
	line-height: 1.7;
	color: #a9adb0;
	margin: 0;
	max-width: 34ch;
}
.footer-links ul,
.footer-contact ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.footer-links a {
	color: #cfd3d6;
	text-decoration: none;
	font-size: 14px;
	transition: color 0.15s ease;
}
.footer-links a:hover {
	color: #1c9ec1;
}
.footer-contact li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 14px;
	color: #cfd3d6;
	line-height: 1.5;
}
.footer-contact .fi {
	flex: none;
	margin-top: 3px;
	color: #1c9ec1;
}
.footer-contact a {
	color: #cfd3d6;
	text-decoration: none;
}
.footer-contact a:hover {
	color: #1c9ec1;
}
.footer-whatsapp {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: 8px;
	background: #1c9ec1;
	color: #fff !important;
	padding: 10px 18px;
	border-radius: 24px;
	font-size: 13px;
	font-weight: 600;
	text-decoration: none;
	width: fit-content;
	transition: background-color 0.15s ease, transform 0.15s ease;
}
.footer-whatsapp:hover {
	background: #167f9c;
	transform: translateY(-1px);
}
.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	padding: 18px 24px;
	text-align: center;
	font-size: 13px;
	color: #8a8e91;
}
.footer-bottom p {
	margin: 0;
}
@media (max-width: 820px) {
	.footer-refresh {
		grid-template-columns: 1fr;
		gap: 34px;
		padding: 44px 24px 28px;
	}
}
