/*
Theme Name: New Cherry
Theme URI: https://example.com/
Author: New Cherry
Description: Child development & therapy centre theme for Delhi — SEO-focused, mobile-first, with hero YouTube video support.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: new-cherry
*/

/* -------------------------------------------------------------------------
   Design tokens — calm healthcare palette (teal + warm coral)
   ------------------------------------------------------------------------- */
:root {
	--nc-primary: #156372;
	--nc-primary-dark: #0e4a52;
	--nc-primary-light: #1f8a9e;
	--nc-accent: #e07a5f;
	--nc-accent-hover: #c9654a;
	--nc-bg: #f6faf9;
	--nc-bg-card: #ffffff;
	--nc-text: #1a1f2c;
	--nc-text-muted: #5a6578;
	--nc-border: rgba(21, 99, 114, 0.12);
	--nc-radius: 12px;
	--nc-radius-lg: 20px;
	--nc-shadow: 0 8px 32px rgba(14, 74, 82, 0.08);
	--nc-font: "Plus Jakarta Sans", system-ui, sans-serif;
	--nc-header-h: 72px;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: var(--nc-font);
	font-size: 1rem;
	line-height: 1.6;
	color: var(--nc-text);
	background: var(--nc-bg);
	-webkit-font-smoothing: antialiased;
}

body.nc-menu-open {
	overflow: hidden;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	color: var(--nc-primary);
	text-decoration: none;
	transition: color 0.2s ease;
}

a:hover,
a:focus-visible {
	color: var(--nc-accent);
}

ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.skip-link:focus {
	position: fixed;
	top: 8px;
	left: 8px;
	z-index: 100000;
	padding: 12px 16px;
	background: var(--nc-primary);
	color: #fff;
	clip: auto;
	width: auto;
	height: auto;
}

/* Container */
.nc-container {
	width: 100%;
	max-width: 1180px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 20px;
	padding-right: 20px;
}

/* -------------------------------------------------------------------------
   Top bar
   ------------------------------------------------------------------------- */
.nc-topbar {
	background: linear-gradient(90deg, var(--nc-primary-dark) 0%, var(--nc-primary) 100%);
	color: #e8f4f6;
	font-size: 0.8125rem;
}

.nc-topbar__inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 8px 16px;
	min-height: 40px;
}

.nc-topbar__loc {
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.nc-topbar__loc svg {
	flex-shrink: 0;
	opacity: 0.9;
}

.nc-topbar__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px 20px;
}

.nc-topbar a {
	color: #fff;
	font-weight: 600;
}

.nc-topbar a:hover {
	text-decoration: underline;
}

/* -------------------------------------------------------------------------
   Header
   ------------------------------------------------------------------------- */
.nc-header {
	position: sticky;
	top: 0;
	z-index: 9998;
	background: var(--nc-bg-card);
	box-shadow: 0 1px 0 var(--nc-border), var(--nc-shadow);
}

.nc-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	min-height: var(--nc-header-h);
	padding-top: 10px;
	padding-bottom: 10px;
	flex-wrap: wrap;
}

.nc-brand {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-shrink: 0;
}

.nc-brand__logo-wrap {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 4px;
}

.nc-brand .custom-logo-link img,
.nc-footer-logo .custom-logo-link img {
	max-height: 52px;
	width: auto;
}

.nc-brand__tag--header {
	margin: 4px 0 0;
	max-width: 220px;
	font-size: 0.7rem;
	font-weight: 600;
	color: var(--nc-text-muted);
	line-height: 1.3;
}

.nc-brand__text {
	display: flex;
	flex-direction: column;
	gap: 0;
	line-height: 1.2;
}

.nc-brand__title {
	margin: 0;
	font-size: 1.35rem;
	font-weight: 800;
	letter-spacing: -0.02em;
	color: var(--nc-primary-dark);
}

