/**
 * NewEra shared components (Figma component set).
 * Everything references --ne-* tokens from tokens.css — no hardcoded colours.
 * Breakpoints: 1024px (tablet 830 design) · 640px (mobile 393 design).
 */

/* ============================================================= *
 *  Icons
 * ============================================================= */
.ne-icon { display: inline-block; vertical-align: middle; flex: 0 0 auto; }

/* ============================================================= *
 *  Banner strip (40px dark-indigo utility bar)
 * ============================================================= */
.ne-banner-strip {
	background: var(--ne-primary-500);
	color: var(--ne-secondary-100);
	font-size: var(--ne-b2-size);
	line-height: var(--ne-b2-line);
	/* Above the sticky header (z 90) so the location dropdown isn't clipped. */
	position: relative;
	z-index: 120;
}
.ne-banner-strip__inner {
	min-height: var(--ne-banner-h);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--ne-space-l);
}
/* Left: accreditation tagline */
.ne-banner-strip__tagline { display: inline-flex; align-items: center; gap: var(--ne-space-xs); color: var(--ne-secondary-100); }
.ne-banner-strip__tagline .ne-icon { width: 15px; height: 15px; flex: 0 0 auto; }
/* Centre: emergency pill + links + language switcher */
.ne-banner-strip__links { display: flex; align-items: center; gap: var(--ne-space-l); }
.ne-banner-strip__alert {
	display: inline-flex;
	align-items: center;
	gap: var(--ne-space-xs);
	color: var(--ne-neutral-100);
	text-decoration: none;
	padding: 2px var(--ne-space-m);
	border-radius: 999px;
	background: var(--ne-red-200);
}
.ne-banner-strip__alert:hover { background: var(--ne-red-100); color: var(--ne-neutral-100); }
.ne-banner-strip__alert .ne-icon { width: 17px; height: 17px; }
.ne-banner-strip__link {
	display: inline-flex;
	align-items: center;
	gap: var(--ne-space-2xs);
	color: var(--ne-secondary-100);
	text-decoration: none;
}
.ne-banner-strip__link:hover { color: var(--ne-neutral-100); }
.ne-banner-strip__link .ne-icon { width: 15px; height: 15px; }
/* ============================================================= *
 *  Story cards — photo on top, quote + avatar below (Figma Testimonial).
 *  Global: rendered by the homepage, unit homepages and the testimonials
 *  part (speciality/COE/contact/international pages).
 * ============================================================= */
.ne-storycard {
	display: flex;
	flex-direction: column;
	background: var(--ne-neutral-100);
	border-radius: 16px;
	overflow: hidden;
}
.ne-storycard__media { position: relative; aspect-ratio: 564 / 255; background: var(--ne-neutral-200); }
.ne-storycard__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ne-storycard__play {
	position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
	display: inline-flex; align-items: center; justify-content: center;
	width: 48px; height: 48px; border-radius: 50%;
	background: var(--ne-neutral-100);
	color: var(--ne-secondary-300);
	box-shadow: var(--ne-shadow-deep);
	transition: transform .18s ease;
}
.ne-storycard__play:hover { transform: translate(-50%, -50%) scale(1.08); }
.ne-storycard__play .ne-icon { width: 20px; height: 20px; }
.ne-storycard__body { display: flex; flex-direction: column; gap: var(--ne-space-m); padding: var(--ne-space-xl); flex: 1 1 auto; }
.ne-storycard__quoteicon { color: var(--ne-secondary-100); }
.ne-storycard__quoteicon .ne-icon { width: 34px; height: 34px; }
.ne-storycard__quote { margin: 0; color: var(--ne-neutral-1000); font-size: var(--ne-h8-size); line-height: 1.55; flex: 1 1 auto; }
.ne-storycard__foot { display: flex; align-items: center; gap: var(--ne-space-s); }
.ne-storycard__avatar {
	display: inline-flex; align-items: center; justify-content: center;
	width: 44px; height: 44px; border-radius: 50%; flex: 0 0 auto;
	background: var(--ne-secondary-a10);
	color: var(--ne-secondary-400);
	font-weight: 700; font-size: var(--ne-b2-size);
}
.ne-storycard__avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.ne-storycard__who { display: flex; flex-direction: column; gap: 2px; }
.ne-storycard__name { font-weight: 700; color: var(--ne-primary-500); }
.ne-storycard__role { color: var(--ne-neutral-700); font-size: var(--ne-b2-size); }

/* Trending overlay pill on post cards (blog listing + dept-detail blogs). */
.ne-card__trending {
	position: absolute;
	top: var(--ne-space-s);
	left: var(--ne-space-s);
	display: inline-flex;
	align-items: center;
	gap: var(--ne-space-2xs);
	padding: 4px var(--ne-space-s);
	border-radius: 999px;
	background: var(--ne-yellow-200);
	color: var(--ne-primary-600);
	font-size: var(--ne-b3-size);
	font-weight: 700;
	line-height: 1;
	z-index: 2;
	box-shadow: 0 4px 12px rgba(23, 11, 91, 0.18);
}

/* Location switcher dropdown (banner strip) */
.ne-locdrop { position: relative; }
.ne-locdrop__toggle { cursor: pointer; list-style: none; }
.ne-locdrop__toggle::-webkit-details-marker { display: none; }
.ne-locdrop__caret { transition: transform .18s ease; }
.ne-locdrop[open] .ne-locdrop__caret { transform: rotate(180deg); }
.ne-locdrop__menu {
	position: absolute;
	top: calc(100% + 8px);
	left: 50%;
	transform: translateX(-50%);
	z-index: 60;
	min-width: 240px;
	margin: 0;
	padding: var(--ne-space-2xs);
	list-style: none;
	background: #fff;
	border: 1px solid var(--ne-neutral-200);
	border-radius: 10px;
	box-shadow: 0 12px 32px rgba(23, 27, 42, 0.16);
}
.ne-locdrop__item {
	display: block;
	padding: 9px 12px;
	border-radius: 7px;
	color: var(--ne-neutral-900);
	font-size: 0.86rem;
	font-weight: 500;
	text-decoration: none;
	white-space: nowrap;
}
.ne-locdrop__item:hover { background: var(--ne-neutral-100); color: var(--ne-primary-500); }
.ne-locdrop__item.is-current { background: var(--ne-neutral-100); color: var(--ne-primary-500); font-weight: 600; }
.ne-locdrop__item--all { border-top: 1px solid var(--ne-neutral-200); border-radius: 0 0 7px 7px; color: var(--ne-primary-500); }

/* Right: social circles */
.ne-banner-strip__social { list-style: none; margin: 0; padding: 0; display: flex; align-items: center; gap: var(--ne-space-xs); }
.ne-banner-strip__social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 24px; height: 24px;
	border-radius: 50%;
	border: 1px solid rgba(191, 186, 232, 0.4);
	color: var(--ne-secondary-100);
	transition: background .18s ease, color .18s ease, border-color .18s ease;
}
.ne-banner-strip__social a:hover { background: var(--ne-secondary-100); color: var(--ne-primary-500); border-color: var(--ne-secondary-100); }
.ne-banner-strip__social .ne-icon { width: 12px; height: 12px; }

