/* ==========================================================================
   Essana Health - Custom Theme Stylesheet
   Design System based on Brand Guidelines & Main Frame Design
   ========================================================================== */

/* 1. CSS Custom Properties / Design Tokens */
:root {
	/* Primary Palette */
	--color-essana-blue: #6F88A8;
	--color-deep-slate: #4D5F73;
	--color-mist-blue: #B5C6D7;
	--color-warm-ivory: #F7F3EF;

	/* Secondary Palette & Main Frame Tones */
	--color-pearl-white: #FAFAFA;
	--color-seafoam: #DCE8E6;
	--color-sand-beige: #E6E0D7;
	--color-slate-grey: #6B6F73;

	/* Sage / Forest Accent Tones (From Main Frame UI) */
	--color-sage-main: #4E655C;
	--color-sage-dark: #374A43;
	--color-sage-light: #5F786E;
	--color-sage-card-bg: rgba(78, 101, 92, 0.85);

	/* Neutral / Text */
	--color-text-dark: #1F2A37;
	--color-text-muted: #6B7280;
	--color-border: #E5E7EB;
	--color-white: #FFFFFF;
	--color-footer-bg: #0B0F14;

	/* Typography */
	--font-heading: 'Playfair Display', Georgia, serif;
	--font-body: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;

	/* Shadows & Radius */
	--radius-sm: 6px;
	--radius-md: 12px;
	--radius-lg: 18px;
	--radius-pill: 9999px;
	--shadow-card: none;
	--shadow-hover: none;
	--transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base Styles */
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
	font-size: 16px;
}

body {
	font-family: var(--font-body);
	color: var(--color-text-dark);
	background-color: var(--color-pearl-white);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}

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

a {
	color: inherit;
	text-decoration: none;
	transition: var(--transition);
}

ul {
	list-style: none;
}

/* Typography Utilities */
.section-sublabel {
	font-family: var(--font-heading);
	font-size: 0.85rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 3px;
	color: #556B61;
	margin-bottom: 0.75rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.section-sublabel::before {
	content: "—";
	font-family: var(--font-heading);
	font-weight: 400;
}

.section-title {
	font-family: var(--font-body);
	font-size: 2.35rem;
	font-weight: 500;
	color: #111827;
	line-height: 1.25;
	letter-spacing: -0.3px;
	margin-bottom: 1.25rem;
}

/* Button Component Styles */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 0.75rem 1.6rem;
	font-family: var(--font-body);
	font-size: 0.9rem;
	font-weight: 600;
	border-radius: var(--radius-sm);
	cursor: pointer;
	border: 1.5px solid transparent;
	transition: var(--transition);
}

.btn-arrow {
	width: 16px;
	height: 16px;
	transition: transform 0.2s ease;
}

.btn:hover .btn-arrow {
	transform: translateX(4px);
}

.btn-primary-sage {
	background-color: var(--color-sage-main);
	color: var(--color-white);
}

.btn-primary-sage:hover {
	background-color: var(--color-sage-dark);
}

.btn-hero-white {
	background-color: var(--color-white);
	color: var(--color-text-dark);
	font-weight: 700;
}

.btn-hero-white:hover {
	background-color: var(--color-warm-ivory);
}

.btn-hero-outline {
	background-color: rgba(255, 255, 255, 0.1);
	border-color: rgba(255, 255, 255, 0.8);
	color: var(--color-white);
	backdrop-filter: blur(8px);
}

.btn-hero-outline:hover {
	background-color: rgba(255, 255, 255, 0.25);
}

.btn-outline-dark {
	background-color: transparent;
	border-color: var(--color-text-dark);
	color: var(--color-text-dark);
}

.btn-outline-dark:hover {
	background-color: var(--color-text-dark);
	color: var(--color-white);
}

/* Essana Brand Button (Inner Pages & Header Unified) */
.btn-primary-blue {
	background-color: var(--color-sage-main);
	color: var(--color-white);
}

.btn-primary-blue:hover {
	background-color: var(--color-sage-dark);
}

/* ==========================================================================
   Inner Page Design System (Brand Palette)
   ========================================================================== */

/* Page Banner */
.page-banner {
	background-color: var(--color-white);
	color: var(--color-text-dark);
	padding: 5.5rem 0 4rem;
	text-align: center;
	position: relative;
	border-bottom: 1px solid var(--color-border);
	overflow: hidden;
}

.page-banner-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	opacity: 0.14;
	filter: saturate(0.85);
	pointer-events: none;
	z-index: 0;
}

.page-banner .banner-container {
	max-width: 900px;
	margin: 0 auto;
	padding: 0 2rem;
	position: relative;
	z-index: 2;
}

.page-banner .section-sublabel {
	color: var(--color-essana-blue);
	justify-content: center;
	margin-bottom: 1rem;
}

.page-banner .section-sublabel::before {
	color: var(--color-essana-blue);
}

.page-banner h1 {
	font-family: var(--font-heading);
	font-size: 3rem;
	font-weight: 700;
	color: var(--color-text-dark);
	margin-bottom: 1rem;
	line-height: 1.2;
}

.page-banner p {
	font-size: 1.1rem;
	color: var(--color-text-muted);
	line-height: 1.65;
	max-width: 680px;
	margin: 0 auto;
}

/* Inner Page Content Sections */
.inner-section {
	padding: 5rem 0;
}

.inner-section--ivory {
	background-color: var(--color-pearl-white);
}

.inner-section--white {
	background-color: var(--color-white);
}

.inner-section--seafoam {
	background-color: var(--color-seafoam);
}

.inner-section--sand {
	background-color: var(--color-sand-beige);
}

.inner-container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 2rem;
}

.inner-container--narrow {
	max-width: 1000px;
}

.inner-container--mid {
	max-width: 1100px;
}

/* Inner Page Sublabels (Essana Blue) */
.inner-section .section-sublabel {
	color: var(--color-essana-blue);
}

.inner-section .section-sublabel::before {
	color: var(--color-essana-blue);
}

/* Service Detail Block */
.service-detail-block {
	background: white;
	padding: 3rem;
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-card);
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: 3rem;
	align-items: center;
	transition: box-shadow 0.3s ease;
}

.service-detail-block:hover {
	box-shadow: var(--shadow-hover);
}

.service-detail-block--reverse {
	grid-template-columns: 1.2fr 1fr;
}

.service-detail-block img {
	border-radius: var(--radius-sm);
	width: 100%;
	height: 320px;
	object-fit: cover;
}

.service-detail-block h2 {
	font-family: var(--font-heading);
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 1rem;
	color: var(--color-text-dark);
}

.service-detail-block .section-sublabel {
	color: var(--color-essana-blue);
}

.service-detail-block .section-sublabel::before {
	color: var(--color-essana-blue);
}

.service-detail-block p {
	font-size: 1rem;
	color: var(--color-text-muted);
	line-height: 1.7;
	margin-bottom: 1.5rem;
}

