@charset "UTF-8";
/* ==========================================================================
   Ananda Endocrine & Retina Clinic
   Front end design system.

   1.  Tokens
   2.  Reset & base
   3.  Layout primitives
   4.  Typography & section headings
   5.  Buttons, chips, pills
   6.  Header
   7.  Page hero
   8.  Cards
   9.  Home page
   10. About page
   11. Services page
   12. Gallery & lightbox
   13. Health articles
   14. FAQ
   15. Contact & forms
   16. CTA band
   17. Footer
   18. Utilities, toast, floating actions
   19. Editor content (Gutenberg output)
   20. Responsive
   21. Accessibility & print
   ========================================================================== */

/* ==========================================================================
   1. Tokens
   ========================================================================== */

:root {
	/* Brand */
	--ac-primary: #3446A3;
	--ac-primary-dark: #273582;
	--ac-primary-soft: #EEF0FB;
	--ac-primary-softer: #F4F6FE;
	--ac-gold: #C9A45D;
	--ac-gold-soft: #F7EFE1;

	/* Surfaces */
	--ac-bg: #F5F1EA;
	--ac-bg-soft: #FBF7F1;
	--ac-white: #FFFFFF;

	/* Ink */
	--ac-text: #2E2E38;
	--ac-muted: #6D7280;
	--ac-border: #E6E8EF;
	--ac-border-strong: #D8DCE8;

	/* Feedback */
	--ac-success: #1F9254;
	--ac-error: #C0392B;
	--ac-whatsapp: #25D366;

	/* Radii */
	--ac-r-btn: 12px;
	--ac-r-card: 18px;
	--ac-r-input: 10px;
	--ac-r-gallery: 16px;
	--ac-r-hero: 24px;
	--ac-r-pill: 999px;

	/* Shadows */
	--ac-shadow: 0 8px 30px rgba(20, 35, 90, .08);
	--ac-shadow-sm: 0 2px 10px rgba(20, 35, 90, .06);
	--ac-shadow-lg: 0 18px 50px rgba(20, 35, 90, .14);

	/* Layout */
	--ac-container: 1240px;
	--ac-gutter: 32px;
	--ac-section: 80px;
	--ac-gap: 24px;

	/* Type */
	--ac-font: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	--ac-fs-body: 15px;
	--ac-lh-body: 1.75;

	/* Motion */
	--ac-ease: cubic-bezier(.22, .61, .36, 1);
	--ac-dur: .28s;
}

/* ==========================================================================
   2. Reset & base
   ========================================================================== */

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body.ac {
	margin: 0;
	background: var(--ac-white);
	color: var(--ac-text);
	font-family: var(--ac-font);
	font-size: var(--ac-fs-body);
	line-height: var(--ac-lh-body);
	font-weight: 400;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: hidden;
}

/*
 * Base element styling is wrapped in :where() so it carries no specificity.
 * Every component class below can therefore set its own colour, margin or
 * weight with a single class, which is what keeps the design predictable.
 */

.ac :where(img, svg, video, iframe) { max-width: 100%; }

.ac :where(img) { height: auto; display: block; }

.ac :where(a) { color: var(--ac-primary); text-decoration: none; transition: color var(--ac-dur) var(--ac-ease); }
.ac :where(a):hover { color: var(--ac-primary-dark); }

.ac :where(p) { margin: 0 0 16px; }
.ac :where(p):last-child { margin-bottom: 0; }

.ac :where(h1, h2, h3, h4, h5, h6) {
	margin: 0 0 12px;
	color: var(--ac-primary-dark);
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: -.01em;
}

.ac :where(ul, ol) { margin: 0 0 16px; padding-left: 20px; }
.ac :where(li) { margin-bottom: 6px; }

.ac :where(figure) { margin: 0; }

.ac :where(hr) { border: 0; border-top: 1px solid var(--ac-border); margin: 32px 0; }

.ac :where(button) { font-family: inherit; }

.ac-icon { flex: none; }

::selection { background: rgba(52, 70, 163, .14); }

/* ==========================================================================
   3. Layout primitives
   ========================================================================== */

.ac-container {
	width: 100%;
	max-width: calc(var(--ac-container) + (var(--ac-gutter) * 2));
	margin-inline: auto;
	padding-inline: var(--ac-gutter);
}

.ac-container--narrow { max-width: calc(900px + (var(--ac-gutter) * 2)); }
.ac-container--article { max-width: calc(820px + (var(--ac-gutter) * 2)); }

.ac-section { padding-block: var(--ac-section); }
.ac-section--tight { padding-block: 56px; }
.ac-section--cream { background: var(--ac-bg); }
.ac-section--soft { background: var(--ac-bg-soft); }
.ac-section--white { background: var(--ac-white); }
.ac-section--flush-top { padding-top: 0; }
.ac-section--flush-bottom { padding-bottom: 0; }

.ac-grid { display: grid; gap: var(--ac-gap); }
.ac-grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.ac-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.ac-grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.ac-stack { display: flex; flex-direction: column; }
.ac-row { display: flex; align-items: center; flex-wrap: wrap; gap: 12px; }
.ac-row--center { justify-content: center; }

.ac-skip-link {
	position: absolute;
	left: -9999px;
	top: 0;
	z-index: 999;
	background: var(--ac-primary);
	color: #fff;
	padding: 12px 20px;
	border-radius: 0 0 var(--ac-r-btn) 0;
}
.ac-skip-link:focus { left: 0; color: #fff; }

/* ==========================================================================
   4. Typography & section headings
   ========================================================================== */

.ac-eyebrow {
	margin: 0 0 10px;
	color: var(--ac-gold);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: .14em;
	text-transform: uppercase;
	line-height: 1.4;
}

.ac-sechead { margin-bottom: 40px; }
.ac-sechead--center { text-align: center; }
.ac-sechead--left { text-align: left; }

.ac-sechead__eyebrow {
	margin: 0 0 10px;
	color: var(--ac-gold);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: .14em;
	text-transform: uppercase;
}

.ac-sechead__title {
	margin: 0;
	font-size: 36px;
	font-weight: 700;
	line-height: 1.2;
	color: var(--ac-primary-dark);
}

.ac-sechead__sub {
	margin: 12px auto 0;
	max-width: 620px;
	color: var(--ac-muted);
	font-size: 15px;
	line-height: 1.7;
}

.ac-sechead--left .ac-sechead__sub { margin-inline: 0; }

.ac-sechead__rule {
	display: block;
	width: 44px;
	height: 3px;
	border-radius: 3px;
	background: var(--ac-gold);
	margin: 18px auto 0;
}

.ac-sechead--left .ac-sechead__rule { margin-inline: 0; }

.ac-lede { font-size: 16px; color: var(--ac-muted); line-height: 1.8; }

.ac-muted { color: var(--ac-muted); }
.ac-small { font-size: 13px; }

/* ==========================================================================
   5. Buttons, chips, pills
   ========================================================================== */

.ac-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	padding: 13px 24px;
	border: 1px solid transparent;
	border-radius: var(--ac-r-btn);
	font-size: 15px;
	font-weight: 600;
	line-height: 1.2;
	letter-spacing: 0;
	cursor: pointer;
	text-align: center;
	transition: background var(--ac-dur) var(--ac-ease), color var(--ac-dur) var(--ac-ease),
		border-color var(--ac-dur) var(--ac-ease), box-shadow var(--ac-dur) var(--ac-ease),
		transform var(--ac-dur) var(--ac-ease);
}

.ac-btn:hover { transform: translateY(-1px); }
.ac-btn:active { transform: translateY(0); }
.ac-btn__icon { flex: none; }