.nc-brand__tag {
	margin: 0;
	font-size: 0.75rem;
	font-weight: 600;
	color: var(--nc-text-muted);
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

/* Navigation */
.nc-nav-wrap {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-left: auto;
}

.nc-menu-toggle {
	display: none;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	padding: 0;
	border: 2px solid var(--nc-border);
	border-radius: 10px;
	background: var(--nc-bg);
	cursor: pointer;
	color: var(--nc-primary-dark);
}

.nc-menu-toggle:focus-visible {
	outline: 2px solid var(--nc-accent);
	outline-offset: 2px;
}

.nc-menu-toggle .nc-icon-bar {
	display: block;
	width: 22px;
	height: 2px;
	background: currentColor;
	margin: 5px auto;
	border-radius: 1px;
	transition: transform 0.2s ease, opacity 0.2s ease;
}

body.nc-menu-open .nc-menu-toggle .nc-icon-bar:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

body.nc-menu-open .nc-menu-toggle .nc-icon-bar:nth-child(2) {
	opacity: 0;
}

body.nc-menu-open .nc-menu-toggle .nc-icon-bar:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

.nc-main-nav {
	display: flex;
	align-items: center;
}

.nc-main-nav ul {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 4px 0;
}

.nc-main-nav > ul > li {
	position: relative;
}

.nc-main-nav a {
	display: block;
	padding: 10px 14px;
	font-size: 0.9375rem;
	font-weight: 600;
	color: var(--nc-text);
	border-radius: 8px;
}

.nc-main-nav a:hover,
.nc-main-nav li.current-menu-item > a,
.nc-main-nav li.current_page_item > a {
	color: var(--nc-primary);
	background: rgba(21, 99, 114, 0.08);
}

/* Dropdown */
.nc-main-nav .sub-menu {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 240px;
	padding: 8px 0;
	background: #fff;
	border-radius: var(--nc-radius);
	box-shadow: var(--nc-shadow);
	border: 1px solid var(--nc-border);
	z-index: 10000;
}

.nc-main-nav li:hover > .sub-menu,
.nc-main-nav li:focus-within > .sub-menu {
	display: block;
}

.nc-main-nav .sub-menu a {
	padding: 10px 16px;
	font-size: 0.875rem;
	font-weight: 500;
	white-space: nowrap;
}

.nc-main-nav .sub-menu .sub-menu {
	top: 0;
	left: 100%;
}

/* Header CTAs */
.nc-header-cta {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-shrink: 0;
}

.nc-mobile-menu-cta {
	display: none;
}

.nc-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px 20px;
	min-height: 46px;
	min-width: 150px;
	font-size: 0.9375rem;
	font-weight: 700;
	border-radius: 999px;
	border: none;
	cursor: pointer;
	font-family: inherit;
	transition: background 0.2s ease, transform 0.15s ease;
	text-decoration: none;
}

.nc-btn:focus-visible {
	outline: 2px solid var(--nc-accent);
	outline-offset: 2px;
}

.nc-btn--primary {
	background: var(--nc-accent);
	color: #fff;
}

.nc-btn--primary:hover {
	background: var(--nc-accent-hover);
	color: #fff;
}

.nc-btn--outline {
	background: transparent;
	color: var(--nc-primary);
	border: 2px solid var(--nc-primary);
	padding: 10px 18px;
}

.nc-btn--outline:hover {
	background: rgba(21, 99, 114, 0.08);
	color: var(--nc-primary-dark);
}

.nc-btn--ghost {
	background: rgba(21, 99, 114, 0.1);
	color: var(--nc-primary-dark);
}

@media (max-width: 1024px) {
	.nc-topbar__inner {
		min-height: 36px;
	}

	.nc-topbar__loc {
		display: none;
	}

	.nc-header {
		position: sticky;
	}

	.nc-header__inner {
		gap: 10px;
		min-height: 64px;
	}

	.nc-brand .custom-logo-link img,
	.nc-footer-logo .custom-logo-link img {
		max-height: 44px;
	}

	.nc-brand__tag--header {
		display: none;
	}

	.nc-header-cta {
		display: none;
	}

	.nc-menu-toggle {
		display: flex;
		flex-direction: column;
	}

	.nc-main-nav {
		position: fixed;
		inset: 0;
		top: 0;
		background: rgba(26, 31, 44, 0.45);
		backdrop-filter: blur(4px);
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		transition: opacity 0.25s ease, visibility 0.25s ease;
	}

	body.nc-menu-open .nc-main-nav {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
	}

	.nc-main-nav > ul {
		position: absolute;
		top: 0;
		right: 0;
		width: min(100%, 360px);
		height: 100vh;
		overflow-y: auto;
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		padding: 16px;
		background: #fff;
		box-shadow: -8px 0 32px rgba(0, 0, 0, 0.12);
	}

	.nc-mobile-menu-cta {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 10px;
		padding: 14px 4px 10px;
		margin-top: 8px;
		border-top: 1px solid var(--nc-border);
	}

	.nc-mobile-menu-cta .nc-btn {
		min-width: 0;
		width: 100%;
	}

	.nc-main-nav .sub-menu {
		position: static;
		display: block;
		box-shadow: none;
		border: none;
		padding: 8px 0 8px 12px;
		background: var(--nc-bg);
		border-radius: 8px;
		margin-top: 4px;
	}

	.nc-main-nav .sub-menu a {
		white-space: normal;
	}

	.nc-header-cta .nc-btn span.nc-btn__long { display: none; }
}

