/* =====================================================
   Homedya Clinic Theme stylesheet
   ===================================================== */

:root {
	/* Muny Clinic brand colors, sampled from the official logo (green "muny"
	   + gold ".clinic"). */
	--nc-teal-dark: #006940;
	--nc-teal: #0A6E42;
	--nc-teal-mid: #2E8B5C;
	--nc-teal-light: #6FAF8C;
	--nc-sage: #4E9970;
	--nc-rose: #C79A82;
	--nc-rose-dark: #A97A61;
	--nc-peach: #E3AD99;
	--nc-gold: #B18A30;
	--nc-gold-light: #D2AE5C;
	--nc-terracotta: #B18A30;
	--nc-cream: #F7F2EC;
	--nc-white: #FFFFFF;
	--nc-text: #253A31;
	--nc-text-muted: #5F7A6C;
	--nc-border: #E1E8E3;
	--font-heading: 'Playfair Display', Georgia, serif;
	--font-body: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
	--nc-radius: 14px;
	--nc-container: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
/* CSS scroll-snap was tried here (y proximity) but proved unreliable in
   real browsers with this fixed-menu-above-first-section layout - it
   could auto-jump past the menu on load or on the first scroll. Disabled
   for correctness; the full-height "one section per screen" structure
   below is unaffected, only the automatic snapping motion is removed. */
body {
	margin: 0;
	font-family: var(--font-body);
	color: var(--nc-text);
	background: var(--nc-white);
	line-height: 1.6;
	overflow-x: clip;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; background: none; border: none; }
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 600; margin: 0 0 .5em; color: var(--nc-teal-dark); }
p { margin: 0 0 1em; }

.nc-container {
	width: 100%;
	max-width: var(--nc-container);
	margin: 0 auto;
	padding: 0 24px;
}

