:host,
* {
	box-sizing: border-box;
	font-family: Arial, sans-serif;
}

a {
	text-decoration: none;
}

.container {
	width: 90%;
	max-width: 1200px;
	margin: 0 auto;
}

.navbar {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 999 !important;
	padding: 26px 0 !important;
	transition: all 0.3s ease !important;
	background: transparent !important;
}

.navbar-fixed {
	background: #ffffff !important;
	padding: 16px 0 !important;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05) !important;
}

.navbar .container {
	display: flex !important;
	justify-content: space-between !important;
	align-items: center !important;
	min-height: 72px !important;
}

.navbar-logo {
	display: flex;
	align-items: center;
	gap: 14px;
	min-width: 0;
	flex-shrink: 1;
}

.navbar-logo img {
	height: 50px;
	width: auto;
}

.navbar-logo span {
	font-size: 25px;
	font-weight: 700;
	color: #333333;
}

.navbar-menu {
	display: flex !important;
	align-items: center !important;
	gap: 36px !important;
	flex-shrink: 0;
}

.nav-item {
	position: relative;
}

.navbar-menu a {
	color: #333333 !important;
	font-size: 16px !important;
	font-weight: 500 !important;
	transition: color 0.3s ease !important;
	outline: none !important;
	border: 0 !important;
}

.navbar-menu a:hover,
.navbar-menu a.active,
.navbar-menu a:focus {
	color: #e67e22 !important;
	outline: none !important;
	border: 0 !important;
}

.dropdown {
	position: absolute;
	top: 100%;
	left: 0;
	background: #ffffff !important;
	min-width: 340px !important;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05) !important;
	border-radius: 4px !important;
	padding: 16px 0 !important;
	opacity: 0 !important;
	visibility: hidden !important;
	transform: translateY(10px) !important;
	transition: all 0.3s ease !important;
	z-index: 999 !important;
}

.nav-item:hover .dropdown {
	opacity: 1 !important;
	visibility: visible !important;
	transform: translateY(0) !important;
}

.dropdown a {
	display: block !important;
	padding: 10px 24px !important;
	color: #333333 !important;
	font-size: 16px !important;
	line-height: 1.35 !important;
	white-space: normal !important;
	background: transparent !important;
	box-shadow: none !important;
	outline: none !important;
	border: 0 !important;
}

.dropdown a:hover,
.dropdown a:focus {
	background: #f8f9fa !important;
	color: #e67e22 !important;
	outline: none !important;
	border: 0 !important;
	box-shadow: none !important;
}

.consult-btn,
.mobile-consult-btn {
	background: #e67e22 !important;
	border-radius: 4px !important;
	padding: 12px 26px !important;
	color: #ffffff !important;
	font-weight: 500 !important;
	font-size: 16px !important;
	transition: background 0.3s ease !important;
}

.consult-btn:hover,
.mobile-consult-btn:hover {
	background: #d0661d;
}

.menu-toggle {
	display: none;
	width: 28px;
	height: 22px;
	padding: 0;
	background: transparent;
	border: 0;
	cursor: pointer;
	flex-direction: column;
	justify-content: space-between;
	align-items: stretch;
	outline: none;
}

.menu-toggle span {
	display: block;
	width: 100%;
	height: 2px;
	background: #333333;
	border-radius: 2px;
}

.mobile-menu {
	position: fixed;
	top: 0;
	right: 0;
	width: min(86vw, 340px);
	height: 100vh;
	min-height: 100svh;
	background: #ffffff !important;
	padding: 88px 28px 32px;
	display: flex;
	flex-direction: column;
	gap: 20px;
	z-index: 1001 !important;
	transform: translateX(100%);
	transition: transform 0.3s ease;
	box-shadow: -12px 0 30px rgba(0, 0, 0, 0.14);
	overflow-y: auto;
}

.mobile-menu.active {
	transform: translateX(0);
}

.mobile-menu a {
	color: #333333;
	font-size: 16px;
	line-height: 1.4;
	padding: 6px 0;
}

.mobile-consult-btn {
	margin-top: 20px;
	text-align: center;
}

@media (max-width: 1100px) {
	.navbar-menu {
		display: none !important;
	}

	.menu-toggle {
		display: flex !important;
	}
}

@media (max-width: 576px) {
	.navbar {
		padding: 10px 0 !important;
	}

	.navbar-fixed {
		padding: 8px 0 !important;
	}

	.navbar .container {
		width: calc(100% - 24px);
		min-height: 50px !important;
	}

	.navbar-logo {
		gap: 10px;
		min-width: 0;
		flex: 1;
	}

	.navbar-logo img {
		height: 34px;
	}

	.navbar-logo span {
		display: none;
	}

	.menu-toggle {
		flex-shrink: 0;
	}

	.mobile-menu {
		width: min(88vw, 320px);
		padding: 76px 24px 28px;
	}
}

@media (max-width: 380px) {
	.navbar-logo img {
		height: 30px;
	}

}