/* Polylang language switcher (stands in for the design's Select Location) */
.ne-lang ul, .ne-mobile-nav__lang ul { list-style: none; margin: 0; padding: 0; display: flex; gap: var(--ne-space-s); }
.ne-banner-strip__lang a {
	color: var(--ne-secondary-100);
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: .04em;
	font-weight: 600;
	font-size: var(--ne-b3-size);
}
.ne-banner-strip__lang .current-lang > a, .ne-banner-strip__lang a:hover { color: var(--ne-tertiary-300); }

/* ============================================================= *
 *  Header (85px sticky white nav)
 * ============================================================= */
.ne-header {
	position: sticky;
	top: 0;
	z-index: 60;
	background: var(--ne-neutral-100);
	border-bottom: 1px solid var(--ne-neutral-200);
	transition: box-shadow .2s ease;
}
/* 3px brand gradient hairline along the top edge (Figma Header node 565:22416). */
.ne-header::before,
.ne-footer::before {
	content: "";
	position: absolute; top: 0; left: 0; right: 0; height: 3px;
	background: linear-gradient(90deg, var(--ne-tertiary-400) 0%, var(--ne-secondary-300) 50%, #7767e5 100%);
	z-index: 1;
}
.ne-header.is-stuck { box-shadow: 0 2px 12px rgba(23, 11, 91, 0.10); }
/* Client request (Jul 2026): the header condenses once the page scrolls, giving
   back some vertical space. --ne-header-h moves with it so the quick-links band,
   filter rails and search panel that stick below it stay flush. */
:root.ne-header-compact { --ne-header-h: 64px; }
.ne-header__inner { transition: min-height .2s ease; }
.ne-header__logo-img { transition: max-height .2s ease; }
.ne-header.is-stuck .ne-header__logo-img { max-height: 34px; }
@media (prefers-reduced-motion: reduce) {
	.ne-header__inner,
	.ne-header__logo-img { transition: none; }
}
.ne-header__inner {
	/* The header rides on a wider container than page sections: Figma 565:22549
	   puts its container at x=48, w=1344, against 144px gutters for section
	   content. 1344 + the container's own 24px padding lands the logo on 72. */
	max-width: 1344px;
	min-height: var(--ne-header-h);
	display: flex;
	align-items: center;
	gap: var(--ne-space-2xl);
}
/* The slack sits between the logo and the nav — the nav travels with the action
   cluster on the right rather than hugging the logo (Figma 565:22549). */
.ne-header__nav { margin-left: auto; }
.ne-header__logo {
	display: inline-flex;
	align-items: center;
	gap: var(--ne-space-xs);
	text-decoration: none;
	flex: 0 0 auto;
}
.ne-header__logo-img { max-height: 46px; width: auto; display: block; }
.ne-header__logo-mark { display: inline-flex; color: var(--ne-secondary-300); }
.ne-header__logo-mark .ne-icon { width: 34px; height: 34px; }
.ne-header__logo-text {
	font-size: var(--ne-h6-size);
	line-height: 1;
	font-weight: 700;
	color: var(--ne-primary-500);
}

/* Primary nav */
.ne-nav {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
	gap: var(--ne-space-2xl);
}
.ne-nav li { position: relative; }
.ne-nav a {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: var(--ne-primary-500);
	text-decoration: none;
	font-size: var(--ne-b1-size);
	font-weight: 700;
	padding: var(--ne-space-xs) 0;
	white-space: nowrap;
}
.ne-nav a:hover,
.ne-nav .current-menu-item > a,
.ne-nav .current-menu-ancestor > a { color: var(--ne-secondary-300); }
.ne-nav .menu-item-has-children > a::after {
	content: "";
	width: 8px; height: 8px;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: rotate(45deg) translateY(-2px);
	transition: transform .2s ease;
}
/* Dropdown submenu */
.ne-nav .sub-menu {
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 220px;
	list-style: none;
	margin: 0;
	padding: var(--ne-space-xs);
	background: var(--ne-neutral-100);
	border-radius: 12px;
	box-shadow: var(--ne-shadow-deep);
	opacity: 0;
	visibility: hidden;
	transform: translateY(6px);
	/* Delay hiding so the menu forgives the cursor crossing the 6px gap. */
	transition: opacity .18s ease .15s, transform .18s ease .15s, visibility .18s .15s;
	z-index: 5;
}
.ne-nav li:hover > .sub-menu,
.ne-nav li:focus-within > .sub-menu { opacity: 1; visibility: visible; transform: translateY(6px); transition-delay: 0s; }
/* Invisible hover bridge over the gap between the link and its dropdown. */
.ne-nav .menu-item-has-children:hover::before {
	content: "";
	position: absolute;
	left: -12px; right: -12px;
	top: 100%;
	height: 16px;
}
.ne-nav .sub-menu a {
	display: block;
	padding: var(--ne-space-xs) var(--ne-space-s);
	border-radius: 8px;
	font-weight: 400;
	white-space: normal;
}
.ne-nav .sub-menu a:hover { background: var(--ne-primary-a10); }

.ne-header__actions { display: flex; align-items: center; gap: var(--ne-space-s); flex: 0 0 auto; }
.ne-header__cta .ne-icon { width: 18px; height: 18px; }
.ne-header__search {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px; height: 44px;
	border-radius: 50%;
	color: var(--ne-secondary-500);
	background: var(--ne-secondary-100);
	text-decoration: none;
	transition: background .18s ease, color .18s ease;
}
.ne-header__search { border: 0; cursor: pointer; padding: 0; }
.ne-header__search:hover { background: var(--ne-secondary-300); color: var(--ne-neutral-100); }
/* Figma 565:22549 sizes the search icon component at 16×16 inside the 44px
   button — a small glyph in the circle, not a near-filling one. */
.ne-header__search .ne-icon { width: 16px; height: 16px; }

/* Site search panel — slides open under the sticky header. */
.ne-search-panel {
	position: absolute;
	top: 100%;
	left: 0; right: 0;
	background: var(--ne-neutral-100);
	border-bottom: 1px solid var(--ne-neutral-200);
	box-shadow: 0 16px 32px rgba(23, 11, 91, 0.12);
	padding: var(--ne-space-l) 0;
}
.ne-search-panel[hidden] { display: none; }
.ne-search-panel__form {
	display: flex;
	align-items: center;
	gap: var(--ne-space-s);
}
.ne-search-panel__form > .ne-icon { width: 22px; height: 22px; color: var(--ne-secondary-400); flex: 0 0 auto; }
.ne-search-panel__input {
	flex: 1 1 auto;
	min-width: 0;
	border: 0;
	outline: none;
	font-size: var(--ne-h8-size);
	color: var(--ne-primary-500);
	background: transparent;
}
.ne-search-panel__input::placeholder { color: var(--ne-neutral-500); }
.ne-search-panel__close {
	border: 0;
	background: none;
	cursor: pointer;
	font-size: 26px;
	line-height: 1;
	color: var(--ne-neutral-600);
	padding: 4px 8px;
}
.ne-search-panel__close:hover { color: var(--ne-primary-500); }

/* Breadcrumb strip (Rank Math markup) under the header on inner pages. */
.ne-breadcrumbs {
	background: var(--ne-neutral-100);
	border-bottom: 1px solid var(--ne-neutral-200);
	font-size: var(--ne-b2-size);
	line-height: var(--ne-b2-line);
	padding: 9px 0;
}
.ne-breadcrumbs .rank-math-breadcrumb p { margin: 0; }
.ne-breadcrumbs a { color: var(--ne-secondary-400); text-decoration: none; }
.ne-breadcrumbs a:hover { color: var(--ne-secondary-300); text-decoration: underline; }
.ne-breadcrumbs .separator { margin: 0 7px; color: var(--ne-neutral-400); }
.ne-breadcrumbs .last { color: var(--ne-neutral-700); }

/* Styled map — offline-safe fallback rendered by newera_render_map()
   (template-parts/location/helpers.php); shared across hospitals archive,
   unit contact pages and the booking page. */
.ne-map {
	position: relative;
	height: var(--ne-map-h, 460px);
	border-radius: 20px;
	overflow: hidden;
	border: 1px solid var(--ne-neutral-200);
	box-shadow: var(--ne-shadow-deep);
	background: #e9eef2;
}
.ne-map__canvas { position: absolute; inset: 0; }
.ne-map__grid {
	position: absolute; inset: 0;
	background-image:
		linear-gradient(rgba(23,11,91,0.05) 1px, transparent 1px),
		linear-gradient(90deg, rgba(23,11,91,0.05) 1px, transparent 1px);
	background-size: 48px 48px;
}
.ne-map__road {
	position: absolute;
	background: #ffffff;
	box-shadow: 0 0 0 1px rgba(23,11,91,0.06);
	border-radius: 6px;
}
.ne-map__road--a { top: 34%; left: -10%; width: 120%; height: 12px; transform: rotate(-7deg); }
.ne-map__road--b { top: 8%; left: 58%; width: 10px; height: 100%; transform: rotate(9deg); }
.ne-map__road--c { top: 66%; left: -10%; width: 120%; height: 8px; transform: rotate(4deg); }
.ne-map__water {
	position: absolute;
	right: -6%; bottom: -10%;
	width: 46%; height: 46%;
	background: radial-gradient(circle at 40% 40%, #cfe6ef, #bcd7e4);
	border-radius: 45% 55% 60% 40%;
	opacity: .8;
}

.ne-map__pin {
	position: absolute;
	transform: translate(-50%, -100%);
	color: var(--ne-red-200);
	text-decoration: none;
	z-index: 2;
}
.ne-map__marker {
	display: block;
	filter: drop-shadow(0 4px 6px rgba(23,11,91,0.35));
	transition: transform .18s ease;
}
.ne-map__marker .ne-icon { width: 30px; height: 30px; }
.ne-map__pin.is-active .ne-map__marker .ne-icon { width: 36px; height: 36px; }
a.ne-map__pin:hover .ne-map__marker { transform: translateY(-3px) scale(1.06); }
.ne-map__tip {
	position: absolute;
	left: 50%; bottom: calc(100% + 4px);
	transform: translateX(-50%);
	white-space: nowrap;
	background: var(--ne-primary-500);
	color: var(--ne-neutral-100);
	font-size: var(--ne-b3-size);
	font-weight: 600;
	padding: 4px var(--ne-space-xs);
	border-radius: 6px;
	opacity: 0;
	pointer-events: none;
	transition: opacity .16s ease;
}
a.ne-map__pin:hover .ne-map__tip,
a.ne-map__pin:focus-visible .ne-map__tip { opacity: 1; }
.ne-map__directions {
	position: absolute;
	right: var(--ne-space-l);
	bottom: var(--ne-space-l);
	z-index: 3;
}
.ne-map__directions .ne-icon { width: 18px; height: 18px; }

@media (max-width: 1024px) {
	.ne-map { height: 380px; }
}
@media (max-width: 640px) {
	.ne-map { height: 300px; }
	.ne-map__directions { right: var(--ne-space-s); bottom: var(--ne-space-s); }
}

/* Live map (Leaflet upgrade over the styled .ne-map fallback). */
.ne-map__live { position: absolute; inset: 0; z-index: 3; border-radius: inherit; overflow: hidden; }
.ne-map.is-live .ne-map__canvas,
.ne-map.is-live .ne-map__pin { display: none; }
.ne-map.is-live .ne-map__directions { z-index: 1100; }

/* Hamburger — visible at every breakpoint per the Figma header:
   bordered rounded-square button with three short centred lines. */
.ne-header__toggle {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	/* Design stacks the three bars tightly: 14px wide, 2px apart (Figma 565:22549). */
	gap: 2px;
	width: 44px; height: 44px;
	padding: 0;
	background: var(--ne-neutral-100);
	border: 1px solid var(--ne-neutral-200);
	border-radius: 12px;
	cursor: pointer;
	transition: border-color .18s ease, box-shadow .18s ease;
}
.ne-header__toggle:hover { border-color: var(--ne-secondary-300); }
.ne-header__toggle span {
	display: block;
	height: 2px;
	width: 14px;
	background: var(--ne-primary-500);
	border-radius: 2px;
	transition: transform .25s ease, opacity .2s ease;
}
/* Bars sit 4px apart centre-to-centre, so that is how far the outer two travel
   to meet in the middle when the menu opens. */
.ne-header__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(4px) rotate(45deg); }
.ne-header__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.ne-header__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-4px) rotate(-45deg); }