/* Buttons ------------------------------------------------ */
.nc-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 14px 32px;
	border-radius: 999px;
	font-size: 15px;
	font-weight: 500;
	transition: transform .2s ease, opacity .2s ease;
}
.nc-btn:hover { transform: translateY(-2px); }
.nc-btn--outline-light { border: 1px solid rgba(255,255,255,.7); color: #fff; }
.nc-btn--outline { border: 1px solid var(--nc-teal); color: var(--nc-teal-dark); }
.nc-btn--sm { padding: 10px 22px; font-size: 14px; }
.nc-btn--pill { background: var(--nc-sage); color: #fff; }
.nc-btn--pill-muted { background: rgba(169,122,97,.14); border: 1px solid rgba(169,122,97,.4); color: var(--nc-rose-dark); }
.nc-btn--pill-muted:hover { background: var(--nc-rose-dark); border-color: var(--nc-rose-dark); color: #fff; }
.nc-btn--wide { width: 100%; background: var(--nc-sage); color: #fff; padding: 16px; border-radius: 999px; font-size: 16px; }

/* Top bar -------------------------------------------------- */
.nc-topbar { background: var(--nc-teal-dark); color: #cfe0db; font-size: 13px; }
.nc-topbar__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 8px 0; flex-wrap: wrap; }
.nc-topbar__reviews { display: flex; align-items: center; gap: 6px; color: #fff; }
.nc-stars { color: #E8B84B; letter-spacing: 1px; }
.nc-topbar__patients { flex: 1; text-align: center; }
.nc-topbar__links { display: flex; align-items: center; gap: 10px; }
.nc-topbar__links a:hover { color: #fff; }
.nc-topbar__divider { opacity: .35; }
.nc-topbar__reviews-label { font-weight: 500; }
.nc-topbar__reviews-divider { opacity: .5; margin: 0 4px; }
.nc-stars--single { font-size: 16px; }
.nc-caret { font-size: 9px; opacity: .8; margin-left: 3px; vertical-align: middle; }

/* Header ---------------------------------------------------- */
/* .nc-site-header wraps the topbar + header together. On interior pages it
   sits in normal document flow (solid header). On the front page it gets
   `--transparent` and is pulled out of flow to float over the hero, so the
   nav can use the reference site's frosted-glass look against the hero
   image/video instead of a flat white bar. */
.nc-site-header { position: relative; z-index: 40; }
.nc-site-header--transparent { position: absolute; top: 0; left: 0; right: 0; width: 100%; }
.nc-site-header--transparent .nc-header { background: transparent; box-shadow: none; }

.nc-header { background: #fff; padding: 28px 0; box-shadow: 0 2px 24px rgba(0,96,58,.06); transition: background-color .2s ease; }
/* Wider than the regular 1200px container so the logo sits further left and
   the language+button block further right, instead of both bunching in
   toward the centered nav pill. */
.nc-header .nc-container { max-width: 1400px; padding: 0 40px; }
.nc-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nc-logo { display: flex; align-items: center; gap: 8px; }
.nc-logo__text { font-family: var(--font-heading); font-size: 26px; color: var(--nc-teal-dark); white-space: nowrap; }
.nc-logo .custom-logo, .nc-logo__image { max-height: 76px; width: auto; display: block; }
.nc-logo__text em, .nc-logo__suffix { font-style: normal; font-size: 19px; letter-spacing: .5px; color: var(--nc-rose-dark); font-family: var(--font-heading); }
.nc-logo__text em { margin-left: 4px; }

/* Three balanced zones: logo | nav links | language+button - each a
   direct child of .nc-header__inner so space-between centers the nav
   in the remaining space instead of bunching it against the button. */
.nc-nav { display: flex; align-items: center; }
.nc-nav__actions { display: flex; align-items: center; gap: 16px; }
.nc-nav__actions--mobile { display: none; }
.nc-nav__list { list-style: none; display: flex; align-items: center; gap: 6px; margin: 0; padding: 0; font-size: 15px; }
.nc-nav__list > li > a { display: inline-flex; align-items: center; gap: 6px; padding: 9px 16px; border-radius: 999px; transition: background-color .2s ease; }
.nc-nav__list > li > a:hover { background: var(--nc-cream); }
.nc-nav__list > li.is-current > a { background: var(--nc-cream); }
.nc-icon-home { flex: 0 0 auto; }

.nc-lang-switcher { position: relative; display: flex; align-items: center; font-size: 20px; cursor: pointer; line-height: 1; }
.nc-lang-switcher__btn { display: flex; align-items: center; gap: 4px; background: none; border: none; cursor: pointer; padding: 0; font-size: inherit; }
.nc-lang-switcher .nc-caret { font-size: 10px; color: var(--nc-text-muted); margin-left: 2px; transition: transform .2s ease; }
.nc-lang-switcher.is-open .nc-caret { transform: rotate(180deg); }
.nc-lang-dropdown { display: none; position: absolute; top: 100%; right: 0; margin-top: 8px; min-width: 140px; background: #fff; border-radius: 12px; box-shadow: 0 8px 32px rgba(0,0,0,.15); padding: 6px 0; list-style: none; z-index: 100; }
.nc-lang-switcher.is-open .nc-lang-dropdown { display: block; }
.nc-lang-dropdown li a { display: flex; align-items: center; gap: 8px; padding: 10px 16px; font-size: 14px; color: var(--nc-text); transition: background .2s; }
.nc-lang-dropdown li a:hover { background: var(--nc-cream); }
.nc-lang-dropdown .nc-lang-flag { font-size: 18px; }

/* Transparent / frosted-glass variant (front page only) ------------------ */
.nc-site-header--transparent .nc-logo__text { color: #fff; }
.nc-site-header--transparent .nc-nav__list {
	padding: 6px;
	background: linear-gradient(135deg, rgba(255,255,255,.24), rgba(255,255,255,.08));
	backdrop-filter: blur(16px) saturate(140%);
	-webkit-backdrop-filter: blur(16px) saturate(140%);
	border: 1px solid rgba(255,255,255,.3);
	border-radius: 999px;
}
.nc-site-header--transparent .nc-nav__list > li > a { color: #fff; }
.nc-site-header--transparent .nc-nav__list > li > a:hover { background: rgba(255,255,255,.16); }
.nc-site-header--transparent .nc-nav__list > li.is-current > a {
	background: linear-gradient(135deg, rgba(46,139,92,.65), rgba(0,105,64,.45));
}
.nc-site-header--transparent .nc-nav__actions--desktop {
	padding: 8px 14px;
	background: linear-gradient(135deg, rgba(255,255,255,.24), rgba(255,255,255,.08));
	backdrop-filter: blur(16px) saturate(140%);
	-webkit-backdrop-filter: blur(16px) saturate(140%);
	border: 1px solid rgba(255,255,255,.3);
	border-radius: 999px;
}
.nc-site-header--transparent .nc-lang-switcher { color: #fff; }
.nc-site-header--transparent .nc-lang-switcher .nc-caret { color: rgba(255,255,255,.85); }
.nc-site-header--transparent .nc-btn--pill-muted {
	background: linear-gradient(135deg, rgba(178,138,48,.65), rgba(210,174,92,.4));
	border: 1px solid rgba(255,255,255,.35);
	color: #fff;
}
.nc-site-header--transparent .nc-btn--pill-muted:hover { background: rgba(178,138,48,.85); }
.nc-site-header--transparent .nc-nav-toggle span { background: #fff; }

/* Sticky "Contact Us" ribbon, right edge -------------------------------- */
.nc-sticky-contact {
	position: fixed; right: 0; top: 50%; transform: translateY(-50%);
	writing-mode: vertical-rl; text-orientation: mixed;
	background: var(--nc-teal-dark); color: #fff; text-decoration: none;
	padding: 18px 12px; border-radius: 10px 0 0 10px; font-size: 13px; letter-spacing: 1px; font-weight: 500;
	display: flex; align-items: center; gap: 8px; z-index: 60;
	box-shadow: -4px 0 16px rgba(0,0,0,.15);
	transition: background-color .2s ease, padding-right .2s ease;
}
.nc-sticky-contact:hover { background: var(--nc-teal); padding-right: 16px; }

/* Mobile bottom CTA bar: hidden on desktop -------------------------------- */
.nc-mobile-cta { display: none; }

/* Floating WhatsApp button, bottom-right, visible on every page ---------- */
.nc-whatsapp-float { position: fixed; right: 24px; bottom: 24px; z-index: 60; display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nc-whatsapp-float__label {
	background: #fff; color: var(--nc-teal-dark); padding: 10px 16px; border-radius: 999px;
	font-size: 14px; font-weight: 500; box-shadow: 0 8px 20px rgba(0,0,0,.15); white-space: nowrap;
}
.nc-whatsapp-float__icon {
	width: 52px; height: 52px; border-radius: 50%; background: #25D366; flex: 0 0 auto;
	display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 20px rgba(0,0,0,.2);
}
.nc-has-dropdown { position: relative; }
.nc-dropdown {
	list-style: none; margin: 0; padding: 10px 0; position: absolute; top: 100%; left: 0;
	background: #fff; border-radius: 10px; box-shadow: 0 20px 40px rgba(23,51,47,.15);
	min-width: 220px; opacity: 0; visibility: hidden; transform: translateY(8px);
	transition: all .2s ease;
}
.nc-has-dropdown:hover .nc-dropdown,
.nc-has-dropdown:focus-within .nc-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.nc-dropdown li a { display: block; padding: 10px 20px; white-space: nowrap; }
.nc-dropdown li a:hover { background: var(--nc-cream); color: var(--nc-rose-dark); }

.nc-nav-toggle { display: none; flex-direction: column; gap: 5px; }
.nc-nav-toggle span { width: 26px; height: 2px; background: var(--nc-teal-dark); }

/* Hero -------------------------------------------------------- */
.nc-hero {
	/* Extra top padding clears the floating transparent topbar+header
	   (which overlaps this section since .nc-site-header--transparent is
	   pulled out of document flow) so the title never sits under it. */
	position: relative; background-size: cover; background-position: center; overflow: hidden;
	padding: 200px 0 100px; color: #fff; text-align: center;
}
.nc-hero__video {
	position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
	filter: blur(1.5px) brightness(.75) saturate(1.05); z-index: 0;
}
.nc-hero__overlay {
	position: absolute; inset: 0; z-index: 1;
	background: linear-gradient(120deg, rgba(0,96,58,.75), rgba(0,96,58,.35));
}
.nc-hero__inner, .nc-hero__badges { position: relative; z-index: 2; }
.nc-hero__inner { max-width: 640px; margin: 0 auto; }
.nc-hero__title { color: #fff; font-size: clamp(32px, 5vw, 52px); }
.nc-hero__subtitle { color: rgba(255,255,255,.85); margin-bottom: 28px; }
.nc-hero__badges { display: flex; justify-content: center; gap: 14px; margin-top: 50px; }
.nc-badge {
	width: 50px; height: 50px; border-radius: 50%; background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.4);
	display: flex; align-items: center; justify-content: center; overflow: hidden; flex: 0 0 auto;
}
.nc-badge img { width: 100%; height: 100%; object-fit: contain; border-radius: 50%; }
.nc-page-hero .nc-hero__badges { position: relative; margin-top: 24px; }

/* Section shared ---------------------------------------------- */
section { padding: 70px 0; }
.nc-section-title { text-align: center; font-size: clamp(32px, 4vw, 52px); font-weight: 400; color: var(--nc-teal-dark); line-height: 1.5; }
.nc-section-title span { color: #e3ad99; }
.nc-section-subtitle { text-align: center; color: #788c8f; max-width: 640px; margin: 0 auto 40px; font-size: 18px; }

/* Full-height "screens" (homepage only): each .nc-screen wrapper holds
   either one section (Hero, Transformation, Services) or a paired group
   (e.g. Highlights + Free Consultation clock) that together fill at
   least one viewport - min-height (not height) so nothing is ever
   clipped if the real content needs more room, and dvh avoids the
   mobile address-bar jump that plain vh has (vh is the older-browser
   fallback). Each direct child section gets flex:1 so two paired
   sections share any extra space instead of leaving a gap between two
   full-bleed background colors. */
.nc-screen {
	min-height: 100vh;
	min-height: 100dvh;
	display: flex;
	flex-direction: column;
	scroll-snap-align: start;
}
/* The topbar + main menu sit above the first screen with no snap point
   of their own, so making Hero a snap target pulls the very first paint
   past them (menus hidden on load). Hero opts out of snapping; every
   later screen still snaps normally once the user has scrolled past it. */
.nc-main > .nc-screen:first-child { scroll-snap-align: none; }
.nc-screen > * {
	flex: 1 0 auto;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.nc-screen .nc-container { width: 100%; }

/* The footer is self-contained (tagline + form + columns + bottom bar
   all live inside one <footer>), so it gets the same full-height
   treatment directly, on every page - no pairing wrapper needed. */
.nc-footer {
	min-height: 100vh;
	min-height: 100dvh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	scroll-snap-align: start;
}

/* Transformation ------------------------------------------------- */
.nc-transformation { background: var(--nc-teal-dark); color: #eef4f2; text-align: center; padding: 110px 0 96px; }
.nc-transformation__title { color: #fff; font-weight: 400; line-height: 1.1; font-size: clamp(30px, 3.8vw, 52px); margin: 0 0 15px; }
.nc-transformation__title span { color: var(--nc-peach); font-weight: 600; }
.nc-transformation__text { max-width: 640px; margin: 0 auto 20px; color: rgba(255,255,255,.7); font-size: 18px; }

.nc-tabs { text-align: center; }
.nc-tabs__nav { display: inline-flex; justify-content: center; gap: 10px; margin-bottom: 30px; flex-wrap: nowrap; }
.nc-tabs__btn { padding: 10px 22px; border-radius: 999px; background: rgba(255,255,255,.08); color: #cfe0db; font-size: 14px; }
.nc-tabs__btn.is-active { background: var(--nc-terracotta); color: #fff; }
.nc-tabs__panel { display: none; }
.nc-tabs__panel.is-active { display: block; }

/* Transformation section's tab nav is a bordered pill capsule around plain-
   text buttons (divider between items, color+underline on the active one) -
   visually distinct from the filled-pill tabs used elsewhere (Highlights),
   so it's scoped to .nc-transformation rather than changing the shared
   .nc-tabs__btn look everywhere. */
.nc-transformation .nc-tabs__nav {
	display: inline-flex; gap: 0; margin: 0 auto 30px;
	padding: 5px 15px; border: 1px solid rgba(255,255,255,.15); border-radius: 50px;
	background: rgba(255,255,255,.03);
}
.nc-transformation .nc-tabs__btn {
	position: relative; background: transparent; border-radius: 0;
	color: rgba(255,255,255,.6); font-weight: 400; font-size: 18px; padding: 12px 24px;
	transition: color .2s ease;
}
.nc-transformation .nc-tabs__btn:not(:last-child)::after {
	content: ''; position: absolute; top: 50%; right: -1px; transform: translateY(-50%);
	width: 1px; height: 20px; background: rgba(255,255,255,.25);
}
.nc-transformation .nc-tabs__btn:hover,
.nc-transformation .nc-tabs__btn.is-active { background: transparent; color: var(--nc-peach); font-weight: 700; }
.nc-transformation .nc-tabs__btn.is-active::before {
	content: ''; position: absolute; left: 50%; bottom: -3px; transform: translateX(-50%);
	width: 80%; height: 2px; border-radius: 2px; background: var(--nc-peach);
}

/* Carousel: drag-to-scroll strip with prev/next arrows, no visible scrollbar. */
.nc-carousel { position: relative; }
.nc-carousel [data-carousel-track] {
	scroll-behavior: smooth; scrollbar-width: none; -ms-overflow-style: none; cursor: grab; -webkit-overflow-scrolling: touch;
}
.nc-carousel [data-carousel-track]::-webkit-scrollbar { display: none; height: 0; }
.nc-carousel [data-carousel-track].is-dragging { cursor: grabbing; scroll-behavior: auto; user-select: none; }
.nc-carousel__arrow {
	position: absolute; top: 50%; transform: translateY(-50%); z-index: 5;
	width: 44px; height: 44px; border-radius: 50%; background: #fff; color: var(--nc-teal-dark);
	display: flex; align-items: center; justify-content: center; font-size: 22px; line-height: 1;
	box-shadow: 0 8px 20px rgba(0,0,0,.18); border: none;
}
.nc-carousel__arrow:hover { background: var(--nc-teal-dark); color: #fff; }
.nc-carousel__arrow--prev { left: 4px; }
.nc-carousel__arrow--next { right: 4px; }

/* Full-bleed: breaks the carousel out of .nc-container so the strip spans
   the whole viewport width instead of sitting boxed-in with side gutters. */
.nc-carousel--bleed {
	width: 100vw; position: relative; left: 50%; right: 50%; margin-left: -50vw; margin-right: -50vw;
}
.nc-carousel--bleed [data-carousel-track] {
	padding-left: max(24px, calc((100vw - 1200px) / 2 + 24px));
	padding-right: max(24px, calc((100vw - 1200px) / 2 + 24px));
}
.nc-carousel--bleed .nc-carousel__arrow--prev { left: max(12px, calc((100vw - 1200px) / 2 + 12px)); }
.nc-carousel--bleed .nc-carousel__arrow--next { right: max(12px, calc((100vw - 1200px) / 2 + 12px)); }

/* Coverflow slider (Transformation section only): the centered slide is
   scaled up and fully opaque, the rest sit smaller and dimmed to the sides.
   Breaks out of .nc-container to span the full viewport width (matching the
   reference site's ba-carousel). */
.nc-coverflow {
	position: relative; overflow: hidden;
	width: 100vw; left: 50%; margin-left: -50vw;
	padding: 80px 0;
}
.nc-coverflow__track { position: relative; height: 260px; }
.nc-before-after {
	position: absolute; top: 0; left: 50%;
	width: 260px; aspect-ratio: 1 / 1;
	border-radius: var(--nc-radius); overflow: hidden; display: flex;
	cursor: pointer;
}
.nc-before-after.is-active { z-index: 2; cursor: default; }
.nc-before-after img { width: 50%; height: 100%; object-fit: cover; }
.nc-before-after img:first-of-type { filter: grayscale(1) brightness(.75) contrast(1.05); }
.nc-before-after__label {
	position: absolute; top: 12px; z-index: 2; font-size: 11px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
	color: #fff; background: rgba(0,0,0,.45); padding: 4px 10px; border-radius: 999px;
}
.nc-before-after__label--before { left: 12px; }
.nc-before-after__label--after { right: 12px; background: var(--nc-teal-dark); }

.nc-coverflow__arrow {
	position: absolute; top: 50%; transform: translateY(-50%); z-index: 10;
	width: 50px; height: 50px; border-radius: 50%;
	background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.3);
	backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
	color: #fff; display: flex; align-items: center; justify-content: center;
	font-size: 22px; line-height: 1; transition: background-color .3s ease;
}
.nc-coverflow__arrow:hover { background: rgba(255,255,255,.22); }
.nc-coverflow__arrow--prev { left: calc(50% - 182px - 66px); }
.nc-coverflow__arrow--next { right: calc(50% - 182px - 66px); }

.nc-empty-note { color: rgba(255,255,255,.6); font-size: 14px; }

/* Services grid ("Committed to Excellence") ----------------------- */
.nc-services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.nc-service-card {
	position: relative; height: 400px; border-radius: 30px;
	background-size: cover, cover; background-position: center bottom, center bottom;
	display: flex; flex-direction: column; justify-content: space-between;
	padding: 30px; color: #fff; overflow: hidden; text-decoration: none;
}
.nc-service-card__label { font-family: var(--font-heading); font-size: 28px; font-weight: 400; text-align: center; margin: 0; color: #fff; }
.nc-service-card__cta {
	display: block; width: 100%; text-align: center; font-size: 15px;
	padding: 10px 24px; border-radius: 16px; border: none;
	background: linear-gradient(89deg, rgba(0,70,80,.6) -45%, rgba(0,70,80,0) 180%);
	color: #fff;
}

/* Highlights ------------------------------------------------------- */
.nc-highlights { background: var(--nc-cream); }
.nc-highlights .nc-tabs__nav {
	display: flex; gap: 0; margin: 0 auto 30px;
	padding: 0; border: 1px solid #e9e9e9; border-radius: 50px;
	background: transparent; width: fit-content; flex-wrap: nowrap; overflow: hidden;
}
.nc-highlights .nc-tabs__btn {
	position: relative; background: transparent; border-radius: 0;
	color: #4f646d; font-weight: 500; font-size: 18px; padding: 18px 32px;
	white-space: nowrap;
}
.nc-highlights .nc-tabs__btn.is-active { background: transparent; color: #c28e7a; }
.nc-highlights .nc-tabs__btn.is-active::after {
	content: ''; position: absolute; left: 50%; bottom: 0; transform: translateX(-50%);
	width: 70%; height: 3px; border-radius: 3px; background: #dcb6a4;
}
.nc-highlight-coverflow {
	position: relative; overflow: hidden;
	width: 100vw; margin-left: calc(-50vw + 50%);
	padding: 20px 0;
}
.nc-highlight-coverflow__track {
	display: flex; gap: 5px; will-change: transform;
}
.nc-highlight-slide {
	flex: 0 0 37%; min-width: 0;
	border-radius: 22px; overflow: hidden;
}
.nc-highlight-slide img { width: 100%; height: 100%; object-fit: cover; display: block; aspect-ratio: 16 / 9; }
.nc-highlight-coverflow .nc-coverflow__arrow {
	background: rgba(0,0,0,.35); border: 1px solid rgba(0,0,0,.1);
	color: #fff; width: 46px; height: 46px; font-size: 24px;
	box-shadow: 0 4px 12px rgba(0,0,0,.2);
}
.nc-highlight-coverflow .nc-coverflow__arrow:hover { background: rgba(0,0,0,.55); }
.nc-highlight-coverflow .nc-coverflow__arrow--prev { left: calc(50% - 18.5% - 56px); }
.nc-highlight-coverflow .nc-coverflow__arrow--next { right: calc(50% - 18.5% - 56px); }

/* CTA banners --------------------------------------------------------- */
/* Thin horizontal bars again - now that they're paired with a tall
   section (Highlights / Red Carpet) on the homepage, the pair already
   fills the screen without needing the CTA bar itself to be huge. */
.nc-cta-banner, .nc-cta-clock { background: linear-gradient(120deg, #baa29a, #bb9e93 46%, #685953 86%); color: #fff; overflow: hidden; padding: 0 !important; }
.nc-cta-clock__inner {
	display: grid; grid-template-columns: 1.2fr 1.5fr auto auto; gap: 40px;
	align-items: center; height: 198px;
}
.nc-cta-clock__title { color: #fff; font-size: clamp(28px, 3.6vw, 47px); margin: 0; font-weight: 600; line-height: 1.15; }
.nc-cta-banner__title { color: #fff; font-size: 26px; margin: 0; }

.nc-cta-banner__inner {
	display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 40px; padding: 36px 0;
}
.nc-cta-banner__title-group { display: flex; flex-direction: column; gap: 4px; }
.nc-cta-banner__eyebrow { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; opacity: .8; }
.nc-cta-banner__inner .nc-cta-banner__title { font-size: 22px; }
.nc-cta-banner__lang { display: flex; flex-direction: column; align-items: center; gap: 6px; padding: 0 24px; border-left: 1px solid rgba(255,255,255,.25); border-right: 1px solid rgba(255,255,255,.25); }
.nc-cta-banner__flags {
	font-size: 19px; letter-spacing: 3px; background: rgba(255,255,255,.14); border-radius: 999px; padding: 8px 16px; line-height: 1;
}
.nc-cta-banner__caption { margin: 0; font-size: 12px; opacity: .85; white-space: nowrap; }
.nc-cta-clock__text { font-size: 18px; margin: 0; line-height: 1.8; color: #fff; }
.nc-cta-clock__text strong { font-weight: 700; }
.nc-cta-clock__icon {
	width: 160px; height: 160px; border-radius: 50%; background: #fff;
	display: flex; align-items: center; justify-content: center;
	box-shadow: 0 8px 30px rgba(0,0,0,.12); justify-self: center;
}
.nc-clock-face { font-family: var(--font-heading); font-size: 22px; color: var(--nc-teal-dark); font-weight: 600; }
.nc-cta-clock__action { justify-self: end; }

/* Journeys / video coverflow ------------------------------------------ */
.nc-journey-coverflow {
	position: relative; overflow: hidden;
	width: 100vw; margin-left: calc(-50vw + 50%); padding: 20px 0;
}
.nc-journey-coverflow__track { display: flex; gap: 12px; will-change: transform; }
.nc-journey-slide {
	position: relative; flex: 0 0 220px; height: 380px;
	border-radius: 22px; overflow: hidden; border: none; padding: 0;
	background: none; cursor: pointer; transition: transform .5s ease, opacity .5s ease;
}
.nc-journey-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.nc-journey-coverflow .nc-coverflow__arrow {
	background: rgba(0,0,0,.35); border: 1px solid rgba(0,0,0,.1);
	color: #fff; width: 46px; height: 46px; font-size: 24px;
	box-shadow: 0 4px 12px rgba(0,0,0,.2);
}
.nc-play-icon {
	position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
	width: 52px; height: 52px; border-radius: 50%; background: rgba(23,51,47,.55); color: #fff;
	display: flex; align-items: center; justify-content: center; font-size: 16px;
	backdrop-filter: blur(4px);
}

/* Patients say ---------------------------------------------------------- */
.nc-patients-say { text-align: center; }
.nc-google-score { display: flex; align-items: center; justify-content: center; gap: 10px; font-size: 20px; margin-bottom: 30px; }
.nc-reviews-placeholder { border: 1px dashed var(--nc-border); border-radius: var(--nc-radius); padding: 40px; color: var(--nc-text-muted); }

/* Red carpet -------------------------------------------------------------- */
.nc-red-carpet { background: var(--nc-cream); }
.nc-red-carpet__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.nc-celeb-card {
	position: relative; height: 320px; border-radius: var(--nc-radius); background-size: cover; background-position: center top;
	display: flex; flex-direction: column; justify-content: flex-end; align-items: flex-start; padding: 24px; color: #fff; text-align: left;
	overflow: hidden;
}
.nc-celeb-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(23,51,47,.85)); }
.nc-celeb-card > * { position: relative; z-index: 1; }
.nc-celeb-card .nc-play-icon { top: 26px; left: 26px; transform: none; }
.nc-celeb-card__name { font-family: var(--font-heading); font-size: 20px; margin-top: 40px; }
.nc-celeb-card__caption { font-size: 13px; opacity: .85; }

.nc-video-modal { position: fixed; inset: 0; z-index: 200; display: flex; align-items: center; justify-content: center; }
.nc-video-modal[hidden] { display: none; }
.nc-video-modal__backdrop { position: absolute; inset: 0; background: rgba(15,30,28,.85); }
.nc-video-modal__box { position: relative; width: min(90vw, 420px); z-index: 1; }
.nc-video-modal__box video { width: 100%; border-radius: 12px; }
.nc-video-modal__close { position: absolute; top: -40px; right: 0; color: #fff; font-size: 28px; }

/* Forms ------------------------------------------------------------------- */
.nc-consultation-form { max-width: 780px; margin: 0 auto; }
.nc-form-row { display: flex; gap: 16px; margin-bottom: 16px; flex-wrap: wrap; }
.nc-form-field { flex: 1 1 260px; }
.nc-form-field--full { flex: 1 1 100%; }
.nc-consultation-form input,
.nc-consultation-form select,
.nc-consultation-form textarea {
	width: 100%; padding: 14px 18px; border-radius: 999px; border: 1px solid rgba(255,255,255,.15);
	background: rgba(255,255,255,.06); color: #fff; font-family: inherit; font-size: 14px;
}
.nc-consultation-form textarea { border-radius: 18px; resize: vertical; }
.nc-consultation-form ::placeholder { color: rgba(255,255,255,.55); }
.nc-phone-field { display: flex; align-items: center; background: rgba(255,255,255,.06); border-radius: 999px; padding: 0 6px 0 18px; border: 1px solid rgba(255,255,255,.15); }
.nc-phone-field input { border: none; background: none; padding-left: 8px; }
.nc-phone-flag { font-size: 14px; white-space: nowrap; color: #fff; }
.nc-hp-field { position: absolute; left: -9999px; }
.nc-form-status { text-align: center; min-height: 1.4em; font-size: 14px; }

/* Contact page (light form variant) --------------------------------------- */
.nc-contact__form .nc-consultation-form input,
.nc-contact__form .nc-consultation-form select,
.nc-contact__form .nc-consultation-form textarea {
	background: #fff; color: var(--nc-text); border: 1px solid var(--nc-border);
}
.nc-contact__form .nc-consultation-form ::placeholder { color: var(--nc-text-muted); }
.nc-contact__form .nc-phone-field { background: #fff; }
.nc-contact__grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 50px; align-items: start; }

/* Footer ------------------------------------------------------------------- */
.nc-footer { background: var(--nc-teal-dark); color: #cfe0db; }
.nc-footer__form-wrap { text-align: center; padding: 60px 0 40px; }
.nc-logo--footer .nc-logo__text { color: #fff; }
.nc-logo--footer .nc-logo__text em { color: var(--nc-terracotta); }
.nc-footer__tagline { color: rgba(255,255,255,.75); margin-bottom: 30px; }
.nc-footer__tagline--lead { font-family: var(--font-heading); font-size: 24px; color: #fff; max-width: 520px; margin: 0 auto 30px; }
.nc-footer__columns { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; padding: 40px 0; border-top: 1px solid rgba(255,255,255,.1); }
.nc-footer__col h4 { color: var(--nc-terracotta); font-size: 16px; }
.nc-footer__col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; font-size: 14px; }
.nc-footer__col a:hover { color: #fff; }
.nc-footer__socials { display: flex; justify-content: center; gap: 14px; padding: 20px 0; }
.nc-social { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.08); display: inline-block; }
.nc-footer__bottom { background: rgba(0,0,0,.15); }
.nc-footer__bottom-inner { display: flex; align-items: center; justify-content: center; padding: 16px 0; font-size: 13px; flex-wrap: wrap; gap: 10px; }

/* Generic content / pages --------------------------------------------------- */
.nc-page-hero { background: linear-gradient(120deg, var(--nc-teal-dark), var(--nc-teal-light)); color: #fff; text-align: center; padding: 70px 0; }
.nc-page-hero h1 { color: #fff; }
.nc-page-hero__title { color: #fff; font-size: clamp(30px, 4.5vw, 48px); margin-bottom: 14px; }
.nc-page-hero__subtitle { color: rgba(255,255,255,.88); font-size: 17px; max-width: 640px; margin: 0 auto 28px; line-height: 1.6; }
.nc-generic-content { padding: 60px 0; }
.nc-404 { text-align: center; }
.nc-404 p { font-size: 18px; color: var(--nc-text-muted); margin-bottom: 24px; }

/* Service sub-pages: sections, feature cards, FAQ ---------------------------- */
.nc-section { padding: 70px 0; }
.nc-section--alt { background: var(--nc-cream); }
.nc-section-subtitle { text-align: center; color: var(--nc-text-muted); font-size: 15px; margin: -10px 0 30px; }

.nc-features__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 36px; }
.nc-feature-card { background: #fff; border: 1px solid var(--nc-border); border-radius: var(--nc-radius); padding: 28px 22px; text-align: center; box-shadow: 0 4px 18px rgba(0,60,40,.05); }
.nc-section--alt .nc-feature-card { background: #fff; }
.nc-feature-card__icon { width: 56px; height: 56px; margin: 0 auto 16px; border-radius: 50%; background: var(--nc-cream); display: flex; align-items: center; justify-content: center; font-size: 26px; }
.nc-feature-card h3 { font-size: 17px; margin-bottom: 8px; color: var(--nc-teal-dark); }
.nc-feature-card p { font-size: 14px; color: var(--nc-text-muted); line-height: 1.6; margin: 0; }

.nc-gallery-placeholder { text-align: center; padding: 50px 20px; border: 1px dashed var(--nc-border); border-radius: var(--nc-radius); color: var(--nc-text-muted); background: #fff; margin-top: 30px; }

.nc-faq { max-width: 820px; margin: 36px auto 0; display: flex; flex-direction: column; gap: 12px; }
.nc-faq__item { background: #fff; border: 1px solid var(--nc-border); border-radius: 12px; padding: 18px 22px; }
.nc-faq__item summary { cursor: pointer; font-weight: 600; color: var(--nc-teal-dark); list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.nc-faq__item summary::-webkit-details-marker { display: none; }
.nc-faq__item summary::after { content: '+'; font-size: 20px; font-weight: 400; color: var(--nc-rose-dark); flex-shrink: 0; }
.nc-faq__item[open] summary::after { content: '\2212'; }
.nc-faq__item p { margin: 12px 0 0; color: var(--nc-text-muted); font-size: 14.5px; line-height: 1.7; }

@media (max-width: 900px) {
	.nc-features__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
	.nc-features__grid { grid-template-columns: 1fr; }
	.nc-section { padding: 46px 0; }
}
.nc-generic-content__body h2 { margin-top: 1.4em; }

/* Service category page ------------------------------------------------------ */
.nc-service-hero { background: linear-gradient(120deg, var(--nc-teal-dark), var(--nc-teal-mid)); color: #fff; text-align: center; padding: 90px 0 60px; }
.nc-service-hero h1 { color: #fff; }
.nc-service-hero p { max-width: 640px; margin: 0 auto 24px; color: rgba(255,255,255,.85); }
.nc-sub-treatments { display: flex; flex-direction: column; gap: 40px; }
.nc-sub-treatment { display: grid; grid-template-columns: 360px 1fr; gap: 30px; align-items: center; }
.nc-sub-treatment:nth-child(even) { direction: rtl; }
.nc-sub-treatment:nth-child(even) > * { direction: ltr; }
.nc-sub-treatment__media img { border-radius: var(--nc-radius); width: 100%; height: 340px; object-fit: cover; }

/* Contact info list */
.nc-contact__info p { border-bottom: 1px solid var(--nc-border); padding-bottom: 12px; }

/* About us ------------------------------------------------------------------ */
.nc-about-intro__grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 40px; align-items: center; }
.nc-about-intro__images { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.nc-about-intro__images img { border-radius: var(--nc-radius); width: 100%; height: 220px; object-fit: cover; }
.nc-about-intro__images img:first-child { grid-column: 1 / -1; height: 180px; }
.nc-about-intro__text h2 { font-size: 26px; }
.nc-about-stats { background: linear-gradient(120deg, var(--nc-rose), var(--nc-rose-dark)); }
.nc-about-stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.nc-stat-card { text-align: center; color: #fff; background: rgba(255,255,255,.08); border-radius: var(--nc-radius); padding: 24px 16px; }
.nc-stat-card__number { display: block; font-family: var(--font-heading); font-size: 30px; }
.nc-stat-card__label { display: block; font-size: 13px; opacity: .85; margin-top: 6px; }

/* Partnership ---------------------------------------------------------------- */
.nc-partner-benefits__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.nc-benefit-card { background: var(--nc-rose); color: #fff; border-radius: var(--nc-radius); padding: 24px 18px; text-align: center; font-weight: 500; }
.nc-partner-steps { background: var(--nc-cream); }
.nc-partner-steps__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.nc-step-card__number {
	display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 50%;
	background: var(--nc-rose); color: #fff; font-family: var(--font-heading); font-size: 18px; margin-bottom: 14px;
}
.nc-step-card h3 { font-size: 17px; }
.nc-step-card p { font-size: 14px; color: var(--nc-text-muted); }
.nc-partner-form__grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 40px; align-items: start; }
.nc-partner-form__box { background: var(--nc-cream); border-radius: var(--nc-radius); padding: 30px; }
.nc-partner-form__box .nc-consultation-form input,
.nc-partner-form__box .nc-consultation-form select,
.nc-partner-form__box .nc-consultation-form textarea { background: #fff; color: var(--nc-text); border: 1px solid var(--nc-border); }
.nc-partner-form__box .nc-consultation-form ::placeholder { color: var(--nc-text-muted); }
.nc-partner-form__box .nc-phone-field { background: #fff; }

/* Medical team / doctors -------------------------------------------------- */
.nc-doctors__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
.nc-doctor-card__photo { width: 180px; height: 180px; margin: 0 auto 16px; border-radius: 50%; overflow: hidden; }
.nc-doctor-card__photo img { width: 100%; height: 100%; object-fit: cover; }
.nc-doctor-card__title { color: var(--nc-rose-dark); font-size: 13px; margin-bottom: 2px; }
.nc-doctor-card__name { font-size: 18px; margin-bottom: 4px; }
.nc-doctor-card__specialty { color: var(--nc-text-muted); font-size: 14px; }

/* Blog --------------------------------------------------------------------- */
.nc-blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; padding: 60px 0; }
.nc-blog-card { border: 1px solid var(--nc-border); border-radius: var(--nc-radius); overflow: hidden; }
.nc-blog-card__media img { height: 260px; width: 100%; object-fit: cover; }
.nc-blog-card__body { padding: 20px; }
.nc-blog-card__cat { font-size: 12px; text-transform: uppercase; letter-spacing: 1px; color: var(--nc-rose-dark); }
.nc-blog-card h2 { font-size: 18px; }
.nc-blog-card p { color: var(--nc-text-muted); font-size: 14px; }
.nc-pagination { text-align: center; padding-bottom: 60px; }
.nc-post-meta { color: rgba(255,255,255,.7); font-size: 13px; }
.nc-single-post__thumb img { border-radius: var(--nc-radius); margin: -60px 0 30px; }

/* Responsive ----------------------------------------------------------------- */
@media (max-width: 960px) {
	.nc-services__grid, .nc-red-carpet__grid, .nc-blog-grid, .nc-doctors__grid, .nc-about-stats__grid { grid-template-columns: repeat(2, 1fr); }
	.nc-contact__grid { grid-template-columns: 1fr; }
	.nc-sub-treatment, .nc-sub-treatment:nth-child(even) { grid-template-columns: 1fr; direction: ltr; }
	.nc-footer__columns { grid-template-columns: repeat(2, 1fr); }
	.nc-about-intro__grid { grid-template-columns: 1fr; }
	.nc-partner-benefits__grid, .nc-partner-steps__grid { grid-template-columns: repeat(2, 1fr); }
	.nc-partner-form__grid { grid-template-columns: 1fr; }
}

.nc-nav__header { display: none; }

@media (max-width: 768px) {
	.nc-topbar__patients, .nc-topbar__links { display: none; }
	.nc-nav-toggle {
		display: flex; order: 10;
		width: 40px; height: 40px; border-radius: 50%;
		background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.25);
		align-items: center; justify-content: center; flex-direction: column; gap: 4px;
		backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
		padding: 0; flex-shrink: 0;
		position: relative;
	}
	.nc-nav-toggle span {
		width: 18px; height: 1.5px; display: block;
		transition: transform .3s ease, opacity .3s ease;
		transform-origin: center;
	}
	.nc-nav-toggle[aria-expanded="true"] { gap: 0; }
	.nc-nav-toggle[aria-expanded="true"] span:nth-child(1) {
		transform: translateY(1.5px) rotate(45deg);
	}
	.nc-nav-toggle[aria-expanded="true"] span:nth-child(2) {
		opacity: 0;
	}
	.nc-nav-toggle[aria-expanded="true"] span:nth-child(3) {
		transform: translateY(-1.5px) rotate(-45deg);
	}
	.nc-header__inner { gap: 10px; }
	.nc-nav__actions--desktop {
		display: flex; align-items: center; gap: 8px; order: 5;
	}
	.nc-site-header--transparent .nc-nav__actions--desktop {
		padding: 4px 4px 4px 10px;
		background: linear-gradient(135deg, rgba(255,255,255,.2), rgba(255,255,255,.08));
		backdrop-filter: blur(12px) saturate(140%);
		-webkit-backdrop-filter: blur(12px) saturate(140%);
		border: 1px solid rgba(255,255,255,.25);
		border-radius: 999px;
		align-items: center;
	}
	.nc-nav {
		position: fixed !important; inset: 0 !important; z-index: 9999 !important;
		background: linear-gradient(170deg, #001a10 0%, #002a18 40%, #001510 100%) !important;
		flex-direction: column; align-items: stretch;
		padding: 0; transform: translateX(100%); transition: transform .4s cubic-bezier(.22,1,.36,1);
		overflow-y: auto;
	}
	.nc-nav.is-open { transform: translateX(0); }
	/* Nav header: logo + close */
	.nc-nav__header {
		display: flex; align-items: center; justify-content: space-between;
		padding: 20px 24px 16px;
	}
	.nc-nav__close {
		width: 44px; height: 44px; display: flex; align-items: center; justify-content: center;
		background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12);
		border-radius: 12px; cursor: pointer; color: rgba(255,255,255,.8); transition: all .2s;
	}
	.nc-nav__close:hover { background: rgba(255,255,255,.15); color: #fff; }
	/* Nav links */
	.nc-site-header--transparent .nc-nav__list,
	.nc-nav__list {
		flex-direction: column !important; gap: 0 !important; width: 100% !important;
		padding: 8px 16px !important; margin-top: 8px;
		background: none !important; backdrop-filter: none !important;
		-webkit-backdrop-filter: none !important; border: none !important;
		border-radius: 0 !important;
	}
	.nc-site-header--transparent .nc-nav__list > li > a,
	.nc-nav__list > li > a {
		color: #fff !important; font-size: 17px; font-weight: 400; letter-spacing: .3px;
		padding: 16px 20px !important; border-radius: 14px !important;
		display: flex; align-items: center; gap: 12px;
		border-bottom: 1px solid rgba(255,255,255,.06);
		transition: background .2s, border-color .2s;
	}
	.nc-nav__list > li:last-child > a { border-bottom: none; }
	.nc-site-header--transparent .nc-nav__list > li > a:hover,
	.nc-site-header--transparent .nc-nav__list > li.is-current > a,
	.nc-nav__list > li > a:hover,
	.nc-nav__list > li.is-current > a {
		background: rgba(0,201,107,.12) !important;
		border-color: transparent !important;
	}
	.nc-nav__list > li.is-current > a::before {
		content: ''; width: 3px; height: 20px; border-radius: 2px;
		background: #00c96b; margin-right: 4px; flex-shrink: 0;
	}
	/* Dropdown inside nav */
	.nc-dropdown {
		position: static; opacity: 1; visibility: visible; transform: none;
		box-shadow: none; display: none; padding: 4px 0 4px 24px;
		border-left: 2px solid rgba(0,201,107,.25); margin-left: 32px;
	}
	.nc-dropdown a {
		color: rgba(255,255,255,.55) !important; font-size: 15px;
		padding: 10px 16px !important; border-bottom: none !important;
	}
	.nc-dropdown a:hover { color: #fff !important; background: rgba(255,255,255,.06) !important; }
	.nc-has-dropdown.is-open .nc-dropdown { display: block; }
	/* Bottom section: lang + CTA */
	.nc-nav__actions--mobile {
		display: flex; flex-direction: column; align-items: stretch;
		gap: 16px; margin-top: auto; padding: 20px 24px 32px;
		border-top: 1px solid rgba(255,255,255,.08);
	}
	.nc-nav__lang-row {
		display: flex; gap: 8px;
	}
	.nc-nav__lang-item {
		flex: 1; display: flex; align-items: center; justify-content: center; gap: 6px;
		padding: 12px 12px; border-radius: 12px; font-size: 13px; font-weight: 600;
		color: rgba(255,255,255,.5); background: rgba(255,255,255,.04);
		border: 1px solid rgba(255,255,255,.08); transition: all .25s;
		text-decoration: none; letter-spacing: .5px;
	}
	.nc-nav__lang-item.is-active {
		color: #fff; background: rgba(0,201,107,.15);
		border-color: rgba(0,201,107,.35);
		box-shadow: 0 0 12px rgba(0,201,107,.15);
	}
	.nc-nav__lang-item:hover { background: rgba(255,255,255,.08); color: #fff; }
	.nc-nav__lang-item svg { flex-shrink: 0; border-radius: 2px; }
	.nc-nav__cta {
		width: 100%; text-align: center; padding: 16px 24px !important;
		font-size: 16px !important; border-radius: 14px !important;
		background: linear-gradient(135deg, #00c96b, #006940) !important;
		background-size: 200% 200% !important; animation: ncGlow 4s ease infinite;
		border: none !important; color: #fff !important; font-weight: 600;
		box-shadow: 0 0 24px rgba(0,201,107,.25), 0 4px 16px rgba(0,0,0,.3);
		letter-spacing: .3px;
	}
	.nc-nav__cta-row {
		display: flex; gap: 10px; width: 100%;
	}
	.nc-nav__cta {
		flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 8px;
		padding: 15px 16px !important; border-radius: 14px !important;
		font-size: 15px !important; font-weight: 600; text-decoration: none;
		letter-spacing: .3px; transition: transform .2s, box-shadow .2s;
	}
	.nc-nav__cta:active { transform: scale(.95); }
	.nc-nav__cta--whatsapp {
		color: #1a1a1a !important; background: rgba(255,255,255,.92) !important;
		border: 1px solid rgba(255,255,255,.3) !important;
		box-shadow: 0 4px 16px rgba(0,0,0,.15);
	}
	.nc-nav__cta--whatsapp svg { color: #25D366; fill: #25D366; flex-shrink: 0; }
	.nc-nav__cta--contact {
		color: #fff !important;
		background: linear-gradient(135deg, #00c96b, #006940) !important;
		border: none !important;
		box-shadow: 0 0 20px rgba(0,201,107,.25), 0 4px 16px rgba(0,0,0,.3);
	}
	.nc-nav__cta--contact svg { flex-shrink: 0; }
	/* Hide bottom CTA bar when nav is open */
	.nc-nav.is-open ~ .nc-mobile-cta,
	body:has(.nc-nav.is-open) .nc-mobile-cta { display: none !important; }
	.nc-services__grid, .nc-red-carpet__grid, .nc-blog-grid, .nc-doctors__grid, .nc-about-stats__grid { grid-template-columns: 1fr; }
	.nc-footer__columns { grid-template-columns: 1fr 1fr; }
	.nc-about-intro__images { grid-template-columns: 1fr; }
	.nc-about-intro__images img:first-child { height: auto; }
	.nc-partner-benefits__grid, .nc-partner-steps__grid { grid-template-columns: 1fr; }
	.nc-cta-clock__inner { display: flex; flex-direction: column; align-items: center; text-align: center; height: auto; padding: 40px 20px; gap: 20px; }
	.nc-cta-clock__icon { width: 100px; height: 100px; margin-left: 0; }
	.nc-cta-clock__action { justify-self: auto; }
	.nc-cta-banner__inner { grid-template-columns: 1fr; justify-items: center; text-align: center; gap: 20px; }
	.nc-cta-banner__lang { border-left: none; border-right: none; padding: 16px 0; border-top: 1px solid rgba(255,255,255,.25); border-bottom: 1px solid rgba(255,255,255,.25); width: 100%; }
	.nc-transformation { padding: 60px 0 50px; }
	.nc-coverflow { padding: 40px 0; }
	.nc-coverflow__track { height: 170px; }
	.nc-before-after { width: 170px; }
	.nc-coverflow__arrow--prev { left: calc(50% - 119px - 50px); }
	.nc-coverflow__arrow--next { right: calc(50% - 119px - 50px); }
	.nc-highlight-slide { flex: 0 0 71.4%; }
	.nc-journey-slide { flex: 0 0 160px; height: 280px; }
	.nc-celeb-card { height: 260px; }
	.nc-service-card { height: 320px; border-radius: 20px; padding: 20px; }
	.nc-service-card__label { font-size: 22px; }
	.nc-sub-treatment__media img { height: 240px; }

	/* Tab nav: scroll horizontally on mobile */
	.nc-tabs__nav,
	.nc-highlights .nc-tabs__nav {
		overflow-x: auto !important; -webkit-overflow-scrolling: touch;
		scrollbar-width: none; max-width: 100%; width: 100%;
	}
	.nc-tabs__nav::-webkit-scrollbar,
	.nc-highlights .nc-tabs__nav::-webkit-scrollbar { display: none; }
	.nc-tabs__btn { font-size: 14px; padding: 12px 16px; }

	/* Section titles smaller */
	.nc-section-title { font-size: clamp(24px, 6vw, 36px); }
	.nc-section-subtitle { font-size: 15px; }

	/* CTA Clock: stack vertically */
	.nc-cta-clock { padding: 0 !important; }
	.nc-cta-clock__inner { display: flex; flex-direction: column; align-items: center; text-align: center; height: auto; padding: 30px 20px; gap: 16px; }
	.nc-cta-clock__icon { width: 90px; height: 90px; }
	.nc-cta-clock__action { justify-self: auto; }
	.nc-clock-face { font-size: 16px; }
	.nc-cta-clock__title { font-size: 28px; }
	.nc-cta-clock__text { font-size: 15px; }

	/* CTA Banner */
	.nc-cta-banner { padding: 0 !important; }

	/* Form rows: stack vertically */
	.nc-form-row { flex-direction: column; gap: 12px; margin-bottom: 12px; }
	.nc-form-field { flex: none; width: 100%; }
	.nc-form-field--full { flex: none; width: 100%; }
	.nc-footer__form-wrap { padding: 40px 20px 30px; }
	.nc-footer__tagline--lead { font-size: 20px; margin-bottom: 20px; }

	/* Ensure all containers have side padding on mobile */
	.nc-container { padding-left: 20px !important; padding-right: 20px !important; }
	.nc-header .nc-container { padding-left: 16px !important; padding-right: 16px !important; }

	/* CTA banner inner padding */
	.nc-cta-banner__inner { padding-left: 20px; padding-right: 20px; }
	.nc-cta-clock__inner { padding-left: 20px !important; padding-right: 20px !important; }

	/* WhatsApp float: hide on mobile (moved to bottom CTA) */
	.nc-whatsapp-float { display: none !important; }

	/* Sticky contact tab: hide on mobile */
	.nc-sticky-contact { display: none; }

	/* Top bar: show, scrolls away naturally */
	.nc-topbar { display: block; }
	.nc-topbar__inner { justify-content: center; padding: 6px 16px; }

	/* Site header: absolute over hero, JS switches to fixed on scroll */
	.nc-site-header--transparent {
		position: absolute !important; top: 0; left: 0; right: 0; width: 100%; z-index: 40;
	}
	.nc-site-header--transparent.is-fixed {
		position: fixed !important; top: 0;
	}
	.nc-site-header--transparent.is-fixed .nc-topbar { display: none; }

	/* Header: transparent initially, glass on scroll */
	.nc-header { padding: 10px 0; }
	.nc-site-header--transparent .nc-header {
		background: transparent !important; box-shadow: none !important;
	}
	.nc-header .nc-container { padding: 0 16px; }

	/* Hero: no extra padding needed, header overlays */
	.nc-hero { padding-top: 0 !important; }
	.nc-site-header--transparent .nc-nav__actions--desktop .nc-btn--pill-muted {
		padding: 8px 14px !important; font-size: 12px; font-weight: 500; letter-spacing: .2px;
		background: var(--nc-teal-dark) !important; border-color: var(--nc-teal-dark) !important; color: #fff !important;
		line-height: 1.2; white-space: nowrap;
	}
	.nc-site-header--transparent .nc-nav__actions--desktop .nc-btn--pill-muted:hover {
		background: var(--nc-teal) !important; border-color: var(--nc-teal) !important;
	}
	.nc-nav__actions--desktop .nc-lang-switcher { font-size: 18px; }
	.nc-logo .custom-logo, .nc-logo__image { max-height: 34px; }

	/* Mobile bottom CTA bar (2 buttons like reference) */
	.nc-mobile-cta {
		display: flex; position: fixed; bottom: 0; left: 0; right: 0; z-index: 100;
		padding: 10px 16px env(safe-area-inset-bottom, 10px);
		gap: 10px; background: transparent;
	}
	.nc-mobile-cta__btn {
		flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 8px;
		padding: 14px 20px; border-radius: 16px; font-size: 15px; font-weight: 600;
		text-decoration: none; white-space: nowrap; letter-spacing: .3px;
		position: relative; overflow: hidden;
		transition: transform .25s cubic-bezier(.2,.8,.2,1), box-shadow .3s ease;
	}
	.nc-mobile-cta__btn::before {
		content: ''; position: absolute; inset: 0; border-radius: inherit;
		opacity: 0; transition: opacity .3s ease;
	}
	.nc-mobile-cta__btn:active { transform: scale(.95); }
	.nc-mobile-cta__btn--outline {
		color: #1a1a1a;
		background: linear-gradient(135deg, rgba(255,255,255,.92), rgba(255,255,255,.78));
		backdrop-filter: blur(24px) saturate(200%); -webkit-backdrop-filter: blur(24px) saturate(200%);
		border: 1px solid rgba(255,255,255,.6);
		box-shadow: 0 0 20px rgba(255,255,255,.12), 0 8px 32px rgba(0,0,0,.12),
		            inset 0 1px 0 rgba(255,255,255,.7), inset 0 -1px 0 rgba(0,0,0,.05);
	}
	.nc-mobile-cta__btn--outline svg { color: #25D366; fill: #25D366; flex-shrink: 0; }
	.nc-mobile-cta__btn--outline::before {
		background: linear-gradient(135deg, rgba(255,255,255,.15), transparent);
	}
	.nc-mobile-cta__btn--outline:active::before { opacity: 1; }
	.nc-mobile-cta__btn--filled {
		color: #fff; border: 1px solid rgba(255,255,255,.15);
		background: linear-gradient(135deg, #00c96b, var(--nc-teal-dark), #004d2e);
		background-size: 200% 200%; animation: ncGlow 4s ease infinite;
		box-shadow: 0 0 24px rgba(0,201,107,.3), 0 0 48px rgba(0,105,64,.15),
		            0 8px 32px rgba(0,60,40,.25), inset 0 1px 0 rgba(255,255,255,.2);
	}
	.nc-mobile-cta__btn--filled::before {
		background: linear-gradient(135deg, rgba(255,255,255,.2), transparent 60%);
	}
	.nc-mobile-cta__btn--filled:active::before { opacity: 1; }
	.nc-mobile-cta__btn--filled svg { flex-shrink: 0; filter: drop-shadow(0 0 4px rgba(255,255,255,.4)); }
	@keyframes ncGlow {
		0%, 100% { background-position: 0% 50%; }
		50% { background-position: 100% 50%; }
	}

	/* Add bottom padding to body so content isn't hidden behind CTA bar */
	body { padding-bottom: 72px; }

	/* Footer: add extra bottom padding */
	.nc-footer { padding-bottom: 80px; }

	/* Prevent any horizontal overflow (clip, not hidden, so sticky still works) */
	html, body { overflow-x: clip; }
}

/* =====================================================
   Premium polish: consistent depth, motion and detailing
   ===================================================== */
.nc-service-card,
.nc-highlight-slide,
.nc-celeb-card,
.nc-journey-slide,
.nc-doctor-card,
.nc-blog-card,
.nc-benefit-card,
.nc-stat-card,
.nc-sub-treatment__media img,
.nc-btn {
	transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s ease, background-color .25s ease, color .25s ease;
}

.nc-service-card:hover,
.nc-celeb-card:hover,
.nc-journey-slide:hover { box-shadow: 0 22px 40px rgba(0,52,32,.28); }

.nc-highlight-slide:hover { transform: translateY(-4px); box-shadow: 0 18px 32px rgba(0,52,32,.18); }

.nc-doctor-card { transition: transform .3s ease; }
.nc-doctor-card:hover { transform: translateY(-4px); }
.nc-doctor-card:hover .nc-doctor-card__photo { box-shadow: 0 12px 26px rgba(0,52,32,.25); }
.nc-doctor-card__photo { transition: box-shadow .3s ease; }

.nc-blog-card:hover { transform: translateY(-5px); box-shadow: 0 20px 36px rgba(0,52,32,.14); }
.nc-benefit-card:hover, .nc-stat-card:hover { transform: translateY(-3px); }

.nc-service-card__cta { transition: filter .25s ease; }
.nc-service-card:hover .nc-service-card__cta { filter: brightness(1.1); }

/* Slightly heavier, more deliberate headings for an editorial feel. */
.nc-section-title { letter-spacing: .2px; }
.nc-hero__title, .nc-transformation__title { letter-spacing: .3px; }

/* Refined badges/pills. */
.nc-badge { box-shadow: 0 4px 14px rgba(0,0,0,.12); }
.nc-tabs__btn { transition: background-color .25s ease, color .25s ease, transform .25s ease; }
.nc-tabs__btn:hover { transform: translateY(-1px); }

::selection { background: var(--nc-teal-dark); color: #fff; }