@media (min-width: 1025px) {
	.nc-header-cta .nc-btn--outline {
		display: inline-flex;
	}
}

/* -------------------------------------------------------------------------
   Front page — Hero with YouTube
   ------------------------------------------------------------------------- */
.nc-hero {
	position: relative;
	background: linear-gradient(145deg, var(--nc-primary-dark) 0%, var(--nc-primary) 45%, #1a8a9e 100%);
	color: #fff;
	overflow: hidden;
}

.nc-hero--with-video {
	background: #0e4a52;
}

.nc-hero--no-video {
	background: linear-gradient(145deg, var(--nc-primary-dark) 0%, var(--nc-primary) 45%, #1a8a9e 100%);
}

.nc-hero__bg-video {
	position: absolute;
	inset: 0;
	z-index: 0;
	overflow: hidden;
}

.nc-hero__bg-video iframe {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 177.77777778vh;
	min-width: 100%;
	height: 56.25vw;
	min-height: 100%;
	transform: translate(-50%, -50%);
	border: 0;
	pointer-events: none;
}

.nc-hero__overlay {
	position: absolute;
	inset: 0;
	z-index: 0;
	background: linear-gradient(140deg, rgba(14, 74, 82, 0.86) 10%, rgba(15, 99, 114, 0.8) 48%, rgba(14, 74, 82, 0.75) 100%);
}

.nc-hero__grid {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 28px;
	align-items: start;
	padding: 48px 0 56px;
	min-height: min(78vh, 720px);
	position: relative;
	z-index: 1;
}

.nc-hero__badge {
	display: inline-block;
	padding: 6px 14px;
	margin-bottom: 16px;
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	background: rgba(255, 255, 255, 0.15);
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, 0.25);
}

.nc-hero h1 {
	margin: 0 0 16px;
	font-size: clamp(1.75rem, 4vw, 2.5rem);
	font-weight: 800;
	line-height: 1.15;
	letter-spacing: -0.03em;
}

.nc-hero__lead {
	margin: 0 0 24px;
	font-size: 1.0625rem;
	line-height: 1.65;
	opacity: 0.95;
	max-width: 34em;
}

.nc-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 28px;
}

.nc-hero__actions .nc-btn--primary {
	background: var(--nc-accent);
	color: #fff;
	border: 2px solid var(--nc-accent);
}

.nc-hero__actions .nc-btn--primary:hover {
	background: var(--nc-accent-hover);
	border-color: var(--nc-accent-hover);
	color: #fff;
}

.nc-hero__actions .nc-btn--ghost {
	background: rgba(255, 255, 255, 0.12);
	color: #fff;
	border: 2px solid rgba(255, 255, 255, 0.82);
}

.nc-hero__actions .nc-btn--ghost:hover {
	background: #fff;
	color: var(--nc-primary-dark);
	border-color: #fff;
}

.nc-hero__trust {
	display: flex;
	flex-wrap: wrap;
	gap: 16px 24px;
	font-size: 0.875rem;
	opacity: 0.9;
}

.nc-hero__trust li {
	display: flex;
	align-items: center;
	gap: 8px;
}

.nc-hero__trust svg {
	flex-shrink: 0;
	opacity: 0.85;
}

.nc-hero__form-wrap {
	position: relative;
	z-index: 1;
}

.nc-hero-form-card {
	background: rgba(255, 255, 255, 0.96);
	border: 1px solid rgba(255, 255, 255, 0.48);
	border-radius: 16px;
	padding: 18px;
	box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
	color: var(--nc-text);
}

.nc-hero-form-card h2 {
	margin: 0 0 6px;
	color: var(--nc-primary-dark);
	font-size: 1.35rem;
}

.nc-hero-form-card > p {
	margin: 0 0 12px;
	color: var(--nc-text-muted);
	font-size: 0.94rem;
}

.nc-enquiry-form--hero p {
	margin: 0 0 10px;
}

.nc-enquiry-form--hero select {
	width: 100%;
	border: 1px solid var(--nc-border);
	border-radius: 8px;
	padding: 10px 12px;
	font: inherit;
	background: #fff;
}

.nc-enquiry-form--hero .nc-btn {
	width: 100%;
	min-width: 0;
}