/* ============================================================= *
 *  Mobile slide-in nav
 * ============================================================= */
.ne-mobile-nav { position: fixed; inset: 0; z-index: 200; }
.ne-mobile-nav[hidden] { display: none; }
.ne-mobile-nav__scrim {
	position: absolute; inset: 0;
	z-index: 1; /* under the panel — it renders after the panel in the DOM */
	background: rgba(14, 7, 57, 0.5);
	border: 0;
	opacity: 0;
	transition: opacity .25s ease;
}
.ne-mobile-nav__panel {
	position: absolute; top: 0; right: 0; bottom: 0;
	z-index: 2;
	width: min(86vw, 360px);
	background: var(--ne-neutral-100);
	padding: var(--ne-space-xl);
	overflow-y: auto;
	transform: translateX(100%);
	transition: transform .28s cubic-bezier(.4,0,.2,1);
	display: flex;
	flex-direction: column;
	gap: var(--ne-space-m);
}
.ne-mobile-nav.is-open .ne-mobile-nav__scrim { opacity: 1; }
.ne-mobile-nav.is-open .ne-mobile-nav__panel { transform: translateX(0); }
.ne-mobile-nav__head { display: flex; align-items: center; justify-content: space-between; }
.ne-mobile-nav__title { font-weight: 700; color: var(--ne-primary-500); font-size: var(--ne-h7-size); }
.ne-mobile-nav__close { background: none; border: 0; font-size: 32px; line-height: 1; color: var(--ne-neutral-800); cursor: pointer; }
.ne-mobile-nav__menu, .ne-mobile-nav__menu .sub-menu { list-style: none; margin: 0; padding: 0; }
.ne-mobile-nav__menu > li { border-bottom: 1px solid var(--ne-neutral-200); }
.ne-mobile-nav__menu a {
	display: block;
	padding: var(--ne-space-s) 0;
	color: var(--ne-neutral-1000);
	text-decoration: none;
	font-weight: 600;
}
.ne-mobile-nav__menu .sub-menu a { padding-left: var(--ne-space-m); font-weight: 400; color: var(--ne-neutral-800); }
.ne-mobile-nav__units { margin-top: var(--ne-space-m); }
.ne-mobile-nav__units-label {
	display: block;
	margin-bottom: var(--ne-space-2xs);
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--ne-neutral-700);
}
.ne-mobile-nav__menu--units a { font-weight: 400; }
.ne-mobile-nav__lang { margin-top: var(--ne-space-xs); }
.ne-mobile-nav__lang a { color: var(--ne-primary-400); }