.ac-btn--primary { background: var(--ac-primary); color: #fff; box-shadow: 0 6px 18px rgba(52, 70, 163, .22); }
.ac-btn--primary:hover { background: var(--ac-primary-dark); color: #fff; box-shadow: 0 10px 24px rgba(39, 53, 130, .28); }

.ac-btn--outline { background: #fff; color: var(--ac-primary); border-color: var(--ac-border); }
.ac-btn--outline:hover { background: var(--ac-primary-softer); color: var(--ac-primary-dark); border-color: #C9CFEA; }

.ac-btn--ghost { background: transparent; color: var(--ac-primary); border-color: transparent; padding-inline: 6px; }
.ac-btn--ghost:hover { color: var(--ac-primary-dark); }

.ac-btn--light { background: #fff; color: var(--ac-primary-dark); }
.ac-btn--light:hover { background: #F2F4FD; color: var(--ac-primary-dark); }

.ac-btn--onblue { background: rgba(255, 255, 255, .12); color: #fff; border-color: rgba(255, 255, 255, .35); }
.ac-btn--onblue:hover { background: rgba(255, 255, 255, .2); color: #fff; border-color: rgba(255, 255, 255, .55); }

.ac-btn--gold { background: var(--ac-gold); color: #fff; }
.ac-btn--gold:hover { background: #B8924C; color: #fff; }

.ac-btn--sm { padding: 10px 18px; font-size: 14px; }
.ac-btn--lg { padding: 15px 30px; font-size: 16px; }
.ac-btn--block { display: flex; width: 100%; }

.ac-link {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	font-size: 14px;
	font-weight: 600;
	color: var(--ac-primary);
}
.ac-link .ac-icon { transition: transform var(--ac-dur) var(--ac-ease); }
.ac-link:hover .ac-icon { transform: translateX(3px); }

.ac-chip {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 7px 15px;
	border: 1px solid var(--ac-border);
	border-radius: var(--ac-r-pill);
	background: #fff;
	color: var(--ac-text);
	font-size: 13px;
	font-weight: 500;
	line-height: 1.3;
	cursor: pointer;
	transition: all var(--ac-dur) var(--ac-ease);
}
.ac-chip:hover { border-color: #C3CAE8; color: var(--ac-primary); }
.ac-chip.is-active,
.ac-chip[aria-selected="true"] { background: var(--ac-primary); border-color: var(--ac-primary); color: #fff; }
.ac-chip__count { opacity: .65; font-size: 12px; }

.ac-chips { display: flex; flex-wrap: wrap; gap: 10px; }

.ac-tag {
	display: inline-flex;
	align-items: center;
	padding: 5px 12px;
	border-radius: var(--ac-r-pill);
	background: var(--ac-primary-soft);
	color: var(--ac-primary);
	font-size: 12px;
	font-weight: 500;
	line-height: 1.4;
}

.ac-stars { display: inline-flex; gap: 2px; color: #D9DCE6; }
.ac-star.is-on { color: var(--ac-gold); }
.ac-star svg { display: block; fill: currentColor; stroke: none; }

/* ==========================================================================
   6. Header
   ========================================================================== */

.ac-header {
	position: relative;
	z-index: 90;
	background: #fff;
	border-bottom: 1px solid rgba(230, 232, 239, .9);
}

.ac-header.is-sticky { position: sticky; top: 0; }
body.admin-bar .ac-header.is-sticky { top: 32px; }

.ac-header.is-scrolled { box-shadow: 0 4px 20px rgba(20, 35, 90, .07); }

.ac-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	min-height: 72px;
}

.ac-brand { display: inline-flex; align-items: center; gap: 11px; }
.ac-brand__mark { width: 42px; height: 42px; flex: none; }
.ac-brand__mark img,
.ac-brand__mark svg { width: 100%; height: 100%; object-fit: contain; }
.ac-brand__text { display: flex; flex-direction: column; gap: 1px; }
.ac-brand__name {
	font-size: 17px;
	font-weight: 700;
	letter-spacing: .06em;
	color: var(--ac-primary);
	line-height: 1.1;
}
.ac-brand__tag {
	font-size: 8.5px;
	font-weight: 500;
	letter-spacing: .13em;
	color: #8A90A6;
	text-transform: uppercase;
	line-height: 1.2;
}
.ac-brand__logo { max-height: 46px; width: auto; }

.ac-nav { display: flex; align-items: center; }
.ac-nav__list { display: flex; align-items: center; gap: 30px; margin: 0; padding: 0; list-style: none; }
.ac-nav__list li { margin: 0; position: relative; }

.ac-nav__list a {
	display: inline-block;
	padding: 8px 0;
	color: var(--ac-text);
	font-size: 15px;
	font-weight: 500;
	line-height: 1.4;
	position: relative;
}
.ac-nav__list a::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 2px;
	border-radius: 2px;
	background: var(--ac-gold);
	transform: scaleX(0);
	transform-origin: center;
	transition: transform var(--ac-dur) var(--ac-ease);
}
.ac-nav__list a:hover { color: var(--ac-primary); }
.ac-nav__list a:hover::after,
.ac-nav__list .current-menu-item > a::after,
.ac-nav__list .current_page_item > a::after,
.ac-nav__list .current-menu-parent > a::after,
.ac-nav__list .current_page_parent > a::after { transform: scaleX(1); }
.ac-nav__list .current-menu-item > a,
.ac-nav__list .current_page_item > a { color: var(--ac-primary); }

/* Sub menus */
.ac-nav__list .sub-menu {
	position: absolute;
	top: 100%;
	left: -16px;
	min-width: 230px;
	margin: 0;
	padding: 10px;
	list-style: none;
	background: #fff;
	border: 1px solid var(--ac-border);
	border-radius: 14px;
	box-shadow: var(--ac-shadow);
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: all var(--ac-dur) var(--ac-ease);
	z-index: 20;
}
.ac-nav__list li:hover > .sub-menu,
.ac-nav__list li:focus-within > .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.ac-nav__list .sub-menu a { display: block; padding: 9px 12px; border-radius: 8px; font-size: 14px; }
.ac-nav__list .sub-menu a::after { display: none; }
.ac-nav__list .sub-menu a:hover { background: var(--ac-primary-softer); }

.ac-header__actions { display: flex; align-items: center; gap: 12px; }

.ac-burger {
	display: none;
	width: 44px;
	height: 44px;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--ac-border);
	border-radius: var(--ac-r-input);
	background: #fff;
	color: var(--ac-primary-dark);
	cursor: pointer;
}

.ac-mobile-nav {
	display: none;
	border-top: 1px solid var(--ac-border);
	background: #fff;
	padding: 8px 0 20px;
}
.ac-mobile-nav.is-open { display: block; }
.ac-mobile-nav ul { list-style: none; margin: 0; padding: 0; }
.ac-mobile-nav li { border-bottom: 1px solid #F1F2F7; }
.ac-mobile-nav li:last-child { border-bottom: 0; }
.ac-mobile-nav a { display: block; padding: 13px 2px; font-size: 15px; font-weight: 500; color: var(--ac-text); }
.ac-mobile-nav .sub-menu a { padding-left: 18px; font-size: 14px; color: var(--ac-muted); }
.ac-mobile-nav__cta { margin-top: 16px; }

/* ==========================================================================
   7. Page hero
   ========================================================================== */

.ac-pagehero {
	position: relative;
	overflow: hidden;
	background: var(--ac-primary-dark);
	color: #fff;
	padding-block: 46px 48px;
	isolation: isolate;
}

.ac-pagehero__bg {
	position: absolute;
	inset: 0;
	z-index: -2;
}
.ac-pagehero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }

.ac-pagehero::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background: linear-gradient(90deg, #273582 0%, #2B3789 42%, rgba(43, 55, 137, .82) 68%, rgba(52, 70, 163, .72) 100%);
}

.ac-pagehero__title {
	margin: 0;
	color: #fff;
	font-size: 34px;
	font-weight: 700;
	line-height: 1.15;
	letter-spacing: -.015em;
}

.ac-pagehero__sub {
	margin: 12px 0 0;
	max-width: 560px;
	color: rgba(255, 255, 255, .82);
	font-size: 14.5px;
	line-height: 1.7;
}

.ac-crumbs {
	margin: 0 0 14px;
	font-size: 12.5px;
	color: rgba(255, 255, 255, .7);
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
}
.ac-crumbs a { color: rgba(255, 255, 255, .85); }
.ac-crumbs a:hover { color: #fff; }
.ac-crumbs span[aria-hidden] { opacity: .5; }

/* ==========================================================================
   8. Cards
   ========================================================================== */

.ac-card {
	position: relative;
	display: flex;
	flex-direction: column;
	background: #fff;
	border: 1px solid var(--ac-border);
	border-radius: var(--ac-r-card);
	box-shadow: var(--ac-shadow);
	transition: transform var(--ac-dur) var(--ac-ease), box-shadow var(--ac-dur) var(--ac-ease), border-color var(--ac-dur) var(--ac-ease);
}

.ac-card--hover:hover { transform: translateY(-4px); box-shadow: var(--ac-shadow-lg); border-color: #D5DAF0; }
.ac-card--flat { box-shadow: none; }
.ac-card__body { padding: 24px; }

.ac-iconbox {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: 12px;
	background: var(--ac-primary-soft);
	color: var(--ac-primary);
	margin-bottom: 16px;
}
.ac-iconbox--gold { background: var(--ac-gold-soft); color: var(--ac-gold); }
.ac-iconbox--round { border-radius: var(--ac-r-pill); }

/* Service card */
.ac-service {
	padding: 24px;
	background: #fff;
	border: 1px solid var(--ac-border);
	border-radius: var(--ac-r-card);
	box-shadow: var(--ac-shadow);
	display: flex;
	flex-direction: column;
	height: 100%;
	transition: transform var(--ac-dur) var(--ac-ease), box-shadow var(--ac-dur) var(--ac-ease), border-color var(--ac-dur) var(--ac-ease);
}
.ac-service:hover { transform: translateY(-4px); box-shadow: var(--ac-shadow-lg); border-color: #D5DAF0; }
.ac-service__title { margin: 0 0 8px; font-size: 16px; font-weight: 600; line-height: 1.4; color: var(--ac-primary); }
.ac-service__title a { color: inherit; }
.ac-service__desc { margin: 0; color: var(--ac-muted); font-size: 13.5px; line-height: 1.65; }
.ac-service__more { margin-top: auto; padding-top: 16px; }

/* Compact service row used on the Services page */
.ac-srv {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 14px;
	padding: 18px 20px;
	background: #fff;
	border: 1px solid var(--ac-border);
	border-radius: 14px;
	box-shadow: var(--ac-shadow-sm);
	height: 100%;
	transition: transform var(--ac-dur) var(--ac-ease), box-shadow var(--ac-dur) var(--ac-ease), border-color var(--ac-dur) var(--ac-ease);
}
.ac-srv:hover { transform: translateY(-3px); box-shadow: var(--ac-shadow); border-color: #D5DAF0; }
.ac-srv__title { margin: 0 0 6px; font-size: 14.5px; font-weight: 600; line-height: 1.45; color: var(--ac-primary); }
.ac-srv__title a { color: inherit; }
.ac-srv__desc { margin: 0; font-size: 12.5px; line-height: 1.6; color: var(--ac-muted); }
.ac-srv__arrow { flex: none; color: #B9C0DC; margin-top: 2px; transition: transform var(--ac-dur) var(--ac-ease), color var(--ac-dur) var(--ac-ease); }
.ac-srv:hover .ac-srv__arrow { color: var(--ac-primary); transform: translateX(3px); }

/* Doctor card */
.ac-doctor {
	display: flex;
	flex-direction: column;
	background: #fff;
	border: 1px solid var(--ac-border);
	border-radius: var(--ac-r-card);
	box-shadow: var(--ac-shadow);
	overflow: hidden;
	height: 100%;
	transition: transform var(--ac-dur) var(--ac-ease), box-shadow var(--ac-dur) var(--ac-ease);
}
.ac-doctor:hover { transform: translateY(-4px); box-shadow: var(--ac-shadow-lg); }
.ac-doctor__media { padding: 20px 20px 0; }
.ac-doctor__media img { width: 100%; aspect-ratio: 4 / 4.6; object-fit: cover; object-position: top center; border-radius: 14px; background: var(--ac-bg); }
.ac-doctor__body { padding: 20px 24px 24px; display: flex; flex-direction: column; flex: 1; }
.ac-doctor__name { margin: 0 0 3px; font-size: 20px; font-weight: 700; color: var(--ac-primary-dark); }
.ac-doctor__name a { color: inherit; }
.ac-doctor__role { margin: 0 0 12px; font-size: 12.5px; font-weight: 500; color: var(--ac-gold); }
.ac-doctor__role--blue { color: var(--ac-primary); }
.ac-doctor__intro { margin: 0 0 14px; font-size: 13.5px; line-height: 1.65; color: var(--ac-muted); }
.ac-doctor__time {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	color: var(--ac-text);
	margin-bottom: 14px;
}
.ac-doctor__time .ac-icon { color: var(--ac-primary); }
.ac-doctor__more { margin-top: auto; }

/* Award card */
.ac-award {
	display: flex;
	flex-direction: column;
	gap: 4px;
	padding: 22px;
	background: #fff;
	border: 1px solid var(--ac-border);
	border-radius: var(--ac-r-card);
	box-shadow: var(--ac-shadow);
	height: 100%;
}
.ac-award__title { margin: 12px 0 4px; font-size: 14.5px; font-weight: 600; color: var(--ac-primary-dark); line-height: 1.45; }
.ac-award__desc { margin: 0 0 12px; font-size: 12.5px; line-height: 1.6; color: var(--ac-muted); }
.ac-award__doctor { margin: auto 0 0; font-size: 10.5px; letter-spacing: .1em; text-transform: uppercase; color: #9AA0B4; font-weight: 500; }

/* Testimonial card */
.ac-review {
	display: flex;
	flex-direction: column;
	gap: 12px;
	padding: 24px;
	background: #fff;
	border: 1px solid var(--ac-border);
	border-radius: var(--ac-r-card);
	box-shadow: var(--ac-shadow);
	height: 100%;
}
.ac-review__head { display: flex; align-items: center; gap: 10px; }
.ac-review__mark {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	border-radius: 8px;
	background: var(--ac-gold-soft);
	color: var(--ac-gold);
	flex: none;
}
.ac-review__name { font-size: 14.5px; font-weight: 600; color: var(--ac-primary-dark); margin: 0; flex: 1; }
.ac-review__text { margin: 0; font-size: 13.5px; line-height: 1.75; color: var(--ac-muted); }
.ac-review__src { margin: auto 0 0; font-size: 11.5px; color: #9AA0B4; }

/* Article card */
.ac-article {
	display: flex;
	flex-direction: column;
	background: #fff;
	border: 1px solid var(--ac-border);
	border-radius: var(--ac-r-card);
	box-shadow: var(--ac-shadow);
	overflow: hidden;
	height: 100%;
	transition: transform var(--ac-dur) var(--ac-ease), box-shadow var(--ac-dur) var(--ac-ease);
}
.ac-article:hover { transform: translateY(-4px); box-shadow: var(--ac-shadow-lg); }
.ac-article__media { display: block; overflow: hidden; background: var(--ac-bg); }
.ac-article__media img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; transition: transform .5s var(--ac-ease); }
.ac-article:hover .ac-article__media img { transform: scale(1.04); }
.ac-article__body { padding: 20px 22px 22px; display: flex; flex-direction: column; flex: 1; gap: 10px; align-items: flex-start; }
.ac-article__body > * { width: 100%; }
.ac-article__body > .ac-tag { width: auto; }
.ac-article__title { margin: 0; font-size: 17px; font-weight: 600; line-height: 1.4; color: var(--ac-primary); }
.ac-article__title a { color: inherit; }
.ac-article__excerpt { margin: 0; font-size: 13.5px; line-height: 1.7; color: var(--ac-muted); }
.ac-article__meta {
	margin-top: auto;
	padding-top: 8px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	flex-wrap: wrap;
	font-size: 12.5px;
	color: var(--ac-muted);
}
.ac-article__author { font-weight: 600; color: var(--ac-primary-dark); }
.ac-article__time { display: inline-flex; align-items: center; gap: 5px; }

/* Stat card */
.ac-stat {
	padding: 22px 24px;
	background: #fff;
	border: 1px solid var(--ac-border);
	border-radius: var(--ac-r-card);
	box-shadow: var(--ac-shadow);
	height: 100%;
}
.ac-stat__value { display: block; font-size: 30px; font-weight: 700; line-height: 1.1; color: var(--ac-primary-dark); margin-bottom: 8px; }
.ac-stat__label { display: block; font-size: 13.5px; font-weight: 600; color: var(--ac-text); margin-bottom: 6px; }
.ac-stat__desc { margin: 0; font-size: 12.5px; line-height: 1.6; color: var(--ac-muted); }

/* ==========================================================================
   9. Home page
   ========================================================================== */

.ac-hero {
	position: relative;
	overflow: hidden;
	background: var(--ac-primary-dark);
	color: #fff;
}

.ac-hero__track { position: relative; }

.ac-hero__slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	visibility: hidden;
	transition: opacity .7s var(--ac-ease);
	display: flex;
	align-items: center;
}
.ac-hero__slide.is-active { position: relative; opacity: 1; visibility: visible; z-index: 2; }

.ac-hero__bg { position: absolute; inset: 0; z-index: 0; }
.ac-hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: 70% center; }
.ac-hero__bg::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(30, 42, 105, .95) 0%, rgba(33, 46, 114, .9) 34%, rgba(37, 50, 121, .62) 62%, rgba(40, 54, 128, .3) 100%);
}

.ac-hero__inner {
	position: relative;
	z-index: 2;
	width: 100%;
	padding-block: 92px 116px;
	min-height: 520px;
	display: flex;
	align-items: center;
}

.ac-hero__content { max-width: 560px; }

/* When a slide has a doctor portrait the hero becomes a two column layout. */
.ac-hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, .78fr);
	gap: 32px;
	align-items: end;
}
.ac-hero__grid .ac-hero__content { max-width: 100%; }
.ac-hero__figure { align-self: end; display: flex; justify-content: flex-end; }
.ac-hero__figure img {
	width: auto;
	max-width: 100%;
	max-height: 420px;
	object-fit: contain;
	object-position: bottom right;
	filter: drop-shadow(0 24px 48px rgba(10, 16, 45, .35));
}

.ac-hero__eyebrow {
	margin: 0 0 14px;
	color: var(--ac-gold);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: .16em;
	text-transform: uppercase;
}

.ac-hero__title {
	margin: 0 0 16px;
	color: #fff;
	font-size: 46px;
	font-weight: 700;
	line-height: 1.14;
	letter-spacing: -.02em;
}

.ac-hero__sub {
	margin: 0 0 28px;
	max-width: 480px;
	color: rgba(255, 255, 255, .84);
	font-size: 15.5px;
	line-height: 1.7;
}

.ac-hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }

.ac-hero__arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 5;
	width: 38px;
	height: 38px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: var(--ac-r-pill);
	border: 1px solid rgba(255, 255, 255, .3);
	background: rgba(255, 255, 255, .12);
	color: #fff;
	cursor: pointer;
	transition: background var(--ac-dur) var(--ac-ease);
	backdrop-filter: blur(4px);
}
.ac-hero__arrow:hover { background: rgba(255, 255, 255, .25); }

/*
 * Sit the arrows in the gutter beside the container so they never cover the
 * headline. Below 1200px there is no gutter left, so they drop down and flank
 * the dots instead.
 */
.ac-hero__arrow--prev { left: calc(50% - (var(--ac-container) / 2) - 52px); }
.ac-hero__arrow--next { right: calc(50% - (var(--ac-container) / 2) - 52px); }

.ac-hero__dots {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 92px;
	z-index: 5;
	display: flex;
	justify-content: center;
	gap: 8px;
}
.ac-dot {
	width: 8px;
	height: 8px;
	padding: 0;
	border: 0;
	border-radius: var(--ac-r-pill);
	background: rgba(255, 255, 255, .45);
	cursor: pointer;
	transition: all var(--ac-dur) var(--ac-ease);
}
.ac-dot.is-active { width: 26px; background: var(--ac-gold); }

/* Feature cards overlapping the hero */
.ac-features { position: relative; z-index: 6; margin-top: -68px; }
.ac-features__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.ac-feature {
	background: #fff;
	border: 1px solid var(--ac-border);
	border-radius: var(--ac-r-card);
	box-shadow: var(--ac-shadow);
	padding: 22px 24px;
	transition: transform var(--ac-dur) var(--ac-ease), box-shadow var(--ac-dur) var(--ac-ease);
}
.ac-feature:hover { transform: translateY(-4px); box-shadow: var(--ac-shadow-lg); }
.ac-feature__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 10px;
	background: var(--ac-primary-soft);
	color: var(--ac-primary);
	margin-bottom: 14px;
}
.ac-feature__title { margin: 0 0 6px; font-size: 15px; font-weight: 600; color: var(--ac-primary); }
.ac-feature__desc { margin: 0; font-size: 12.5px; line-height: 1.65; color: var(--ac-muted); }

/* Sliders (testimonials) */
.ac-slider { position: relative; }
.ac-slider__viewport { overflow: hidden; }
.ac-slider__track {
	display: flex;
	gap: var(--ac-gap);
	transition: transform .55s var(--ac-ease);
	will-change: transform;
}
.ac-slider__item { flex: 0 0 calc((100% - (var(--ac-gap) * 2)) / 3); min-width: 0; }
.ac-slider__nav { display: flex; justify-content: center; align-items: center; gap: 10px; margin-top: 28px; }
.ac-slider__dots { display: flex; gap: 7px; }
.ac-slider__dots .ac-dot { background: #D6D9E6; }
.ac-slider__dots .ac-dot.is-active { background: var(--ac-gold); }
.ac-slider__arrow {
	width: 38px;
	height: 38px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: var(--ac-r-pill);
	border: 1px solid var(--ac-border);
	background: #fff;
	color: var(--ac-primary);
	cursor: pointer;
	transition: all var(--ac-dur) var(--ac-ease);
}
.ac-slider__arrow:hover { background: var(--ac-primary); color: #fff; border-color: var(--ac-primary); }
.ac-slider__arrow[disabled] { opacity: .4; cursor: default; }

/* ==========================================================================
   10. About page
   ========================================================================== */

.ac-about__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1.12fr);
	gap: 56px;
	align-items: start;
}
.ac-about__media img { width: 100%; border-radius: var(--ac-r-hero); box-shadow: var(--ac-shadow); }
.ac-about__body p { color: var(--ac-muted); font-size: 14.5px; line-height: 1.85; margin-bottom: 18px; }

.ac-profile { padding-block: 64px; }
.ac-profile--cream { background: var(--ac-bg); }
.ac-profile__grid {
	display: grid;
	grid-template-columns: 300px minmax(0, 1fr);
	gap: 44px;
	align-items: start;
}
.ac-profile--right .ac-profile__grid { grid-template-columns: minmax(0, 1fr) 300px; }
.ac-profile--right .ac-profile__media { order: 2; }
.ac-profile__media img { width: 100%; aspect-ratio: 4 / 4.6; object-fit: cover; object-position: top center; border-radius: var(--ac-r-card); box-shadow: var(--ac-shadow); }
.ac-profile__eyebrow { margin: 0 0 8px; font-size: 11.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--ac-gold); font-weight: 600; }
.ac-profile__name { margin: 0 0 4px; font-size: 30px; font-weight: 700; color: var(--ac-primary-dark); }
.ac-profile__role { margin: 0 0 16px; font-size: 13.5px; color: var(--ac-primary); }
.ac-profile__rule { display: block; width: 44px; height: 3px; border-radius: 3px; background: var(--ac-gold); margin-bottom: 20px; }
.ac-profile__bio { font-size: 14px; line-height: 1.85; color: var(--ac-muted); }
.ac-profile__time { display: inline-flex; align-items: center; gap: 8px; margin: 16px 0 24px; font-size: 13.5px; color: var(--ac-text); }
.ac-profile__time .ac-icon { color: var(--ac-primary); }

.ac-deflist__title {
	margin: 0 0 12px;
	font-size: 11.5px;
	font-weight: 600;
	letter-spacing: .13em;
	text-transform: uppercase;
	color: var(--ac-gold);
}
.ac-deflist { margin-bottom: 24px; }
.ac-deflist ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.ac-deflist--2 ul { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 9px 28px; }
.ac-deflist li { display: flex; align-items: flex-start; gap: 9px; margin: 0; font-size: 13.5px; line-height: 1.6; color: var(--ac-text); }
.ac-deflist li .ac-icon { color: var(--ac-primary); margin-top: 3px; }
.ac-deflist--dots li::before {
	content: "";
	width: 6px;
	height: 6px;
	margin-top: 8px;
	border-radius: 50%;
	background: var(--ac-gold);
	flex: none;
}

/* ==========================================================================
   11. Services page
   ========================================================================== */

.ac-dept-picker { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.ac-dept {
	display: flex;
	gap: 16px;
	padding: 24px;
	background: #fff;
	border: 1px solid var(--ac-border);
	border-radius: var(--ac-r-card);
	box-shadow: var(--ac-shadow);
	text-align: left;
	transition: transform var(--ac-dur) var(--ac-ease), box-shadow var(--ac-dur) var(--ac-ease), border-color var(--ac-dur) var(--ac-ease);
}
.ac-dept:hover { transform: translateY(-4px); box-shadow: var(--ac-shadow-lg); border-color: #D5DAF0; }
.ac-dept__title { margin: 0 0 6px; font-size: 16px; font-weight: 600; color: var(--ac-primary); }
.ac-dept__desc { margin: 0 0 14px; font-size: 13px; line-height: 1.65; color: var(--ac-muted); }
.ac-dept__links { display: flex; align-items: center; gap: 16px; font-size: 13px; font-weight: 600; }

.ac-deptblock { padding-block: var(--ac-section); }
.ac-deptblock--cream { background: var(--ac-bg); }
.ac-deptblock__head { margin-bottom: 36px; max-width: 720px; }
.ac-deptblock__title { margin: 0 0 10px; font-size: 32px; font-weight: 700; color: var(--ac-primary-dark); }
.ac-deptblock__sub { margin: 0 0 14px; font-size: 14.5px; line-height: 1.75; color: var(--ac-muted); }
.ac-deptblock__doctor { font-size: 13px; color: var(--ac-muted); }
.ac-deptblock__doctor strong { color: var(--ac-primary-dark); font-weight: 600; }
.ac-deptblock__rule { display: block; width: 44px; height: 3px; border-radius: 3px; background: var(--ac-gold); margin: 16px 0 0; }

.ac-group { margin-bottom: 36px; }
.ac-group:last-child { margin-bottom: 0; }
.ac-group__title {
	margin: 0 0 16px;
	font-size: 16.5px;
	font-weight: 600;
	color: var(--ac-primary);
	display: flex;
	align-items: center;
	gap: 12px;
}
.ac-group__title::after { content: ""; flex: 1; height: 1px; background: var(--ac-border); }
.ac-group__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }

.ac-diag-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 16px; }
.ac-diag {
	padding: 22px 18px;
	border-radius: var(--ac-r-card);
	background: linear-gradient(160deg, #3A4BAA 0%, #2C3A8E 100%);
	color: #fff;
	box-shadow: var(--ac-shadow);
	display: flex;
	flex-direction: column;
	gap: 8px;
	min-height: 140px;
}
.ac-diag__tag {
	align-self: flex-start;
	font-size: 9.5px;
	letter-spacing: .12em;
	text-transform: uppercase;
	padding: 4px 9px;
	border-radius: var(--ac-r-pill);
	background: rgba(255, 255, 255, .16);
	color: rgba(255, 255, 255, .92);
}
.ac-diag__title { margin: auto 0 0; font-size: 14px; font-weight: 600; color: #fff; line-height: 1.4; }
.ac-diag__desc { margin: 0; font-size: 12px; line-height: 1.55; color: rgba(255, 255, 255, .78); }

.ac-support-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.ac-support { padding: 26px; background: #fff; border: 1px solid var(--ac-border); border-radius: var(--ac-r-card); box-shadow: var(--ac-shadow); height: 100%; }
.ac-support__title { margin: 14px 0 8px; font-size: 16px; font-weight: 600; color: var(--ac-primary); }
.ac-support__desc { margin: 0; font-size: 13.5px; line-height: 1.7; color: var(--ac-muted); }

/* Single service */
.ac-service-single__grid { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 44px; align-items: start; }
.ac-aside {
	position: sticky;
	top: 100px;
	padding: 24px;
	background: var(--ac-bg);
	border: 1px solid var(--ac-border);
	border-radius: var(--ac-r-card);
}
.ac-aside__title { margin: 0 0 14px; font-size: 15px; font-weight: 600; color: var(--ac-primary-dark); }
.ac-aside__list { list-style: none; margin: 0 0 18px; padding: 0; display: grid; gap: 8px; }
.ac-aside__list a { display: block; font-size: 13.5px; color: var(--ac-text); padding: 8px 12px; border-radius: 8px; background: #fff; border: 1px solid var(--ac-border); }
.ac-aside__list a:hover { color: var(--ac-primary); border-color: #C9CFEA; }

/* ==========================================================================
   12. Gallery & lightbox
   ========================================================================== */

.ac-gallery { column-count: 4; column-gap: 20px; }
.ac-gallery[data-columns="3"] { column-count: 3; }
.ac-gallery[data-columns="2"] { column-count: 2; }

.ac-gallery__item {
	break-inside: avoid;
	margin: 0 0 20px;
	border-radius: var(--ac-r-gallery);
	overflow: hidden;
	background: var(--ac-bg);
	display: block;
	width: 100%;
	padding: 0;
	border: 0;
	cursor: zoom-in;
	position: relative;
	box-shadow: var(--ac-shadow-sm);
	transition: transform var(--ac-dur) var(--ac-ease), box-shadow var(--ac-dur) var(--ac-ease);
}
.ac-gallery__item:hover { transform: translateY(-3px); box-shadow: var(--ac-shadow); }
.ac-gallery__item img { width: 100%; display: block; }
.ac-gallery__item figcaption {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 26px 16px 12px;
	background: linear-gradient(180deg, rgba(20, 28, 66, 0) 0%, rgba(20, 28, 66, .78) 100%);
	color: #fff;
	font-size: 12.5px;
	text-align: left;
	opacity: 0;
	transition: opacity var(--ac-dur) var(--ac-ease);
}
.ac-gallery__item:hover figcaption { opacity: 1; }
.ac-gallery.is-loading { opacity: .45; transition: opacity .2s linear; }

.ac-lightbox {
	position: fixed;
	inset: 0;
	z-index: 1000;
	display: none;
	align-items: center;
	justify-content: center;
	background: rgba(14, 20, 48, .92);
	padding: 32px;
}
.ac-lightbox.is-open { display: flex; }
.ac-lightbox__figure { margin: 0; max-width: min(1100px, 92vw); max-height: 88vh; display: flex; flex-direction: column; gap: 14px; }
.ac-lightbox__img { max-width: 100%; max-height: 78vh; width: auto; margin: 0 auto; border-radius: var(--ac-r-gallery); object-fit: contain; }
.ac-lightbox__cap { color: rgba(255, 255, 255, .82); font-size: 13.5px; text-align: center; }
.ac-lightbox__btn {
	position: absolute;
	width: 46px;
	height: 46px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: var(--ac-r-pill);
	border: 1px solid rgba(255, 255, 255, .28);
	background: rgba(255, 255, 255, .12);
	color: #fff;
	cursor: pointer;
	transition: background var(--ac-dur) var(--ac-ease);
}
.ac-lightbox__btn:hover { background: rgba(255, 255, 255, .26); }
.ac-lightbox__btn--close { top: 24px; right: 24px; }
.ac-lightbox__btn--prev { left: 24px; top: 50%; transform: translateY(-50%); }
.ac-lightbox__btn--next { right: 24px; top: 50%; transform: translateY(-50%); }
.ac-lightbox__count { position: absolute; bottom: 24px; left: 0; right: 0; text-align: center; color: rgba(255, 255, 255, .6); font-size: 12.5px; }

/* ==========================================================================
   13. Health articles
   ========================================================================== */

.ac-featured {
	display: grid;
	grid-template-columns: minmax(0, .84fr) minmax(0, 1fr);
	background: #fff;
	border: 1px solid var(--ac-border);
	border-radius: var(--ac-r-card);
	box-shadow: var(--ac-shadow);
	overflow: hidden;
}
.ac-featured__media img { width: 100%; height: 100%; object-fit: cover; min-height: 300px; }
.ac-featured__body { padding: 36px 40px; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; gap: 14px; }
.ac-featured__body > * { width: 100%; }
.ac-featured__body > .ac-tag { width: auto; }
.ac-featured__title { margin: 0; font-size: 28px; font-weight: 700; line-height: 1.25; color: var(--ac-primary); }
.ac-featured__title a { color: inherit; }
.ac-featured__excerpt { margin: 0; font-size: 14.5px; line-height: 1.75; color: var(--ac-muted); }
.ac-featured__meta { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; font-size: 13px; color: var(--ac-muted); }
.ac-meta-sep { opacity: .45; }

.ac-post-count { margin: 18px 0 24px; font-size: 13.5px; color: var(--ac-muted); }

.ac-pagination { margin-top: 44px; display: flex; justify-content: center; }
.ac-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	padding: 0 12px;
	margin: 0 4px;
	border: 1px solid var(--ac-border);
	border-radius: var(--ac-r-input);
	background: #fff;
	color: var(--ac-text);
	font-size: 14px;
	font-weight: 500;
}
.ac-pagination .page-numbers.current,
.ac-pagination .page-numbers:hover { background: var(--ac-primary); border-color: var(--ac-primary); color: #fff; }

/* Single article */
.ac-single__head { max-width: 820px; }
.ac-single__title { margin: 0 0 14px; font-size: 36px; line-height: 1.2; color: var(--ac-primary-dark); }
.ac-single__meta { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; font-size: 13.5px; color: var(--ac-muted); }
.ac-single__cover { margin: 32px 0 36px; }
.ac-single__cover img { width: 100%; border-radius: var(--ac-r-hero); box-shadow: var(--ac-shadow); }
.ac-share { display: flex; align-items: center; gap: 10px; margin-top: 36px; padding-top: 24px; border-top: 1px solid var(--ac-border); }
.ac-share__label { font-size: 13px; font-weight: 600; color: var(--ac-primary-dark); }
.ac-share a {
	width: 36px;
	height: 36px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--ac-border);
	border-radius: var(--ac-r-pill);
	color: var(--ac-primary);
}
.ac-share a:hover { background: var(--ac-primary); color: #fff; border-color: var(--ac-primary); }

.ac-disclaimer {
	margin-top: 36px;
	padding: 18px 20px;
	border-radius: 14px;
	background: var(--ac-bg);
	border: 1px solid var(--ac-border);
	font-size: 12.5px;
	line-height: 1.7;
	color: var(--ac-muted);
}

/* ==========================================================================
   14. FAQ
   ========================================================================== */

.ac-faq-search { position: relative; max-width: 560px; margin: 0 auto 20px; }
.ac-faq-search .ac-icon { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); color: var(--ac-muted); pointer-events: none; }
.ac-faq-search input {
	width: 100%;
	height: 48px;
	padding: 0 18px 0 44px;
	border: 1px solid var(--ac-border);
	border-radius: var(--ac-r-input);
	background: #fff;
	font-family: inherit;
	font-size: 14.5px;
	color: var(--ac-text);
	box-shadow: var(--ac-shadow-sm);
}
.ac-faq-search input::placeholder { color: #9AA0B4; }
.ac-faq-search input:focus { outline: none; border-color: var(--ac-primary); box-shadow: 0 0 0 3px rgba(52, 70, 163, .12); }

.ac-faq-count { margin: 16px 0 22px; font-size: 13px; color: var(--ac-muted); }

.ac-faq-group { margin-bottom: 34px; }
.ac-faq-group__title {
	margin: 0 0 14px;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: .13em;
	text-transform: uppercase;
	color: var(--ac-gold);
}

.ac-acc { display: grid; gap: 12px; }
.ac-acc__item {
	background: #fff;
	border: 1px solid var(--ac-border);
	border-radius: 14px;
	box-shadow: var(--ac-shadow-sm);
	overflow: hidden;
	transition: border-color var(--ac-dur) var(--ac-ease), box-shadow var(--ac-dur) var(--ac-ease);
}
.ac-acc__item.is-open { border-color: #CFD6EE; box-shadow: var(--ac-shadow); }
.ac-acc__btn {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 16px 20px;
	background: transparent;
	border: 0;
	text-align: left;
	font-family: inherit;
	font-size: 14.5px;
	font-weight: 600;
	line-height: 1.5;
	color: var(--ac-primary-dark);
	cursor: pointer;
}
.ac-acc__btn .ac-icon { color: var(--ac-muted); transition: transform var(--ac-dur) var(--ac-ease); }
.ac-acc__item.is-open .ac-acc__btn .ac-icon { transform: rotate(180deg); color: var(--ac-primary); }
.ac-acc__panel { display: none; padding: 0 20px 18px; }
.ac-acc__item.is-open .ac-acc__panel { display: block; }
.ac-acc__panel p { margin: 0 0 12px; font-size: 13.5px; line-height: 1.8; color: var(--ac-muted); }
.ac-acc__panel p:last-child { margin-bottom: 0; }
.ac-acc__item[hidden] { display: none; }

.ac-empty { padding: 32px; text-align: center; color: var(--ac-muted); font-size: 14px; }

/* ==========================================================================
   15. Contact & forms
   ========================================================================== */

.ac-form-card {
	background: #fff;
	border: 1px solid var(--ac-border);
	border-radius: var(--ac-r-card);
	box-shadow: var(--ac-shadow);
	padding: 28px;
}

.ac-form__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px 20px; }
.ac-field { display: flex; flex-direction: column; gap: 6px; }
.ac-field--full { grid-column: 1 / -1; }

.ac-label { font-size: 13px; font-weight: 600; color: var(--ac-text); }
.ac-label .ac-req { color: var(--ac-error); margin-left: 2px; }
.ac-label .ac-opt { color: var(--ac-muted); font-weight: 400; }

.ac-input,
.ac-select,
.ac-textarea {
	width: 100%;
	padding: 11px 14px;
	border: 1px solid var(--ac-border);
	border-radius: var(--ac-r-input);
	background: #fff;
	font-family: inherit;
	font-size: 14px;
	line-height: 1.5;
	color: var(--ac-text);
	transition: border-color var(--ac-dur) var(--ac-ease), box-shadow var(--ac-dur) var(--ac-ease);
	-webkit-appearance: none;
	appearance: none;
}
.ac-input::placeholder,
.ac-textarea::placeholder { color: #A6ABBD; }
.ac-input:focus,
.ac-select:focus,
.ac-textarea:focus { outline: none; border-color: var(--ac-primary); box-shadow: 0 0 0 3px rgba(52, 70, 163, .12); }
.ac-textarea { min-height: 96px; resize: vertical; }
.ac-select {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236D7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 14px center;
	padding-right: 38px;
}
.ac-input[type="date"] { padding-right: 12px; }

.ac-help { font-size: 11.5px; color: var(--ac-muted); line-height: 1.5; }
.ac-error { font-size: 11.5px; color: var(--ac-error); display: none; }
.ac-field.has-error .ac-input,
.ac-field.has-error .ac-select,
.ac-field.has-error .ac-textarea { border-color: var(--ac-error); }
.ac-field.has-error .ac-error { display: block; }

.ac-form__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }
.ac-form__note { margin-top: 22px; font-size: 12.5px; line-height: 1.75; color: var(--ac-muted); }
.ac-hp { position: absolute !important; left: -9999px !important; opacity: 0; height: 0; width: 0; }

.ac-form__status { margin-top: 16px; font-size: 13.5px; }
.ac-form__status.is-ok { color: var(--ac-success); }
.ac-form__status.is-bad { color: var(--ac-error); }
.ac-btn.is-busy { opacity: .7; pointer-events: none; }

/* Contact information */
.ac-contact-grid { display: grid; grid-template-columns: minmax(0, 1.28fr) minmax(0, 1fr); gap: 24px; align-items: stretch; }
.ac-info { background: #fff; border: 1px solid var(--ac-border); border-radius: var(--ac-r-card); box-shadow: var(--ac-shadow); padding: 24px; }
.ac-contact-grid > .ac-info { height: 100%; }
.ac-info + .ac-info { margin-top: 24px; }
.ac-info__title { margin: 0 0 18px; font-size: 16px; font-weight: 600; color: var(--ac-primary); }
.ac-phone-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.ac-phone {
	padding: 16px;
	border: 1px solid var(--ac-border);
	border-radius: 12px;
	background: #fff;
}
.ac-phone__label { display: block; font-size: 10.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--ac-muted); margin-bottom: 8px; }
.ac-phone__num { display: inline-flex; align-items: center; gap: 8px; font-size: 15px; font-weight: 600; color: var(--ac-primary); }
.ac-phone__wa { display: inline-flex; align-items: center; gap: 7px; margin-top: 10px; font-size: 12.5px; color: var(--ac-muted); }
.ac-phone__wa:hover { color: var(--ac-whatsapp); }

.ac-iconlist { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.ac-iconlist li { display: flex; gap: 11px; margin: 0; font-size: 13.5px; line-height: 1.65; color: var(--ac-text); }
.ac-iconlist li .ac-icon { color: var(--ac-gold); margin-top: 3px; flex: none; }
.ac-iconlist strong { display: block; font-size: 13.5px; font-weight: 600; color: var(--ac-primary-dark); margin-bottom: 2px; }
.ac-iconlist small { display: block; font-size: 11.5px; color: var(--ac-muted); }

.ac-timing-row { padding-top: 14px; margin-top: 14px; border-top: 1px solid var(--ac-border); }
.ac-timing-row:first-of-type { padding-top: 0; margin-top: 0; border-top: 0; }
.ac-timing-row strong { display: block; font-size: 13.5px; color: var(--ac-primary-dark); }
.ac-timing-row span { display: block; font-size: 11.5px; color: var(--ac-muted); }
.ac-timing-row em { display: block; font-size: 13px; font-style: normal; color: var(--ac-text); margin-top: 2px; }

.ac-wideshot { margin: 0; }
.ac-wideshot img { width: 100%; border-radius: var(--ac-r-card); box-shadow: var(--ac-shadow); }
.ac-wideshot figcaption { margin-top: 14px; font-size: 13px; line-height: 1.75; color: var(--ac-muted); }

.ac-map {
	position: relative;
	border-radius: var(--ac-r-card);
	overflow: hidden;
	background: #E8E9EE;
	border: 1px solid var(--ac-border);
	aspect-ratio: 16 / 7;
}
.ac-map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.ac-map__fallback { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; text-align: center; padding: 24px; color: var(--ac-muted); font-size: 13.5px; }

/* ==========================================================================
   16. CTA band
   ========================================================================== */

.ac-cta {
	background: var(--ac-primary);
	color: #fff;
	padding-block: 62px;
	text-align: center;
}
.ac-cta__title { margin: 0 0 12px; color: #fff; font-size: 32px; font-weight: 700; line-height: 1.2; }
.ac-cta__sub { margin: 0 auto; max-width: 620px; color: rgba(255, 255, 255, .88); font-size: 15px; line-height: 1.7; }
.ac-cta__note { margin: 8px 0 0; color: rgba(255, 255, 255, .72); font-size: 13.5px; }
.ac-cta__actions { margin-top: 26px; display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }

/* ==========================================================================
   17. Footer
   ========================================================================== */

.ac-footer { background: var(--ac-primary-dark); color: rgba(255, 255, 255, .74); font-size: 13.5px; }
.ac-footer a { color: rgba(255, 255, 255, .74); }
.ac-footer a:hover { color: #fff; }

.ac-footer__top { padding-block: 58px 44px; }
.ac-footer__grid { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(0, .85fr) minmax(0, 1fr) minmax(0, 1.15fr); gap: 40px; }

.ac-footer__brand { display: inline-flex; align-items: center; gap: 11px; margin-bottom: 18px; }
.ac-footer__brand .ac-brand__name { color: #fff; }
.ac-footer__brand .ac-brand__tag { color: rgba(255, 255, 255, .6); }
.ac-footer__about { margin: 0 0 18px; line-height: 1.8; color: rgba(255, 255, 255, .7); }

.ac-footer__title { margin: 0 0 18px; color: #fff; font-size: 15px; font-weight: 600; position: relative; padding-bottom: 12px; }
.ac-footer__title::after { content: ""; position: absolute; left: 0; bottom: 0; width: 28px; height: 3px; border-radius: 3px; background: var(--ac-gold); }

.ac-footer__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.ac-footer__list li { margin: 0; }
.ac-footer__list a { line-height: 1.5; }

.ac-footer .ac-iconlist li { color: rgba(255, 255, 255, .74); }
.ac-footer .ac-iconlist li .ac-icon { color: var(--ac-gold); }

.ac-footer__hours { display: flex; gap: 10px; align-items: flex-start; margin-top: 6px; }
.ac-footer__hours .ac-icon { color: var(--ac-gold); margin-top: 3px; }

.ac-footer__timings {
	border-top: 1px solid rgba(255, 255, 255, .13);
	padding-block: 22px;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px 40px;
}
.ac-footer__timings strong { display: block; color: #fff; font-size: 13.5px; font-weight: 600; }
.ac-footer__timings span { font-size: 12.5px; color: rgba(255, 255, 255, .62); }

.ac-footer__bottom {
	border-top: 1px solid rgba(255, 255, 255, .13);
	padding-block: 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
	font-size: 12.5px;
	color: rgba(255, 255, 255, .55);
}

.ac-social { display: flex; gap: 10px; }
.ac-social a {
	width: 32px;
	height: 32px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(255, 255, 255, .24);
	border-radius: var(--ac-r-pill);
	color: rgba(255, 255, 255, .78);
	transition: all var(--ac-dur) var(--ac-ease);
}
.ac-social a:hover { background: rgba(255, 255, 255, .14); border-color: rgba(255, 255, 255, .5); color: #fff; }

/* ==========================================================================
   18. Utilities, toast, floating actions
   ========================================================================== */

.ac-float-wa {
	position: fixed;
	right: 22px;
	bottom: 22px;
	z-index: 80;
	width: 54px;
	height: 54px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: var(--ac-r-pill);
	background: var(--ac-whatsapp);
	color: #fff;
	box-shadow: 0 10px 26px rgba(37, 211, 102, .38);
	transition: transform var(--ac-dur) var(--ac-ease);
}
.ac-float-wa:hover { transform: scale(1.06); color: #fff; }

.ac-toast-wrap {
	position: fixed;
	right: 22px;
	bottom: 88px;
	z-index: 120;
	display: flex;
	flex-direction: column;
	gap: 10px;
	max-width: min(360px, calc(100vw - 44px));
}
.ac-toast {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	padding: 14px 16px;
	border-radius: 14px;
	background: #fff;
	border: 1px solid var(--ac-border);
	box-shadow: var(--ac-shadow-lg);
	font-size: 13.5px;
	line-height: 1.6;
	color: var(--ac-text);
	transform: translateY(12px);
	opacity: 0;
	transition: all .3s var(--ac-ease);
}
.ac-toast.is-in { transform: translateY(0); opacity: 1; }
.ac-toast--ok { border-left: 4px solid var(--ac-success); }
.ac-toast--bad { border-left: 4px solid var(--ac-error); }
.ac-toast__icon { flex: none; margin-top: 2px; }
.ac-toast--ok .ac-toast__icon { color: var(--ac-success); }
.ac-toast--bad .ac-toast__icon { color: var(--ac-error); }

.ac-visually-hidden {
	position: absolute !important;
	width: 1px; height: 1px;
	padding: 0; margin: -1px;
	overflow: hidden; clip: rect(0 0 0 0);
	white-space: nowrap; border: 0;
}

.ac-hide { display: none !important; }
.ac-mt-0 { margin-top: 0 !important; }
.ac-mt-24 { margin-top: 24px; }
.ac-mt-32 { margin-top: 32px; }
.ac-mt-40 { margin-top: 40px; }
.ac-center { text-align: center; }

.ac-fade-up { opacity: 0; transform: translateY(18px); transition: opacity .6s var(--ac-ease), transform .6s var(--ac-ease); }
.ac-fade-up.is-in { opacity: 1; transform: none; }

/* ==========================================================================
   19. Editor content
   ========================================================================== */

.ac-prose { font-size: 15.5px; line-height: 1.85; color: #43474F; }
.ac-prose > * { margin-bottom: 20px; }
.ac-prose > *:last-child { margin-bottom: 0; }
.ac-prose h2 { font-size: 26px; margin-top: 36px; }
.ac-prose h3 { font-size: 20px; margin-top: 28px; }
.ac-prose h4 { font-size: 17px; margin-top: 22px; }
.ac-prose ul, .ac-prose ol { padding-left: 22px; }
.ac-prose li { margin-bottom: 8px; }
.ac-prose img, .ac-prose figure img { border-radius: var(--ac-r-gallery); }
.ac-prose figure { margin: 28px 0; }
.ac-prose figcaption { font-size: 12.5px; color: var(--ac-muted); margin-top: 8px; text-align: center; }
.ac-prose blockquote {
	margin: 28px 0;
	padding: 18px 24px;
	border-left: 3px solid var(--ac-gold);
	background: var(--ac-bg);
	border-radius: 0 14px 14px 0;
	font-size: 15.5px;
	color: var(--ac-text);
}
.ac-prose blockquote p:last-child { margin-bottom: 0; }
.ac-prose table { width: 100%; border-collapse: collapse; font-size: 14px; }
.ac-prose th, .ac-prose td { border: 1px solid var(--ac-border); padding: 10px 12px; text-align: left; }
.ac-prose th { background: var(--ac-bg); font-weight: 600; color: var(--ac-primary-dark); }
.ac-prose code { background: var(--ac-bg); padding: 2px 6px; border-radius: 6px; font-size: 13.5px; }
.ac-prose a { text-decoration: underline; text-underline-offset: 3px; }

/* ==========================================================================
   20. Responsive
   ========================================================================== */

@media (max-width: 1439.98px) {
	:root { --ac-container: 1180px; }
}

@media (max-width: 1399.98px) {
	.ac-hero__arrow { top: auto; bottom: 78px; transform: none; }
	.ac-hero__arrow--prev { left: calc(50% - 82px); right: auto; }
	.ac-hero__arrow--next { right: calc(50% - 82px); left: auto; }
	.ac-hero__dots { bottom: 88px; }
}

@media (max-width: 1279.98px) {
	:root { --ac-section: 72px; }
	.ac-hero__title { font-size: 42px; }
	.ac-sechead__title { font-size: 32px; }
	.ac-diag-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
	.ac-profile__grid { grid-template-columns: 260px minmax(0, 1fr); gap: 36px; }
	.ac-profile--right .ac-profile__grid { grid-template-columns: minmax(0, 1fr) 260px; }
	.ac-about__grid { gap: 40px; }
	.ac-nav__list { gap: 24px; }
}

@media (max-width: 1023.98px) {
	:root { --ac-gutter: 24px; --ac-section: 64px; --ac-gap: 20px; }

	.ac-nav { display: none; }
	.ac-burger { display: inline-flex; }
	.ac-header__actions .ac-btn { display: none; }

	.ac-hero__inner { padding-block: 72px 104px; min-height: 460px; }
	.ac-hero__title { font-size: 36px; }
	.ac-hero__content { max-width: 100%; }
	.ac-hero__grid { grid-template-columns: minmax(0, 1fr); }
	.ac-hero__figure { display: none; }
	.ac-hero__bg::after { background: linear-gradient(90deg, rgba(30, 42, 105, .96) 0%, rgba(33, 46, 114, .9) 55%, rgba(37, 50, 121, .78) 100%); }
	.ac-hero__dots { bottom: 78px; }

	.ac-features { margin-top: -56px; }
	.ac-features__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

	.ac-slider__item { flex-basis: calc((100% - var(--ac-gap)) / 2); }

	.ac-grid--3, .ac-grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.ac-group__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.ac-support-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.ac-gallery { column-count: 3; }

	.ac-about__grid { grid-template-columns: minmax(0, 1fr); gap: 32px; }
	.ac-profile__grid,
	.ac-profile--right .ac-profile__grid { grid-template-columns: 220px minmax(0, 1fr); gap: 28px; }
	.ac-profile--right .ac-profile__media { order: 0; }

	.ac-contact-grid { grid-template-columns: minmax(0, 1fr); }
	.ac-service-single__grid { grid-template-columns: minmax(0, 1fr); }
	.ac-aside { position: static; }

	.ac-featured { grid-template-columns: minmax(0, 1fr); }
	.ac-featured__media img { min-height: 260px; }
	.ac-featured__body { padding: 28px; }
	.ac-featured__title { font-size: 24px; }

	.ac-footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 32px; }
}

@media (max-width: 767.98px) {
	:root { --ac-section: 52px; }

	.ac-sechead { margin-bottom: 30px; }
	.ac-sechead__title { font-size: 27px; }
	.ac-sechead__sub { font-size: 14px; }

	.ac-pagehero { padding-block: 34px 36px; }
	.ac-pagehero__title { font-size: 27px; }
	.ac-pagehero__sub { font-size: 13.5px; }

	.ac-hero__inner { padding-block: 56px 92px; min-height: 420px; }
	.ac-hero__title { font-size: 31px; }
	.ac-hero__sub { font-size: 14.5px; }
	.ac-hero__arrow { display: none; }

	.ac-features { margin-top: -44px; }
	.ac-features__grid { grid-template-columns: minmax(0, 1fr); }

	.ac-grid--2, .ac-grid--3, .ac-grid--4 { grid-template-columns: minmax(0, 1fr); }
	.ac-group__grid { grid-template-columns: minmax(0, 1fr); }
	.ac-support-grid { grid-template-columns: minmax(0, 1fr); }
	.ac-dept-picker { grid-template-columns: minmax(0, 1fr); }
	.ac-diag-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.ac-gallery { column-count: 2; column-gap: 14px; }
	.ac-gallery__item { margin-bottom: 14px; }

	.ac-slider__item { flex-basis: 100%; }

	.ac-profile__grid,
	.ac-profile--right .ac-profile__grid { grid-template-columns: minmax(0, 1fr); gap: 24px; }
	.ac-profile__media img { max-width: 260px; }
	.ac-profile__name { font-size: 25px; }
	.ac-deflist--2 ul { grid-template-columns: minmax(0, 1fr); }

	.ac-form__grid { grid-template-columns: minmax(0, 1fr); }
	.ac-form-card { padding: 22px; }
	.ac-phone-grid { grid-template-columns: minmax(0, 1fr); }

	.ac-single__title { font-size: 27px; }
	.ac-featured__body { padding: 22px; }
	.ac-featured__title { font-size: 21px; }

	.ac-cta { padding-block: 46px; }
	.ac-cta__title { font-size: 25px; }
	.ac-cta__actions .ac-btn { width: 100%; }

	.ac-footer__grid { grid-template-columns: minmax(0, 1fr); gap: 30px; }
	.ac-footer__timings { grid-template-columns: minmax(0, 1fr); }
	.ac-footer__bottom { flex-direction: column; align-items: flex-start; }

	.ac-map { aspect-ratio: 4 / 3; }
	.ac-lightbox { padding: 16px; }
	.ac-lightbox__btn--prev { left: 8px; }
	.ac-lightbox__btn--next { right: 8px; }
	.ac-lightbox__btn--close { top: 10px; right: 10px; }
}

@media (max-width: 575.98px) {
	:root { --ac-gutter: 18px; }

	.ac-brand__mark { width: 36px; height: 36px; }
	.ac-brand__name { font-size: 15px; }
	.ac-brand__tag { font-size: 7.5px; }
	.ac-header__inner { min-height: 64px; }

	.ac-hero__title { font-size: 27px; }
	.ac-hero__actions .ac-btn { flex: 1 1 100%; }

	.ac-diag-grid { grid-template-columns: minmax(0, 1fr); }
	.ac-gallery { column-count: 1; }
	.ac-chips { gap: 8px; }
	.ac-chip { padding: 6px 12px; font-size: 12px; }
}

@media (max-width: 389.98px) {
	.ac-hero__title { font-size: 24px; }
	.ac-sechead__title { font-size: 23px; }
	.ac-pagehero__title { font-size: 23px; }
}

/* ==========================================================================
   21. Accessibility & print
   ========================================================================== */

.ac a:focus-visible,
.ac button:focus-visible,
.ac input:focus-visible,
.ac select:focus-visible,
.ac textarea:focus-visible,
.ac [tabindex]:focus-visible {
	outline: 3px solid rgba(52, 70, 163, .55);
	outline-offset: 2px;
	border-radius: 4px;
}

.ac-footer a:focus-visible,
.ac-cta a:focus-visible,
.ac-hero a:focus-visible,
.ac-hero button:focus-visible,
.ac-lightbox button:focus-visible { outline-color: rgba(255, 255, 255, .85); }

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after {
		animation-duration: .001ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: .001ms !important;
	}
	.ac-fade-up { opacity: 1; transform: none; }
}

@media print {
	.ac-header, .ac-footer, .ac-cta, .ac-float-wa, .ac-hero__arrow, .ac-hero__dots, .ac-toast-wrap { display: none !important; }
	.ac { background: #fff; }
	.ac-section { padding-block: 16px; }
}