@media (max-width: 900px) {
	.nc-hero__grid {
		grid-template-columns: 1fr;
		min-height: unset;
		padding: 36px 0 40px;
	}

	.nc-hero__actions .nc-btn {
		flex: 1 1 calc(50% - 6px);
		min-width: 0;
	}

	.nc-about-band__grid {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.nc-about-band__media {
		order: 1;
	}

	.nc-about-band__content {
		order: 2;
	}

	.nc-about-band__content h2 {
		font-size: clamp(1.35rem, 5.2vw, 1.8rem);
	}
}

/* Front — intro strip */
.nc-intro {
	padding: 48px 0;
	background: var(--nc-bg-card);
	border-bottom: 1px solid var(--nc-border);
}

.nc-intro__inner {
	max-width: 820px;
	margin: 0 auto;
	text-align: center;
}

.nc-intro h2 {
	margin: 0 0 12px;
	font-size: clamp(1.35rem, 3vw, 1.75rem);
	color: var(--nc-primary-dark);
}

.nc-intro p {
	margin: 0;
	color: var(--nc-text-muted);
	font-size: 1.0625rem;
}

/* Services preview grid */
.nc-services-preview {
	padding: 56px 0 64px;
}

.nc-section-head {
	text-align: center;
	margin-bottom: 40px;
}

.nc-section-head h2 {
	margin: 0 0 8px;
	font-size: clamp(1.5rem, 3vw, 2rem);
	color: var(--nc-primary-dark);
}

.nc-section-head p {
	margin: 0;
	color: var(--nc-text-muted);
	max-width: 560px;
	margin-left: auto;
	margin-right: auto;
}

.nc-card-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
	gap: 20px;
}

@media (max-width: 640px) {
	.nc-card-grid {
		grid-template-columns: 1fr;
		gap: 14px;
	}
}

.nc-card {
	background: var(--nc-bg-card);
	border-radius: var(--nc-radius);
	padding: 24px;
	border: 1px solid var(--nc-border);
	box-shadow: var(--nc-shadow);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nc-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 16px 40px rgba(14, 74, 82, 0.12);
}

.nc-card__icon {
	width: 48px;
	height: 48px;
	border-radius: 12px;
	background: rgba(224, 122, 95, 0.15);
	color: var(--nc-accent);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.35rem;
	margin-bottom: 14px;
}

.nc-card h3 {
	margin: 0 0 8px;
	font-size: 1.125rem;
	color: var(--nc-primary-dark);
}

.nc-card p {
	margin: 0;
	font-size: 0.9375rem;
	color: var(--nc-text-muted);
}

.nc-card--service {
	padding: 14px;
	display: flex;
	flex-direction: column;
	gap: 12px;
	border: 1px solid rgba(21, 99, 114, 0.16);
	box-shadow: 0 12px 30px rgba(14, 74, 82, 0.08);
}

.nc-card__image {
	border-radius: 10px;
	overflow: hidden;
	aspect-ratio: 16 / 10;
	background: #e8f2f4;
	display: block;
}

.nc-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.nc-card__image-placeholder {
	height: 100%;
	display: grid;
	place-items: center;
	font-size: 0.85rem;
	color: var(--nc-text-muted);
}

.nc-card--service h3 {
	margin: 2px 0 4px;
	min-height: 0;
}

.nc-card--service h3 a {
	color: var(--nc-primary-dark);
}

.nc-card--service h3 a:hover {
	color: var(--nc-primary);
}

.nc-card--service p {
	margin-bottom: 4px;
	min-height: 44px;
	line-height: 1.5;
}

.nc-card__actions {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 8px;
	margin-top: auto;
}

.nc-card__actions .nc-btn {
	min-width: 0;
	width: 100%;
	padding: 10px 12px;
	font-size: 0.86rem;
}

/* Front page extended sections */
.nc-about-band,
.nc-why-section,
.nc-process-section,
.nc-city-services,
.nc-gallery-section,
.nc-faq-section {
	padding: 64px 0;
}

.nc-about-band {
	background: #fff;
}

.nc-about-band__grid {
	display: grid;
	grid-template-columns: 1.15fr 1fr;
	gap: 28px;
	align-items: center;
}

.nc-about-band__content h2 {
	margin: 0 0 14px;
	font-size: clamp(1.55rem, 3vw, 2.1rem);
	color: var(--nc-primary-dark);
}

.nc-about-band__content p {
	color: var(--nc-text-muted);
	margin: 0 0 16px;
}

