.site-header {
	width: 100%;
	background: linear-gradient(135deg, #2c2c2c 0%, #4a4a4a 50%, #1a1a1a 100%);
	padding: 20px 0;
	position: sticky;
	top: 0;
	z-index: 1000;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.header-container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 40px;
}

.header-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
}

.header-logo {
	flex-shrink: 0;
}

.logo-link {
	font-size: 28px;
	font-weight: 700;
	color: #ffffff;
	text-decoration: none;
	letter-spacing: 2px;
	text-transform: uppercase;
	transition: all 0.3s ease;
	display: block;
	position: relative;
}

.logo-link::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 0;
	height: 2px;
	background: linear-gradient(90deg, #ffffff 0%, #cccccc 100%);
	transition: width 0.3s ease;
}

.logo-link:hover {
	color: #f0f0f0;
	transform: translateY(-2px);
}

.logo-link:hover::after {
	width: 100%;
}

.header-nav {
	display: flex;
	align-items: center;
	gap: 35px;
	flex: 1;
	justify-content: center;
}

.nav-link {
	font-size: 16px;
	font-weight: 500;
	color: #e0e0e0;
	text-decoration: none;
	position: relative;
	transition: all 0.3s ease;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	padding: 8px 0;
}

.nav-link::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background: linear-gradient(90deg, #ffffff 0%, #cccccc 100%);
	transition: width 0.3s ease;
}

.nav-link:hover {
	color: #ffffff;
}

.nav-link:hover::after {
	width: 100%;
}

.header-actions {
	flex-shrink: 0;
}

.header-button {
	display: inline-block;
	padding: 12px 30px;
	background: linear-gradient(135deg, #2661c5 0%, #2d5a4f 100%);
	color: #ffffff;
	text-decoration: none;
	border-radius: 25px;
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(38, 97, 197, 0.3);
	border: none;
	cursor: pointer;
}

.header-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(38, 97, 197, 0.4);
	background: linear-gradient(135deg, #1e4a9e 0%, #1e3d35 100%);
}

.header-button:active {
	transform: translateY(0);
}

.header-mobile-toggle {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 8px !important;
}

@media (min-width: 969px) {
	.header-mobile-toggle {
		display: none !important;
	}
}

.header-mobile-toggle span {
	width: 25px;
	height: 25px;
}


@media (max-width: 1200px) {
	.header-nav {
		gap: 25px;
	}
	
	.nav-link {
		font-size: 14px;
	}
	
	.header-button {
		padding: 10px 24px;
		font-size: 13px;
	}
}

@media (max-width: 968px) {
	.site-header {
		padding: 15px 0;
	}
	
	.header-container {
		padding: 0 20px;
	}
	
	.header-top {
		gap: 20px;
	}
	
	.logo-link {
		font-size: 24px;
	}
	
	.header-nav {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: linear-gradient(135deg, #2c2c2c 0%, #4a4a4a 50%, #1a1a1a 100%);
		flex-direction: column;
		padding: 20px;
		gap: 15px;
		box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
	}
	
	.header-nav.active {
		display: flex;
	}
	
	.nav-link {
		width: 100%;
		text-align: center;
		padding: 12px;
		border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	}
	
	.nav-link:last-child {
		border-bottom: none;
	}
	
	.header-button {
		padding: 10px 20px;
		font-size: 12px;
	}
	
	.header-mobile-toggle {
		display: flex;
	}
	
	.header-actions {
		display: block;
	}
}

@media (max-width: 640px) {
	.logo-link {
		font-size: 20px;
		letter-spacing: 1px;
	}
	
	.header-button {
		padding: 8px 16px;
		font-size: 11px;
	}
	
	.header-actions {
		display: block;
	}
	
	.header-mobile-toggle {
		display: flex;
	}
}