/* ============================================================= *
 *  Buttons
 * ============================================================= */
.ne-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: var(--ne-space-xs);
	font-family: var(--ne-font);
	font-size: var(--ne-b1-size);
	font-weight: 600;
	line-height: 1;
	text-decoration: none;
	text-align: center;
	padding: 14px var(--ne-space-xl);
	border-radius: 999px;
	border: 2px solid transparent;
	cursor: pointer;
	transition: background .18s ease, color .18s ease, border-color .18s ease, transform .05s ease;
	white-space: nowrap;
}
.ne-btn:active { transform: translateY(1px); }
/* Primary actions are BLUE per the approved Figma designs (user decision 2026-07-10). */
.ne-btn--primary { background: var(--ne-secondary-300); color: var(--ne-neutral-100); border-color: var(--ne-secondary-300); }
.ne-btn--primary:hover { background: var(--ne-secondary-400); border-color: var(--ne-secondary-400); color: var(--ne-neutral-100); }
.ne-btn--secondary { background: transparent; color: var(--ne-secondary-400); border-color: var(--ne-secondary-300); }
.ne-btn--secondary:hover { background: var(--ne-secondary-300); color: var(--ne-neutral-100); }
.ne-btn--ghost { background: transparent; color: var(--ne-secondary-400); border-color: transparent; padding-inline: var(--ne-space-s); }
.ne-btn--ghost:hover { color: var(--ne-secondary-500); }
.ne-btn--light { background: var(--ne-neutral-100); color: var(--ne-primary-500); border-color: var(--ne-neutral-100); }
/* Keep a light fill on hover — this button sits on dark gradients, so a
   translucent hover background would leave dark text on a dark surface. */
.ne-btn--light:hover { background: var(--ne-secondary-100); border-color: var(--ne-secondary-100); color: var(--ne-primary-500); }
.ne-btn--sm { padding: 9px var(--ne-space-m); font-size: var(--ne-b2-size); }
.ne-btn--lg { padding: 16px var(--ne-space-2xl); font-size: var(--ne-h8-size); }
.ne-btn--block { width: 100%; }

/* ============================================================= *
 *  Pills / tags
 * ============================================================= */
.ne-pill {
	display: inline-flex;
	align-items: center;
	gap: var(--ne-space-2xs);
	padding: 4px var(--ne-space-s);
	border-radius: 999px;
	background: var(--ne-primary-a10);
	color: var(--ne-primary-400);
	font-size: var(--ne-b3-size);
	line-height: var(--ne-b3-line);
	font-weight: 600;
}
.ne-pill--secondary { background: var(--ne-secondary-a10); color: var(--ne-secondary-400); }
.ne-pill--tertiary { background: var(--ne-tertiary-a10); color: var(--ne-tertiary-500); }
.ne-pill--cyan { background: var(--ne-tertiary-100); color: var(--ne-tertiary-500); }
.ne-pill--teal { background: var(--ne-tertiary-100); color: var(--ne-tertiary-500); }
.ne-pill--red { background: var(--ne-red-100); color: var(--ne-neutral-100); }
.ne-pill--green { background: rgba(31, 193, 107, 0.14); color: #149355; }
.ne-pill--yellow { background: rgba(223, 180, 0, 0.14); color: #a98900; }
.ne-pill--eyebrow {
	background: transparent;
	color: var(--ne-secondary-400);
	padding: 0;
	font-size: var(--ne-h9-size);
	line-height: var(--ne-h9-line);
	letter-spacing: var(--ne-h9-tracking);
	text-transform: uppercase;
}

/* ============================================================= *
 *  Section header (eyebrow + title + sub)
 * ============================================================= */
.ne-sechead { display: flex; flex-direction: column; gap: var(--ne-space-s); margin-bottom: var(--ne-space-3xl); max-width: 720px; }
.ne-sechead__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: var(--ne-space-xs);
	align-self: flex-start;
	background: transparent;
	color: var(--ne-secondary-300);
	padding: 0;
	font-size: var(--ne-h9-size);
	line-height: var(--ne-h9-line);
	letter-spacing: var(--ne-h9-tracking);
	text-transform: uppercase;
	font-weight: 700;
}
/* Short gradient dash before the eyebrow label (Figma Section Header). */
.ne-sechead__eyebrow::before {
	content: "";
	width: 20px;
	height: 2.5px;
	border-radius: 2px;
	background: linear-gradient(90deg, var(--ne-tertiary-400), var(--ne-secondary-300));
}
.ne-sechead__title { margin: 0; font-size: var(--ne-h4-size); line-height: var(--ne-h4-line); color: var(--ne-primary-600); }
.ne-sechead__sub { margin: 0; color: var(--ne-neutral-800); font-size: var(--ne-b1-size); line-height: var(--ne-b1-line); max-width: 640px; }
.ne-sechead--center { align-items: center; text-align: center; margin-inline: auto; }
.ne-sechead--center .ne-sechead__eyebrow { align-self: center; }
/* Header row: section head on left, "View All" on right */
.ne-sechead-row { display: flex; align-items: flex-end; justify-content: space-between; gap: var(--ne-space-m); margin-bottom: var(--ne-space-3xl); }
.ne-sechead-row .ne-sechead { margin-bottom: 0; }

/* ============================================================= *
 *  Grid
 * ============================================================= */
.ne-grid { display: grid; gap: var(--ne-space-xl); }
.ne-grid--2 { grid-template-columns: repeat(2, 1fr); }
.ne-grid--3 { grid-template-columns: repeat(3, 1fr); }
.ne-grid--4 { grid-template-columns: repeat(4, 1fr); }

/* ============================================================= *
 *  Cards
 * ============================================================= */
.ne-card {
	display: flex;
	flex-direction: column;
	background: var(--ne-neutral-100);
	border: 1px solid var(--ne-neutral-200);
	border-radius: 16px;
	overflow: hidden;
	transition: box-shadow .2s ease, transform .2s ease, border-color .2s ease;
}
.ne-card:hover { box-shadow: var(--ne-shadow-deep); transform: translateY(-4px); border-color: transparent; }
.ne-card__media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--ne-neutral-200); }
/* "Price on request" stands in for a missing amount. The base .ne-pkgcard__amount
   is defined in two page sheets that load after this one, so the modifier is
   doubled up to win on specificity rather than order. */
.ne-pkgcard__amount.ne-pkgcard__amount--tbc {
	font-size: var(--ne-h7-size);
	font-weight: 600;
	color: var(--ne-neutral-800);
}

/* Shown instead of a bare grey rectangle when a post has no image yet. Same
   treatment as the awards tiles in archive-media_item.css. */
.ne-card__media--empty {
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--ne-secondary-a10);
}
.ne-card__media--empty .ne-icon { width: 40px; height: 40px; color: var(--ne-secondary-400); opacity: .65; }

/* Doctor cards stand in a branded mark when there is no headshot. Lives here
   rather than in a page sheet: doctor cards render on the homepage, the doctor
   archive and the single profile. */
.ne-card__avatar-fallback {
	position: absolute; inset: 0;
	display: flex; align-items: center; justify-content: center;
	background: linear-gradient(135deg, var(--ne-secondary-a10), var(--ne-primary-a10));
	color: var(--ne-primary-400);
}
.ne-card__avatar-fallback .ne-icon { width: 56px; height: 56px; opacity: .55; }