.nc-check-list {
	margin-bottom: 20px;
}

.nc-check-list li {
	position: relative;
	padding-left: 26px;
	margin-bottom: 10px;
	color: var(--nc-text);
}

.nc-check-list li::before {
	content: "✓";
	position: absolute;
	left: 0;
	top: 0;
	color: var(--nc-primary);
	font-weight: 800;
}

.nc-about-band__media img,
.nc-image-placeholder {
	border-radius: 16px;
	box-shadow: var(--nc-shadow);
}

.nc-image-placeholder {
	background: #e8f2f4;
	min-height: 280px;
	display: grid;
	place-items: center;
	color: var(--nc-text-muted);
}

.nc-feature-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	gap: 18px;
}

.nc-feature-card {
	background: #fff;
	border: 1px solid var(--nc-border);
	border-radius: 14px;
	padding: 22px;
	box-shadow: var(--nc-shadow);
}

.nc-feature-card h3 {
	margin: 0 0 8px;
	color: var(--nc-primary-dark);
	font-size: 1.08rem;
}

.nc-feature-card p {
	margin: 0;
	color: var(--nc-text-muted);
}

.nc-process-section {
	background: linear-gradient(180deg, #eef7f8 0%, #f8fbfb 100%);
}

.nc-process-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	gap: 16px;
}

.nc-process-step {
	background: #fff;
	border: 1px solid var(--nc-border);
	border-radius: 14px;
	padding: 20px;
	box-shadow: var(--nc-shadow);
}

.nc-process-step span {
	display: inline-flex;
	width: 40px;
	height: 40px;
	border-radius: 999px;
	background: rgba(21, 99, 114, 0.12);
	color: var(--nc-primary-dark);
	align-items: center;
	justify-content: center;
	font-weight: 800;
	margin-bottom: 10px;
}

.nc-process-step h3 {
	margin: 0 0 8px;
	color: var(--nc-primary-dark);
}

.nc-process-step p {
	margin: 0;
	color: var(--nc-text-muted);
}

.nc-gallery-section {
	background: #fff;
}

.nc-gallery-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	gap: 12px;
}

.nc-gallery-item {
	display: block;
	border-radius: 12px;
	overflow: hidden;
	aspect-ratio: 1 / 1;
	background: #e8f2f4;
}

.nc-gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.25s ease;
}

.nc-gallery-item:hover img {
	transform: scale(1.05);
}

.nc-faq-list {
	max-width: 860px;
	margin: 0 auto;
	display: grid;
	gap: 12px;
}

.nc-faq-list details {
	background: #fff;
	border: 1px solid var(--nc-border);
	border-radius: 12px;
	padding: 14px 16px;
}

.nc-faq-list summary {
	cursor: pointer;
	font-weight: 700;
	color: var(--nc-primary-dark);
}

.nc-faq-list p {
	margin: 10px 0 0;
	color: var(--nc-text-muted);
}

.nc-testimonial-section {
	padding: 64px 0;
	background: linear-gradient(180deg, #f7fbfc 0%, #eef6f8 100%);
}

.nc-testimonial-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	gap: 16px;
	margin-bottom: 18px;
}

.nc-testimonial-card {
	background: #fff;
	border: 1px solid var(--nc-border);
	border-radius: 14px;
	padding: 20px;
	box-shadow: var(--nc-shadow);
}

.nc-testimonial-card p {
	margin: 0 0 12px;
	color: var(--nc-text);
	font-size: 0.95rem;
}

.nc-testimonial-card h3 {
	margin: 0;
	font-size: 0.98rem;
	color: var(--nc-primary-dark);
}

.nc-testimonial-card span {
	display: block;
	margin-top: 4px;
	font-size: 0.85rem;
	color: var(--nc-text-muted);
}

.nc-trust-strip {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
	gap: 10px;
}

.nc-trust-strip div {
	background: #fff;
	border: 1px solid var(--nc-border);
	border-radius: 12px;
	padding: 14px;
	text-align: center;
}

.nc-trust-strip strong {
	display: block;
	font-size: 1.35rem;
	color: var(--nc-primary-dark);
	line-height: 1.1;
}

.nc-trust-strip span {
	font-size: 0.84rem;
	color: var(--nc-text-muted);
}

.nc-trust-extra {
	margin-top: 16px;
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: 14px;
}

.nc-trust-extra__left,
.nc-trust-extra__right {
	background: #fff;
	border: 1px solid var(--nc-border);
	border-radius: 12px;
	padding: 16px;
}

