/**
 * ABC Homeo Care — Main Stylesheet
 * Mobile-first responsive design
 *
 * @package ABC_Homeo_Care
 */

/* ===== CSS CUSTOM PROPERTIES (Fallbacks — overridden by Customizer inline CSS) ===== */
:root {
	--primary: #2563EB;
	--primary-light: #DBEAFE;
	--primary-dark: #1E40AF;
	--accent: #10B981;
	--accent-light: #D1FAE5;
	--text-dark: #111827;
	--text: #374151;
	--text-light: #6B7280;
	--bg: #FFFFFF;
	--bg-alt: #F0F9FF;
	--bg-dark: #0F172A;
	--border: #E5E7EB;
	--shadow-sm: 0 1px 2px rgba(0,0,0,.05);
	--shadow: 0 4px 6px -1px rgba(0,0,0,.07), 0 2px 4px -2px rgba(0,0,0,.05);
	--shadow-lg: 0 10px 25px -5px rgba(0,0,0,.1), 0 8px 10px -6px rgba(0,0,0,.05);
	--radius: 12px;
	--radius-sm: 8px;
	--radius-full: 9999px;
	--transition: .25s ease;
	--container: 1200px;
	--header-h: 72px;
	--font-body: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	--font-heading: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	--font-size-base: 16px;
	--line-height: 1.7;
	--heading-weight: 600;
	--body-weight: 400;
	--btn-shadow: 0 4px 14px rgba(37,99,235,.3);
	--btn-shadow-hover: 0 6px 20px rgba(37,99,235,.4);
}

/* ===== RESET ===== */
*,
*::before,
*::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

/* ===== BASE ===== */
html {
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
}

body {
	font-family: var(--font-body);
	font-size: var(--font-size-base);
	line-height: var(--line-height);
	font-weight: var(--body-weight);
	color: var(--text);
	background: var(--bg);
	overflow-x: hidden;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	color: var(--primary);
	text-decoration: none;
	transition: color var(--transition);
}

a:hover {
	color: var(--primary-dark);
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-heading);
	color: var(--text-dark);
	line-height: 1.3;
	font-weight: var(--heading-weight);
}

ul, ol {
	list-style: none;
}

/* ===== SCREEN READER ===== */
.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;
}

.screen-reader-text:focus {
	position: fixed;
	top: 5px;
	left: 5px;
	width: auto;
	height: auto;
	padding: 12px 24px;
	clip: auto;
	background: var(--bg);
	color: var(--primary);
	font-size: .875rem;
	font-weight: 600;
	z-index: 100000;
	border-radius: var(--radius-sm);
	box-shadow: var(--shadow-lg);
}

/* ===== UTILITIES ===== */
.container {
	width: 100%;
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 1rem;
}

.container-narrow {
	max-width: 800px;
}

.text-center {
	text-align: center;
}

.section-title {
	font-size: 1.75rem;
	font-weight: 700;
	margin-bottom: 1rem;
	color: var(--text-dark);
}

.text-center.section-title,
.section-title.text-center {
	margin-bottom: 2.5rem;
}

/* ===== BUTTONS ===== */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: .5rem;
	padding: .75rem 1.75rem;
	font-family: inherit;
	font-size: .9375rem;
	font-weight: 500;
	line-height: 1.4;
	border: none;
	border-radius: var(--radius-full);
	cursor: pointer;
	transition: all var(--transition);
	text-decoration: none;
	white-space: nowrap;
}

.btn-primary {
	background: var(--primary);
	color: #fff;
	box-shadow: var(--btn-shadow);
}

.btn-primary:hover {
	background: var(--primary-dark);
	color: #fff;
	box-shadow: var(--btn-shadow-hover);
	transform: translateY(-1px);
}

.btn-white {
	background: #fff;
	color: var(--primary);
	box-shadow: 0 4px 14px rgba(0,0,0,.1);
}

.btn-white:hover {
	background: #F8FAFC;
	color: var(--primary-dark);
	transform: translateY(-1px);
}

.btn-sm {
	padding: .5rem 1.25rem;
	font-size: .8125rem;
}

.btn-lg {
	padding: .875rem 2rem;
	font-size: 1rem;
}

/* ===== HEADER ===== */
.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	height: var(--header-h);
	background: rgba(255,255,255,.95);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	z-index: 1000;
	transition: box-shadow var(--transition);
}

.site-header.is-scrolled {
	box-shadow: 0 1px 3px rgba(0,0,0,.08);
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: var(--header-h);
}

.site-branding img {
	max-height: 48px;
	width: auto;
}

.site-title-link {
	text-decoration: none;
}

.site-title {
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--primary);
}

/* Nav */
.main-nav {
	display: none;
}

.nav-menu {
	display: flex;
	align-items: center;
	gap: .25rem;
}

.nav-menu li a {
	display: block;
	padding: .5rem 1rem;
	font-size: .875rem;
	font-weight: 500;
	color: var(--text);
	border-radius: var(--radius-sm);
	transition: all var(--transition);
}

.nav-menu li a:hover,
.nav-menu li.current-menu-item a {
	color: var(--primary);
	background: var(--primary-light);
}

/* Header Actions */
.header-actions {
	display: flex;
	align-items: center;
	gap: .75rem;
}

.header-cta-btn {
	display: none;
}

/* Hamburger */
.menu-toggle {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 36px;
	height: 36px;
	padding: 6px;
	background: none;
	border: none;
	cursor: pointer;
}

.hamburger-line {
	display: block;
	width: 100%;
	height: 2px;
	background: var(--text-dark);
	border-radius: 2px;
	transition: all .3s ease;
}

.menu-toggle.is-active .hamburger-line:nth-child(1) {
	transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.is-active .hamburger-line:nth-child(2) {
	opacity: 0;
}

.menu-toggle.is-active .hamburger-line:nth-child(3) {
	transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Nav Open */
.main-nav.is-open {
	display: block;
	position: absolute;
	top: var(--header-h);
	left: 0;
	right: 0;
	background: var(--bg);
	border-top: 1px solid var(--border);
	box-shadow: var(--shadow-lg);
	padding: 1rem;
}

.main-nav.is-open .nav-menu {
	flex-direction: column;
	align-items: stretch;
}

.main-nav.is-open .nav-menu li a {
	padding: .75rem 1rem;
}

/* ===== HERO SECTION ===== */
.hero-section {
	padding: calc(var(--header-h) + 2rem) 0 3rem;
	background: linear-gradient(135deg, var(--bg-alt) 0%, var(--bg) 100%);
}

.hero-grid {
	display: grid;
	gap: 2rem;
	align-items: center;
}

.hero-badge {
	display: inline-block;
	padding: .375rem 1rem;
	font-size: .8125rem;
	font-weight: 500;
	color: var(--primary);
	background: var(--primary-light);
	border-radius: var(--radius-full);
	margin-bottom: 1rem;
}

.hero-name {
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: .5rem;
}

.hero-headline {
	font-size: 1.25rem;
	font-weight: 600;
	color: var(--text-dark);
	margin-bottom: .75rem;
	line-height: 1.5;
}

.hero-subheadline {
	font-size: .9375rem;
	color: var(--text-light);
	margin-bottom: 1.5rem;
	line-height: 1.7;
}

.hero-bullets {
	margin-bottom: 2rem;
}

.hero-bullets li {
	display: flex;
	align-items: center;
	gap: .625rem;
	padding: .375rem 0;
	font-size: .9375rem;
	color: var(--text);
}

.hero-bullets li svg {
	flex-shrink: 0;
}

.hero-image img {
	width: 100%;
	max-width: 480px;
	margin: 0 auto;
	border-radius: var(--radius);
	box-shadow: var(--shadow-lg);
	object-fit: cover;
}

.hero-image-placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	max-width: 480px;
	aspect-ratio: 7/8;
	margin: 0 auto;
	background: var(--bg-alt);
	border-radius: var(--radius);
	border: 2px dashed var(--border);
}

/* ===== TRUST BAR ===== */
.trust-section {
	padding: 2.5rem 0;
	background: var(--bg);
	border-top: 1px solid var(--border);
	border-bottom: 1px solid var(--border);
}

.trust-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.5rem;
	text-align: center;
}