.service-detail-block h4 {
	font-size: 1.1rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
	color: var(--color-text-dark);
}

.service-detail-block ul {
	list-style: disc;
	padding-left: 1.25rem;
	color: var(--color-text-dark);
	margin-bottom: 2rem;
	font-size: 0.95rem;
	line-height: 1.8;
}

/* How It Works Step Cards */
.step-card {
	background: white;
	border-radius: var(--radius-md);
	padding: 2.5rem;
	box-shadow: var(--shadow-card);
	display: flex;
	gap: 2rem;
	transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.step-card:hover {
	box-shadow: var(--shadow-hover);
	transform: translateY(-2px);
}

.step-number {
	font-size: 2.5rem;
	font-weight: 800;
	color: var(--color-essana-blue);
	line-height: 1;
	flex-shrink: 0;
}

.step-card h3 {
	font-family: var(--font-heading);
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 0.75rem;
	color: var(--color-text-dark);
}

.step-card p {
	font-size: 0.98rem;
	color: var(--color-text-muted);
	line-height: 1.7;
}

/* About Values Grid Card */
.value-card {
	background: var(--color-pearl-white);
	padding: 2.5rem;
	border-radius: var(--radius-sm);
	border: 1px solid var(--color-border);
	transition: border-color 0.3s ease;
}

.value-card:hover {
	border-color: var(--color-essana-blue);
}

.value-card-icon-wrap {
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background-color: var(--color-seafoam);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.25rem;
}

.value-card h3 {
	font-family: var(--font-heading);
	font-size: 1.35rem;
	font-weight: 700;
	margin-bottom: 1rem;
	color: var(--color-essana-blue);
}

.value-card p {
	font-size: 0.92rem;
	color: var(--color-text-muted);
	line-height: 1.6;
}

/* Contact Info Styles */
.contact-grid {
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: 4rem;
}

.contact-form-card {
	background: white;
	border-radius: var(--radius-md);
	padding: 2rem;
	box-shadow: var(--shadow-card);
	min-height: 550px;
}

.contact-form-card h3 {
	font-family: var(--font-heading);
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
}

.emergency-notice {
	background-color: #FEF2F2;
	border: 1px solid #FECACA;
	border-radius: var(--radius-sm);
	padding: 1.25rem;
	font-size: 0.85rem;
	color: #991B1B;
	line-height: 1.65;
	margin-top: 1.5rem;
}

/* Mobile Responsive Contact & Booking Forms */
@media (max-width: 768px) {
	.contact-grid {
		gap: 2.25rem !important;
	}

	.contact-form-card {
		padding: 1.25rem 1rem !important;
		min-height: auto !important;
		border-radius: 14px !important;
		box-shadow: none !important;
		border: 1px solid var(--color-border);
	}

	.contact-form-card h3 {
		font-size: 1.35rem !important;
		margin-bottom: 1rem !important;
	}

	.emergency-notice {
		margin-top: 1.5rem !important;
		padding: 1rem 1.15rem !important;
		font-size: 0.82rem !important;
		line-height: 1.55 !important;
	}
}

/* Book Consultation Page */
.booking-card {
	background: white;
	border-radius: var(--radius-md);
	padding: 3rem;
	box-shadow: var(--shadow-card);
	min-height: 600px;
}

.booking-card-header {
	margin-bottom: 2rem;
	border-bottom: 1px solid var(--color-border);
	padding-bottom: 1.5rem;
}

.booking-card-header h2 {
	font-family: var(--font-heading);
	font-size: 1.75rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
}

.booking-card-header p {
	font-size: 0.95rem;
	color: var(--color-text-muted);
}

.booking-notice {
	background-color: var(--color-warm-ivory);
	padding: 1.25rem;
	border-radius: var(--radius-sm);
	font-size: 0.82rem;
	color: var(--color-text-dark);
	line-height: 1.5;
	margin-top: 2rem;
}

/* Native Consultation Form Styles */
.native-booking-form {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	margin-bottom: 2rem;
}

.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.5rem;
}

@media (max-width: 768px) {
	.form-row {
		grid-template-columns: 1fr;
	}
}

.form-group {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.form-label {
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--color-text-dark);
}

.form-input {
	width: 100%;
	padding: 0.8rem 1rem;
	font-size: 0.95rem;
	font-family: var(--font-body);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-sm);
	background-color: var(--color-pearl-white);
	color: var(--color-text-dark);
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-input:focus {
	outline: none;
	border-color: var(--color-sage-main);
	box-shadow: 0 0 0 3px rgba(85, 107, 97, 0.15);
	background-color: #ffffff;
}

.form-textarea {
	resize: vertical;
	min-height: 100px;
}

.service-select-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1rem;
	margin-top: 0.5rem;
}

@media (max-width: 991px) {
	.service-select-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 0.75rem;
	}
}

@media (max-width: 576px) {
	.service-select-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 0.6rem;
	}
}

.service-pill {
	position: relative;
	cursor: pointer;
	display: flex;
}

.service-pill input[type="radio"] {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.service-pill-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 95px;
	padding: 1rem 0.75rem;
	background-color: var(--color-warm-ivory);
	border: 1.5px solid rgba(85, 107, 97, 0.2);
	border-radius: var(--radius-md);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	text-align: center;
	position: relative;
	overflow: hidden;
}

.service-pill-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	opacity: 0.15;
	filter: saturate(1.2);
	transition: opacity 0.35s ease, transform 0.4s ease;
	z-index: 1;
}

.service-pill-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg, rgba(255,255,255,0.4) 0%, rgba(255,255,255,0.7) 100%);
	transition: opacity 0.3s ease;
	z-index: 2;
}

.service-pill-title {
	font-size: 0.88rem;
	font-weight: 700;
	color: var(--color-text-dark);
	line-height: 1.35;
	position: relative;
	z-index: 3;
	transition: color 0.3s ease;
}

.service-pill-check {
	position: absolute;
	top: 8px;
	right: 8px;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background-color: var(--color-sage-main);
	color: white;
	font-size: 0.7rem;
	font-weight: 900;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transform: scale(0.5);
	transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
	z-index: 4;
}

/* Hover State */
.service-pill:hover .service-pill-content {
	border-color: var(--color-sage-main);
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(85, 107, 97, 0.12);
}

.service-pill:hover .service-pill-bg {
	opacity: 0.3;
	transform: scale(1.06);
}

.service-pill:hover .service-pill-overlay {
	opacity: 0.4;
}

/* Active Selected State */
.service-pill input[type="radio"]:checked + .service-pill-content {
	border-color: var(--color-sage-main);
	box-shadow: 0 6px 20px rgba(85, 107, 97, 0.22), inset 0 0 0 1px var(--color-sage-main);
}

.service-pill input[type="radio"]:checked + .service-pill-content .service-pill-bg {
	opacity: 0.4;
	transform: scale(1.08);
}