.nc-trust-extra h3 {
	margin: 0 0 10px;
	color: var(--nc-primary-dark);
	font-size: 1.05rem;
}

.nc-trust-extra__right p {
	margin: 0 0 12px;
	color: var(--nc-text-muted);
}

.nc-trust-extra__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

/* Contact page */
.nc-contact-page {
	padding: 40px 0 64px;
}

.nc-contact-hero {
	background: linear-gradient(145deg, #0f4c57 0%, #156372 52%, #1f8a9e 100%);
	color: #fff;
	padding: 32px;
	border-radius: 18px;
	margin-bottom: 22px;
}

.nc-contact-hero__badge {
	display: inline-block;
	padding: 6px 12px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.15);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.nc-contact-hero h1 {
	margin: 12px 0 10px;
	font-size: clamp(1.6rem, 3.5vw, 2.3rem);
}

.nc-contact-hero p {
	margin: 0;
	opacity: 0.95;
	max-width: 70ch;
}

.nc-contact-hero__actions {
	margin-top: 18px;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.nc-contact-hero .nc-btn--primary {
	background: #fff;
	color: var(--nc-primary-dark);
}

.nc-contact-hero .nc-btn--outline {
	border-color: rgba(255, 255, 255, 0.9);
	color: #fff;
}

.nc-contact-hero .nc-btn--outline:hover {
	background: rgba(255, 255, 255, 0.14);
	color: #fff;
}

.nc-contact-cards {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
	gap: 14px;
	margin-bottom: 22px;
}

.nc-contact-card {
	background: #fff;
	border: 1px solid var(--nc-border);
	border-radius: 12px;
	padding: 16px;
}

.nc-contact-card h3 {
	margin: 0 0 6px;
	font-size: 1rem;
	color: var(--nc-primary-dark);
}

.nc-contact-card p {
	margin: 0;
	color: var(--nc-text-muted);
}

.nc-contact-layout {
	display: grid;
	grid-template-columns: minmax(0, 2fr) minmax(300px, 1fr);
	gap: 18px;
	align-items: start;
}

.nc-contact-form-wrap,
.nc-contact-side__box {
	background: #fff;
	border: 1px solid var(--nc-border);
	border-radius: 14px;
	padding: 18px;
	box-shadow: var(--nc-shadow);
}

.nc-contact-form-wrap h2 {
	margin: 0 0 6px;
	color: var(--nc-primary-dark);
}

.nc-contact-form-wrap > p {
	margin-top: 0;
	color: var(--nc-text-muted);
}

.nc-contact-side {
	display: grid;
	gap: 12px;
}

.nc-contact-side__box h3 {
	margin: 0 0 8px;
	color: var(--nc-primary-dark);
}

.nc-contact-side__box p {
	margin-top: 0;
	color: var(--nc-text-muted);
}

.nc-contact-map {
	border-radius: 10px;
	overflow: hidden;
	border: 1px solid var(--nc-border);
}

.nc-contact-map iframe {
	width: 100%;
	height: 240px;
	border: 0;
	display: block;
}

.nc-contact-content {
	margin-top: 18px;
}

/* CTA band */
.nc-cta-band {
	padding: 48px 0;
	background: linear-gradient(120deg, var(--nc-primary) 0%, var(--nc-primary-light) 100%);
	color: #fff;
	text-align: center;
}

.nc-cta-band .nc-container {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
}

.nc-cta-actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px;
	width: 100%;
}

.nc-cta-actions .nc-btn {
	min-width: 190px;
}

.nc-cta-band h2 {
	margin: 0 0 12px;
	font-size: clamp(1.35rem, 3vw, 1.75rem);
}

.nc-cta-band p {
	margin: 0 0 20px;
	opacity: 0.95;
	max-width: 560px;
	margin-left: auto;
	margin-right: auto;
}

.nc-cta-band .nc-btn--primary {
	background: #fff;
	color: var(--nc-primary-dark);
}

.nc-cta-band .nc-btn--on-dark {
	background: transparent;
	color: #fff;
	border: 2px solid rgba(255, 255, 255, 0.85);
}

.nc-cta-band .nc-btn--on-dark:hover {
	background: rgba(255, 255, 255, 0.12);
	color: #fff;
}

/* -------------------------------------------------------------------------
   Footer
   ------------------------------------------------------------------------- */
.nc-footer {
	background: var(--nc-primary-dark);
	color: #c5dde2;
	font-size: 0.9375rem;
}

.nc-footer a {
	color: #e8f4f6;
}

.nc-footer a:hover {
	color: #fff;
	text-decoration: underline;
}

.nc-footer__grid {
	display: grid;
	grid-template-columns: 1.2fr 1fr 1fr 1fr;
	gap: 36px;
	padding: 56px 0 40px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nc-footer__brand .nc-brand__title {
	color: #fff;
}

.nc-footer__brand .nc-brand__tag {
	color: rgba(255, 255, 255, 0.65);
}

.nc-footer h3 {
	margin: 0 0 16px;
	font-size: 1rem;
	font-weight: 700;
	color: #fff;
	letter-spacing: 0.02em;
}

.nc-footer p {
	margin: 0 0 12px;
	line-height: 1.65;
}

.nc-footer__menu ul li {
	margin-bottom: 10px;
}

.nc-footer__menu a {
	font-weight: 500;
}

.nc-footer__contact li {
	display: flex;
	gap: 10px;
	margin-bottom: 12px;
	align-items: flex-start;
}

.nc-footer__contact .nc-icon {
	flex-shrink: 0;
	margin-top: 2px;
	opacity: 0.85;
}

.nc-footer__local {
	font-size: 0.875rem;
	line-height: 1.7;
	color: rgba(232, 244, 246, 0.88);
}

.nc-footer__local strong {
	color: #fff;
}

.nc-footer__bottom {
	padding: 20px 0;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	font-size: 0.8125rem;
	color: rgba(232, 244, 246, 0.75);
}

@media (max-width: 992px) {
	.nc-footer__grid {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 600px) {
	.nc-footer__grid {
		grid-template-columns: 1fr;
	}
}

/* -------------------------------------------------------------------------
   Generic page / index
   ------------------------------------------------------------------------- */
.nc-page-wrap {
	padding: 40px 0 64px;
}

.nc-page-wrap .nc-container {
	max-width: 800px;
}

.nc-page-wrap h1 {
	margin-top: 0;
	color: var(--nc-primary-dark);
}

.nc-page-wrap .entry-content > * + * {
	margin-top: 1rem;
}

.nc-page-wrap .entry-content ul {
	list-style: disc;
	padding-left: 1.25rem;
}

/* Blog pages */
.nc-blog-hero {
	padding: 44px 0;
	background: linear-gradient(145deg, #0f4c57 0%, #156372 52%, #1f8a9e 100%);
	color: #fff;
}

.nc-blog-hero__badge {
	display: inline-block;
	padding: 6px 12px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.14);
	font-size: 0.78rem;
	font-weight: 700;
	text-transform: uppercase;
}

.nc-blog-hero h1 {
	margin: 12px 0 10px;
	font-size: clamp(1.6rem, 3.5vw, 2.5rem);
}

.nc-blog-listing {
	padding: 48px 0 64px;
}

.nc-blog-layout {
	display: grid;
	grid-template-columns: minmax(0, 2.2fr) minmax(260px, 0.8fr);
	gap: 20px;
}

.nc-blog-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 16px;
}

.nc-blog-card {
	background: #fff;
	border: 1px solid var(--nc-border);
	border-radius: 14px;
	overflow: hidden;
	box-shadow: var(--nc-shadow);
}

.nc-blog-card__thumb {
	display: block;
	aspect-ratio: 16 / 9;
	background: #e8f2f4;
}

.nc-blog-card__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.nc-blog-card__content {
	padding: 14px;
}

.nc-blog-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 6px 12px;
	font-size: 0.8rem;
	color: var(--nc-text-muted);
	margin-bottom: 8px;
}

.nc-blog-card h2,
.nc-blog-card h3 {
	margin: 0 0 8px;
	font-size: 1.08rem;
}

.nc-blog-readmore {
	font-weight: 700;
}

.nc-blog-sidebar {
	display: grid;
	gap: 12px;
}

.nc-sidebar-box {
	background: #fff;
	border: 1px solid var(--nc-border);
	border-radius: 12px;
	padding: 16px;
	box-shadow: var(--nc-shadow);
}

.nc-sidebar-box h3 {
	margin-top: 0;
	color: var(--nc-primary-dark);
}

.nc-sidebar-box ul li {
	margin-bottom: 8px;
}

.nc-related-posts {
	margin-top: 26px;
}

.nc-related-posts h2 {
	color: var(--nc-primary-dark);
	margin-bottom: 14px;
}

/* Service details / profile-like page */
.nc-service-single {
	padding: 40px 0 64px;
}

.nc-service-layout {
	display: grid;
	grid-template-columns: minmax(0, 2fr) minmax(320px, 1fr);
	gap: 24px;
	align-items: start;
}

.nc-service-top-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 16px;
}