.trust-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: .5rem;
}

.trust-icon {
	color: var(--primary);
}

.trust-text {
	font-size: .875rem;
	font-weight: 500;
	color: var(--text-dark);
}

/* ===== ABOUT SECTION ===== */
.about-section {
	padding: 4rem 0;
	background: var(--bg-alt);
}

.about-grid {
	display: grid;
	gap: 2rem;
	align-items: center;
}

.about-image img {
	width: 100%;
	border-radius: var(--radius);
	box-shadow: var(--shadow);
}

.about-text {
	font-size: 1rem;
	line-height: 1.8;
	color: var(--text);
}

/* ===== SERVICES SECTION ===== */
.services-section {
	padding: 4rem 0;
	background: var(--bg);
}

.services-grid {
	display: grid;
	gap: 1.25rem;
}

.service-card {
	padding: 1.5rem;
	background: var(--bg);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	transition: all var(--transition);
}

.service-card:hover {
	box-shadow: var(--shadow-lg);
	border-color: transparent;
	transform: translateY(-2px);
}

.service-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	margin-bottom: 1rem;
	border-radius: var(--radius-sm);
	background: var(--primary-light);
	color: var(--primary);
	overflow: hidden;
}

.service-icon img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: inherit;
}

.service-title {
	font-size: 1.0625rem;
	font-weight: 600;
	margin-bottom: .375rem;
}

.service-desc {
	font-size: .875rem;
	color: var(--text-light);
	line-height: 1.6;
}

/* ===== WHY CHOOSE SECTION ===== */
.why-choose-section {
	padding: 4rem 0;
	background: var(--bg-alt);
}

.why-choose-grid {
	display: grid;
	gap: 2rem;
	align-items: start;
}

.why-highlight {
	font-size: 1rem;
	color: var(--text);
	line-height: 1.8;
	margin-top: .5rem;
}

.why-choose-list ul {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.why-choose-list li {
	display: flex;
	align-items: flex-start;
	gap: .75rem;
	font-size: 1rem;
	color: var(--text);
	line-height: 1.6;
}

.why-choose-list li svg {
	flex-shrink: 0;
	margin-top: 2px;
}

/* ===== PROCESS SECTION ===== */
.process-section {
	padding: 4rem 0;
	background: var(--bg);
}

.process-grid {
	display: grid;
	gap: 2rem;
}

.process-step {
	text-align: center;
	position: relative;
}

.process-number {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	margin-bottom: 1rem;
	border-radius: 50%;
	background: var(--primary);
	color: #fff;
	font-size: 1.25rem;
	font-weight: var(--heading-weight);
	box-shadow: var(--btn-shadow);
}

.process-connector {
	display: none;
}

.process-title {
	font-size: 1.0625rem;
	font-weight: 600;
	margin-bottom: .375rem;
}

.process-desc {
	font-size: .875rem;
	color: var(--text-light);
	line-height: 1.6;
}

/* ===== APPOINTMENT SECTION ===== */
.appointment-section {
	padding: 4rem 0;
	background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
	color: #fff;
	text-align: center;
}

.appointment-inner {
	max-width: 640px;
	margin: 0 auto;
}

.appointment-title {
	font-size: 1.75rem;
	font-weight: 700;
	color: #fff;
	margin-bottom: .75rem;
}

.appointment-desc {
	font-size: 1rem;
	color: rgba(255,255,255,.85);
	margin-bottom: 2rem;
	line-height: 1.7;
}

.appointment-form {
	margin-top: 2rem;
	background: rgba(255,255,255,.1);
	padding: 2rem;
	border-radius: var(--radius);
}

/* ===== BLOG SECTION ===== */
.blog-section {
	padding: 4rem 0;
	background: var(--bg-alt);
}

.blog-grid {
	display: grid;
	gap: 1.5rem;
}

.blog-card {
	background: var(--bg);
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow-sm);
	transition: all var(--transition);
}

.blog-card:hover {
	box-shadow: var(--shadow-lg);
	transform: translateY(-2px);
}

.blog-card-image img {
	width: 100%;
	aspect-ratio: 16/11;
	object-fit: cover;
}

.blog-card-content {
	padding: 1.25rem;
}

.blog-card-meta {
	font-size: .75rem;
	color: var(--text-light);
	margin-bottom: .5rem;
}

.blog-card-title {
	font-size: 1.0625rem;
	font-weight: 600;
	margin-bottom: .5rem;
	line-height: 1.4;
}

.blog-card-title a {
	color: var(--text-dark);
}

.blog-card-title a:hover {
	color: var(--primary);
}

.blog-card-excerpt {
	font-size: .875rem;
	color: var(--text-light);
	line-height: 1.6;
	margin-bottom: .75rem;
}

.read-more-link {
	font-size: .875rem;
	font-weight: 500;
	color: var(--primary);
}

.read-more-link:hover {
	color: var(--primary-dark);
}

/* ===== FINAL CTA SECTION ===== */
.final-cta-section {
	padding: 4rem 0;
	background: linear-gradient(135deg, var(--accent) 0%, #059669 100%);
	text-align: center;
}

.final-cta-inner {
	max-width: 640px;
	margin: 0 auto;
}

.final-cta-message {
	font-size: 1.5rem;
	font-weight: 700;
	color: #fff;
	margin-bottom: 1.75rem;
	line-height: 1.4;
}

/* ===== FOOTER ===== */
.site-footer {
	background: var(--bg-dark);
	color: rgba(255,255,255,.7);
	padding: 3rem 0 0;
}

.footer-grid {
	display: grid;
	gap: 2rem;
	padding-bottom: 2rem;
}

.footer-heading {
	font-size: 1.0625rem;
	font-weight: 600;
	color: #fff;
	margin-bottom: 1rem;
}

.footer-col p {
	font-size: .875rem;
	line-height: 1.7;
}

.footer-menu {
	display: flex;
	flex-direction: column;
	gap: .375rem;
}

.footer-menu li a {
	font-size: .875rem;
	color: rgba(255,255,255,.7);
	transition: color var(--transition);
}

.footer-menu li a:hover {
	color: #fff;
}

.footer-contact {
	display: flex;
	flex-direction: column;
	gap: .625rem;
}

.footer-contact li {
	display: flex;
	align-items: flex-start;
	gap: .5rem;
	font-size: .875rem;
}

.footer-contact li svg {
	flex-shrink: 0;
	margin-top: 3px;
	opacity: .7;
}

.footer-contact a {
	color: rgba(255,255,255,.7);
}

.footer-contact a:hover {
	color: #fff;
}

.footer-disclaimer {
	border-top: 1px solid rgba(255,255,255,.1);
	padding: 1.25rem 0;
}

.footer-disclaimer p {
	font-size: .75rem;
	color: rgba(255,255,255,.4);
	line-height: 1.6;
}

.footer-bottom {
	border-top: 1px solid rgba(255,255,255,.1);
	padding: 1.25rem 0;
	text-align: center;
}

.footer-bottom p {
	font-size: .8125rem;
	color: rgba(255,255,255,.5);
}

/* Footer Social Icons */
.footer-social {
	display: flex;
	gap: .625rem;
	margin-top: 1.25rem;
}

.social-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: rgba(255,255,255,.1);
	color: rgba(255,255,255,.7);
	transition: all var(--transition);
}