.service-pill input[type="radio"]:checked + .service-pill-content .service-pill-overlay {
	opacity: 0.3;
}

.service-pill input[type="radio"]:checked + .service-pill-content .service-pill-title {
	color: var(--color-sage-dark);
}

.service-pill input[type="radio"]:checked + .service-pill-content .service-pill-check {
	opacity: 1;
	transform: scale(1);
}

/* Mobile specific refinement */
@media (max-width: 576px) {
	.service-pill-content {
		min-height: 80px;
		padding: 0.75rem 0.5rem;
	}
	.service-pill-title {
		font-size: 0.8rem;
	}
}




/* Callout CTA Section */
.callout-cta {
	padding: 4rem 0;
	background-color: var(--color-seafoam);
	text-align: center;
}

.callout-cta h3 {
	font-family: var(--font-heading);
	font-size: 1.75rem;
	font-weight: 700;
	margin-bottom: 1rem;
	color: var(--color-text-dark);
}

.callout-cta p {
	font-size: 1rem;
	color: var(--color-text-dark);
	line-height: 1.7;
	margin-bottom: 1.75rem;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
}

/* About Page Content Grid */
.about-content-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}

.about-content-grid h2 {
	font-family: var(--font-heading);
	font-size: 2.25rem;
	font-weight: 700;
	margin-bottom: 1.25rem;
	line-height: 1.2;
	color: var(--color-text-dark);
}

.about-content-grid p {
	font-size: 1rem;
	color: var(--color-text-muted);
	line-height: 1.7;
	margin-bottom: 1.25rem;
}

.about-content-grid img {
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-card);
	width: 100%;
	height: 400px;
	object-fit: cover;
}

/* Values Grid */
.values-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
}

/* FAQ Category */
.faq-category {
	margin-bottom: 4rem;
}

.faq-category:last-child {
	margin-bottom: 0;
}

/* Inner Page Responsive */
@media (max-width: 992px) {

	.service-detail-block,
	.service-detail-block--reverse {
		grid-template-columns: 1fr !important;
	}

	.about-content-grid {
		grid-template-columns: 1fr;
	}

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

	.values-grid {
		grid-template-columns: 1fr;
	}

	.page-banner h1 {
		font-size: 2rem;
	}

	.step-card {
		flex-direction: column;
		gap: 1rem;
	}
}

/* Legal Page Content Card */
.legal-content-card {
	background: white;
	border-radius: var(--radius-md);
	padding: 3rem;
	box-shadow: var(--shadow-card);
	line-height: 1.85;
	font-size: 0.95rem;
	color: var(--color-text-dark);
}

.legal-content-card h2 {
	font-family: var(--font-heading);
	font-size: 1.5rem;
	font-weight: 700;
	margin-top: 2.5rem;
	margin-bottom: 0.75rem;
	color: var(--color-deep-slate);
}

.legal-content-card h2:first-of-type {
	margin-top: 0;
}

.legal-content-card h3 {
	font-size: 1.15rem;
	font-weight: 700;
	margin-top: 2rem;
	margin-bottom: 0.5rem;
	color: var(--color-text-dark);
}

.legal-content-card p {
	margin-bottom: 1rem;
	color: var(--color-text-muted);
}

.legal-content-card ul {
	list-style: disc;
	padding-left: 1.5rem;
	margin-bottom: 1.25rem;
	color: var(--color-text-muted);
}

.legal-content-card ul li {
	margin-bottom: 0.35rem;
}

.legal-content-card a {
	color: var(--color-essana-blue);
	font-weight: 600;
	text-decoration: underline;
}

.legal-content-card a:hover {
	color: var(--color-deep-slate);
}

.legal-last-updated {
	font-size: 0.82rem;
	color: var(--color-slate-grey);
	margin-bottom: 2rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid var(--color-border);
	font-weight: 500;
}

/* Timeline Layout for How It Works Page */
.how-it-works-timeline {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 3.5rem;
}

.how-it-works-timeline::before {
	content: '';
	position: absolute;
	top: 30px;
	bottom: 30px;
	left: 28px;
	width: 3px;
	background: linear-gradient(to bottom, var(--color-essana-blue) 0%, var(--color-mist-blue) 100%);
	z-index: 0;
}

.timeline-item {
	position: relative;
	display: flex;
	gap: 2rem;
	align-items: flex-start;
	z-index: 1;
}

.timeline-badge {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background-color: var(--color-essana-blue);
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--font-heading);
	font-size: 1.35rem;
	font-weight: 700;
	flex-shrink: 0;
}

.timeline-content {
	flex: 1;
	background: white;
	border-radius: var(--radius-md);
	padding: 2.5rem;
	border: 1px solid var(--color-border);
	transition: var(--transition);
}

.timeline-content:hover {
	border-color: var(--color-essana-blue);
}

/* ==========================================================================
   Minimalist Editorial Split Layout (Clean White Canvas)
   ========================================================================== */
.editorial-split-block {
	display: grid;
	grid-template-columns: 1fr 1.25fr;
	gap: 4rem;
	align-items: center;
	padding-bottom: 4.5rem;
	border-bottom: 1px solid var(--color-border);
}

.editorial-split-block:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.editorial-split-block--reverse {
	grid-template-columns: 1.25fr 1fr;
}

/* Compact Split Block (How It Works Steps) */
.editorial-split-block--compact {
	padding-bottom: 2.75rem;
}

.editorial-split-block--compact .editorial-img-wrap {
	height: 310px;
}

.editorial-img-wrap {
	width: 100%;
	height: 420px;
	border-radius: var(--radius-md);
	overflow: hidden;
}

.editorial-img-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
	display: block;
}