.ne-card__media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s ease; }
.ne-card:hover .ne-card__media img { transform: scale(1.05); }
.ne-card__body { display: flex; flex-direction: column; gap: var(--ne-space-xs); padding: var(--ne-space-l); flex: 1 1 auto; }
.ne-card__title { margin: 0; font-size: var(--ne-h7-size); line-height: var(--ne-h7-line); font-weight: 700; color: var(--ne-primary-400); }
.ne-card__title a { color: inherit; text-decoration: none; }
.ne-card__title a:hover { color: var(--ne-primary-300); }
.ne-card__text { margin: 0; color: var(--ne-neutral-800); font-size: var(--ne-b2-size); line-height: var(--ne-b2-line); }
.ne-card__foot { margin-top: auto; padding-top: var(--ne-space-s); display: flex; align-items: center; justify-content: space-between; gap: var(--ne-space-xs); }
/* Icon meta rows (address / phone / experience / city) */
.ne-card__metas { display: flex; flex-direction: column; gap: var(--ne-space-2xs); margin-top: var(--ne-space-2xs); }
.ne-card__meta { margin: 0; display: flex; align-items: flex-start; gap: var(--ne-space-xs); color: var(--ne-neutral-800); font-size: var(--ne-b2-size); line-height: var(--ne-b2-line); }
.ne-card__meta .ne-icon { width: 16px; height: 16px; color: var(--ne-secondary-400); margin-top: 2px; }
.ne-card__meta a { color: inherit; text-decoration: none; }
.ne-card__meta a:hover { color: var(--ne-secondary-400); }

/* Doctor card — photo INSET inside the white card with rounded corners
   (client design review: doctor-listing/search/speciality-detail frames all
   show the framed-portrait treatment, not a flush full-bleed photo). */
.ne-card--doctor { padding: var(--ne-space-s); }
.ne-card--doctor .ne-card__media { aspect-ratio: 270 / 240; border-radius: 12px; overflow: hidden; }
.ne-card--doctor .ne-card__body { padding: var(--ne-space-m) var(--ne-space-2xs) var(--ne-space-2xs); }
.ne-card--doctor .ne-card__body { align-items: flex-start; gap: var(--ne-space-2xs); }
.ne-card--doctor .ne-card__title { font-size: var(--ne-h7-size); line-height: 1.3; }
.ne-card--doctor .ne-card__role { margin: 0; color: var(--ne-neutral-700); font-size: var(--ne-b2-size); line-height: var(--ne-b2-line); }
.ne-card--doctor .ne-pill { margin-bottom: var(--ne-space-2xs); }
.ne-card--doctor .ne-card__meta span,
.ne-card--doctor .ne-card__meta a { color: var(--ne-primary-500); font-weight: 600; font-size: 13px; }

/* Location card */
.ne-card--location .ne-card__media { aspect-ratio: 368 / 235; }
.ne-card--location .ne-pill { align-self: flex-start; }
.ne-card--location .ne-card__foot { justify-content: flex-start; gap: var(--ne-space-s); }

/* Post / blog card */
.ne-card--post .ne-card__media { aspect-ratio: 384 / 216; }
.ne-card--post .ne-card__cat { align-self: flex-start; }
.ne-card--post .ne-card__byline { display: flex; align-items: center; gap: var(--ne-space-xs); }
.ne-card--post .ne-card__avatar { width: 32px; height: 32px; border-radius: 50%; object-fit: cover; }
.ne-card--post .ne-card__byline-text { display: flex; flex-direction: column; }
.ne-card--post .ne-card__byline-name { color: var(--ne-primary-500); font-weight: 700; font-size: var(--ne-b2-size); line-height: 1.3; }
.ne-card--post .ne-card__byline-sub { color: var(--ne-neutral-600); font-size: var(--ne-b3-size); line-height: 1.4; }

/* Media / press card */
.ne-card--media .ne-card__media { aspect-ratio: 384 / 235; }
.ne-card--media .ne-pill { align-self: flex-start; }

/* Price card */
.ne-card--price { border-radius: 16px; }
.ne-card--price .ne-card__body { padding: var(--ne-space-xl); gap: var(--ne-space-m); }
.ne-card--price .ne-pill { align-self: flex-start; }
.ne-card--price .ne-card__title { color: var(--ne-primary-600); font-size: var(--ne-h6-size); line-height: var(--ne-h6-line); }
.ne-card--price .ne-card__price { display: flex; align-items: baseline; gap: var(--ne-space-s); }
.ne-card--price .ne-card__amount { font-size: 40px; line-height: 1; font-weight: 700; color: var(--ne-tertiary-500); }
.ne-card--price .ne-card__mrp { color: var(--ne-neutral-500); text-decoration: line-through; font-size: var(--ne-h7-size); }
.ne-card--price .ne-card__divider { width: 100%; border: 0; border-top: 1px solid var(--ne-neutral-200); margin: var(--ne-space-xs) 0; }
.ne-card--price .ne-card__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: var(--ne-space-s); }
.ne-card--price .ne-card__list li { display: flex; align-items: flex-start; gap: var(--ne-space-xs); font-size: var(--ne-b1-size); color: var(--ne-neutral-1000); }
.ne-card--price .ne-card__list .ne-icon { width: 16px; height: 16px; color: var(--ne-green-200); margin-top: 3px; flex: 0 0 auto; }

/* Icon button card (.ne-btncard) — quick-action chip */
.ne-btncard {
	display: flex;
	align-items: center;
	gap: var(--ne-space-s);
	padding: var(--ne-space-m) var(--ne-space-l);
	background: var(--ne-neutral-100);
	border: 1px solid var(--ne-neutral-200);
	border-radius: 12px;
	text-decoration: none;
	color: var(--ne-primary-500);
	font-weight: 600;
	transition: box-shadow .2s ease, border-color .2s ease, transform .2s ease;
}
.ne-btncard:hover { box-shadow: var(--ne-shadow-deep); border-color: transparent; transform: translateY(-2px); }
.ne-btncard__icon {
	display: inline-flex; align-items: center; justify-content: center;
	width: 44px; height: 44px; border-radius: 10px;
	background: var(--ne-secondary-a10); color: var(--ne-secondary-400);
	flex: 0 0 auto;
}
.ne-btncard__icon .ne-icon { width: 24px; height: 24px; }

/* ============================================================= *
 *  Slider (scroll-snap carousel)
 * ============================================================= */
