/* =========================================================
   [f11] Header — Full-screen Fade Menu
   ========================================================= */

.nxa-f11 {
	--nxa11-navy:   #0d1b2a;
	--nxa11-white:  #ffffff;
	--nxa11-accent: #F39200;
	--nxa11-text:   #14202c;
	--nxa11-dim:    rgba(255,255,255,.42);

	width: 100%;
	font-family: 'Quicksand', sans-serif;
	box-sizing: border-box;
}
.nxa-f11 *, .nxa-f11 *::before, .nxa-f11 *::after { box-sizing: border-box; }

/* =========================================================
   Bar — logo (left) / hamburger (center) / phone (right)
   ========================================================= */
.nxa-f11-bar {
	position: relative;
	width: 100%;
	background: var(--nxa11-white);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	padding: 16px 32px;
	min-height: 88px;
}

.nxa-f11-logo {
	display: flex;
	align-items: center;
	flex: 0 0 auto;
	text-decoration: none;
	max-width: 46%;
}
.nxa-f11-logo img {
	display: block;
	max-height: 58px;
	max-width: 100%;
	width: auto;
	height: auto;
}

/* Hamburger — centered in the bar */
.nxa-f11-burger {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 52px;
	height: 52px;
	flex: 0 0 auto;
	border: 0;
	border-radius: 50%;
	background: transparent;
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 6px;
	cursor: pointer;
	padding: 0;
	transition: background .2s ease;
}
.nxa-f11-burger:hover { background: rgba(13,27,42,.06); }
.nxa-f11-burger span {
	display: block;
	width: 24px;
	height: 2.5px;
	background: var(--nxa11-text);
	border-radius: 2px;
	transition: transform .3s ease, opacity .2s ease;
}
.nxa-f11-burger.is-active span:nth-child(1) { transform: translateY(8.5px) rotate(45deg); }
.nxa-f11-burger.is-active span:nth-child(2) { opacity: 0; }
.nxa-f11-burger.is-active span:nth-child(3) { transform: translateY(-8.5px) rotate(-45deg); }

/* Phone pill — right */
.nxa-f11-call { flex: 0 0 auto; }
.nxa-f11-call-inner {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	background: var(--nxa11-navy);
	color: var(--nxa11-white);
	text-decoration: none;
	padding: 6px 26px 6px 6px;
	border-radius: 999px;
	white-space: nowrap;
	transition: filter .2s ease;
}
.nxa-f11-call-inner:hover { filter: brightness(1.15); }
.nxa-f11-call-ico {
	width: 38px;
	height: 38px;
	flex: 0 0 auto;
	border-radius: 50%;
	background: var(--nxa11-white);
	color: var(--nxa11-navy);
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
.nxa-f11-call-ico svg { width: 17px; height: 17px; }
.nxa-f11-call-num { font-size: 16px; font-weight: 700; letter-spacing: .01em; }

/* =========================================================
   Overlay — full screen, fades in
   ========================================================= */
.nxa-f11-overlay {
	position: fixed;
	inset: 0;
	z-index: 99999;
	background: var(--nxa11-navy);
	display: none;
	opacity: 0;
	transition: opacity .4s ease;
	overflow-y: auto;
}
.nxa-f11-overlay.is-open {
	display: block;
}
.nxa-f11-overlay.is-visible {
	opacity: 1;
}

.nxa-f11-close {
	position: fixed;
	top: 26px;
	right: 32px;
	z-index: 2;
	width: 46px;
	height: 46px;
	border: 0;
	border-radius: 50%;
	background: transparent;
	color: var(--nxa11-white);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: background .2s ease, transform .2s ease;
}
.nxa-f11-close:hover { background: rgba(255,255,255,.1); transform: rotate(90deg); }
.nxa-f11-close svg { width: 20px; height: 20px; }

.nxa-f11-overlay-inner {
	max-width: 1440px;
	margin: 0 auto;
	min-height: 100%;
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(280px, 380px);
	align-items: center;
	gap: 60px;
	padding: 120px 60px 90px;
}

/* =========================================================
   Nav — main menu list
   ========================================================= */
.nxa-f11-menu {
	list-style: none;
	margin: 0;
	padding: 0;
}
.nxa-f11-menu > li { border: 0; }
.nxa-f11-menu > li > a {
	position: relative;
	display: flex;
	align-items: center;
	gap: 16px;
	color: var(--nxa11-white);
	text-decoration: none;
	font-weight: 600;
	font-size: 50px;
	line-height: 45px;
	padding: 8px 0;
	transition: color .2s ease, opacity .25s ease;
}
.nxa-f11-menu > li > a:hover,
.nxa-f11-menu > li.current-menu-item > a { color: var(--nxa11-accent); }

/* toggle mark for items with children */
.nxa-f11-menu > li.menu-item-has-children > a::after {
	content: "+";
	font-size: 30px;
	font-weight: 400;
	color: var(--nxa11-accent);
	transition: transform .25s ease;
}
.nxa-f11-menu > li.menu-item-has-children.is-open > a::after { transform: rotate(45deg); }

/* dim the other top-level items while one is drilled into */
.nxa-f11-menu.has-open > li:not(.is-open) { opacity: .38; }

/* sub-menu — collapsed accordion, opens larger/active */
.nxa-f11-menu .sub-menu {
	list-style: none;
	margin: 0;
	padding: 0 0 0 4px;
	max-height: 0;
	opacity: 0;
	overflow: hidden;
	transition: max-height .35s ease, opacity .3s ease;
}
.nxa-f11-menu > li.is-open > .sub-menu {
	max-height: 900px;
	opacity: 1;
	margin-top: 4px;
}
.nxa-f11-menu .sub-menu a {
	display: block;
	color: var(--nxa11-white);
	text-decoration: none;
	font-weight: 500;
	font-size: 26px;
	line-height: 34px;
	padding: 4px 0;
}
.nxa-f11-menu .sub-menu a:hover { color: var(--nxa11-accent); }

.nxa-f11-nomenu { color: var(--nxa11-dim); font-size: 15px; }

/* =========================================================
   Info column — contact + newsletter (desktop only)
   ========================================================= */
.nxa-f11-infocol {
	display: flex;
	flex-direction: column;
	gap: 26px;
	border-left: 1px solid rgba(255,255,255,.14);
	padding-left: 50px;
}
.nxa-f11-label {
	display: block;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--nxa11-dim);
	margin-bottom: 6px;
}
.nxa-f11-big {
	display: block;
	color: var(--nxa11-white);
	text-decoration: none;
	font-size: 20px;
	font-weight: 600;
	line-height: 1.3;
}
a.nxa-f11-big:hover { color: var(--nxa11-accent); }

