/* =========================================================
   GCTS Header — Top Bar + Main Header Row
   ========================================================= */

/* --- Top bar (phone / email / social) --- */
.gcts-top-bar {
	background: var(--gcts-topbar-bg);
	color: #E1F5EE;
	font-size: 12.5px;
}

.gcts-top-bar-inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 6px 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
}

.gcts-top-bar-contact {
	display: flex;
	gap: 18px;
	align-items: center;
	flex-wrap: wrap;
}

.gcts-top-bar-contact a,
.gcts-top-bar-social a {
	color: #E1F5EE;
	text-decoration: none;
}

.gcts-top-bar-contact a:hover,
.gcts-top-bar-social a:hover {
	color: #ffffff;
	text-decoration: underline;
}

.gcts-top-bar-contact i {
	margin-right: 4px;
	font-size: 13px;
}

.gcts-top-bar-social {
	display: flex;
	gap: 12px;
	align-items: center;
}

.gcts-top-bar-social i {
	font-size: 14px;
}

/* --- Main header row --- */
.ast-primary-header,
.site-header .ast-primary-header-bar {
	background: #ffffff;
}

/* Logo sizing */
.site-header .custom-logo-link img,
.ast-site-identity .custom-logo {
	height: 52px;
	width: auto;
	max-height: 60px;
	object-fit: contain;
}

/* Main nav links */
.main-header-bar-navigation .main-navigation ul li > a,
.ast-header-navigation-1 ul li > a {
	font-size: 14px;
	font-weight: 500;
	color: #1B5E56;
	white-space: nowrap;
}

.main-header-bar-navigation .main-navigation ul li > a:hover,
.main-header-bar-navigation .main-navigation ul li.current-menu-item > a {
	color: var(--gcts-teal);
}

.main-header-bar-navigation .main-navigation ul li i.ti-chevron-down {
	font-size: 12px;
	margin-left: 3px;
}

/* --- "Register Your Company" CTA button (last menu item) --- */
.menu-cta-button > a {
	background: var(--gcts-teal) !important;
	color: #ffffff !important;
	font-size: 12.5px !important;
	font-weight: 500 !important;
	padding: 9px 16px !important;
	border-radius: 6px !important;
	white-space: nowrap;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	transition: background 0.15s ease;
}

.menu-cta-button > a:hover {
	background: var(--gcts-teal-dark) !important;
	color: #ffffff !important;
}

.menu-cta-button > a::before {
	font-family: 'tabler-icons' !important;
	content: "\ea15"; /* building-bank glyph fallback; safe to remove if it renders oddly */
	font-size: 14px;
}

/* Prevent header items from squeezing/overlapping on medium screens */
.main-header-bar {
	display: flex;
	align-items: center;
	gap: 18px;
	flex-wrap: nowrap;
}

.ast-site-identity {
	flex-shrink: 0;
}

.main-header-bar-navigation {
	flex: 1 1 auto;
	min-width: 0;
}

@media (max-width: 921px) {
	.gcts-top-bar-inner {
		flex-direction: column;
		gap: 4px;
		align-items: flex-start;
	}
}