.ne-slider { position: relative; }
.ne-slider__track {
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: calc((100% - var(--ne-space-xl) * 3) / 4);
	gap: var(--ne-space-xl);
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	padding-bottom: var(--ne-space-xs);
	-ms-overflow-style: none;
	scrollbar-width: none;
}
.ne-slider__track::-webkit-scrollbar { display: none; }
.ne-slider__track > * { scroll-snap-align: start; }
.ne-slider--3 .ne-slider__track { grid-auto-columns: calc((100% - var(--ne-space-xl) * 2) / 3); }
.ne-slider--2 .ne-slider__track { grid-auto-columns: calc((100% - var(--ne-space-xl)) / 2); }
.ne-slider__arrows { display: flex; gap: var(--ne-space-xs); }
.ne-slider__arrow {
	display: inline-flex; align-items: center; justify-content: center;
	width: 44px; height: 44px;
	/* GP's button default (10px 20px) leaves a ~2px content box in a 44px
	   circle — the icon flex-shrinks to nothing without this reset. */
	padding: 0;
	border-radius: 50%;
	border: 1.5px solid var(--ne-neutral-300);
	background: var(--ne-neutral-100);
	color: var(--ne-primary-500);
	cursor: pointer;
	transition: background .18s ease, color .18s ease, border-color .18s ease;
}
.ne-slider__arrow:hover:not(:disabled) { background: var(--ne-primary-400); border-color: var(--ne-primary-400); color: var(--ne-neutral-100); }
.ne-slider__arrow:disabled { opacity: .4; cursor: default; }
.ne-slider__arrow svg { width: 18px; height: 18px; flex-shrink: 0; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
/* Edge arrows injected by main.js for sliders without their own controls. */
.ne-slider__arrow--edge {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 5;
	background: var(--ne-neutral-100);
	box-shadow: var(--ne-shadow-deep);
}
.ne-slider__arrow--prev { left: -10px; }
.ne-slider__arrow--next { right: -10px; }
.ne-slider__arrow--edge:disabled { opacity: 0; pointer-events: none; }
.ne-slider__dots { display: flex; justify-content: center; gap: var(--ne-space-xs); margin-top: var(--ne-space-l); }
.ne-slider__dot {
	width: 8px; height: 8px; border-radius: 999px; padding: 0;
	border: 0; background: var(--ne-neutral-300); cursor: pointer;
	transition: width .2s ease, background .2s ease;
}
.ne-slider__dot.is-active { width: 24px; background: var(--ne-primary-400); }

/* ============================================================= *
 *  Pagination
 * ============================================================= */
.ne-pagination { display: flex; align-items: center; justify-content: center; gap: var(--ne-space-xs); margin-top: var(--ne-space-4xl); }
.ne-pagination a, .ne-pagination span {
	display: inline-flex; align-items: center; justify-content: center;
	min-width: 44px; height: 44px; padding: 0 var(--ne-space-s);
	border-radius: 10px;
	border: 1px solid var(--ne-neutral-200);
	color: var(--ne-neutral-900);
	text-decoration: none;
	font-weight: 600;
	transition: background .18s ease, color .18s ease, border-color .18s ease;
}
.ne-pagination a:hover { border-color: var(--ne-primary-400); color: var(--ne-primary-400); }
.ne-pagination .current { background: var(--ne-primary-400); border-color: var(--ne-primary-400); color: var(--ne-neutral-100); }
.ne-pagination .dots { border: 0; }

/* ============================================================= *
 *  Accordion (FAQ)
 * ============================================================= */
.ne-accordion { display: flex; flex-direction: column; gap: var(--ne-space-s); }
.ne-accordion__item { border: 1px solid var(--ne-neutral-200); border-radius: 12px; overflow: hidden; background: var(--ne-neutral-100); }
.ne-accordion__trigger {
	width: 100%;
	display: flex; align-items: center; justify-content: space-between; gap: var(--ne-space-m);
	padding: var(--ne-space-l);
	background: none; border: 0; cursor: pointer;
	font-family: var(--ne-font);
	font-size: var(--ne-h8-size);
	font-weight: 700;
	color: var(--ne-primary-500);
	text-align: left;
}
.ne-accordion__icon { position: relative; flex: 0 0 auto; width: 20px; height: 20px; }
.ne-accordion__icon::before, .ne-accordion__icon::after {
	content: ""; position: absolute; top: 50%; left: 50%;
	background: currentColor; border-radius: 2px;
	transition: transform .25s ease, opacity .2s ease;
}
.ne-accordion__icon::before { width: 14px; height: 2px; transform: translate(-50%, -50%); }
.ne-accordion__icon::after { width: 2px; height: 14px; transform: translate(-50%, -50%); }
.ne-accordion__trigger[aria-expanded="true"] .ne-accordion__icon::after { transform: translate(-50%, -50%) scaleY(0); opacity: 0; }
.ne-accordion__panel {
	display: grid; grid-template-rows: 0fr;
	transition: grid-template-rows .28s ease;
}
.ne-accordion__panel[hidden] { display: grid; }
.ne-accordion__item.is-open .ne-accordion__panel { grid-template-rows: 1fr; }
.ne-accordion__panel > div { overflow: hidden; }
.ne-accordion__panel-inner { padding: 0 var(--ne-space-l) var(--ne-space-l); color: var(--ne-neutral-800); }

/* ============================================================= *
 *  Tabs
 * ============================================================= */
.ne-tabs__list { display: flex; gap: var(--ne-space-xs); border-bottom: 1px solid var(--ne-neutral-200); margin-bottom: var(--ne-space-xl); }
.ne-tabs__tab {
	padding: var(--ne-space-s) var(--ne-space-m);
	background: none; border: 0; border-bottom: 2px solid transparent;
	font-family: var(--ne-font); font-weight: 600; font-size: var(--ne-b1-size);
	color: var(--ne-neutral-700); cursor: pointer;
	margin-bottom: -1px;
}
.ne-tabs__tab[aria-selected="true"] { color: var(--ne-primary-400); border-bottom-color: var(--ne-primary-400); }
.ne-tabs__panel[hidden] { display: none; }

/* ============================================================= *
 *  Stats band (indigo, left→right lightening gradient per Figma)
 * ============================================================= */
.ne-stats { background: linear-gradient(90deg, #170b5c 0%, #2b1c89 100%); color: var(--ne-neutral-100); }
.ne-stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--ne-space-xl); padding: var(--ne-space-5xl) 0; }
.ne-stats__item { text-align: center; position: relative; }
.ne-stats__item:not(:last-child)::after {
	content: ""; position: absolute; right: calc(var(--ne-space-xl) / -2); top: 12%; bottom: 12%;
	width: 1px; background: rgba(255,255,255,0.16);
}
.ne-stats__num { font-size: var(--ne-h2-size); line-height: 1.1; font-weight: 700; color: var(--ne-tertiary-300); }
.ne-stats__label { margin-top: var(--ne-space-2xs); color: var(--ne-neutral-200); font-size: var(--ne-b1-size); }

/* ============================================================= *
 *  CTA banner (International Patients — indigo)
 * ============================================================= */
.ne-cta-banner {
	position: relative;
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	align-items: center;
	background: var(--ne-primary-500);
	color: var(--ne-neutral-100);
	border-radius: 24px;
	overflow: hidden;
}
.ne-cta-banner__content { padding: var(--ne-space-5xl); }
.ne-cta-banner__title { margin: 0 0 var(--ne-space-s); font-size: var(--ne-h4-size); line-height: var(--ne-h4-line); color: var(--ne-neutral-100); }
.ne-cta-banner__text { margin: 0 0 var(--ne-space-xl); color: var(--ne-neutral-200); }
.ne-cta-banner__actions { display: flex; flex-wrap: wrap; gap: var(--ne-space-s); }
/* Photo fills the banner's right half edge-to-edge (Figma 333:8341). */
.ne-cta-banner__media { align-self: stretch; min-height: 320px; }
.ne-cta-banner__media img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ============================================================= *
 *  Contact info card
 * ============================================================= */
.ne-contact-card {
	display: flex; flex-direction: column; gap: var(--ne-space-s);
	padding: var(--ne-space-xl);
	background: var(--ne-neutral-100);
	border: 1px solid var(--ne-neutral-200);
	border-radius: 16px;
}
.ne-contact-card__icon {
	display: inline-flex; align-items: center; justify-content: center;
	width: 48px; height: 48px; border-radius: 12px;
	background: var(--ne-secondary-a10); color: var(--ne-secondary-400);
}
.ne-contact-card__label { font-size: var(--ne-b3-size); text-transform: uppercase; letter-spacing: var(--ne-h9-tracking); color: var(--ne-neutral-600); font-weight: 700; }
.ne-contact-card__value { font-size: var(--ne-h8-size); font-weight: 700; color: var(--ne-primary-500); }
.ne-contact-card__value a { color: inherit; text-decoration: none; }

/* ============================================================= *
 *  Forms
 * ============================================================= */
.ne-formwrap {
	background: var(--ne-neutral-100);
	border-radius: 16px;
	box-shadow: var(--ne-shadow-deep);
	padding: var(--ne-space-2xl);
}
.ne-field { display: flex; flex-direction: column; gap: var(--ne-space-2xs); margin-bottom: var(--ne-space-m); }
.ne-field > label, .ne-field__label { font-size: var(--ne-b2-size); font-weight: 600; color: var(--ne-neutral-900); }
.ne-field input[type=text],
.ne-field input[type=email],
.ne-field input[type=tel],
.ne-field input[type=date],
.ne-field input[type=number],
.ne-field select,
.ne-field textarea,
.ne-field .ne-input {
	width: 100%;
	font-family: var(--ne-font);
	font-size: var(--ne-b1-size);
	color: var(--ne-neutral-1000);
	background: var(--ne-neutral-100);
	border: 1.5px solid var(--ne-neutral-300);
	border-radius: 10px;
	padding: 12px var(--ne-space-m);
	transition: border-color .18s ease, box-shadow .18s ease;
}
.ne-field textarea { min-height: 120px; resize: vertical; }
.ne-field input:focus,
.ne-field select:focus,
.ne-field textarea:focus,
.ne-field .ne-input:focus {
	outline: none;
	border-color: var(--ne-secondary-300);
	box-shadow: 0 0 0 3px var(--ne-secondary-a10);
}
.ne-field input::placeholder, .ne-field textarea::placeholder { color: var(--ne-neutral-500); }
.ne-form-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--ne-space-m); }