.nc-service-profile {
	background: #fff;
	border: 1px solid var(--nc-border);
	border-radius: 16px;
	padding: 18px;
	box-shadow: var(--nc-shadow);
}

.nc-service-main-column .nc-service-profile__media {
	margin-bottom: 14px;
}

.nc-service-profile__media img {
	border-radius: 12px;
	width: 100%;
	height: auto;
}

.nc-service-profile__body h1 {
	margin-top: 0;
	margin-bottom: 10px;
	color: var(--nc-primary-dark);
}

.nc-service-content h2 {
	margin: 14px 0 10px;
	font-size: 1.2rem;
	color: var(--nc-primary-dark);
}

.nc-service-excerpt {
	font-size: 1rem;
	color: var(--nc-text-muted);
	margin-top: 0;
}

.nc-service-profile__buttons {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	margin-bottom: 16px;
}

.nc-service-profile__buttons--equal {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
}

.nc-service-profile__buttons--equal .nc-btn,
.nc-service-side-actions .nc-btn {
	width: 100%;
	justify-content: center;
}

.nc-service-city {
	display: inline-flex;
	padding: 4px 10px;
	background: rgba(21, 99, 114, 0.12);
	color: var(--nc-primary-dark);
	font-weight: 600;
	border-radius: 999px;
	margin: 0 0 8px;
}