.editorial-content {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.editorial-content h2 {
	font-family: var(--font-heading);
	font-size: 2.2rem;
	font-weight: 700;
	color: var(--color-text-dark);
	margin-bottom: 1rem;
}

.editorial-lead-desc {
	font-size: 1.08rem;
	color: var(--color-text-muted);
	line-height: 1.7;
	margin-bottom: 1.75rem;
}

.editorial-explores-wrap h4 {
	font-family: var(--font-heading);
	font-size: 1rem;
	font-weight: 700;
	color: var(--color-text-dark);
	margin-bottom: 0.75rem;
}

.editorial-checklist {
	list-style: none;
	padding: 0;
	margin: 0 0 2rem 0;
	display: flex;
	flex-direction: column;
	gap: 0.6rem;
}

.editorial-checklist li {
	position: relative;
	padding-left: 1.5rem;
	font-size: 0.95rem;
	color: var(--color-text-dark);
	line-height: 1.5;
}

.editorial-checklist li::before {
	content: "•";
	position: absolute;
	left: 0;
	color: var(--color-essana-blue);
	font-size: 1.2rem;
	line-height: 1;
}

.editorial-step-details {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
	margin-top: 1rem;
}

.editorial-step-details p {
	margin: 0;
	font-size: 1rem;
	color: var(--color-text-dark);
	line-height: 1.75;
}

.editorial-action {
	margin-top: 0.5rem;
}

@media (max-width: 992px) {

	.editorial-split-block,
	.editorial-split-block--reverse {
		display: flex !important;
		flex-direction: column !important;
		gap: 1.5rem !important;
		padding-bottom: 3rem !important;
	}

	.editorial-img-wrap {
		order: 1 !important;
		height: 260px !important;
		border-radius: 14px !important;
	}

	.editorial-content {
		order: 2 !important;
	}

	.editorial-content h2 {
		font-size: 1.65rem !important;
		line-height: 1.25 !important;
	}
}

/* Visual Step Cards Layout (With Photography Images) */
.steps-visual-container {
	display: flex;
	flex-direction: column;
	gap: 4rem;
}

.step-visual-card {
	background: white;
	border-radius: var(--radius-md);
	border: 1px solid var(--color-border);
	display: grid;
	grid-template-columns: 1fr 1.3fr;
	align-items: stretch;
	overflow: hidden;
	transition: border-color 0.3s ease;
}

.step-visual-card:hover {
	border-color: var(--color-essana-blue);
}

.step-visual-card--reverse {
	grid-template-columns: 1.3fr 1fr;
}

.step-visual-img-wrap {
	position: relative;
	width: 100%;
	height: 100%;
	min-height: 100%;
	overflow: hidden;
}

.booking-card iframe,
iframe#inline-1prAQURmoC7xK0DuPSAq {
	width: 100%;
	height: 100%;
	min-height: 550px;
	border: none;
	border-radius: 8px;
}



.step-visual-img-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
	display: block;
}

.step-badge-overlay {
	position: absolute;
	top: 1.5rem;
	left: 1.5rem;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background-color: var(--color-essana-blue);
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--font-heading);
	font-size: 1.25rem;
	font-weight: 700;
	z-index: 2;
}

.step-visual-card--reverse .step-badge-overlay {
	left: auto;
	right: 1.5rem;
}

.step-visual-content {
	padding: 3rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

@media (max-width: 992px) {

	.step-visual-card,
	.step-visual-card--reverse {
		grid-template-columns: 1fr !important;
	}

	.step-visual-img-wrap,
	.step-visual-img-wrap img {
		height: 250px !important;
		min-height: 250px;
	}

	.step-visual-content {
		padding: 2rem 1.5rem;
	}
}

.timeline-step-tag {
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 2px;
	color: var(--color-essana-blue);
	text-transform: uppercase;
	display: block;
	margin-bottom: 0.5rem;
}

.timeline-content h3 {
	font-family: var(--font-heading);
	font-size: 1.6rem;
	font-weight: 700;
	color: var(--color-text-dark);
	margin-bottom: 0.75rem;
}

.timeline-desc {
	font-size: 1rem;
	color: var(--color-text-muted);
	line-height: 1.7;
	margin-bottom: 2rem;
}

.timeline-details-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.5rem;
}

.timeline-detail-box {
	padding: 1.25rem;
	border-radius: var(--radius-sm);
	font-size: 0.9rem;
	line-height: 1.6;
}

.patient-box {
	background-color: var(--color-warm-ivory);
	border: 1px solid var(--color-sand-beige);
}

.clinical-box {
	background-color: var(--color-seafoam);
	border: 1px solid #C8DDD9;
}

.detail-label {
	display: block;
	font-weight: 700;
	font-size: 0.82rem;
	margin-bottom: 0.4rem;
	color: var(--color-text-dark);
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.timeline-detail-box p {
	margin: 0;
	color: var(--color-text-dark);
	font-size: 0.9rem;
}

@media (max-width: 768px) {
	.how-it-works-timeline::before {
		left: 20px;
	}

	.timeline-badge {
		width: 44px;
		height: 44px;
		font-size: 1rem;
	}

	.timeline-item {
		gap: 1rem;
	}

	.timeline-content {
		padding: 1.5rem;
	}

	.timeline-details-grid {
		grid-template-columns: 1fr;
	}
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.site-header {
	position: sticky;
	top: 0;
	left: 0;
	width: 100%;
	background-color: var(--color-white);
	border-bottom: 1px solid rgba(0, 0, 0, 0.06);
	z-index: 1000;
	padding: 0.9rem 0;
}

.header-container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 2rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.header-logo-img {
	height: 48px;
	width: auto;
	object-fit: contain;
	display: block;
}

.logo-emblem {
	width: 38px;
	height: 44px;
}

.logo-divider {
	width: 1px;
	height: 38px;
	background-color: var(--color-deep-slate);
	opacity: 0.4;
}

.logo-text-group {
	display: flex;
	flex-direction: column;
	line-height: 1.1;
}

.logo-brand-name {
	font-family: var(--font-heading);
	font-size: 1.6rem;
	font-weight: 400;
	color: var(--color-deep-slate);
	letter-spacing: -0.5px;
}

.logo-brand-sub {
	font-family: var(--font-body);
	font-size: 0.65rem;
	font-weight: 700;
	letter-spacing: 4px;
	color: var(--color-deep-slate);
	margin-top: 1px;
}

.logo-tagline {
	font-size: 0.48rem;
	font-weight: 600;
	letter-spacing: 1px;
	color: var(--color-slate-grey);
	margin-top: 3px;

}

.dark-theme .logo-brand-name,
.dark-theme .logo-brand-sub {
	color: var(--color-white);
}

.dark-theme .logo-divider {
	background-color: var(--color-white);
}

.dark-theme .logo-tagline {
	color: var(--color-mist-blue);
}

.nav-menu {
	display: flex;
	align-items: center;
	gap: 2.5rem;
}

.nav-item a {
	position: relative;
	display: inline-flex;
	align-items: center;
	font-size: 0.95rem;
	font-weight: 500;
	color: var(--color-text-dark);
	padding: 0.35rem 0;
	transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-item a::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 50%;
	width: 0;
	height: 2px;
	background: var(--color-sage-main);
	border-radius: 2px;
	transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1), left 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
	opacity: 0;
}

.nav-item a:hover {
	color: var(--color-sage-main);
}

.nav-item a:hover::after {
	width: 100%;
	left: 0;
	opacity: 0.4;
}

.nav-item.active a {
	color: var(--color-sage-main);
	font-weight: 600;
}

.nav-item.active a::after {
	width: 100%;
	left: 0;
	opacity: 1;
	height: 2.5px;
}



/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
	position: relative;
	background-size: cover;
	background-position: center top;
	color: var(--color-white);
	padding: 5rem 0 8rem 0;
}

.hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(15, 25, 22, 0.45) 0%, rgba(15, 25, 22, 0.65) 100%);
	z-index: 1;
}

