/* =========================================
DESKTOP NAVIGATION
========================================= */
.ResponsiveNav {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	height: 100%;
}

.ResponsiveNav>ul {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 24px;
}

.ResponsiveNav ul li {
	position: relative;
}

.ResponsiveNav ul li a {
	display: block;
	color: var(--white);
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0.5px;
	position: relative;
	padding: 10px 0;
}

/* HOVER EFFECT */
.ResponsiveNav ul li a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 0;
	height: 2px;
	background: var(--primary);
	transition: var(--transition);
}

.ResponsiveNav ul li a:hover::after,
.ResponsiveNav ul li.active a::after {
	width: 100%;
}

.ResponsiveNav ul li a:hover,
.ResponsiveNav ul li.active a {
	color: var(--primary);
}

/* =========================================
DROPDOWN
========================================= */
.ResponsiveNav ul li ul {
	position: absolute;
	top: 120%;
	left: 0;
	min-width: 260px;
	background: var(--white);
	border-radius: 18px;
	padding: 14px 0;
	box-shadow: var(--shadow);
	opacity: 0;
	visibility: hidden;
	transform: translateY(15px);
	transition: 0.4s ease;
	z-index: 999;
}

.ResponsiveNav ul li:hover>ul {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

/* DROPDOWN LINKS */
.ResponsiveNav ul li ul li a {
	color: var(--text);
	padding: 12px 24px;
	font-size: 14px;
	font-weight: 500;
}

.ResponsiveNav ul li ul li a::after {
	display: none;
}

.ResponsiveNav ul li ul li a:hover {
	background: rgba(207, 85, 0, 0.08);
	color: var(--primary);
}

/* ======= ARROW ======= */
.arrow {
	margin-left: 5px;
	font-size: 13px;
	transition: var(--transition);
}

.has-sub:hover .arrow {
	transform: rotate(45deg);
}

/* ====== CTA BUTTON ========== */
.contact-btn a {
	background: var(--primary);
	min-height: 84px;
	min-width: 145px;
	padding: 16px 18px;
	border-radius: 16px;
	display: flex !important;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	line-height: 1.1;
	color: var(--white) !important;
	font-size: 16px;
	font-weight: 600;
}

/* SECOND LINE */
.contact-btn a span {
	display: block;
	margin-top: 8px;
	font-size: 18px;
	font-weight: 800;
}

/* HOVER */
.contact-btn a:hover {
	background: var(--primary-dark);
	color: var(--white);
	transform: translateY(-2px);
}

.contact-btn a::after {
	display: none !important;
}

/* =========================================
MOBILE TOGGLE
========================================= */
.menu-toggle {
	display: none;
	color: var(--white);
	font-size: 34px;
	cursor: pointer;
}

/* =========================================
RESPONSIVE
========================================= */
@media(max-width:1399px) {
	.ResponsiveNav>ul {
		gap: 22px;
	}

	.ResponsiveNav ul li a {
		font-size: 13px;
	}
}

@media(max-width:1199px) {
	.header-container {
		padding-left: 20px;
		padding-right: 20px;
	}

	.menu-toggle {
		display: block;
		text-align: right;
	}

	.ResponsiveNav>ul {
		position: fixed;
		top: 0;
		left: -100%;
		width: 320px;
		height: 100vh;
		background: var(--dark);
		flex-direction: column;
		align-items: flex-start;
		justify-content: flex-start;
		gap: 0;
		padding: 100px 30px 40px;
		overflow-y: auto;
		transition: 0.4s ease;
		z-index: 9999;
	}

	.ResponsiveNav.active>ul {
		left: 0;
	}

	.ResponsiveNav ul li {
		width: 100%;
		border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	}

	.ResponsiveNav ul li a {
		width: 100%;
		padding: 14px 0;
	}

	.ResponsiveNav .has-sub>a {
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 10px;
	}

	.ResponsiveNav .arrow {
		margin-left: auto;
	}

	/* DROPDOWN */
	.ResponsiveNav ul li ul {
		position: static;
		opacity: 1;
		visibility: visible;
		transform: none;
		background: transparent;
		box-shadow: none;
		border-radius: 0;
		padding: 0;
		max-height: 0;
		overflow: hidden;
		transition: max-height 0.4s ease;
	}

	.ResponsiveNav ul li.active>ul {
		max-height: 500px;
	}

	.ResponsiveNav ul li ul li a {
		color: #d7d7d7;
		padding: 10px 0 10px 15px;
	}

	/* CTA */
	.contact-btn {
		margin-top: 20px;
		border-bottom: none !important;
	}

	.contact-btn a {
		width: 100%;
	}
}