.social-icon:hover {
	transform: translateY(-2px);
}

.social-facebook:hover { background: #1877F2; color: #fff; }
.social-youtube:hover { background: #FF0000; color: #fff; }
.social-instagram:hover { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); color: #fff; }
.social-linkedin:hover { background: #0A66C2; color: #fff; }
.social-twitter:hover { background: #1DA1F2; color: #fff; }

/* ===== BREADCRUMBS ===== */
.breadcrumb-nav {
	margin-bottom: 1.5rem;
}

.breadcrumb {
	font-size: .8125rem;
	color: var(--text-light);
	line-height: 1.5;
}

.breadcrumb a {
	color: var(--text-light);
	transition: color var(--transition);
}

.breadcrumb a:hover {
	color: var(--primary);
}

.breadcrumb-sep {
	margin: 0 .25rem;
	color: var(--border);
}

/* Yoast breadcrumbs separator */
.breadcrumb span[class*="separator"] {
	margin: 0 .25rem;
	color: var(--border);
}

/* ===== ARCHIVE ===== */
.archive-header {
	margin-bottom: 2rem;
}

.archive-description {
	font-size: .9375rem;
	color: var(--text-light);
	line-height: 1.7;
	margin-top: .5rem;
}

/* ===== PAGE / POST STYLES ===== */
.page-section {
	padding: calc(var(--header-h) + 2rem) 0 3rem;
}

.page-main-title {
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
}

/* Page Hero Header (for inner pages) */
.page-hero-section {
	padding: calc(var(--header-h) + 3rem) 0 2.5rem;
	background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
	color: #fff;
	text-align: center;
}

.page-hero-section .breadcrumb,
.page-hero-section .breadcrumb a,
.page-hero-section .breadcrumb-sep {
	color: rgba(255,255,255,.7);
}

.page-hero-section .breadcrumb a:hover {
	color: #fff;
}

.page-hero-title {
	font-size: 2.25rem;
	font-weight: 700;
	margin-top: .75rem;
	color: #fff;
}

/* Page content area */
.page-content-section {
	padding: 3rem 0 4rem;
}

.page-content-section .container {
	max-width: 900px;
}

.page-article {
	background: var(--bg);
}

.page-featured-image {
	margin-bottom: 2rem;
	border-radius: var(--radius);
	overflow: hidden;
}

.page-featured-image img {
	width: 100%;
	display: block;
}

.page-entry-content {
	font-size: 1.0625rem;
	line-height: 1.85;
	color: var(--text);
}

.page-entry-content h2 {
	font-size: 1.625rem;
	font-weight: 700;
	margin: 2.5rem 0 1rem;
	color: var(--text-dark);
}

.page-entry-content h3 {
	font-size: 1.375rem;
	font-weight: 600;
	margin: 2rem 0 .75rem;
	color: var(--text-dark);
}

.page-entry-content p {
	margin-bottom: 1.5rem;
}

.page-entry-content ul,
.page-entry-content ol {
	margin: 1.25rem 0;
	padding-left: 1.75rem;
}

.page-entry-content li {
	margin-bottom: .5rem;
	line-height: 1.7;
}

.page-entry-content .fee-amount {
	font-size: 1.5rem;
	color: var(--primary);
	font-weight: 700;
	margin: .75rem 0 1rem;
	padding: .75rem 1.25rem;
	background: var(--primary-light);
	border-radius: var(--radius-sm);
	display: inline-block;
}

/* Entry content base */
.entry-content {
	font-size: 1.0625rem;
	line-height: 1.85;
}

.entry-content p {
	margin-bottom: 1.5rem;
}

.entry-content h2 {
	font-size: 1.625rem;
	font-weight: 700;
	margin: 2.5rem 0 1rem;
	color: var(--text-dark);
}

.entry-content h3 {
	font-size: 1.375rem;
	font-weight: 600;
	margin: 2rem 0 .75rem;
	color: var(--text-dark);
}

.entry-content ul,
.entry-content ol {
	margin: 1.25rem 0;
	padding-left: 1.75rem;
	list-style: disc;
}

.entry-content ol {
	list-style: decimal;
}

.entry-content li {
	margin-bottom: .5rem;
}

.entry-content img {
	border-radius: var(--radius-sm);
	margin: 1.5rem 0;
}

.entry-content blockquote {
	border-left: 4px solid var(--primary);
	padding: 1rem 1.5rem;
	margin: 2rem 0;
	background: var(--bg-alt);
	border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
	font-style: italic;
	color: var(--text);
}

.entry-thumbnail {
	margin-bottom: 2rem;
	border-radius: var(--radius);
	overflow: hidden;
}

.entry-thumbnail img {
	border-radius: var(--radius);
	width: 100%;
	display: block;
}

/* Entry categories */
.entry-categories {
	display: flex;
	flex-wrap: wrap;
	gap: .5rem;
	margin-bottom: 1rem;
}

.entry-cat-badge {
	font-size: .75rem;
	font-weight: 600;
	color: var(--primary);
	background: var(--primary-light);
	padding: .25rem .75rem;
	border-radius: var(--radius-full);
	text-transform: uppercase;
	letter-spacing: .03em;
}

.entry-cat-badge:hover {
	background: var(--primary);
	color: #fff;
}

/* Post meta */
.post-meta {
	font-size: .875rem;
	color: var(--text-light);
	margin-bottom: 1.5rem;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: .5rem;
}

.post-meta-author {
	display: flex;
	align-items: center;
	gap: .5rem;
}

.post-meta-author img {
	border-radius: 50%;
	width: 36px;
	height: 36px;
}

/* Entry tags */
.entry-tags {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: .5rem;
	margin-top: 2.5rem;
	padding-top: 1.5rem;
	border-top: 1px solid var(--border);
}

.tags-label,
.share-label {
	font-size: .875rem;
	font-weight: 600;
	color: var(--text-dark);
}

.entry-tag {
	font-size: .8125rem;
	color: var(--text);
	background: var(--bg-alt);
	padding: .25rem .75rem;
	border-radius: var(--radius-sm);
	border: 1px solid var(--border);
}

.entry-tag:hover {
	background: var(--primary-light);
	color: var(--primary);
	border-color: var(--primary-light);
}

/* Share buttons */
.entry-share {
	display: flex;
	align-items: center;
	gap: .75rem;
	margin-top: 1.5rem;
}

.share-buttons {
	display: flex;
	gap: .5rem;
}

.share-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	color: #fff;
	transition: transform var(--transition), opacity var(--transition);
}

.share-btn:hover {
	transform: translateY(-2px);
	opacity: .9;
}

.share-facebook { background: #1877F2; }
.share-twitter { background: #1DA1F2; }
.share-whatsapp { background: #25D366; }

/* ===== BLOG LAYOUT (Sidebar) ===== */
.blog-layout {
	display: grid;
	gap: 2.5rem;
	grid-template-columns: 1fr;
}

/* ===== SIDEBAR ===== */
.blog-sidebar {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.sidebar-widget {
	background: var(--bg);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 1.5rem;
}

.sidebar-widget-title {
	font-size: 1rem;
	font-weight: 700;
	color: var(--text-dark);
	margin-bottom: 1rem;
	padding-bottom: .75rem;
	border-bottom: 2px solid var(--primary);
}

/* Search widget */
.sidebar-widget .search-form {
	display: flex;
	gap: 0;
}

.sidebar-widget .search-field {
	flex: 1;
	padding: .625rem 1rem;
	border: 1px solid var(--border);
	border-right: none;
	border-radius: var(--radius-sm) 0 0 var(--radius-sm);
	font-size: .875rem;
	outline: none;
}

.sidebar-widget .search-field:focus {
	border-color: var(--primary);
}

.sidebar-widget .search-submit {
	padding: .625rem 1rem;
	background: var(--primary);
	color: #fff;
	border: none;
	border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
	font-size: .875rem;
	cursor: pointer;
	font-weight: 500;
}

.sidebar-widget .search-submit:hover {
	background: var(--primary-dark);
}

/* Categories widget */
.sidebar-categories {
	list-style: none;
	padding: 0;
}

.sidebar-categories li {
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-bottom: 1px solid var(--border);
	padding: .625rem 0;
	font-size: .875rem;
}

.sidebar-categories li:last-child {
	border-bottom: none;
}

.sidebar-categories li a {
	color: var(--text);
	transition: color var(--transition);
}

.sidebar-categories li a:hover {
	color: var(--primary);
}

/* Ad banner */
.sidebar-ad-img {
	width: 100%;
	border-radius: var(--radius-sm);
	display: block;
}

/* Recent posts widget */
.sidebar-recent-posts {
	list-style: none;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.sidebar-recent-item {
	display: flex;
	gap: .75rem;
}

.sidebar-recent-thumb {
	flex-shrink: 0;
	width: 64px;
	height: 64px;
	border-radius: var(--radius-sm);
	overflow: hidden;
}

.sidebar-recent-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.sidebar-recent-info {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.sidebar-recent-title {
	font-size: .875rem;
	font-weight: 500;
	color: var(--text-dark);
	line-height: 1.4;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.sidebar-recent-title:hover {
	color: var(--primary);
}

.sidebar-recent-date {
	font-size: .75rem;
	color: var(--text-light);
	margin-top: .25rem;
}

/* ===== POST CARDS ===== */
.posts-grid {
	display: grid;
	gap: 1.5rem;
	margin-bottom: 2rem;
}

.post-card {
	background: var(--bg);
	border-radius: var(--radius);
	overflow: hidden;
	border: 1px solid var(--border);
	transition: all var(--transition);
}

.post-card:hover {
	box-shadow: var(--shadow-lg);
	transform: translateY(-2px);
}

.post-card-image img {
	width: 100%;
	aspect-ratio: 16/11;
	object-fit: cover;
}

.post-card-content {
	padding: 1.25rem;
}

.post-card-cats a {
	font-size: .6875rem;
	font-weight: 600;
	color: var(--primary);
	background: var(--primary-light);
	padding: .125rem .5rem;
	border-radius: var(--radius-full);
	text-transform: uppercase;
	letter-spacing: .03em;
}

.post-card-cats {
	margin-bottom: .5rem;
}

.post-card-title {
	font-size: 1.125rem;
	margin-bottom: .5rem;
	line-height: 1.4;
}

.post-card-title a {
	color: var(--text-dark);
}

.post-card-title a:hover {
	color: var(--primary);
}

.post-card-meta {
	font-size: .75rem;
	color: var(--text-light);
	margin-bottom: .75rem;
	display: flex;
	align-items: center;
	gap: .375rem;
}

.post-card-excerpt {
	font-size: .875rem;
	color: var(--text-light);
	margin-bottom: .75rem;
	line-height: 1.6;
}

/* Post Navigation */
.post-navigation {
	margin-top: 2.5rem;
	padding-top: 2rem;
	border-top: 1px solid var(--border);
}

.post-nav-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1rem;
}

.post-nav-link {
	display: flex;
	flex-direction: column;
	gap: .25rem;
	padding: 1rem 1.25rem;
	border: 1px solid var(--border);
	border-radius: var(--radius-sm);
	transition: all var(--transition);
}

.post-nav-link:hover {
	border-color: var(--primary);
	background: var(--primary-light);
}

.post-nav-next {
	text-align: right;
}

.post-nav-label {
	font-size: .75rem;
	font-weight: 600;
	color: var(--primary);
	text-transform: uppercase;
	letter-spacing: .05em;
}

.post-nav-title {
	font-size: .9375rem;
	font-weight: 500;
	color: var(--text-dark);
	display: -webkit-box;
	-webkit-line-clamp: 1;
	line-clamp: 1;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

/* ===== RELATED POSTS ===== */
.related-posts-section {
	margin-top: 3rem;
	padding-top: 2.5rem;
	border-top: 1px solid var(--border);
}

.related-posts-title {
	font-size: 1.375rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
	color: var(--text-dark);
}

.related-posts-grid {
	display: grid;
	gap: 1.25rem;
}

.related-post-card {
	display: flex;
	gap: 1rem;
	padding: 1rem;
	border: 1px solid var(--border);
	border-radius: var(--radius-sm);
	transition: all var(--transition);
}

.related-post-card:hover {
	box-shadow: var(--shadow);
}

.related-post-thumb {
	flex-shrink: 0;
	width: 100px;
	height: 80px;
	border-radius: var(--radius-sm);
	overflow: hidden;
}

.related-post-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.related-post-info {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.related-post-title {
	font-size: .9375rem;
	font-weight: 600;
	line-height: 1.4;
	margin-bottom: .25rem;
}

.related-post-title a {
	color: var(--text-dark);
}

.related-post-title a:hover {
	color: var(--primary);
}

.related-post-date {
	font-size: .75rem;
	color: var(--text-light);
}

/* ===== NO RESULTS ===== */
.no-results-box {
	text-align: center;
	padding: 3rem 1rem;
	background: var(--bg-alt);
	border-radius: var(--radius);
	border: 1px solid var(--border);
}

.no-results-box h2 {
	font-size: 1.375rem;
	margin-bottom: .75rem;
	color: var(--text-dark);
}

.no-results-box p {
	color: var(--text-light);
	margin-bottom: 1.5rem;
}

.no-results-box .search-form {
	max-width: 400px;
	margin: 0 auto;
	display: flex;
}

/* ===== SECTION BACKGROUND STYLES ===== */
.section-bg-alt {
	background: var(--bg-alt) !important;
}

.section-bg-dark {
	background: var(--bg-dark) !important;
	color: rgba(255,255,255,.85) !important;
}

.section-bg-dark .section-title,
.section-bg-dark h2,
.section-bg-dark h3 {
	color: #fff !important;
}

.section-bg-dark .section-subtitle,
.section-bg-dark p {
	color: rgba(255,255,255,.7) !important;
}

.section-bg-primary {
	background: var(--primary) !important;
	color: rgba(255,255,255,.9) !important;
}

.section-bg-primary .section-title,
.section-bg-primary h2,
.section-bg-primary h3 {
	color: #fff !important;
}

.section-bg-primary .section-subtitle,
.section-bg-primary p {
	color: rgba(255,255,255,.8) !important;
}

.section-bg-primary-soft {
	background: var(--primary-light) !important;
}

.section-bg-accent {
	background: linear-gradient(135deg, var(--accent) 0%, #059669 100%) !important;
	color: rgba(255,255,255,.9) !important;
}

.section-bg-accent .section-title,
.section-bg-accent h2,
.section-bg-accent h3 {
	color: #fff !important;
}

.section-bg-accent p {
	color: rgba(255,255,255,.8) !important;
}

.section-bg-gradient {
	background: linear-gradient(135deg, var(--primary-light) 0%, var(--accent-light) 100%) !important;
}

/* ===== INNER PAGE STYLES ===== */

/* Page Hero Subtitle */
.page-hero-subtitle {
	font-size: 1.0625rem;
	color: rgba(255,255,255,.8);
	margin-top: .75rem;
	max-width: 640px;
	margin-left: auto;
	margin-right: auto;
	line-height: 1.7;
}

/* Inner Section (reusable) */
.inner-section {
	padding: 4rem 0;
}

.inner-section-header {
	text-align: center;
	max-width: 700px;
	margin: 0 auto 3rem;
}

.inner-section-title {
	font-size: 1.75rem;
	font-weight: 700;
	color: var(--text-dark);
	margin-bottom: .75rem;
}

.inner-section-subtitle {
	font-size: 1rem;
	color: var(--text-light);
	line-height: 1.7;
}

/* Inner CTA */
.inner-cta-section {
	padding: 4rem 0;
	background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
	text-align: center;
}

.inner-cta-content {
	max-width: 640px;
	margin: 0 auto;
}

.inner-cta-content h2 {
	font-size: 1.75rem;
	font-weight: 700;
	color: #fff;
	margin-bottom: .75rem;
}

.inner-cta-content p {
	color: rgba(255,255,255,.85);
	font-size: 1rem;
	margin-bottom: 2rem;
	line-height: 1.7;
}

/* Button Styles */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: .5rem;
	font-weight: 600;
	font-size: .9375rem;
	padding: .875rem 2rem;
	border-radius: var(--radius-full);
	transition: all var(--transition);
	cursor: pointer;
	border: 2px solid transparent;
	text-decoration: none;
}

.btn-primary {
	background: var(--primary);
	color: #fff;
	box-shadow: var(--btn-shadow);
}

.btn-primary:hover {
	background: var(--primary-dark);
	box-shadow: var(--btn-shadow-hover);
	transform: translateY(-2px);
	color: #fff;
}

.btn-outline {
	background: transparent;
	color: var(--primary);
	border-color: var(--primary);
}

.btn-outline:hover {
	background: var(--primary);
	color: #fff;
	transform: translateY(-2px);
}

.btn-lg {
	padding: 1rem 2.5rem;
	font-size: 1rem;
}

.btn-block {
	width: 100%;
	text-align: center;
}

.inner-cta-section .btn-primary {
	background: #fff;
	color: var(--primary);
}

.inner-cta-section .btn-primary:hover {
	background: var(--primary-light);
	color: var(--primary-dark);
}

/* ===== ABOUT PAGE ===== */
.about-intro-grid {
	display: grid;
	gap: 2.5rem;
	align-items: center;
}

.about-intro-image img {
	width: 100%;
	border-radius: var(--radius);
	box-shadow: var(--shadow-lg);
}

.about-placeholder-img {
	width: 100%;
	aspect-ratio: 4/5;
	background: var(--bg-alt);
	border-radius: var(--radius);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	color: var(--text-light);
	font-size: .875rem;
	border: 2px dashed var(--border);
}

.about-badge {
	display: inline-block;
	font-size: .8125rem;
	font-weight: 600;
	color: var(--primary);
	background: var(--primary-light);
	padding: .375rem 1rem;
	border-radius: var(--radius-full);
	margin-bottom: .75rem;
}

.about-doctor-name {
	font-size: 2rem;
	font-weight: 700;
	color: var(--text-dark);
	margin-bottom: 1rem;
}

.about-intro-text {
	font-size: 1rem;
	color: var(--text);
	line-height: 1.8;
	margin-bottom: 1.5rem;
}

.about-highlights {
	display: flex;
	flex-direction: column;
	gap: .75rem;
}

.about-highlight-item {
	display: flex;
	align-items: center;
	gap: .625rem;
	font-size: .9375rem;
	color: var(--text);
}

/* Mission Cards */
.mission-grid {
	display: grid;
	gap: 1.5rem;
}

.mission-card {
	background: var(--bg);
	padding: 2rem;
	border-radius: var(--radius);
	box-shadow: var(--shadow-sm);
	border: 1px solid var(--border);
	text-align: center;
}

.mission-icon {
	margin-bottom: 1.25rem;
}

.mission-card h3 {
	font-size: 1.125rem;
	font-weight: 600;
	color: var(--text-dark);
	margin-bottom: .625rem;
}

.mission-card p {
	font-size: .9375rem;
	color: var(--text-light);
	line-height: 1.7;
}

/* Feature Cards (numbered) */
.features-grid {
	display: grid;
	gap: 1.5rem;
}

.feature-card {
	background: var(--bg);
	padding: 2rem;
	border-radius: var(--radius);
	border: 1px solid var(--border);
	position: relative;
	transition: all var(--transition);
}

.feature-card:hover {
	box-shadow: var(--shadow);
	transform: translateY(-2px);
}

.feature-number {
	font-size: 2.5rem;
	font-weight: 800;
	color: var(--primary-light);
	line-height: 1;
	margin-bottom: .75rem;
}

.feature-card h3 {
	font-size: 1.0625rem;
	font-weight: 600;
	color: var(--text-dark);
	margin-bottom: .5rem;
}

.feature-card p {
	font-size: .9375rem;
	color: var(--text-light);
	line-height: 1.7;
}

/* ===== SERVICES PAGE ===== */
.services-page-grid {
	display: grid;
	gap: 1.5rem;
}

.service-page-card {
	background: var(--bg);
	padding: 2rem;
	border-radius: var(--radius);
	border: 1px solid var(--border);
	transition: all var(--transition);
	text-align: center;
}

.service-page-card:hover {
	box-shadow: var(--shadow-lg);
	transform: translateY(-4px);
	border-color: var(--primary-light);
}

.service-page-icon {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background: var(--primary-light);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.25rem;
	overflow: hidden;
}

.service-page-icon img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: inherit;
}

.service-page-title {
	font-size: 1.0625rem;
	font-weight: 600;
	color: var(--text-dark);
	margin-bottom: .5rem;
}

.service-page-desc {
	font-size: .875rem;
	color: var(--text-light);
	line-height: 1.6;
}

/* Process Page */
.process-page-grid {
	display: grid;
	gap: 1.5rem;
}

.process-page-step {
	text-align: center;
	padding: 2rem 1.5rem;
}

.process-page-number {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: var(--primary);
	color: #fff;
	font-size: 1.25rem;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1rem;
}

.process-page-step h3 {
	font-size: 1.0625rem;
	font-weight: 600;
	color: var(--text-dark);
	margin-bottom: .5rem;
}

.process-page-step p {
	font-size: .9375rem;
	color: var(--text-light);
	line-height: 1.6;
}

/* Info Box */
.info-box {
	display: flex;
	gap: 1rem;
	padding: 1.5rem;
	border-radius: var(--radius);
	border-left: 4px solid var(--primary);
	background: var(--primary-light);
	max-width: 800px;
	margin: 0 auto;
}

.info-box-icon {
	flex-shrink: 0;
	margin-top: .125rem;
}

.info-box-content h3 {
	font-size: 1rem;
	font-weight: 600;
	color: var(--text-dark);
	margin-bottom: .375rem;
}

.info-box-content p {
	font-size: .9375rem;
	color: var(--text);
	line-height: 1.7;
}

.info-box-primary {
	border-left-color: var(--primary);
	background: var(--primary-light);
}

.info-box-primary .info-box-icon { color: var(--primary); }

.info-box-warning {
	border-left-color: #F59E0B;
	background: #FFFBEB;
}

.info-box-warning .info-box-icon { color: #F59E0B; }

.info-box-info {
	border-left-color: #3B82F6;
	background: #EFF6FF;
}

.info-box-info .info-box-icon { color: #3B82F6; }

/* ===== CONTACT PAGE ===== */
.contact-cards-grid {
	display: grid;
	gap: 1.5rem;
}

.contact-card {
	background: var(--bg);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 2rem;
	text-align: center;
	transition: all var(--transition);
}

.contact-card:hover {
	box-shadow: var(--shadow);
	transform: translateY(-2px);
}

.contact-card-icon {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background: var(--primary-light);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1rem;
}

.contact-card-icon-green {
	background: var(--accent-light);
}

.contact-card h3 {
	font-size: 1.0625rem;
	font-weight: 600;
	color: var(--text-dark);
	margin-bottom: .5rem;
}

.contact-card p {
	font-size: .9375rem;
	margin-bottom: .375rem;
}

.contact-card p a {
	color: var(--primary);
	font-weight: 500;
}

.contact-card p a:hover {
	color: var(--primary-dark);
}

.contact-card-hint {
	font-size: .8125rem;
	color: var(--text-light);
}

/* Contact Info Layout */
.contact-info-layout {
	display: grid;
	gap: 2rem;
}

.contact-info-box {
	background: var(--bg);
	padding: 2rem;
	border-radius: var(--radius);
	border: 1px solid var(--border);
}

.contact-info-box .inner-section-title {
	text-align: left;
	font-size: 1.25rem;
	margin-bottom: 1.5rem;
}

.contact-detail-row {
	display: flex;
	gap: .75rem;
	margin-bottom: 1.25rem;
}

.contact-detail-icon {
	flex-shrink: 0;
	margin-top: .125rem;
}

.contact-detail-row strong {
	display: block;
	font-size: .875rem;
	color: var(--text-dark);
	margin-bottom: .25rem;
}

.contact-detail-row p {
	font-size: .9375rem;
	color: var(--text);
	line-height: 1.7;
}

.contact-checklist {
	list-style: none;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: .75rem;
}

.contact-checklist li {
	display: flex;
	align-items: center;
	gap: .625rem;
	font-size: .9375rem;
	color: var(--text);
}

.contact-form-wrap {
	max-width: 700px;
	margin: 0 auto;
}

/* Contact Map */
.contact-map-wrap {
	border-radius: var(--radius);
	overflow: hidden;
	max-width: 800px;
	margin: 0 auto;
}

.contact-map-wrap iframe {
	width: 100%;
	height: 400px;
	border: 0;
	display: block;
}

/* ===== CONTACT FORM ===== */
.abchc-contact-form {
	max-width: 700px;
	margin: 0 auto;
}

.form-row {
	display: grid;
	gap: 1rem;
	margin-bottom: 1rem;
}

.form-row-2 {
	grid-template-columns: 1fr;
}

.form-group {
	display: flex;
	flex-direction: column;
	gap: .375rem;
}

.form-group label {
	font-size: .875rem;
	font-weight: 600;
	color: var(--text-dark);
}

.form-group .required {
	color: #EF4444;
}

.form-group input,
.form-group select,
.form-group textarea {
	width: 100%;
	padding: .75rem 1rem;
	font-family: inherit;
	font-size: .9375rem;
	color: var(--text);
	background: var(--bg);
	border: 1.5px solid var(--border);
	border-radius: var(--radius-sm);
	outline: none;
	transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	border-color: var(--primary);
	box-shadow: 0 0 0 3px rgba(37, 99, 235, .1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
	color: var(--text-light);
	opacity: .7;
}

.form-group select {
	appearance: none;
	-webkit-appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%236B7280' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 1rem center;
	padding-right: 2.5rem;
	cursor: pointer;
}

.form-group textarea {
	resize: vertical;
	min-height: 120px;
}

.form-group input[type="file"] {
	padding: .5rem .75rem;
	cursor: pointer;
	font-size: .875rem;
}

/* Math CAPTCHA */
.form-row-captcha {
	max-width: 360px;
	margin-bottom: 0;
}

.captcha-group label {
	display: flex;
	align-items: center;
	gap: .375rem;
}

.captcha-icon {
	display: inline-flex;
}

.captcha-field {
	display: flex;
	align-items: center;
	gap: .75rem;
}

.captcha-question {
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--text-dark);
	white-space: nowrap;
	background: var(--primary-light);
	padding: .625rem 1rem;
	border-radius: var(--radius-sm);
	letter-spacing: .05em;
	user-select: none;
}

.captcha-field input {
	max-width: 100px;
	text-align: center;
	font-size: 1.125rem;
	font-weight: 600;
}

/* Remove number input spinners */
.captcha-field input::-webkit-outer-spin-button,
.captcha-field input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

.captcha-field input[type=number] {
	-moz-appearance: textfield;
	appearance: textfield;
}

.form-submit {
	margin-top: 1.5rem;
	text-align: center;
}

.form-submit button {
	min-width: 200px;
}

.form-submit button:disabled {
	opacity: .7;
	cursor: not-allowed;
	transform: none;
}

/* Spinner */
.form-submit .spinner {
	display: inline-block;
	width: 18px;
	height: 18px;
	border: 2px solid rgba(255,255,255,.3);
	border-top-color: #fff;
	border-radius: 50%;
	animation: abchc-spin .6s linear infinite;
	vertical-align: middle;
}

@keyframes abchc-spin {
	to { transform: rotate(360deg); }
}

/* Response messages */
.form-response {
	margin-top: 1.25rem;
	padding: 0;
	font-size: .9375rem;
	text-align: center;
	border-radius: var(--radius-sm);
	transition: all var(--transition);
}

.form-response:empty {
	display: none;
}

.form-response-success {
	display: block;
	padding: 1rem 1.5rem;
	background: var(--accent-light);
	color: #065F46;
	border: 1px solid #6EE7B7;
}

.form-response-error {
	display: block;
	padding: 1rem 1.5rem;
	background: #FEF2F2;
	color: #991B1B;
	border: 1px solid #FECACA;
}

/* ===== FEES / PRICING PAGE ===== */
.pricing-grid {
	display: grid;
	gap: 2rem;
	max-width: 800px;
	margin: 0 auto;
}

.pricing-card {
	background: var(--bg);
	border: 2px solid var(--border);
	border-radius: var(--radius);
	padding: 2.5rem 2rem;
	text-align: center;
	position: relative;
	transition: all var(--transition);
}

.pricing-card:hover {
	box-shadow: var(--shadow-lg);
}

.pricing-card-featured {
	border-color: var(--primary);
	box-shadow: 0 8px 30px rgba(37,99,235,.12);
}

.pricing-card-badge {
	display: inline-block;
	font-size: .75rem;
	font-weight: 700;
	color: #fff;
	background: var(--primary);
	padding: .375rem 1rem;
	border-radius: var(--radius-full);
	text-transform: uppercase;
	letter-spacing: .05em;
	margin-bottom: 1rem;
}

.pricing-badge-secondary {
	background: var(--accent);
}

.pricing-card-title {
	font-size: 1.25rem;
	font-weight: 600;
	color: var(--text-dark);
	margin-bottom: 1rem;
}

.pricing-card-amount {
	margin-bottom: .25rem;
}

.pricing-currency {
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--text-dark);
	vertical-align: top;
}

.pricing-value {
	font-size: 3.5rem;
	font-weight: 800;
	color: var(--text-dark);
	letter-spacing: -.02em;
	line-height: 1;
}

.pricing-card-period {
	font-size: .875rem;
	color: var(--text-light);
	margin-bottom: 2rem;
}

.pricing-features {
	list-style: none;
	padding: 0;
	text-align: left;
	display: flex;
	flex-direction: column;
	gap: .75rem;
	margin-bottom: 2rem;
}

.pricing-features li {
	display: flex;
	align-items: center;
	gap: .625rem;
	font-size: .9375rem;
	color: var(--text);
}

.pricing-features li svg {
	flex-shrink: 0;
}

/* Fees Info Grid */
.fees-info-grid {
	display: grid;
	gap: 1.5rem;
	max-width: 800px;
	margin: 0 auto;
}

/* Terms Box */
.terms-box {
	max-width: 800px;
	margin: 0 auto;
	background: #FFF7ED;
	border: 1px solid #FED7AA;
	border-radius: var(--radius);
	padding: 2rem;
}

.terms-title {
	display: flex;
	align-items: center;
	gap: .625rem;
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--text-dark);
	margin-bottom: 1.25rem;
}

.terms-list {
	list-style: none;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: .75rem;
}

.terms-list li {
	position: relative;
	padding-left: 1.5rem;
	font-size: .9375rem;
	color: var(--text);
	line-height: 1.7;
}

.terms-list li::before {
	content: '•';
	position: absolute;
	left: 0;
	color: #F59E0B;
	font-size: 1.25rem;
	line-height: 1.3;
}

.pagination-wrap {
	text-align: center;
}

.pagination-wrap .nav-links {
	display: flex;
	justify-content: center;
	gap: .5rem;
}

.pagination-wrap .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	padding: 0 .75rem;
	border-radius: var(--radius-sm);
	font-size: .875rem;
	font-weight: 500;
	color: var(--text);
	background: var(--bg);
	border: 1px solid var(--border);
	transition: all var(--transition);
}

.pagination-wrap .page-numbers.current,
.pagination-wrap .page-numbers:hover {
	background: var(--primary);
	color: #fff;
	border-color: var(--primary);
}

/* ===== RESPONSIVE — TABLET (768px) ===== */
@media (min-width: 768px) {
	.container {
		padding: 0 2rem;
	}

	.section-title {
		font-size: 2rem;
	}

	/* Hero */
	.hero-section {
		padding: calc(var(--header-h) + 3rem) 0 4rem;
	}

	.hero-grid {
		grid-template-columns: 1fr 1fr;
		gap: 3rem;
	}

	.hero-name {
		font-size: 2.5rem;
	}

	.hero-headline {
		font-size: 1.375rem;
	}

	/* Trust */
	.trust-grid {
		grid-template-columns: repeat(4, 1fr);
	}

	/* About */
	.about-section {
		padding: 5rem 0;
	}

	.about-grid.has-image {
		grid-template-columns: 1fr 1fr;
	}

	/* Services */
	.services-section {
		padding: 5rem 0;
	}

	.services-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 1.5rem;
	}

	/* Why Choose */
	.why-choose-section {
		padding: 5rem 0;
	}

	.why-choose-grid {
		grid-template-columns: 1fr 1fr;
	}

	/* Process */
	.process-section {
		padding: 5rem 0;
	}

	.process-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	/* Appointment */
	.appointment-section {
		padding: 5rem 0;
	}

	.appointment-title {
		font-size: 2rem;
	}

	/* Blog */
	.blog-section {
		padding: 5rem 0;
	}

	.blog-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	/* Final CTA */
	.final-cta-section {
		padding: 5rem 0;
	}

	.final-cta-message {
		font-size: 1.75rem;
	}

	/* Footer */
	.footer-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	/* Blog Page */
	.posts-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	/* Post Nav */
	.post-nav-grid {
		grid-template-columns: 1fr 1fr;
	}

	/* Related posts */
	.related-posts-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	/* Page hero */
	.page-hero-title {
		font-size: 2.5rem;
	}

	.page-hero-section {
		padding: calc(var(--header-h) + 3.5rem) 0 3rem;
	}

	/* Inner Pages */
	.inner-section {
		padding: 5rem 0;
	}

	.about-intro-grid {
		grid-template-columns: 1fr 1.2fr;
	}

	.mission-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.features-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.services-page-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.process-page-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.contact-cards-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.contact-info-layout {
		grid-template-columns: 1fr 1fr;
	}

	/* Contact form 2-col rows */
	.form-row-2 {
		grid-template-columns: 1fr 1fr;
	}

	.pricing-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* ===== RESPONSIVE — DESKTOP (1024px) ===== */
@media (min-width: 1024px) {
	/* Header */
	.main-nav {
		display: block;
	}

	.menu-toggle {
		display: none;
	}

	.header-cta-btn {
		display: inline-flex;
	}

	/* Hero */
	.hero-section {
		padding: calc(var(--header-h) + 4rem) 0 5rem;
	}

	.hero-name {
		font-size: 2.75rem;
	}

	.hero-headline {
		font-size: 1.5rem;
	}

	/* Services */
	.services-grid {
		grid-template-columns: repeat(4, 1fr);
	}

	/* Process */
	.process-grid {
		grid-template-columns: repeat(4, 1fr);
		position: relative;
	}

	.process-connector {
		display: block;
		position: absolute;
		top: 28px;
		left: calc(50% + 36px);
		width: calc(100% - 72px);
		height: 2px;
		background: var(--border);
	}

	.process-step {
		position: relative;
	}

	/* Blog */
	.blog-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	/* Footer */
	.footer-grid {
		grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
	}

	/* Posts */
	.posts-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	/* Blog sidebar layout */
	.blog-layout {
		grid-template-columns: 1fr 320px;
	}

	/* Posts inside sidebar layout: 2 cols */
	.blog-layout .posts-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	/* Related posts 3 cols */
	.related-posts-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	/* Sticky sidebar */
	.blog-sidebar {
		position: sticky;
		top: calc(var(--header-h) + 2rem);
		align-self: start;
	}

	/* Inner Pages Desktop */
	.features-grid {
		grid-template-columns: repeat(4, 1fr);
	}

	.services-page-grid {
		grid-template-columns: repeat(4, 1fr);
	}

	.process-page-grid {
		grid-template-columns: repeat(4, 1fr);
	}

	.contact-cards-grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

/* ===== RESPONSIVE — LARGE (1200px) ===== */
@media (min-width: 1200px) {
	.hero-section {
		padding: calc(var(--header-h) + 5rem) 0 6rem;
	}

	.hero-grid {
		gap: 4rem;
	}

	.hero-name {
		font-size: 3rem;
	}

	.services-section,
	.about-section,
	.why-choose-section,
	.process-section,
	.blog-section {
		padding: 6rem 0;
	}

	.appointment-section,
	.final-cta-section {
		padding: 5.5rem 0;
	}

	/* Inner Pages Large */
	.inner-section {
		padding: 6rem 0;
	}

	.inner-cta-section {
		padding: 5.5rem 0;
	}
}

/* ===== WP ADMIN BAR FIX ===== */
.admin-bar .site-header {
	top: 32px;
}

.admin-bar .main-nav.is-open {
	top: var(--header-h);
}

/* ===== COMMENTS ===== */
.comments-area {
	margin-top: 3rem;
	padding-top: 2.5rem;
	border-top: 2px solid var(--border);
}

.comments-title,
.comment-reply-title {
	font-size: 1.25rem;
	font-weight: var(--heading-weight);
	color: var(--text-dark);
	margin-bottom: 1.5rem;
}

/* Comment list */
.comment-list {
	list-style: none;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	margin-bottom: 2.5rem;
}

.comment-list .children {
	list-style: none;
	padding-left: 1.5rem;
	margin-top: 1.5rem;
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	border-left: 3px solid var(--primary-light);
}

.comment-item {
	background: var(--bg-alt);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 1.25rem;
}

.comment-body {
	display: flex;
	gap: 1rem;
}

.comment-author-avatar img {
	border-radius: var(--radius-full);
	width: 48px;
	height: 48px;
	object-fit: cover;
	flex-shrink: 0;
}

.comment-content-wrap {
	flex: 1;
	min-width: 0;
}

.comment-header {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: .5rem;
	margin-bottom: .5rem;
}

.comment-author-name {
	font-weight: 600;
	color: var(--text-dark);
	font-size: .9rem;
}

.comment-author-name a {
	color: inherit;
}

.comment-date {
	font-size: .8rem;
	color: var(--text-light);
}

.comment-awaiting-moderation {
	font-size: .8rem;
	color: var(--text-light);
	background: var(--bg-alt);
	padding: .125rem .5rem;
	border-radius: var(--radius-full);
}

.comment-text {
	font-size: .9rem;
	color: var(--text);
	line-height: var(--line-height);
}

.comment-text p:last-child {
	margin-bottom: 0;
}

.comment-reply {
	margin-top: .75rem;
}

.comment-reply-link {
	font-size: .8rem;
	font-weight: 600;
	color: var(--primary);
	text-decoration: none;
	transition: color var(--transition);
}

.comment-reply-link:hover {
	color: var(--primary-dark);
}

.comment-password-notice {
	padding: 1rem 1.25rem;
	background: var(--bg-alt);
	border: 1px solid var(--border);
	border-radius: var(--radius-sm);
	color: var(--text-light);
	font-size: .9rem;
}

/* Comment form */
.comment-form {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.comment-form label {
	display: block;
	font-size: .875rem;
	font-weight: 500;
	color: var(--text-dark);
	margin-bottom: .35rem;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
	width: 100%;
	padding: .65rem 1rem;
	border: 1.5px solid var(--border);
	border-radius: var(--radius-sm);
	font-family: var(--font-body);
	font-size: .9rem;
	color: var(--text-dark);
	background: var(--bg);
	transition: border-color var(--transition);
}

.comment-form input[type="text"]:focus,
.comment-form input[type="email"]:focus,
.comment-form input[type="url"]:focus,
.comment-form textarea:focus {
	outline: none;
	border-color: var(--primary);
}

.comment-form textarea {
	min-height: 140px;
	resize: vertical;
}

.comment-form .form-submit {
	margin-top: .5rem;
}

/* ===== AUTHOR BIO BOX ===== */
.author-bio-box {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	background: var(--bg-alt);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 1.75rem;
	margin-bottom: 2.5rem;
}

.author-bio-avatar {
	flex-shrink: 0;
}

.author-avatar-img {
	border-radius: var(--radius-full);
	width: 96px;
	height: 96px;
	object-fit: cover;
	display: block;
}

.author-bio-name {
	font-size: 1.375rem;
	font-weight: var(--heading-weight);
	color: var(--text-dark);
	margin-bottom: .4rem;
}

.author-bio-desc {
	font-size: .9rem;
	color: var(--text);
	line-height: var(--line-height);
	margin-bottom: .5rem;
}

.author-post-count {
	font-size: .8rem;
	font-weight: 600;
	color: var(--primary);
	background: var(--primary-light);
	display: inline-block;
	padding: .2rem .75rem;
	border-radius: var(--radius-full);
}

.admin-bar .hero-section,
.admin-bar .page-section,
.admin-bar .page-hero-section {
	padding-top: calc(var(--header-h) + 32px + 2rem);
}

@media screen and (max-width: 782px) {
	.admin-bar .site-header {
		top: 46px;
	}

	.admin-bar .hero-section,
	.admin-bar .page-section,
	.admin-bar .page-hero-section {
		padding-top: calc(var(--header-h) + 46px + 2rem);
	}
}

/* ===== ELEMENTOR COMPATIBILITY ===== */
.elementor-editor-active .site-header {
	position: relative;
}

/* ===== PRINT ===== */
@media print {
	.site-header,
	.site-footer,
	.menu-toggle,
	.header-cta-btn,
	.btn {
		display: none !important;
	}

	body {
		font-size: 12pt;
		line-height: 1.6;
		color: #000;
	}

	.container {
		max-width: 100%;
		padding: 0;
	}
}