.hero-container {
	position: relative;
	z-index: 2;
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 2rem;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.hero-sublabel {
	font-size: 0.85rem;
	font-weight: 700;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: var(--color-mist-blue);
	margin-bottom: 1.25rem;
}

.hero-title {
	font-family: 'Playfair Display', Georgia, serif;
	font-size: 3.5rem;
	font-weight: 700;
	line-height: 1.15;
	letter-spacing: 1px;
	text-transform: uppercase;
	margin-bottom: 1.5rem;
	max-width: 920px;
}

.hero-description {
	font-size: 1.05rem;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.92);
	max-width: 820px;
	margin-bottom: 2.25rem;
	font-weight: 400;
}

.hero-cta-group {
	display: flex;
	gap: 1.25rem;
	margin-bottom: 4rem;
}

.btn-hero-white {
	background-color: #FFFFFF !important;
	color: #4E655C !important;
	font-weight: 700;
	border-radius: 6px;
	padding: 0.85rem 1.8rem;
}

.btn-hero-outline {
	background: transparent !important;
	color: #FFFFFF !important;
	border: 1.5px solid rgba(255, 255, 255, 0.85) !important;
	font-weight: 600;
	border-radius: 6px;
	padding: 0.85rem 1.8rem;
}

.btn-hero-outline:hover {
	background: rgba(255, 255, 255, 0.15) !important;
	border-color: #FFFFFF !important;
}

/* Hero Bottom Overlay Bar (Single Connected Container) */
.hero-cards-bar-wrapper {
	position: relative;
	z-index: 3;
	max-width: 1280px;
	margin: -5rem auto 4rem auto;
	padding: 0 2rem;
}

.hero-cards-bar {
	background-color: #556B61;
	border-radius: 12px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.hero-card-col {
	padding: 2.5rem 2rem;
	color: var(--color-white);
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	transition: background-color 0.3s ease;
}

.hero-card-col:not(:last-child) {
	border-right: 1px solid rgba(255, 255, 255, 0.22);
}

.hero-card-col:hover {
	background-color: #485C53;
}

.hero-card-icon,
.hero-card-icon-img {
	width: 44px;
	height: 44px;
	margin-bottom: 1.25rem;
	color: var(--color-white);
	object-fit: contain;
	filter: brightness(0) invert(1);
}

.hero-card-title {
	font-size: 1.2rem;
	font-weight: 700;
	margin-bottom: 0.75rem;
	color: #FFFFFF;
}

.hero-card-desc {
	font-size: 0.85rem;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.85);
	max-width: 90%;
}

/* Mobile Responsive Hero & Floating Cards */
@media (max-width: 768px) {
	.hero-section {
		padding: 4.5rem 0 3rem 0 !important;
	}

	.page-banner {
		padding: 2.25rem 0 1.75rem !important;
	}

	.page-banner .banner-container {
		padding: 0 1.25rem !important;
	}

	.page-banner .section-sublabel {
		font-size: 0.75rem !important;
		letter-spacing: 2px !important;
		margin-bottom: 0.5rem !important;
	}

	.page-banner h1 {
		font-size: 1.85rem !important;
		line-height: 1.2 !important;
		margin-bottom: 0.6rem !important;
	}

	.page-banner p {
		font-size: 0.92rem !important;
		line-height: 1.5 !important;
	}

	.inner-container,
	.inner-container--narrow,
	.inner-container--mid {
		padding-left: 1rem !important;
		padding-right: 1rem !important;
	}

	.booking-card {
		padding: 1.25rem 1rem !important;
		border-radius: 12px !important;
		box-shadow: none !important;
		border: 1px solid var(--color-border);
		min-height: auto !important;
	}

	.booking-card-header {
		margin-bottom: 1.25rem !important;
		padding-bottom: 1rem !important;
	}

	.booking-card-header h2 {
		font-size: 1.4rem !important;
		margin-bottom: 0.4rem !important;
	}

	.booking-card-header p {
		font-size: 0.88rem !important;
		line-height: 1.5 !important;
	}

	.booking-notice {
		padding: 0.85rem 1rem !important;
		font-size: 0.8rem !important;
		margin-top: 1.25rem !important;
	}

	.hero-title {
		font-size: 1.95rem !important;
		line-height: 1.2 !important;
		margin-bottom: 1rem !important;
	}

	.hero-description {
		font-size: 0.92rem !important;
		line-height: 1.6 !important;
		margin-bottom: 1.75rem !important;
	}

	.hero-cta-group {
		flex-direction: column;
		width: 100%;
		max-width: 300px;
		gap: 0.85rem !important;
		margin-bottom: 2rem !important;
	}

	.btn-hero-white,
	.btn-hero-outline {
		width: 100%;
		justify-content: center;
		padding: 0.8rem 1.25rem !important;
	}

	.hero-cards-bar-wrapper {
		margin: -2.5rem 1rem 3rem 1rem !important;
		padding: 0 !important;
	}

	.hero-cards-bar {
		display: flex !important;
		flex-direction: column !important;
		overflow: hidden !important;
		border-radius: 16px !important;
		box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12) !important;
	}

	.hero-card-col {
		flex: none !important;
		width: 100% !important;
		min-width: 100% !important;
		padding: 1.5rem 1.25rem !important;
		border-right: none !important;
		border-bottom: 1px solid rgba(255, 255, 255, 0.18) !important;
		text-align: center !important;
	}

	.hero-card-col:last-child {
		border-bottom: none !important;
	}

	.hero-card-icon,
	.hero-card-icon-img {
		width: 36px !important;
		height: 36px !important;
		margin-bottom: 0.65rem !important;
	}

	.hero-card-title {
		font-size: 1.1rem !important;
		margin-bottom: 0.35rem !important;
	}

	.hero-card-desc {
		font-size: 0.85rem !important;
		line-height: 1.5 !important;
		max-width: 100% !important;
	}

	/* About Us & Services Sections Responsive */
	.about-container {
		grid-template-columns: 1fr !important;
		gap: 2.5rem !important;
		padding: 0 1.25rem !important;
	}

	.about-image-wrapper img {
		height: 280px !important;
	}

	.services-container {
		padding: 0 1.25rem !important;
	}

	.services-header {
		flex-direction: column !important;
		align-items: flex-start !important;
		gap: 1rem !important;
		margin-bottom: 2rem !important;
	}

	.services-header h2 {
		font-size: 1.8rem !important;
		line-height: 1.25 !important;
	}

	.services-grid {
		grid-template-columns: 1fr !important;
		gap: 2rem !important;
	}

	/* Stats Video Section Responsive */
	.stats-video-section {
		padding: 3rem 0 !important;
	}

	.stats-video-container {
		grid-template-columns: 1fr !important;
		gap: 1.5rem !important;
		padding: 0 1.25rem !important;
	}

	.video-box {
		min-height: 240px !important;
		height: 240px !important;
		border-radius: 12px !important;
	}

	.video-play-btn svg {
		width: 54px !important;
		height: 54px !important;
	}

	.stats-col {
		display: grid !important;
		grid-template-columns: repeat(3, 1fr) !important;
		gap: 0.65rem !important;
	}

	.stat-card {
		padding: 1.25rem 0.5rem !important;
		border-radius: 12px !important;
	}

	.stat-number {
		font-size: 1.5rem !important;
		margin-bottom: 0.25rem !important;
	}

	.stat-label {
		font-size: 0.72rem !important;
		line-height: 1.3 !important;
	}

	/* Testimonials Section Responsive */
	.testimonials-container {
		padding: 0 1.25rem !important;
	}

	.testimonials-header {
		flex-direction: column !important;
		align-items: flex-start !important;
		gap: 1rem !important;
		margin-bottom: 2rem !important;
	}

	.testimonials-header h2 {
		font-size: 1.8rem !important;
		line-height: 1.25 !important;
	}

	.testimonials-grid {
		grid-template-columns: 1fr !important;
		gap: 1.5rem !important;
	}
}