.nxa-f11-newsletter { margin-top: 6px; }
.nxa-f11-nlform {
	display: flex;
	align-items: stretch;
	background: var(--nxa11-white);
	border-radius: 10px;
	overflow: hidden;
}
.nxa-f11-nlform input {
	flex: 1 1 auto;
	min-width: 0;
	border: 0;
	background: transparent;
	padding: 14px 16px;
	font-family: 'Quicksand', sans-serif;
	font-size: 15px;
	color: var(--nxa11-text);
	outline: none;
}
.nxa-f11-nlform button {
	flex: 0 0 auto;
	width: 48px;
	border: 0;
	background: var(--nxa11-navy);
	color: var(--nxa11-white);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: background .2s ease;
}
.nxa-f11-nlform button:hover { background: var(--nxa11-accent); }
.nxa-f11-nlform button svg { width: 17px; height: 17px; }

.nxa-f11-panel-label {
	position: fixed;
	left: 32px;
	bottom: 26px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--nxa11-dim);
}

body.nxa-f11-lock { overflow: hidden; }

/* =========================================================
   Responsive — laptop / tablet / mobile
   ========================================================= */

/* Big laptop / smaller desktop */
@media (max-width: 1440px) {
	.nxa-f11-overlay-inner { padding: 110px 50px 80px; gap: 40px; }
	.nxa-f11-menu > li > a { font-size: 42px; line-height: 40px; }
}

/* Laptop */
@media (max-width: 1180px) {
	.nxa-f11-bar { padding: 14px 24px; min-height: 76px; }
	.nxa-f11-overlay-inner { grid-template-columns: minmax(0,1fr) minmax(240px,300px); padding: 100px 40px 70px; }
	.nxa-f11-menu > li > a { font-size: 36px; line-height: 36px; }
	.nxa-f11-menu .sub-menu a { font-size: 21px; line-height: 28px; }
}

/* Tablet — info column drops, single column menu */
@media (max-width: 900px) {
	.nxa-f11-overlay-inner {
		grid-template-columns: 1fr;
		padding: 100px 32px 60px;
		align-items: start;
	}
	.nxa-f11-infocol {
		border-left: 0;
		border-top: 1px solid rgba(255,255,255,.14);
		padding-left: 0;
		padding-top: 30px;
		margin-top: 10px;
	}
}

/* Mobile — sirf logo + hamburger bachte hain (phone pill hide), is liye
   hamburger ko center se nikal ke flex flow me wapas laate hain taake wo
   khud-ba-khud right corner par chala jaye (space-between) */
@media (max-width: 640px) {
	.nxa-f11-bar { padding: 12px 16px; min-height: 66px; }
	.nxa-f11-logo img { max-height: 40px; }
	.nxa-f11-burger {
		position: static;
		top: auto; left: auto;
		transform: none;
		width: 44px; height: 44px;
	}
	.nxa-f11-call { display: none; }

	.nxa-f11-close { top: 16px; right: 16px; }
	.nxa-f11-overlay-inner { padding: 90px 22px 100px; gap: 30px; }

	.nxa-f11-menu > li > a { font-size: 27px; line-height: 34px; gap: 10px; }
	.nxa-f11-menu > li.menu-item-has-children > a::after { font-size: 22px; }
	.nxa-f11-menu .sub-menu { padding-left: 2px; }
	.nxa-f11-menu .sub-menu a { font-size: 16px; line-height: 24px; padding: 3px 0; }

	.nxa-f11-infocol { gap: 18px; padding-top: 22px; }
	.nxa-f11-big { font-size: 16px; }
	.nxa-f11-panel-label { left: 20px; bottom: 18px; }
}

@media (prefers-reduced-motion: reduce) {
	.nxa-f11-overlay, .nxa-f11-burger span,
	.nxa-f11-menu > li > a, .nxa-f11-menu .sub-menu { transition: none; }
}