/* ============================================================= *
 *  Footer (dark indigo)
 * ============================================================= */
.ne-footer { background: var(--ne-primary-500); color: var(--ne-primary-100); position: relative; }
.ne-footer__grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
	gap: var(--ne-space-4xl);
	/* padding-BLOCK only — the shorthand zeroed .ne-container's inline
	   padding, leaving the mobile footer flush against the screen edge. */
	padding-block: var(--ne-space-6xl) var(--ne-space-4xl);
}
.ne-footer__logo { display: inline-flex; align-items: center; gap: var(--ne-space-xs); text-decoration: none; margin-bottom: var(--ne-space-m); }
.ne-footer__logo-img { max-height: 44px; width: auto; }
.ne-footer__logo-mark { color: var(--ne-tertiary-300); display: inline-flex; }
.ne-footer__logo-mark .ne-icon { width: 32px; height: 32px; }
.ne-footer__logo-text { font-size: var(--ne-h6-size); font-weight: 700; color: var(--ne-neutral-100); }
.ne-footer__about { margin: 0 0 var(--ne-space-l); color: var(--ne-primary-100); font-size: var(--ne-b2-size); line-height: 22px; max-width: 34ch; }
.ne-footer__emergency {
	display: inline-flex; align-items: center; gap: var(--ne-space-s);
	padding: var(--ne-space-m) var(--ne-space-l);
	border: 1px solid rgba(216, 75, 61, 0.45);
	border-radius: 18px;
	text-decoration: none;
	background: rgba(216, 75, 61, 0.18);
}
.ne-footer__emergency-icon { display: inline-flex; color: var(--ne-red-100); }
.ne-footer__emergency-icon .ne-icon { width: 20px; height: 20px; }
.ne-footer__emergency-label { display: block; font-size: var(--ne-b3-size); text-transform: uppercase; letter-spacing: .08em; color: #ffc9c2; font-weight: 700; }
.ne-footer__emergency-num { display: block; font-size: var(--ne-h7-size); font-weight: 700; color: var(--ne-neutral-100); }
.ne-footer__heading { margin: 0 0 var(--ne-space-m); font-size: var(--ne-b2-size); text-transform: uppercase; letter-spacing: 1.5px; color: var(--ne-neutral-100); font-weight: 700; }
.ne-footer__menu { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: var(--ne-space-xs); }
.ne-footer__menu a, .ne-footer__contact-item a { color: var(--ne-primary-100); text-decoration: none; font-size: var(--ne-b2-size); transition: color .18s ease; }
.ne-footer__menu a:hover, .ne-footer__contact-item a:hover { color: var(--ne-neutral-100); }
.ne-footer__contact-list { list-style: none; margin: 0 0 var(--ne-space-l); padding: 0; display: flex; flex-direction: column; gap: var(--ne-space-s); }
.ne-footer__contact-item { display: flex; align-items: flex-start; gap: var(--ne-space-xs); color: var(--ne-primary-100); font-size: var(--ne-b2-size); line-height: var(--ne-b1-line); }
.ne-footer__contact-item .ne-icon { width: 18px; height: 18px; color: var(--ne-primary-100); margin-top: 2px; flex: 0 0 auto; }
.ne-footer__socials { list-style: none; margin: 0; padding: 0; display: flex; gap: var(--ne-space-xs); }
.ne-footer__socials a {
	display: inline-flex; align-items: center; justify-content: center;
	width: 32px; height: 32px; border-radius: 50%;
	border: 1px solid rgba(191, 186, 232, 0.4);
	/* White, not the muted lavender used for footer body text — the design marks
	   read at full contrast against the deep navy. */
	color: var(--ne-neutral-100);
	transition: background .18s ease, color .18s ease, border-color .18s ease;
}
.ne-footer__socials a:hover { background: var(--ne-tertiary-400); color: var(--ne-primary-600); border-color: var(--ne-tertiary-400); }
.ne-footer__socials .ne-icon { width: 14px; height: 14px; }
.ne-footer__bar { border-top: 1px solid rgba(191, 186, 232, 0.22); }
.ne-footer__bar-inner { display: flex; align-items: center; justify-content: space-between; gap: var(--ne-space-m); padding-block: var(--ne-space-l); }
.ne-footer__copy { margin: 0; font-size: var(--ne-b2-size); color: var(--ne-primary-100); }
.ne-footer__legal { display: flex; gap: var(--ne-space-l); }
.ne-footer__legal a { color: var(--ne-primary-100); text-decoration: none; font-size: var(--ne-b2-size); }
.ne-footer__legal a:hover { color: var(--ne-neutral-100); }

/* ============================================================= *
 *  Floating 24×7 chat pill (Figma 557:21694)
 * ============================================================= */
.ne-chatfab {
	position: fixed;
	right: var(--ne-space-xl);
	bottom: var(--ne-space-xl);
	z-index: 90;
	display: inline-flex;
	align-items: center;
	gap: var(--ne-space-xs);
	padding: 12px var(--ne-space-l);
	border-radius: 999px;
	background: var(--ne-tertiary-400);
	color: var(--ne-primary-600);
	font-weight: 700;
	font-size: var(--ne-b1-size);
	text-decoration: none;
	box-shadow: var(--ne-shadow-deep);
	transition: background .18s ease, transform .18s ease;
}
.ne-chatfab:hover { background: var(--ne-tertiary-300); color: var(--ne-primary-600); transform: translateY(-2px); }
.ne-chatfab .ne-icon { width: 20px; height: 20px; }

/* ============================================================= *
 *  Responsive — tablet (1024px, 830 design)
 * ============================================================= */
@media (max-width: 1024px) {
	.ne-header__nav { display: none; }
	/* With the nav gone its auto margin goes with it, so the actions take over
	   holding themselves against the right edge. */
	.ne-header__actions { margin-left: auto; }
	.ne-header__toggle { display: flex; }
	.ne-header__cta span { display: none; }
	.ne-header__cta { padding: 12px; width: 44px; height: 44px; }
	.ne-header__cta .ne-icon { margin: 0; }

	.ne-grid--3, .ne-grid--4 { grid-template-columns: repeat(2, 1fr); }
	.ne-slider--4 .ne-slider__track { grid-auto-columns: calc((100% - var(--ne-space-xl)) / 2); }
	.ne-slider--3 .ne-slider__track { grid-auto-columns: calc((100% - var(--ne-space-xl)) / 2); }

	.ne-stats__grid { grid-template-columns: repeat(2, 1fr); gap: var(--ne-space-3xl); }
	.ne-stats__item:nth-child(2)::after { display: none; }

	.ne-cta-banner { grid-template-columns: 1fr; padding: var(--ne-space-3xl); }
	.ne-cta-banner__media { display: none; }

	.ne-footer__grid { grid-template-columns: 1fr 1fr; gap: var(--ne-space-2xl); }
	.ne-footer__brand { grid-column: 1 / -1; }
}

/* ============================================================= *
 *  Responsive — mobile (640px, 393 design)
 * ============================================================= */
@media (max-width: 640px) {
	/* Banner collapses to just the emergency pill, centred. */
	.ne-banner-strip__tagline,
	.ne-banner-strip__social,
	.ne-banner-strip__link,
	.ne-banner-strip__lang { display: none; }
	.ne-banner-strip__inner { justify-content: center; }
	.ne-banner-strip__links { gap: var(--ne-space-s); }

	/* Keep header on one line at 393 — drop the search circle, shrink logo/CTA. */
	.ne-header__search { display: none; }
	.ne-header__inner { gap: var(--ne-space-m); }
	.ne-header__actions { gap: var(--ne-space-xs); }
	.ne-header__logo-text { font-size: var(--ne-h7-size); }
	.ne-header__logo-mark .ne-icon { width: 28px; height: 28px; }
	.ne-header__cta { width: 40px; height: 40px; padding: 10px; }

	.ne-grid--2, .ne-grid--3, .ne-grid--4 { grid-template-columns: 1fr; }
	.ne-slider--2 .ne-slider__track,
	.ne-slider--3 .ne-slider__track,
	.ne-slider--4 .ne-slider__track { grid-auto-columns: 85%; }
	.ne-slider__arrows { display: none; }
	.ne-slider__arrow--edge { display: none; }

	.ne-stats__grid { grid-template-columns: repeat(2, 1fr); gap: var(--ne-space-xl); padding: var(--ne-space-3xl) 0; }
	.ne-stats__num { font-size: var(--ne-h4-size); }
	.ne-stats__item::after { display: none; }

	.ne-sechead-row { flex-direction: column; align-items: flex-start; gap: var(--ne-space-m); }
	.ne-form-row { grid-template-columns: 1fr; }

	.ne-footer__grid { grid-template-columns: 1fr; gap: var(--ne-space-2xl); padding-top: var(--ne-space-4xl); }
	.ne-footer__bar-inner { flex-direction: column; align-items: flex-start; gap: var(--ne-space-xs); }
}

/* ============================================================= *
 *  Video facade (template-parts/video-embed.php)
 *  Poster + play button; the provider's iframe replaces it on click.
 * ============================================================= */
.ne-video {
	position: relative;
	overflow: hidden;
	border-radius: var(--ne-radius-l, 16px);
	background: var(--ne-primary-700);
}
.ne-video--16x9 { aspect-ratio: 16 / 9; }
.ne-video--4x3  { aspect-ratio: 4 / 3; }
.ne-video__poster {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.ne-video__frame {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}
.ne-video__play {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	background: rgba(14, 7, 57, .28);
	border: 0;
	cursor: pointer;
	transition: background .25s ease;
}
.ne-video__play:hover,
.ne-video__play:focus-visible { background: rgba(14, 7, 57, .12); }
.ne-video__play-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 76px;
	height: 76px;
	padding-left: 5px; /* optical centring of the triangle */
	border-radius: 50%;
	background: #fff;
	color: var(--ne-primary-600);
	box-shadow: 0 10px 30px rgba(14, 7, 57, .35);
	transition: transform .25s ease;
}
.ne-video__play:hover .ne-video__play-icon { transform: scale(1.08); }
@media (max-width: 600px) {
	.ne-video__play-icon { width: 58px; height: 58px; }
	.ne-video__play-icon svg { width: 26px; height: 26px; }
}

/*mobile app css*/
.ne-app-section {
    padding: 0;
}

.ne-app-banner{

    background: #1590EE;
    border-radius:0px;
    overflow:hidden;
    text-align:center;
    padding:70px 60px 0;
    position:relative;
}

.ne-app-banner__title{
    color: #fff;
    margin-bottom: 18px;
    font-family: Lato;
    font-weight: 700;
    font-size: 58px;
    line-height: 87px;
    letter-spacing: 0px;
    text-align: center;
}

.ne-app-banner__text{
	 color: #fff;
    margin-bottom: 45px;
    opacity: .95;
    font-family: Lato;
    font-weight: 700;
    font-size: 24px;
    line-height: 36px;
    letter-spacing: 0px;
    text-align: center;
}

.ne-app-banner__stores{

    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.ne-app-banner__stores img{

    height:60px;
    width:auto;
    transition:.3s;
}

.ne-app-banner__stores a:hover img{

    transform:translateY(-4px);
}

.ne-app-banner__phones{

    margin-top:70px;

    display:flex;
    justify-content:center;
    align-items:flex-end;
    gap:70px;
}

.ne-app-banner__phones img{

    width:340px;
    max-width:100%;
    display:block;
}

.phone-left{

    transform:translateY(0);
}

.phone-right{

    transform:translateY(0);
}

/**********************
TABLET
**********************/

@media(max-width:991px){

.ne-app-banner{

    padding:60px 30px 0;
}

.ne-app-banner__title{

    font-size:42px;
}

.ne-app-banner__text{

    font-size:20px;
}

.ne-app-banner__phones{

    gap:35px;
    margin-top:50px;
}

.ne-app-banner__phones img{

    width:250px;
}

}

/**********************
MOBILE
**********************/

@media(max-width:767px){
img.phone-right {
    display: none;
}
.ne-app-section{

    padding:60px 0;
}

.ne-app-banner{

    padding:45px 20px 0;
}

.ne-app-banner__title{

    font-size:34px;
}

.ne-app-banner__text{

    font-size:18px;
    margin-bottom:30px;
}

.ne-app-banner__stores{

    flex-direction:column;
    align-items:center;
    gap:15px;
}

.ne-app-banner__stores img{

    height:52px;
}

.ne-app-banner__phones{

    flex-direction:column;
    align-items:center;
    gap:20px;
    margin-top:40px;
}

.ne-app-banner__phones img{

    width:220px;
}

.phone-left,
.phone-right{

    transform:none;
}

}
/*mobile app css*/