/* ==========================================================================
   About Us Section
   ========================================================================== */
.about-section {
	padding: 5rem 0;
	background-color: var(--color-pearl-white);
}

.about-container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 2rem;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}

.about-text-content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.about-p {
	font-size: 0.95rem;
	color: var(--color-text-muted);
	line-height: 1.7;
	margin-bottom: 1.25rem;
}

.about-image-wrapper {
	position: relative;
	border-radius: var(--radius-md);
	overflow: hidden;
	box-shadow: var(--shadow-card);
}

.about-image-wrapper img {
	width: 100%;
	height: 420px;
	object-fit: cover;
}

/* ==========================================================================
   Services Section (6 Cards Grid)
   ========================================================================== */
.services-section {
	padding: 5rem 0 6rem 0;
	background-color: #F4F5F6;
}

.services-container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 2rem;
}

.services-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-bottom: 3.5rem;
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 4rem 2rem;
}

.service-card {
	background-color: #FFFFFF;
	border-radius: 12px;
	padding: 0;
	display: flex;
	flex-direction: column;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
	position: relative;
}

.service-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.service-card-img-wrap {
	width: 100%;
	height: 220px;
	border-top-left-radius: 12px;
	border-top-right-radius: 12px;
	overflow: hidden;
	margin: 0;
	padding: 0;
}

.service-card-img-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.4s ease;
}

.service-card:hover .service-card-img-wrap img {
	transform: scale(1.04);
}

.service-card-body {
	padding: 2rem 1.5rem 2.75rem 1.5rem;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	flex-grow: 1;
}

.service-card-title {
	font-size: 1.3rem;
	font-weight: 700;
	color: #111827;
	margin-bottom: 0.75rem;
	font-family: var(--font-heading);
}

.service-card-desc {
	font-size: 0.9rem;
	color: #6B7280;
	line-height: 1.6;
	margin-bottom: 0;
	flex-grow: 1;
	max-width: 92%;
}

.service-card-btn {
	position: absolute;
	bottom: -20px;
	left: 50%;
	transform: translateX(-50%);
	background-color: #556B61 !important;
	color: #ffffff !important;
	border-radius: 8px;
	padding: 0.65rem 1.5rem;
	font-size: 0.88rem;
	font-weight: 600;
	white-space: nowrap;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
	z-index: 5;
	margin: 0;
}

.service-card-btn:hover {
	background-color: #42554C !important;
	transform: translateX(-50%) translateY(-2px);
	box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
}

/* ==========================================================================
   Banner Section ("Supports - Mental Health Information & Support")
   ========================================================================== */
.banner-section {
	position: relative;
	background-size: cover;
	background-position: center;
	padding: 7rem 0;
	color: var(--color-white);
}

.banner-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(15, 20, 25, 0.85) 0%, rgba(15, 20, 25, 0.55) 50%, rgba(15, 20, 25, 0.2) 100%);
	z-index: 1;
}

.banner-container {
	position: relative;
	z-index: 2;
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 2rem;
}

.banner-sublabel {
	color: rgba(255, 255, 255, 0.95) !important;
}

.banner-title {
	font-family: var(--font-body);
	font-size: 2.65rem;
	font-weight: 600;
	color: var(--color-white);
	margin-bottom: 1.25rem;
	max-width: 750px;
	line-height: 1.2;
}

.banner-desc {
	font-size: 0.98rem;
	color: rgba(255, 255, 255, 0.88);
	max-width: 680px;
	line-height: 1.65;
}

/* ==========================================================================
   Patient Journey / How We Work Section (Accordion)
   ========================================================================== */
.journey-section {
	padding: 5rem 0;
	background-color: var(--color-pearl-white);
}

.journey-container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 2rem;
}

.journey-header {
	margin-bottom: 3rem;
}

.journey-accordion {
	display: flex;
	flex-direction: column;
	gap: 1.35rem;
}

.accordion-item {
	background-color: #F7F4EE;
	border: 1.8px solid #1A1A1A;
	border-bottom: 6px solid #1A1A1A;
	border-radius: 18px;
	overflow: hidden;
	transition: all 0.3s ease;
}

.accordion-item.active {
	background-color: #556B61;
	border: 1.8px solid #1A1A1A;
	border-bottom: 6px solid #1A1A1A;
	color: #FFFFFF;
}

.accordion-header {
	padding: 2rem 2.5rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	cursor: pointer;
	user-select: none;
}

.accordion-title-wrap {
	display: flex;
	align-items: center;
	gap: 1.75rem;
}

.accordion-num {
	font-size: 2.5rem;
	font-weight: 700;
	line-height: 1;
	color: #111827;
	font-family: var(--font-body);
}

.accordion-item.active .accordion-num {
	color: #FFFFFF;
}

.accordion-title {
	font-size: 1.45rem;
	font-weight: 700;
	color: #111827;
}

.accordion-item.active .accordion-title {
	color: #FFFFFF;
}

.accordion-icon {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: 1.8px solid #2B2D2F;
	background-color: transparent;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.4rem;
	font-weight: 700;
	color: #2B2D2F;
	transition: all 0.3s ease;
	flex-shrink: 0;
}

.accordion-item.active .accordion-icon {
	background-color: #FFFFFF;
	border-color: #FFFFFF;
	color: #2B2D2F;
}

.accordion-content {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.35s ease-out;
	padding: 0 2.5rem;
}

.accordion-item.active .accordion-content {
	max-height: 300px;
	padding-bottom: 2.25rem;
}

.accordion-divider {
	height: 1px;
	background-color: rgba(255, 255, 255, 0.3);
	margin: 0.25rem 0 1.5rem 0;
}

.accordion-body-text {
	font-size: 0.95rem;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.92);
}