.nc-service-related {
	margin-top: 0;
	color: var(--nc-text-muted);
}

.nc-enquiry-box {
	background: #fff;
	border: 1px solid var(--nc-border);
	border-radius: 16px;
	padding: 20px;
	box-shadow: var(--nc-shadow);
}

.nc-service-side-column {
	display: grid;
	gap: 12px;
}

.nc-service-side-actions {
	display: grid;
	grid-template-columns: 1fr;
	gap: 10px;
}

.nc-enquiry-box h2 {
	margin-top: 0;
	color: var(--nc-primary-dark);
}

.nc-enquiry-intro {
	color: var(--nc-text-muted);
	margin-top: -2px;
}

.nc-form-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
}

.nc-enquiry-form label {
	display: block;
	font-weight: 600;
	margin-bottom: 6px;
}

.nc-enquiry-form input,
.nc-enquiry-form textarea {
	width: 100%;
	border: 1px solid var(--nc-border);
	border-radius: 8px;
	padding: 10px 12px;
	font: inherit;
	background: #fff;
}

.nc-enquiry-form textarea {
	min-height: 110px;
	resize: vertical;
}

.nc-form-message {
	padding: 10px 12px;
	border-radius: 10px;
	font-weight: 600;
}

.nc-form-message--success {
	background: #e7f7ec;
	color: #1f7a3f;
}

.nc-form-message--error {
	background: #fde7e7;
	color: #9b1f1f;
}

@media (max-width: 960px) {
	.nc-service-layout {
		grid-template-columns: 1fr;
	}

	.nc-form-grid {
		grid-template-columns: 1fr;
	}

	.nc-service-top-actions .nc-btn,
	.nc-service-profile__buttons--equal {
		width: 100%;
	}

	.nc-service-profile__buttons--equal {
		grid-template-columns: 1fr;
	}

	.nc-contact-layout {
		grid-template-columns: 1fr;
	}

	.nc-trust-extra {
		grid-template-columns: 1fr;
	}

	.nc-form-grid {
		grid-template-columns: 1fr;
	}

	.nc-blog-layout {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 640px) {
	.nc-btn {
		min-width: 100%;
	}

	.nc-container {
		padding-left: 14px;
		padding-right: 14px;
	}

	.nc-services-preview,
	.nc-about-band,
	.nc-why-section,
	.nc-process-section,
	.nc-testimonial-section,
	.nc-gallery-section,
	.nc-faq-section,
	.nc-contact-page,
	.nc-service-single,
	.nc-cta-band {
		padding-top: 42px;
		padding-bottom: 42px;
	}

	.nc-footer__bottom {
		flex-direction: column;
		align-items: flex-start;
	}
}

/* Admin bar offset */
body.admin-bar .nc-main-nav {
	top: calc(32px + 40px + var(--nc-header-h));
}

@media screen and (max-width: 782px) {
	body.admin-bar .nc-main-nav {
		top: calc(46px + 40px + var(--nc-header-h));
	}
}
