/* Top Bar — clean, refined utility strip */
.top-bar {
	position: relative;
	z-index: 10;
	padding: 0;
	color: rgba(255, 255, 255, 0.72);
	background: linear-gradient(180deg, #121a2e 0%, #172238 100%);
	font-size: 12.5px;
	line-height: 1;
	letter-spacing: 0.03em;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.top-bar::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 2px;
	background: linear-gradient(90deg, transparent 0%, #15499a 18%, #2a7de8 50%, #15499a 82%, transparent 100%);
	opacity: 0.95;
	pointer-events: none;
}

.top-bar .top-bar-inner {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	min-height: 40px;
	padding-top: 0;
	padding-bottom: 2px;
}

.top-bar-lt,
.top-bar-rt {
	float: none !important;
	clear: none !important;
	display: flex;
	align-items: center;
	line-height: normal;
}

.top-bar-lt {
	flex: 1 1 auto;
	min-width: 0;
	overflow: hidden;
}

.top-bar-rt {
	flex: 0 0 auto;
	gap: 18px;
}

.top-bar-contact {
	display: flex;
	align-items: center;
	flex-wrap: nowrap;
	gap: 0 18px;
	margin: 0;
	padding: 0;
	list-style: none;
	white-space: nowrap;
}

.top-bar-item {
	display: inline-flex;
	align-items: center;
	flex: 0 0 auto;
	gap: 6px;
	min-width: 0;
}

.top-bar-icon {
	flex: 0 0 auto;
	width: 14px;
	text-align: center;
	font-size: 11px;
	color: rgba(42, 125, 232, 0.95);
}

.top-bar-label {
	flex: 0 0 auto;
	color: rgba(255, 255, 255, 0.45);
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.top-bar-item a {
	color: rgba(255, 255, 255, 0.88);
	text-decoration: none;
	transition: color 0.22s ease;
	white-space: nowrap;
}

.top-bar-item a:hover,
.top-bar-item a:active {
	color: #fff;
}

.top-bar-nav {
	display: inline-flex;
	align-items: center;
	gap: 2px;
	padding-right: 18px;
	border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.top-bar-nav a {
	position: relative;
	display: inline-block;
	padding: 6px 12px;
	color: rgba(255, 255, 255, 0.72);
	font-size: 12px;
	font-weight: 500;
	text-decoration: none;
	text-transform: capitalize;
	transition: color 0.22s ease, background-color 0.22s ease;
	border-radius: 2px;
}

.top-bar-nav a:hover,
.top-bar-nav a:active {
	color: #fff;
	background: rgba(255, 255, 255, 0.06);
}

.top-bar-social.social-network-container {
	margin: 0;
}

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

.top-bar-social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	color: rgba(255, 255, 255, 0.55);
	border-radius: 50%;
	transition: color 0.22s ease, background-color 0.22s ease, transform 0.22s ease;
}

.top-bar-social a:hover {
	color: #fff;
	background: rgba(21, 73, 154, 0.55);
	transform: translateY(-1px);
}

.top-bar-social .icon-socialmedia {
	display: block;
	fill: currentColor;
}

.top-bar a:link,
.top-bar a:visited {
	color: inherit;
}

@media only screen and (max-width: 1023px) {
	.top-bar .top-bar-inner {
		min-height: auto;
		padding-top: 8px;
		padding-bottom: 10px;
	}

	.top-bar-lt {
		width: 100%;
		justify-content: center;
	}

	.top-bar-contact {
		justify-content: center;
		flex-wrap: nowrap;
		gap: 0 14px;
	}

	.top-bar-item a {
		font-size: 12px;
	}
}

@media only screen and (max-width: 640px) {
	.top-bar-contact {
		flex-direction: row;
		flex-wrap: nowrap;
		justify-content: center;
		align-items: center;
		gap: 0 10px;
	}

	.top-bar-label {
		display: none;
	}

	.top-bar-item {
		gap: 5px;
	}

	.top-bar-item a {
		font-size: 11px;
	}
}