/* Mobile Responsive Accordion / FAQ Section */
@media (max-width: 768px) {
	.faq-category {
		margin-bottom: 2.5rem;
	}

	.faq-category .section-title {
		font-size: 1.6rem !important;
		margin-bottom: 1.25rem !important;
		line-height: 1.25 !important;
	}

	.accordion-item {
		border-radius: 14px;
		margin-bottom: 0.85rem;
	}

	.accordion-header {
		padding: 1.15rem 1.25rem;
		gap: 0.75rem;
	}

	.accordion-title-wrap {
		gap: 0.75rem;
	}

	.accordion-num {
		font-size: 1.35rem;
	}

	.accordion-title {
		font-size: 1.05rem;
		line-height: 1.35;
		font-weight: 600;
	}

	.accordion-icon {
		width: 32px;
		height: 32px;
		font-size: 1rem;
		flex-shrink: 0;
	}

	.accordion-content {
		padding: 0 1.25rem;
	}

	.accordion-item.active .accordion-content {
		padding-bottom: 1.25rem;
	}

	.accordion-body-text {
		font-size: 0.9rem;
		line-height: 1.65;
	}

	.inner-container--narrow {
		padding: 0 1rem !important;
	}
}

/* ==========================================================================
   Video & Stats Counter Section
   ========================================================================== */
.stats-video-section {
	padding: 5rem 0;
	background-color: var(--color-white);
}

.stats-video-container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 2rem;
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 2rem;
	align-items: stretch;
}

.video-box {
	position: relative;
	border-radius: 16px;
	overflow: hidden;
	height: 100%;
	min-height: 520px;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.video-box[data-video-embed] {
	cursor: pointer;
}

.video-box iframe {
	width: 100%;
	height: 100%;
	min-height: 520px;
	border: 0;
	border-radius: 16px;
}

.video-box img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.video-play-btn {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 84px;
	height: 84px;
	border-radius: 50%;
	background-color: transparent;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s ease;
}

.video-play-btn:hover {
	transform: translate(-50%, -50%) scale(1.08);
}

.stats-col {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.stat-card {
	position: relative;
	background-color: #F4F7F5;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='160' viewBox='0 0 300 160'%3E%3Cg fill='none' stroke='%23556B61' stroke-opacity='0.15' stroke-width='1.2'%3E%3Cpath d='M-50,20 Q40,-10 140,35 T350,15'/%3E%3Cpath d='M-50,45 Q70,5 160,55 T350,35'/%3E%3Cpath d='M-50,75 Q50,35 150,85 T350,65'/%3E%3Cpath d='M-50,105 Q80,65 170,115 T350,95'/%3E%3Cpath d='M-50,135 Q50,95 150,145 T350,125'/%3E%3Cpath d='M-50,165 Q70,125 160,175 T350,155'/%3E%3C/g%3E%3C/svg%3E");
	background-size: cover;
	background-position: center;
	border-radius: 16px;
	padding: 2.5rem 2rem;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	border: none !important;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.stat-number {
	font-family: var(--font-body);
	font-size: 3.25rem;
	font-weight: 300;
	color: #556B61;
	line-height: 1.05;
	margin-bottom: 0.5rem;
	letter-spacing: -0.5px;
}

.stat-label {
	font-size: 1.05rem;
	color: #2D3748;
	font-weight: 400;
}

/* ==========================================================================
   Testimonials Section
   ========================================================================== */
.testimonials-section {
	padding: 5rem 0;
	background-color: var(--color-pearl-white);
}

.testimonials-container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 2rem;
}

.testimonials-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-bottom: 2.5rem;
}

.slider-controls {
	display: flex;
	gap: 0.75rem;
	align-items: center;
}

.slider-btn {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: 1.5px solid rgba(85, 107, 97, 0.3);
	background-color: #ffffff;
	color: #556B61;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.slider-btn:hover {
	background-color: #556B61;
	border-color: #556B61;
	color: #ffffff;
	transform: scale(1.06);
	box-shadow: 0 4px 12px rgba(85, 107, 97, 0.2);
}

.testimonial-slider-wrapper {
	overflow: hidden;
	width: 100%;
	padding: 1rem 0 1.5rem 0;
}

.testimonial-slider-track {
	display: flex;
	transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
	will-change: transform;
}

.testimonial-slide {
	flex: 0 0 50%;
	min-width: 50%;
	padding: 0 1rem;
	box-sizing: border-box;
}

.testimonial-slider-dots {
	display: flex;
	justify-content: center;
	gap: 0.5rem;
	margin-top: 1.5rem;
}

.slider-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	border: none;
	background-color: rgba(85, 107, 97, 0.25);
	cursor: pointer;
	transition: all 0.3s ease;
	padding: 0;
}

.slider-dot.active {
	width: 28px;
	border-radius: 12px;
	background-color: #556B61;
}

@media (max-width: 992px) {
	.testimonial-slide {
		flex: 0 0 100%;
		min-width: 100%;
	}
}


.testimonial-card {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	transition: all 0.3s ease;
	min-height: 280px;
}


.testimonial-card.card-light.borderless {
	background-color: transparent;
	border: none;
	box-shadow: none;
	padding: 0.5rem 1rem 0.5rem 0;
}

.testimonial-card.card-dark-sage {
	position: relative;
	background-color: #586F64;
	color: #FFFFFF;
	border-radius: 16px;
	padding: 3rem 2.5rem 2.5rem 2.5rem;
	box-shadow: 0 12px 32px rgba(88, 111, 100, 0.15);
}

.testimonial-card-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 1rem;
}

.testimonial-title {
	font-size: 1.35rem;
	font-weight: 700;
	line-height: 1.2;
}

.card-light .testimonial-title {
	color: #111827;
}

.card-dark-sage .testimonial-title {
	color: #FFFFFF;
	font-size: 1.55rem;
	margin-bottom: 1rem;
}

.quote-icon {
	font-family: Georgia, serif;
	line-height: 1;
}

.quote-icon-light {
	color: #E2E8F0;
	font-size: 3rem;
}

.quote-icon-gold {
	position: absolute;
	top: 2rem;
	right: 2.5rem;
	color: #D6BD63;
	font-size: 4.5rem;
}

.testimonial-text {
	font-size: 0.98rem;
	line-height: 1.7;
	margin-bottom: 2rem;
}

.card-light .testimonial-text {
	color: #4B5563;
}

.card-dark-sage .testimonial-text {
	color: rgba(255, 255, 255, 0.92);
	max-width: 90%;
}

.testimonial-author {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.author-avatar {
	width: 48px;
	height: 48px;
	border-radius: 10px;
	object-fit: cover;
}

.author-info {
	display: flex;
	flex-direction: column;
}

.author-name {
	font-size: 1rem;
	font-weight: 700;
}

.card-dark-sage .author-name {
	color: #FFFFFF;
}

.author-role {
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: #6B7280;
}

.author-role-gold {
	color: #D6BD63 !important;
}

.card-dark-sage .author-role {
	color: rgba(255, 255, 255, 0.75);
}

/* ==========================================================================
   Footer Component Styles
   ========================================================================== */
.site-footer {
	background-color: #000000;
	color: var(--color-white);
	padding: 5rem 0 3rem 0;
}

.footer-container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 2rem;
}

.footer-top {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1.25fr;
	gap: 3rem;
	margin-bottom: 4rem;
}

.footer-col-brand {
	padding-right: 2rem;
}

.footer-logo-img {
	height: 60px;
	width: auto;
	object-fit: contain;
	filter: brightness(0) invert(1);
	display: block;
}

.footer-description {
	font-size: 0.88rem;
	line-height: 1.7;
	color: #9CA3AF;
	margin-top: 1.25rem;
}

.footer-heading {
	font-size: 1rem;
	font-weight: 700;
	color: var(--color-white);
	margin-bottom: 1.5rem;
}

.footer-links {
	display: flex;
	flex-direction: column;
	gap: 0.85rem;
}

.footer-links a {
	font-size: 0.88rem;
	color: #9CA3AF;
}

.footer-links a:hover {
	color: var(--color-white);
}

.clinic-info {
	font-size: 0.88rem;
	color: #9CA3AF;
	line-height: 1.6;
}

.clinic-info strong {
	color: var(--color-white);
}

.contact-email {
	margin-top: 1rem;
}

.contact-email a {
	color: #9CA3AF;
}

.contact-email a:hover {
	color: var(--color-white);
	text-decoration: underline;
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	padding-top: 2rem;
	margin-bottom: 1.5rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 1rem;
}

.copyright-text {
	font-size: 0.82rem;
	color: #9CA3AF;
}

.footer-legal-links {
	display: flex;
	gap: 1.75rem;
}

.footer-legal-links a {
	font-size: 0.82rem;
	color: #9CA3AF;
}

.footer-legal-links a:hover {
	color: var(--color-white);
}

.footer-disclaimer {
	background: transparent;
	border: none;
	padding: 0;
	margin-top: 0.5rem;
	font-size: 0.76rem;
	line-height: 1.6;
	color: #9CA3AF;
}

.footer-disclaimer strong {
	color: #D1D5DB;
}

/* Mobile Navigation Backdrop & Slide-in Right Sidebar Drawer */
.mobile-nav-backdrop {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background-color: rgba(0, 0, 0, 0.4);
	backdrop-filter: none !important;
	-webkit-backdrop-filter: none !important;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
	z-index: 9998;
}

.mobile-nav-backdrop.active {
	opacity: 1;
	visibility: visible;
}

.sidebar-header {
	display: none;
}

.mobile-menu-toggle {
	display: none;
	flex-direction: column;
	justify-content: space-between;
	width: 32px;
	height: 22px;
	background: transparent;
	border: none;
	cursor: pointer;
	padding: 0;
	z-index: 10000 !important;
}

.mobile-menu-toggle span {
	width: 100%;
	height: 2.5px;
	background-color: #111827;
	border-radius: 2px;
	transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
	transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
	transform: translateY(9.75px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
	opacity: 0;
	transform: scaleX(0);
}

.mobile-menu-toggle.active span:nth-child(3) {
	transform: translateY(-9.75px) rotate(-45deg);
}

.mobile-cta-wrap {
	display: none;
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
	.hero-title {
		font-size: 2.5rem;
	}

	.hero-cards-row {
		grid-template-columns: 1fr;
		margin-top: 0;
	}

	.about-container {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.services-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.stats-video-container {
		grid-template-columns: 1fr;
	}

	.footer-top {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 992px) {
	.site-header {
		position: sticky;
		top: 0;
		z-index: 10000 !important;
		background-color: #FAF8F5;
	}

	.mobile-menu-toggle {
		display: flex !important;
		transition: opacity 0.2s ease, visibility 0.2s ease !important;
	}

	.mobile-menu-toggle.active {
		opacity: 0 !important;
		visibility: hidden !important;
		pointer-events: none !important;
	}

	.header-cta {
		display: none !important;
	}

	.main-navigation {
		position: fixed !important;
		top: 0 !important;
		right: 0 !important;
		left: auto !important;
		width: 320px !important;
		max-width: 85vw !important;
		height: 100vh !important;
		background-color: #FAF8F5 !important;
		display: flex !important;
		flex-direction: column !important;
		justify-content: flex-start !important;
		align-items: stretch !important;
		padding: 2.25rem 1.75rem !important;
		transform: translateX(100%) !important;
		opacity: 1 !important;
		visibility: visible !important;
		transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
		z-index: 9999 !important;
		box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15) !important;
		overflow-y: auto !important;
	}

	.main-navigation.mobile-open {
		transform: translateX(0) !important;
	}

	.sidebar-header {
		display: flex !important;
		justify-content: space-between !important;
		align-items: center !important;
		padding-top: 0.25rem !important;
		padding-bottom: 1.25rem !important;
		margin-bottom: 1.75rem !important;
		border-bottom: 1px solid rgba(0, 0, 0, 0.08) !important;
	}

	.sidebar-logo-img {
		height: 36px !important;
		width: auto !important;
		object-fit: contain !important;
	}

	.sidebar-close-btn {
		background: transparent !important;
		border: none !important;
		font-size: 2rem !important;
		line-height: 1 !important;
		color: #111827 !important;
		cursor: pointer !important;
		padding: 0.2rem 0.5rem !important;
		transition: color 0.2s ease !important;
	}

	.sidebar-close-btn:hover {
		color: #556B61 !important;
	}

	.main-navigation .nav-menu {
		display: flex !important;
		flex-direction: column !important;
		align-items: flex-start !important;
		gap: 0.75rem !important;
		width: 100% !important;
		text-align: left !important;
	}

	.main-navigation .nav-item {
		width: 100% !important;
	}

	.main-navigation .nav-item a {
		font-size: 1.25rem !important;
		font-weight: 600 !important;
		color: #111827 !important;
		transition: color 0.2s ease !important;
		display: block !important;
		width: 100% !important;
		padding: 0.6rem 0 !important;
	}

	.main-navigation .nav-item.active a,
	.main-navigation .nav-item a:hover {
		color: #556B61 !important;
	}

	.mobile-cta-wrap {
		display: block !important;
		margin-top: 2.5rem !important;
		width: 100% !important;
	}

	.mobile-cta-wrap .btn {
		width: 100% !important;
		justify-content: center !important;
		padding: 0.85rem 1.5rem !important;
		font-size: 0.95rem !important;
	}

	.services-grid {
		grid-template-columns: 1fr;
	}

	.testimonials-grid {
		grid-template-columns: 1fr;
	}

	.footer-top {
		grid-template-columns: 1fr;
	}

	.hero-cta-group {
		flex-direction: column;
		width: 100%;
	}

	.hero-cta-group .btn {
		width: 100%;
	}
}