/* =========================================================
   ATHMA REHABILITATION CENTRE — STYLESHEET
   ---------------------------------------------------------
   STRUCTURE
   1.  Tokens (:root)
   2.  Base + type scale
   3.  Buttons
   4.  Header / navigation
   5.  Appointment modal
   6.  Home page
   7.  Footer
   8.  Floating widgets (WhatsApp, chat, cookie, promo)
   9.  Facilities page
   10. Contact page
   11. About page
   12. Social / reviews
   13. Legal + blog pages
   14. Therapy pages
   15. Speciality pages
   16. MEDIA QUERIES (tablet <=1024px, mobile <=768px) — bottom only
   ---------------------------------------------------------
   TYPE SCALE (single source of truth)
   Title / heading  h1 ....... 30 / 26 / 20
   Sub head / title h2 ....... 26 / 20 / 17
   Section + card   h3, h4 ... 20 / 18 / 16
   Paragraph ................. 15 / 14 / 13
   One font family site-wide: Montserrat.
   Emphasis inside a heading = *-accent / .athma-em (700 + italic).
   ========================================================= */

/* ============ 1. TOKENS ============ */


:root {
	--athma-navy: #0b2559;
	--athma-navy-dark: #081a40;
	--athma-navy-soft: #16336e;
	--athma-orange: #f2701c;
	--athma-orange-dark: #d95f0f;
	--athma-bg-light: #eef2f8;
	--athma-bg-white: #ffffff;
	--athma-text-dark: #10203f;
	--athma-text-gray: #5c6b84;
	--athma-border-light: #e2e8f2;

	--athma-font-display: "Manrope", sans-serif;
	--athma-font-body: "Manrope", sans-serif;
	--athma-fs-h1: 30px;
	--athma-fs-h2: 26px;
	--athma-fs-h3: 20px;
	--athma-fs-h4: 17px;
	--athma-fs-body: 16px;
	--athma-fs-small: 13px;
	--athma-fs-eyebrow: 13px;

	--athma-fw-base: 400;
	--athma-fw-em: 700;

	--athma-radius-lg: 8px;
	--athma-radius-md: 8px;
	--athma-radius-btn: 8px;
	--athma-shadow-soft: 0 12px 32px rgba(11, 37, 89, 0.08);
	--athma-rule: 1px solid var(--athma-border-light);
}

/* ============ 2. BASE + TYPE SCALE ============ */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-y: scroll; }

body {
	margin: 0;
	overflow-x: clip;
	font-family: var(--athma-font-body) !important;
	font-synthesis: none;
	-webkit-font-smoothing: antialiased;
	font-size: var(--athma-fs-body);
	font-weight: var(--athma-fw-base);
	color: var(--athma-text-dark);
	background-color: var(--athma-bg-white);
	transition: padding-top 0.25s ease;
}
body.modal-open { padding-right: 0 !important; }

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }

h1, h2, h3, h4, h5, h6 {
	font-family: var(--athma-font-display);
	font-weight: var(--athma-fw-base);
	color: var(--athma-navy);
	margin: 0;
	line-height: 1.3;
}
h1 { font-size: var(--athma-fs-h1); }
h2 { font-size: var(--athma-fs-h2); }
h3 { font-size: var(--athma-fs-h3); }
h4, h5, h6 { font-size: var(--athma-fs-h4); }

p { font-size: var(--athma-fs-body); font-weight: var(--athma-fw-base); line-height: 1.8; }
small { font-size: var(--athma-fs-small); }
strong, b { font-weight: var(--athma-fw-em); }

/* Emphasis word inside a heading — heavier + italic, nothing else changes */
.athma-em,
[class$="-title-accent"] {
	font-weight: var(--athma-fw-em);
	
}

/* Every section title inherits the scale — no per-section font sizes */
[class*="-title"], [class*="-name"], [class*="-heading"] { font-family: var(--athma-font-display); }

/* Eyebrows / kickers */
[class*="-eyebrow"] {
	color: var(--athma-orange);
	font-weight: var(--athma-fw-em);
	letter-spacing: 0.08em;
	text-transform: uppercase;
	font-size: 14px;
	margin-bottom: 8px;
}

/* Mild divider used to break up long copy blocks */
.athma-divider {
	display: block;
	width: 100%;
	height: 1px;
	border: none;
	background-color: var(--athma-border-light);
	margin: 26px 0;
	opacity: 1;
}
.athma-divider-short { width: 64px; height: 2px; background-color: var(--athma-orange); margin: 22px 0; }

:focus-visible { outline: 3px solid var(--athma-orange); outline-offset: 3px; }

.athma-rehab-home-process-text {
	max-width: 850px;
	margin: 18px auto 42px;
	text-align: center;
	font-size: 17px;
	line-height: 1.8;
	font-weight: 400;
	color: #5b6472;
	letter-spacing: 0.1px;
}

.athma-rehab-home-process-text strong {
	font-weight: 600;
	color: #20417a;
}

@media (max-width: 767px) {
	.athma-rehab-home-process-text {
		max-width: 100%;
		margin: 15px auto 30px;
		font-size: 13px;
		line-height: 1.7;
	}
	/* .athma-speciality-highlights-row > .athma-speciality-highlight-col:nth-child(3) {
    display: none;
} */

}





.athma-about-journey-media { flex: 1; border-radius: var(--athma-radius-lg); overflow: hidden; background-color: var(--athma-bg-light); box-shadow: var(--athma-shadow-soft); min-height: 100%; }
.athma-about-journey-img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1); }
.athma-about-journey-media:hover .athma-about-journey-img { transform: scale(1.04); }


/* ============ 3. BUTTONS ============ */
.btn { border-radius: var(--athma-radius-btn) !important; }
.athma-btn-slide-text-inner { position: relative; display: inline-block; font-size: var(--athma-fs-small); overflow: hidden; height: 1.2em; line-height: 1.2em; vertical-align: top; }
.athma-btn-slide-text-inner span { display: block; transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1); }
.athma-btn-slide-text-inner span:last-child { position: absolute; top: 100%; left: 0; }
.athma-btn-slide-text:hover .athma-btn-slide-text-inner span:first-child { transform: translateY(-100%); }
.athma-btn-slide-text:hover .athma-btn-slide-text-inner span:last-child { transform: translateY(-100%); }
.athma-btn-primary { background-color: var(--athma-orange); background-image: linear-gradient(135deg, var(--athma-orange) 0%, var(--athma-orange-dark) 100%); color: #fff; font-weight: var(--athma-fw-em); border: none; display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 13px 24px; transition: transform 0.2s ease, box-shadow 0.2s ease; }
.athma-btn-primary:focus { outline: none; }
.athma-btn-primary:hover { color: #fff; transform: translateY(-2px); }
.athma-btn-primary i { transition: transform 0.25s ease; }
.athma-btn-primary:hover i { transform: translateX(4px); }

/* Plain text link used in place of the old icon links */
.athma-textlink { display: inline-flex; align-items: center; gap: 6px; color: var(--athma-orange); font-weight: var(--athma-fw-em); font-size: var(--athma-fs-small); }
.athma-textlink::after { content: "\2192"; transition: transform 0.2s ease; }
.athma-textlink:hover { color: var(--athma-orange-dark); }
.athma-textlink:hover::after { transform: translateX(4px); }

/* ============ 4. HEADER / NAVIGATION ============ */
.athma-rehab-home-header-wrap { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; flex-direction: column; }
.athma-rehab-home-topbar-section { background-color: var(--athma-navy); padding: 9px 0; min-height: 41px; }
.athma-rehab-home-topbar-container { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.athma-rehab-home-topbar-slogan { display: flex; align-items: center; gap: 8px; color: #fff; font-size: var(--athma-fs-small); font-weight: var(--athma-fw-base); white-space: nowrap; }
.athma-rehab-home-topbar-info { display: flex; align-items: center; gap: 14px; }
.athma-rehab-home-topbar-item { display: flex; align-items: center; gap: 7px; color: rgba(255, 255, 255, 0.88); font-size: var(--athma-fs-small); font-weight: var(--athma-fw-base); white-space: nowrap; }
.athma-rehab-home-topbar-item-phone { transition: color 0.2s ease; }
.athma-rehab-home-topbar-item-phone:hover { color: #fff; }
.athma-rehab-home-topbar-divider { width: 1px; height: 14px; background-color: rgba(255, 255, 255, 0.22); }

.athma-rehab-home-header-section { background-color: var(--athma-bg-white); position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 16px rgba(11, 37, 89, 0.07); transition: box-shadow 0.2s ease; }
.athma-rehab-home-header-section.is-scrolled { box-shadow: 0 8px 24px rgba(11, 37, 89, 0.12); }
.athma-rehab-home-header-container-outer { max-width: 1320px; }
.athma-rehab-home-header-navbar { padding: 14px 0; align-items: center; position: relative; min-height: 76px; }
.athma-rehab-home-header-actions-desktop { align-items: center; flex-shrink: 0; margin-left: auto; }
.athma-rehab-home-header-brand { display: flex; align-items: center; flex-shrink: 0; }
.athma-rehab-home-header-logo { width: 335px; height: auto; object-fit: contain; }
.col-lg-7.athma-rehab-home-leadership-col-text.athma-reveal-group{text-align: start;}

/* Hamburger — drawn in CSS, no icon font */
.athma-rehab-home-header-toggler { position: relative; border: 1.5px solid var(--athma-border-light); border-radius: 8px; width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; color: var(--athma-navy); box-shadow: none; flex-shrink: 0; background-color: #fff; }
.athma-rehab-home-header-toggler:focus { outline: none; box-shadow: none; }
.athma-rehab-home-header-toggler .athma-rehab-home-header-toggler-bar { display: block; width: 20px; height: 2px; background-color: var(--athma-navy); position: relative; transition: background-color 0.2s ease; }
.athma-rehab-home-header-toggler .athma-rehab-home-header-toggler-bar::before,
.athma-rehab-home-header-toggler .athma-rehab-home-header-toggler-bar::after { content: ""; position: absolute; left: 0; width: 20px; height: 2px; background-color: var(--athma-navy); transition: transform 0.25s ease; }
.athma-rehab-home-header-toggler .athma-rehab-home-header-toggler-bar::before { top: -6px; }
.athma-rehab-home-header-toggler .athma-rehab-home-header-toggler-bar::after { top: 6px; }
.athma-rehab-home-header-toggler[aria-expanded="true"] .athma-rehab-home-header-toggler-bar { background-color: transparent; }
.athma-rehab-home-header-toggler[aria-expanded="true"] .athma-rehab-home-header-toggler-bar::before { transform: translateY(6px) rotate(45deg); }
.athma-rehab-home-header-toggler[aria-expanded="true"] .athma-rehab-home-header-toggler-bar::after { transform: translateY(-6px) rotate(-45deg); }

.athma-rehab-home-header-collapse { flex-grow: 1; align-items: start; gap: 8px; }
.athma-rehab-home-header-offcanvas-body { flex-grow: 1 !important; }
.athma-rehab-home-header-menu { display: flex; gap: 10px; align-items: center; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); margin: 0; }
.athma-rehab-home-header-menu .nav-link { color: var(--athma-navy); font-weight: var(--athma-fw-em); font-size: var(--athma-fs-body); padding: 10px 14px; margin: 0 2px; display: inline-flex; align-items: center; gap: 6px; transition: color 0.2s ease; }
.athma-rehab-home-header-menu .nav-link:hover,
.athma-rehab-home-header-menu .nav-link.active { color: var(--athma-orange); }
.athma-rehab-home-header-menu .nav-link:focus { outline: none; box-shadow: none; }
.athma-rehab-home-header-nav-text { position: relative; display: inline-block; overflow: hidden; height: 1.3em; line-height: 1.3em; vertical-align: top; }
.athma-rehab-home-header-nav-text span { display: block; transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1); }
.athma-rehab-home-header-nav-text span:last-child { position: absolute; top: 100%; left: 0; color: var(--athma-orange); }
.nav-link:hover .athma-rehab-home-header-nav-text span:first-child { transform: translateY(-100%); }
.nav-link:hover .athma-rehab-home-header-nav-text span:last-child { transform: translateY(-100%); }

/* Dropdown caret — pure CSS */
.athma-rehab-home-header-menu .dropdown-toggle::after { display: none; }
.athma-rehab-home-header-dropdown-toggle .athma-rehab-home-header-caret { display: inline-block; width: 7px; height: 7px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg) translateY(-2px); transition: transform 0.2s ease; }
.athma-rehab-home-header-dropdown.show .athma-rehab-home-header-dropdown-toggle { color: var(--athma-orange); }
.athma-rehab-home-header-dropdown.show .athma-rehab-home-header-caret { transform: rotate(-135deg) translate(-2px, 2px); }
.athma-rehab-home-header-dropdown { position: relative; }

.athma-rehab-home-header-megamenu { position: absolute; left: 50%; transform: translateX(-50%); top: 100%; margin-top: 10px; border: none; border-radius: var(--athma-radius-lg); box-shadow: 0 24px 48px rgba(11, 37, 89, 0.18); padding: 26px 28px; width: 760px; grid-template-columns: repeat(3, 1fr); gap: 0 32px; overflow: visible; }
.athma-rehab-home-header-megamenu.show { display: grid; }
.athma-rehab-home-header-megamenu-col { min-width: 0; }
.athma-rehab-home-header-megamenu-col + .athma-rehab-home-header-megamenu-col { border-left: var(--athma-rule); padding-left: 32px; }
.athma-rehab-home-header-megamenu-heading { color: var(--athma-orange); font-size: var(--athma-fs-small); font-weight: var(--athma-fw-em); text-transform: uppercase; letter-spacing: 0.08em; margin: 0 0 10px; }
.athma-rehab-home-header-dropdown-item { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 13px 2px; border-bottom: var(--athma-rule); border-radius: 0; transition: color 0.2s ease; color: var(--athma-navy); }
.athma-rehab-home-header-megamenu-col .athma-rehab-home-header-dropdown-item:last-child { border-bottom: none; }
.athma-rehab-home-header-dropdown-item:hover { background-color: transparent; color: var(--athma-orange); }
.athma-rehab-home-header-dropdown-item:focus { outline: none; box-shadow: none; background-color: transparent; }
.athma-rehab-home-header-dropdown-item-copy { display: block; min-width: 0; flex: 1; font-size: 13px; font-weight: var(--athma-fw-base); color: inherit; }
.athma-rehab-home-header-dropdown-item::after { content: "\2192"; color: var(--athma-text-gray); font-size: var(--athma-fs-small); flex-shrink: 0; transition: transform 0.2s ease, color 0.2s ease; }
.athma-rehab-home-header-dropdown-item:hover::after { color: var(--athma-orange); transform: translateX(4px); }

.athma-rehab-home-header-actions { display: flex; align-items: center; flex-shrink: 0; }
.athma-rehab-home-header-book-btn { font-size: var(--athma-fs-body); padding: 12px 22px; }
.athma-rehab-home-header-book-btn:focus { outline: none; box-shadow: none; }
.athma-rehab-home-header-book-btn:hover { background-color: var(--athma-orange-dark); color: #fff; transform: translateY(-1px); }

/* ============ 5. APPOINTMENT MODAL ============ */
.athma-rehab-appointment-modal .modal-content { border: none; }
.athma-rehab-appointment-modal.modal { backdrop-filter: blur(2px); }
.athma-rehab-appointment-modal .modal-dialog { transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease; transform: scale(0.92) translateY(24px); opacity: 0; }
.athma-rehab-appointment-modal.show .modal-dialog { transform: scale(1) translateY(0); opacity: 1; }
.athma-rehab-appointment-modal-dialog { max-width: 904px; }
.athma-rehab-appointment-modal-content { border-radius: 8px; overflow: hidden; box-shadow: 0 10px 30px rgba(24, 93, 155, 0.18), 0 50px 100px rgba(8, 26, 64, 0.5); position: relative; border: 1px solid rgba(255, 255, 255, 0.6); }
.athma-rehab-appointment-modal-close { position: absolute; top: 18px; right: 18px; z-index: 10; width: 40px; height: 40px; border-radius: 50%; border: none; background-color: var(--athma-orange); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 18px; line-height: 1; cursor: pointer; box-shadow: 0 8px 20px rgba(24, 93, 155, 0.4); transition: background-color 0.2s ease, transform 0.2s ease; }
.athma-rehab-appointment-modal-close:hover { background-color: var(--athma-orange-dark); transform: rotate(90deg); }
.athma-rehab-appointment-modal-grid { display: grid; grid-template-columns: 380px 1fr; }
.athma-rehab-appointment-modal-aside { position: relative; overflow: hidden; background-color: var(--athma-navy); background-image: linear-gradient(155deg, rgba(8, 26, 64, 0.93) 0%, rgba(11, 37, 89, 0.9) 32%, rgba(22, 51, 110, 0.65) 82%), url('image/modal-hospital-bg.webp'); background-size: cover; background-position: center; padding: 48px 38px 34px; display: flex; flex-direction: column; }
.athma-rehab-appointment-modal-aside-orb { position: absolute; border-radius: 50%; pointer-events: none; }
.athma-rehab-appointment-modal-aside-orb-one { width: 240px; height: 240px; top: -100px; right: -80px; background: radial-gradient(circle, rgba(24, 93, 155, 0.32) 0%, rgba(24, 93, 155, 0) 70%); }
.athma-rehab-appointment-modal-aside-orb-two { width: 200px; height: 200px; bottom: -100px; left: -70px; background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 70%); }
.athma-rehab-appointment-modal-eyebrow { position: relative; color: var(--athma-orange); display: block; margin-bottom: 6px; }
.athma-rehab-appointment-modal-title { position: relative; color: #fff; margin-bottom: 12px; }
.athma-rehab-appointment-modal-subtext { position: relative; color: rgba(255, 255, 255, 0.68); font-size: var(--athma-fs-small); line-height: 1.6; margin-bottom: 22px; }
.athma-rehab-appointment-modal-aside-list { position: relative; display: flex; flex-direction: column; gap: 12px; flex-grow: 1; }
.athma-rehab-appointment-modal-aside-list li { display: flex; align-items: center; gap: 10px; color: rgba(255, 255, 255, 0.85); font-size: var(--athma-fs-small); }
.athma-rehab-appointment-modal-aside-call { position: relative; display: flex; align-items: center; gap: 12px; margin-top: 4px; padding: 14px 16px; border-radius: 8px; background-color: rgba(255, 255, 255, 0.08); border: 1px solid rgba(255, 255, 255, 0.14); transition: background-color 0.2s ease; }
.athma-rehab-appointment-modal-aside-call:hover { background-color: rgba(255, 255, 255, 0.14); }
.athma-rehab-appointment-modal-aside-call span { color: #fff; font-size: var(--athma-fs-body); font-weight: var(--athma-fw-em); }
.athma-rehab-appointment-modal-aside-call small { display: block; color: rgba(255, 255, 255, 0.6); font-size: 12px; font-weight: var(--athma-fw-base); margin-bottom: 2px; }
.athma-rehab-appointment-modal-main { padding: 46px 44px; display: flex; flex-direction: column; justify-content: center; }
.athma-rehab-appointment-modal-form { width: 100%; }
.athma-rehab-appointment-modal-row { row-gap: 0; }
.athma-rehab-appointment-modal-field { margin-bottom: 16px; }
.athma-rehab-appointment-modal-label { display: block; color: var(--athma-navy); font-size: var(--athma-fs-small); font-weight: var(--athma-fw-em); margin-bottom: 6px; }
.athma-rehab-appointment-modal-input-wrap { position: relative; }
.athma-rehab-appointment-modal-input { width: 100%; height: 50px; border: 1.5px solid var(--athma-border-light); border-radius: 8px; padding: 0 14px; font-size:14px; font-family: var(--athma-font-body); color: var(--athma-text-dark); background-color: var(--athma-bg-light); transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease; }
.athma-rehab-appointment-modal-input:focus { outline: none; border-color: var(--athma-orange); background-color: #fff; box-shadow: 0 0 0 4px rgba(24, 93, 155, 0.12); }
select.athma-rehab-appointment-modal-input { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235c6b84' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; background-size: 15px; padding-right: 36px; }
input[type="date"].athma-rehab-appointment-modal-input { padding-right: 10px; }
.athma-rehab-appointment-modal-submit { width: 100%; height: 54px; font-size: var(--athma-fs-body); margin-top: 6px; }
.athma-rehab-appointment-modal-note { display: flex; align-items: center; gap: 6px; font-size: var(--athma-fs-small); font-weight: var(--athma-fw-em); margin: 10px 0 0; }
.athma-rehab-appointment-modal-note-error { color: #d64545; }
.athma-rehab-appointment-modal-note-success { color: #1e9e5a; }
.col-lg-5.athma-rehab-home-programs-col-media{  width:41.666667%;}
.col-lg-4.athma-about-accreditation-col-badge {
    width: 33.333333%;
}

p.home-hero-eye {
    text-transform: uppercase;
    color: #ef7318;
    letter-spacing: 2px;
    font-size: 13px;
    font-weight: 700;
	    margin-bottom: 8px;
}

/* ============ 6. HOME PAGE ============ */
/* Hero — text block vertically centred, three plain program links */
.athma-rehab-home-hero-section { position: relative; overflow: hidden; isolation: isolate; background-color: #fdf6f1; background-image: url('image/athma-home-banner.jpeg'); background-size: cover; background-position: top center; background-repeat: no-repeat; padding: 0px 0 0; min-height: 620px; display: flex; flex-direction: column; align-items: stretch; }
.athma-rehab-home-hero-section::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(100deg, rgba(253, 246, 241, 0.97) 0%, rgba(253, 241, 231, 0.9) 0%, rgba(253, 241, 231, -0.65) 7%, rgba(253, 241, 231, 0) 60%); }
.athma-rehab-home-hero-container { flex: 1; display: flex; flex-direction: column; justify-content: center; }
.athma-rehab-home-hero-row { row-gap: 44px; flex: 1; align-items: center; }
.athma-rehab-home-hero-col-text { display: flex; flex-direction: column; justify-content: center; padding:173px 0; }
.athma-rehab-home-hero-eyebrow { display: inline-flex; align-items: center; gap: 8px;}
.athma-rehab-home-hero-title { color: var(--athma-navy); line-height: 1.2; margin-bottom: 28px;font-size: 42px; }
.athma-rehab-home-hero-subtext { color: var(--athma-text-gray); line-height: 1.75; max-width: 470px; margin-bottom: 42px; }
.athma-rehab-home-hero-btn-group { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 39px; }
.athma-rehab-home-hero-btn-primary { padding: 14px 24px; font-size: var(--athma-fs-body); }
.athma-rehab-home-hero-btn-secondary { background-color: #fff; color: var(--athma-navy); font-weight: var(--athma-fw-em); font-size: var(--athma-fs-body); padding: 14px 24px; border: 1.5px solid var(--athma-border-light); display: inline-flex; align-items: center; gap: 8px; transition: border-color 0.2s ease, transform 0.2s ease; }
.athma-rehab-home-hero-btn-secondary:hover { border-color: var(--athma-navy); color: var(--athma-navy); transform: translateY(-2px); }

/* Quick program links — text only, no cards, no buttons */
.athma-rehab-home-hero-quicklinks { display: flex;  align-items: center; gap: 10px 22px; padding-top: 22px; border-top: var(--athma-rule); max-width: 486px; }
.athma-rehab-home-hero-quicklink { color: var(--athma-navy); font-size: var(--athma-fs-small); font-weight: var(--athma-fw-em); position: relative; transition: color 0.2s ease; }
.athma-rehab-home-hero-quicklink::after { content: ""; position: absolute; left: 0; bottom: -3px; width: 100%; height: 1px; background-color: var(--athma-orange); transform: scaleX(0); transform-origin: left; transition: transform 0.25s ease; }
.athma-rehab-home-hero-quicklink:hover { color: var(--athma-orange); }
.athma-rehab-home-hero-quicklink:hover::after { transform: scaleX(1); }
.athma-rehab-home-hero-quicklink-sep { color: var(--athma-border-light); }

.athma-rehab-home-hero-stats-strip { background-color: var(--athma-navy); background-image: linear-gradient(120deg, var(--athma-navy-dark) 0%, var(--athma-navy) 60%, var(--athma-navy-soft) 100%); padding: 25px 0 25px; margin-top: 0px; }
.athma-rehab-home-hero-stats-row { row-gap: 24px; }
.athma-rehab-home-hero-stats-col { flex: 1 1 0; text-align: center; border-right: 1px solid rgba(255, 255, 255, 0.12); display: flex; flex-direction: column; align-items: center; justify-content: center; }
.athma-rehab-home-hero-stats-col:last-child { border-right: none; }
.athma-rehab-home-hero-stats-col strong { display: block; color: #fff; font-size: 25px; font-weight: var(--athma-fw-em); margin-bottom: 4px; }
.athma-rehab-home-hero-stats-col span { color: rgba(255, 255, 255, 0.65); font-size: var(--athma-fs-small); font-weight: var(--athma-fw-base); }

/* Hero slider — 3 slides, crossfade, transparent side arrows */
.athma-rehab-home-hero-section { background-image: none; }
.athma-rehab-home-hero-slider { position: relative; flex: 1; display: flex; flex-direction: column; }
.athma-rehab-home-hero-slides { display: grid; flex: 1; }
.athma-rehab-home-hero-slide { grid-area: 1 / 1; position: relative; display: flex; flex-direction: column; justify-content: center; background-size: cover; background-position: top center; background-repeat: no-repeat; opacity: 0; visibility: hidden; transition: opacity 0.8s ease, visibility 0.8s ease; }
.athma-rehab-home-hero-slide.is-active { opacity: 1; visibility: visible; }
.athma-rehab-home-hero-slide::before { content: ""; position: absolute; inset: 0; background: linear-gradient(100deg, rgba(253,246,241,0.97) 0%, rgba(253,241,231,0.9) 7%, rgba(253,241,231,0.35) 40%, rgba(253,241,231,0) 60%); }
.athma-rehab-home-hero-slide > .container { position: relative; z-index: 1; }

/* Same image on all three for now — swap these three lines later */
.athma-rehab-home-hero-slide-1 { background-image: url('image/athma-home-banner.jpeg'); }
.athma-rehab-home-hero-slide-2 { background-image: url('image/athma-home-banner-2.png'); }
.athma-rehab-home-hero-slide-3 { background-image: url('image/athma-home-banner-3.png'); }

.athma-rehab-home-hero-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 3; width: 46px; height: 46px; border-radius: 50%; border: 1.5px solid rgba(11, 37, 89, 0.22); background-color: rgba(255, 255, 255, 0.28); backdrop-filter: blur(4px); color: var(--athma-navy); display: flex; align-items: center; justify-content: center; font-size: 24px; line-height: 1; padding-bottom: 3px; cursor: pointer; transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease; }
.athma-rehab-home-hero-arrow:focus { outline: none; }
.athma-rehab-home-hero-arrow-prev { left: 18px; }
.athma-rehab-home-hero-arrow-next { right: 18px; }


/* About / expert */
.athma-rehab-home-expert-section { padding: 72px 0	; background-color: #fff; }
.athma-rehab-home-expert-row { row-gap: 40px; }
.athma-rehab-home-expert-title { color: var(--athma-navy); margin-bottom: 18px; }
.athma-rehab-home-expert-text { color: var(--athma-text-gray); line-height: 1.8; margin-bottom: 18px; max-width: 540px; }
.athma-rehab-home-expert-cta-row { display: flex; flex-wrap: wrap; align-items: center; gap: 24px; margin-top: 26px; }
.athma-rehab-home-expert-btn { background-color: #f2701c; background-image: none; }
.athma-rehab-home-expert-btn:hover { background-color: var(--athma-navy-soft); box-shadow: 0 16px 32px rgba(11, 37, 89, 0.32); }
.athma-rehab-home-expert-call { display: flex; align-items: center; gap: 12px; color: var(--athma-navy); font-weight: var(--athma-fw-em); font-size: var(--athma-fs-body); }
.athma-rehab-home-expert-call span { display: flex; flex-direction: column; }
.athma-rehab-home-expert-call small { font-weight: var(--athma-fw-base); color: var(--athma-text-gray); font-size: 12px; }
.athma-rehab-home-expert-media { position: relative; padding: 0 24px 40px 0; }
.athma-rehab-home-expert-media-orb { position: absolute; border-radius: 50%; pointer-events: none; z-index: 0; }
.athma-rehab-home-expert-media-orb-one { width: 220px; height: 220px; top: -30px; right: -30px; background: radial-gradient(circle, rgba(24, 93, 155, 0.16) 0%, rgba(24, 93, 155, 0) 70%); animation: athmaExpertOrbFloat 6s ease-in-out infinite; }
.athma-rehab-home-expert-media-orb-two { width: 160px; height: 160px; bottom: 10px; left: -20px; background: radial-gradient(circle, rgba(11, 37, 89, 0.14) 0%, rgba(11, 37, 89, 0) 70%); animation: athmaExpertOrbFloat 7s ease-in-out infinite 0.8s; }
@keyframes athmaExpertOrbFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
.athma-rehab-home-expert-media-main { position: relative; z-index: 1; border-radius: var(--athma-radius-lg); overflow: hidden; box-shadow: 0 24px 60px rgba(11, 37, 89, 0.16); }
.athma-rehab-home-expert-media-main .athma-rehab-home-expert-media-image { aspect-ratio: 4 / 3; object-fit: cover; width: 100%; transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1); }
.athma-rehab-home-expert-media:hover .athma-rehab-home-expert-media-image { transform: scale(1.06); }

/* Who we are (parallax band) */
.athma-rehab-home-about-section { position: relative; background-image: url('image/who-we-are-bg.webp'); background-size: cover; background-position: center; background-repeat: no-repeat; background-attachment: fixed; padding: 169px 0; isolation: isolate; }
.athma-rehab-home-about-section::before { content: ""; position: absolute; inset: 0; background:#9d99954f; z-index: -1; }
.athma-rehab-home-about-col { text-align: center; }
.athma-rehab-home-about-title { color: #fff; margin-bottom: 20px;font-size: 28px;font-weight: 800; }
.athma-rehab-home-about-text { color:rgb(255 255 255 / 86%); line-height: 1.85; margin: 0 auto 30px; max-width: 660px;font-weight: 600; }
.athma-rehab-home-about-btn { box-shadow: 0 10px 26px rgba(24, 93, 155, 0.35); }
.col-md-4.athma-rehab-home-programs-list-col{width:97.333333% !important;}
.col-lg-7.athma-rehab-home-programs-col-content.athma-reveal-group {
    padding-left: 87px;
}



/* Programs */
.athma-rehab-home-programs-section { padding:85px 0px 85px; background-color: #fff; }
.athma-rehab-home-programs-row { row-gap: 36px; }
.athma-rehab-home-programs-media { position: relative; }
.athma-rehab-home-programs-media-frame { position: relative; border-radius: var(--athma-radius-lg); overflow: hidden; box-shadow: 0 24px 60px rgba(11, 37, 89, 0.16); aspect-ratio: 18 / 16; }
.athma-rehab-home-programs-image { width: 100%; height: 100%; object-fit: cover; will-change: transform; }
.athma-rehab-home-programs-title { color: var(--athma-navy); margin-bottom: 12px; }
.athma-rehab-home-programs-text { color: var(--athma-text-gray); margin-bottom: 26px; max-width: 540px; }
.athma-rehab-home-programs-list-row { row-gap: 14px; margin-bottom: 30px; }
.athma-rehab-home-programs-list-item { display: flex; align-items: center; gap: 14px; background-color: var(--athma-bg-light); border-radius: var(--athma-radius-md); padding: 16px; height: 100%; transition: background-color 0.2s ease, transform 0.2s ease; }
.athma-rehab-home-programs-list-item:hover {transform: translateX(4px); }
.athma-rehab-home-programs-list-item:hover .athma-rehab-home-programs-list-text,
.athma-rehab-home-programs-list-item:hover .athma-rehab-home-programs-list-text strong { color: var(--athma-navy); }
.athma-rehab-home-programs-list-text { display: flex; flex-direction: column; font-size: var(--athma-fs-small); color: var(--athma-text-gray); flex-grow: 1; line-height: 1.55; }
.athma-rehab-home-programs-list-text strong { font-size:14px; color: var(--athma-navy); font-weight: var(--athma-fw-em); margin-bottom: 2px; font-weight: 900;}
.athma-rehab-home-programs-btn { background-color:#f2701c; background-image: none;  }
.athma-rehab-home-programs-btn:hover { background-color: var(--athma-navy-soft); box-shadow: 0 16px 32px rgba(11, 37, 89, 0.3); }

/* Leadership */

.athma-rehab-home-leadership-section { padding: 60px 0; background-color: #d9781421; }
.athma-rehab-home-leadership-row { row-gap: 40px; }
.athma-rehab-home-leadership-col-photo { text-align: center; }
.athma-rehab-home-leadership-photo-wrap { position: relative; max-width: 400px; }
.athma-rehab-home-leadership-photo { width: 400px; height: 400px; max-width: 100%; margin: 0 auto 22px; border-radius: 8px; object-fit: cover; display: block; box-shadow: 0 5px 15px rgba(0,0,0,0.15); transition: opacity 0.2s ease; }
.athma-rehab-home-leadership-name { color: rgb(45 46 48 / 75%); margin-bottom: 4px; font-size: 21px;}
.athma-rehab-home-leadership-role { color: var(--athma-orange); font-size: var(--athma-fs-small); font-weight: var(--athma-fw-em); margin-bottom: 14px; }
.athma-rehab-home-leadership-dots { display: flex; align-items: center; justify-content: center; gap: 6px; }
.athma-rehab-home-leadership-dots span { width: 7px; height: 7px; border-radius: 50%; background-color: rgb(84 82 82 / 30%); transition: background-color 0.2s ease, transform 0.2s ease; cursor: pointer; }
.athma-rehab-home-leadership-dots span.is-active { background-color: var(--athma-orange); transform: scale(1.3); }
.athma-rehab-home-leadership-eyebrow { position: relative;  }
.athma-rehab-home-leadership-title { color: rgb(45 46 48 / 75%); margin-bottom: 20px; }
.athma-rehab-home-leadership-text { color: rgb(45 46 48 / 75%); line-height: 1.8; margin-bottom: 18px; max-width:752px; }
.athma-rehab-home-leadership-btn { margin-top: 10px; }

/* Tamil Nadu journey map */
.athma-rehab-home-journey-section { padding: 60px 0; background-color:#d9781421; }
.athma-rehab-home-journey-row { row-gap: 40px; }
.athma-rehab-home-journey-location { display: inline-flex; align-items: center; gap: 8px; color: var(--athma-orange); font-weight: var(--athma-fw-em); letter-spacing: 0.06em; text-transform: uppercase; font-size: var(--athma-fs-small); margin-bottom: 16px; }
.athma-rehab-home-journey-location strong { color: var(--athma-navy); }
.athma-rehab-home-journey-title { color: var(--athma-navy); margin-bottom: 16px; }
.athma-rehab-home-journey-text { color: var(--athma-text-gray); line-height: 1.75; margin-bottom: 26px; padding-bottom: 22px; border-bottom: 2px solid var(--athma-orange); display: inline-block; }
.athma-rehab-home-journey-stat { display: flex; align-items: center; gap: 16px; background-color: #fff; border: 1.5px solid rgba(24, 93, 155, 0.3); border-radius: var(--athma-radius-lg); padding: 18px; }
.athma-rehab-home-journey-stat-copy { display: flex; flex-direction: column; }
.athma-rehab-home-journey-stat-copy strong { color: var(--athma-navy); font-size: 23px; font-weight: var(--athma-fw-em); line-height: 1.15; }
.athma-rehab-home-journey-stat-copy > span { color: var(--athma-orange); font-weight: var(--athma-fw-em); font-size: var(--athma-fs-small); }
.athma-rehab-home-journey-stat-copy > span small { display: block; color: var(--athma-text-gray); font-weight: var(--athma-fw-base); font-size: 12px; }
.athma-rehab-home-journey-map-wrap { position: relative; max-width: 640px; margin: 0 auto; }
.athma-rehab-home-journey-map-glow { position: absolute; inset: -8%; z-index: 0;  pointer-events: none; }
.athma-rehab-home-journey-map-img { position: relative; z-index: 1; width: 100%; }
.athma-rehab-home-journey-pin { position: absolute; display: flex; flex-direction: column; align-items: center; gap: 4px; background: none; border: none; padding: 0; cursor: pointer; z-index: 2; opacity: 0; transform: translate(-50%, -85%) scale(0.6); transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1); }
.athma-rehab-home-journey-pin:hover, .athma-rehab-home-journey-pin:focus-visible { z-index: 50; }
.athma-rehab-home-journey-pin.is-visible { opacity: 1; transform: translate(-50%, -100%) scale(1); }
.athma-rehab-home-journey-pin-avatar { width: 46px; height: 46px; border-radius: 8px; overflow: hidden; border: 3px solid #fff; box-shadow: 0 8px 18px rgba(11, 37, 89, 0.28); transition: transform 0.2s ease; }
.athma-rehab-home-journey-pin-avatar img { width: 100%; height: 100%; object-fit: cover; }
.athma-rehab-home-journey-pin:hover .athma-rehab-home-journey-pin-avatar { transform: scale(1.1); }
.athma-rehab-home-journey-pin-marker { width: 14px; height: 14px; border-radius: 50%; background-color: #153476; border: 2px solid #fff; box-shadow: 0 3px 6px rgba(11, 37, 89, 0.4); }
.athma-rehab-home-journey-map-img, .athma-rehab-home-journey-pin-avatar img, .athma-rehab-home-journey-testimonial-avatar img { image-rendering: -webkit-optimize-contrast; backface-visibility: hidden; transform: translateZ(0); }
.athma-rehab-home-journey-pin-marker-main { width: 30px; height: 30px; border-radius: 50%; background-color: #fff; display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 20px rgba(11, 37, 89, 0.4); position: relative; border: none; }
.athma-rehab-home-journey-pin-marker-main::before { content: ""; width: 12px; height: 12px; border-radius: 50%; background-color: var(--athma-navy); }
.athma-rehab-home-journey-pin-marker-main::after { content: ""; position: absolute; inset: -8px; border-radius: 50%; border: 2px solid var(--athma-navy); opacity: 0.5; animation: athmaJourneyPingRing 2.2s ease-out infinite; }
@keyframes athmaJourneyPingRing { 0% { transform: scale(1); opacity: 0.6; } 100% { transform: scale(1.9); opacity: 0; } }
.athma-rehab-home-journey-pin-label { background-color: #fff; color: var(--athma-navy); font-size: 10px; font-weight: var(--athma-fw-em); letter-spacing: 0.04em; padding: 3px 9px; border-radius: 999px; white-space: nowrap; box-shadow: 0 4px 10px rgba(11, 37, 89, 0.18); }
.athma-rehab-home-journey-pin-label-main { background-color: var(--athma-navy); color: #fff; font-size: 11px; }
.athma-rehab-home-journey-pin-tooltip { position: absolute; bottom: calc(100% + 14px); left: 50%; transform: translate(-50%, 8px) scale(0.92); transform-origin: bottom center; width: 168px; background-color: var(--athma-navy); color: rgba(255, 255, 255, 0.9); font-size: 12px; line-height: 1.5; text-align: left; padding: 12px 14px; border-radius: 8px; box-shadow: 0 16px 32px rgba(11, 37, 89, 0.3); opacity: 0; pointer-events: none; z-index: 3; transition: opacity 0.2s ease, transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1); }
.athma-rehab-home-journey-pin-tooltip strong { display: block; color: var(--athma-orange); font-size: 12.5px; margin-bottom: 3px; }
.athma-rehab-home-journey-pin-tooltip::after { content: ""; position: absolute; top: 100%; left: 50%; transform: translateX(-50%); width: 0; height: 0; border-left: 7px solid transparent; border-right: 7px solid transparent; border-top: 7px solid var(--athma-navy); }
.athma-rehab-home-journey-pin:hover .athma-rehab-home-journey-pin-tooltip, .athma-rehab-home-journey-pin:focus-visible .athma-rehab-home-journey-pin-tooltip { opacity: 1; transform: translate(-50%, 0) scale(1); pointer-events: auto; }
.athma-rehab-home-journey-testimonial-panel { background-color: #fff; border-radius: var(--athma-radius-lg); padding: 26px 24px; box-shadow: var(--athma-shadow-soft); }
.athma-rehab-home-journey-testimonial-eyebrow { color: var(--athma-navy); text-transform: none; letter-spacing: 0; font-size: var(--athma-fs-h4); margin-bottom: 2px; }
.athma-rehab-home-journey-testimonial-title { color: var(--athma-orange); margin-bottom: 18px; }
.athma-rehab-home-journey-testimonial-list { display: flex; flex-direction: column; gap: 16px; }
.athma-rehab-home-journey-testimonial-list li { display: flex; gap: 12px; align-items: flex-start; }
.athma-rehab-home-journey-testimonial-avatar { width: 40px; height: 40px; border-radius: 50%; overflow: hidden; flex-shrink: 0; }
.athma-rehab-home-journey-testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; }
.athma-rehab-home-journey-testimonial-copy { font-size: var(--athma-fs-small); line-height: 1.6; color: var(--athma-text-gray); }
.athma-rehab-home-journey-testimonial-copy strong { display: block; color: var(--athma-orange); margin-bottom: 2px; }
.athma-rehab-home-journey-bottom-bar { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; background-color: #ffffff; border-radius: var(--athma-radius-lg); padding: 22px 28px; margin-top: 30px; box-shadow: 0 12px 32px rgba(11, 30, 49, 0.08); }
.athma-rehab-home-journey-bottom-text { color: #3a3939; font-weight: var(--athma-fw-base); font-size: var(--athma-fs-body); }
.athma-rehab-home-journey-bottom-text strong { color: var(--athma-orange); }
.athma-rehab-home-journey-bottom-note { color: #404142; font-size: var(--athma-fs-small); margin: 0; text-align: center; flex: 1; }
.athma-rehab-home-journey-bottom-cta { display: flex; align-items: center; gap: 12px; background-color: var(--athma-orange); background-image: linear-gradient(135deg, var(--athma-orange) 0%, var(--athma-orange-dark) 100%); color: #fff; padding: 12px 22px; border-radius: var(--athma-radius-btn); transition: transform 0.2s ease; }
.athma-rehab-home-journey-bottom-cta:hover { color: #fff; transform: translateY(-2px); }
.athma-rehab-home-journey-bottom-cta-copy { display: flex; flex-direction: column; font-weight: var(--athma-fw-em); font-size: var(--athma-fs-body); white-space: nowrap; }
.athma-rehab-home-journey-bottom-cta-copy small { font-weight: var(--athma-fw-base); font-size: 12px; opacity: 0.85; }

/* Facility strip + testimonials */
.athma-rehab-home-process-section { padding: 60px 0; background-color: #fff; position: relative; isolation: isolate; }
.athma-rehab-home-process-eyebrow { text-align: center; margin-bottom: 26px; }
.athma-rehab-home-process-row { row-gap: 16px; }
.athma-rehab-home-process-card { background-color: #fff; border-radius: var(--athma-radius-lg); overflow: hidden; box-shadow: var(--athma-shadow-soft); height: 100%; border: 1.5px solid var(--athma-border-light); transition: transform 0.25s ease, box-shadow 0.25s ease; }
.athma-rehab-home-process-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(11,37,89,0.14); }
.athma-rehab-home-process-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.athma-rehab-home-process-label { margin: 0; padding: 16px 14px; font-size: var(--athma-fs-small); font-weight: var(--athma-fw-base); line-height: 1.4; color: var(--athma-navy); background-color: var(--athma-bg-light); text-align: center; }
.athma-rehab-home-testimonials-section { padding: 70px 0; background-color: #f6f8fc; background-image: linear-gradient(rgb(224 227 235 / 78%)), url('image/testimonials-bg.webp'); background-size: cover; background-position: center top; background-repeat: no-repeat; position: relative; isolation: isolate; }
.athma-rehab-home-testimonials-section .athma-rehab-home-process-eyebrow { color: #2c3a6e; text-shadow: 0 2px 10px rgba(11,37,89,0.45); font-size: 21px; font-weight: 700;}

/* FAQ — CSS-drawn toggle, no icon font */
.athma-rehab-home-faq-section { padding: 60px 0; background-color: #fff; }
.athma-rehab-home-faq-heading-wrap { max-width: 660px; margin: 0 auto 42px; }
.athma-rehab-home-faq-title { color: var(--athma-navy); }
.athma-rehab-home-faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.athma-rehab-home-faq-item { background-color: var(--athma-bg-light); border-radius: var(--athma-radius-lg); overflow: hidden; border: 2px solid transparent; transition: border-color 0.2s ease; }
.athma-rehab-home-faq-item.is-open { border-color: rgba(24, 93, 155, 0.35); background-color: #fff; box-shadow: 0 20px 44px rgba(11,37,89,0.1); }
.athma-rehab-home-faq-question { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; background: none; border: none; padding: 22px 26px; text-align: left; cursor: pointer; color: var(--athma-navy); font-family: var(--athma-font-body); font-size: var(--athma-fs-h4); font-weight: var(--athma-fw-em); }
.athma-rehab-home-faq-question::after { content: ""; flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%; background-color: rgba(24,93,155,0.1); background-image: linear-gradient(var(--athma-orange), var(--athma-orange)), linear-gradient(var(--athma-orange), var(--athma-orange)); background-size: 12px 2px, 2px 12px; background-position: center, center; background-repeat: no-repeat; transition: transform 0.25s ease, background-color 0.25s ease; }
.athma-rehab-home-faq-item.is-open .athma-rehab-home-faq-question::after { transform: rotate(45deg); background-color: var(--athma-orange); background-image: linear-gradient(#fff, #fff), linear-gradient(#fff, #fff); }
.athma-rehab-home-faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.35s ease; padding: 0 26px; }
.athma-rehab-home-faq-item.is-open .athma-rehab-home-faq-answer { max-height: 500px; padding: 0 26px 24px; }
.athma-rehab-home-faq-answer p { color: var(--athma-text-gray); line-height: 1.8; margin: 0; }

/* CTA — the ONLY section that keeps icons */
.athma-rehab-home-cta-section { position: relative; background-image: url('image/all-cta-bg.webp'); background-size: cover; background-position: center; background-repeat: no-repeat; padding: 100px 0; isolation: isolate; }
.athma-rehab-home-cta-section::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(141deg, rgb(255 167 104 / 15%) -5%, rgb(163 116 67 / 24%) 87%); }
.athma-rehab-home-cta-title { color: rgb(22 37 60 / 78%); margin-bottom: 18px; }
.athma-rehab-home-cta-text { color: rgb(22 37 60 / 78%); line-height: 1.75; max-width: 580px; margin: 0 auto 34px; }
.athma-rehab-home-cta-btn-row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 26px; }
.athma-rehab-home-cta-btn { padding: 14px 24px; font-size: var(--athma-fs-body); }
.athma-rehab-home-cta-call { display: flex; align-items: center; gap: 12px; color: #fff; font-weight: var(--athma-fw-em); font-size: var(--athma-fs-body); }
.athma-rehab-home-cta-call-icon { width: 46px; height: 46px; border-radius: 50%; background-color: rgba(255,255,255,0.12); color: var(--athma-orange); display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.athma-rehab-home-cta-call span { display: flex; flex-direction: column; }
.athma-rehab-home-cta-call small { font-weight: var(--athma-fw-base); color: rgb(0 0 0 / 65%); font-size: 12px; }

/* ============ 7. FOOTER ============ */
.athma-rehab-home-footer-section { background-color: #153360; padding: 56px 0 0; position: relative; }
.athma-rehab-home-footer-row { row-gap: 32px; }
.athma-rehab-home-footer-col-brand { padding-right: 30px; }
.athma-rehab-home-footer-brand { display: inline-flex; margin-bottom: 14px; }
.athma-rehab-home-footer-logo { width: 300px; height: auto; }
.athma-rehab-home-footer-about-text { color: rgba(255, 255, 255, 0.65); font-size: var(--athma-fs-small); line-height: 1.8; margin-bottom: 18px; max-width: 400px; }
.athma-rehab-home-footer-social-list { display: flex; flex-wrap: wrap; gap: 10px 18px; }
.athma-rehab-home-footer-social-list a { color: rgba(255, 255, 255, 0.65); font-size: var(--athma-fs-small); font-weight: var(--athma-fw-em); transition: color 0.2s ease; }
.athma-rehab-home-footer-social-list a:hover { color: var(--athma-orange); }
.athma-rehab-home-footer-heading { margin-top: 12px; color: #fff; font-size: var(--athma-fs-h4); font-weight: var(--athma-fw-em); margin-bottom: 16px; }
.athma-rehab-home-footer-link-list li { margin-bottom: 11px; }
.athma-rehab-home-footer-link-list a { display: inline-flex; align-items: center; gap: 7px; color: rgba(255, 255, 255, 0.65); font-size: var(--athma-fs-small); transition: color 0.2s ease; }
.athma-rehab-home-footer-link-list a:hover { color: var(--athma-orange); }
.athma-rehab-home-footer-link-tag { font-size: 10.5px; font-weight: var(--athma-fw-em); text-transform: uppercase; letter-spacing: 0.03em; padding: 2px 7px; border-radius: 999px; background-color: var(--athma-orange); color: #fff; }
.athma-rehab-home-footer-contact-bar { display: flex; flex-wrap: wrap; align-items: center; gap: 20px 32px; margin-top: 36px; padding-top: 26px; border-top: 1px solid rgba(255, 255, 255, 0.1); }
.athma-rehab-home-footer-contact-bar-heading { color: #fff; font-size: var(--athma-fs-h4); font-weight: var(--athma-fw-em); margin: 0; flex-shrink: 0; }
.athma-rehab-home-footer-contact-list { display: flex; flex-wrap: wrap; gap: 12px 30px; }
.athma-rehab-home-footer-contact-list li { display: flex; align-items: center; gap: 9px; color: rgba(255, 255, 255, 0.65); font-size: var(--athma-fs-small); }
.athma-rehab-home-footer-contact-list a { color: rgba(255, 255, 255, 0.65); }
.athma-rehab-home-footer-contact-list a:hover { color: var(--athma-orange); }
.athma-rehab-home-footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.1); margin-top: 26px; padding: 18px 0; }
.athma-rehab-home-footer-bottom p { color: rgba(255, 255, 255, 0.55); font-size: var(--athma-fs-small); margin: 0; text-align: center; }

/* ============ 8. FLOATING WIDGETS ============ */
.athma-rehab-whatsapp-widget { position: fixed; bottom: 108px; right: 24px; left: auto; z-index: 1150; }
.athma-rehab-whatsapp-launcher { width: 43px; height: 43px; border-radius: 50%; border: none; background-color: #25d366; color: #fff; font-size: 29px; line-height: 1; display: flex; align-items: center; justify-content: center; cursor: pointer; box-shadow: 0 12px 28px rgba(37, 211, 102, 0.45); animation: athmaWhatsappPulse 2.6s ease-in-out infinite; transition: transform 0.25s ease; }.athma-rehab-whatsapp-launcher:hover { transform: scale(1.08); }
.athma-rehab-whatsapp-launcher:focus { outline: none; }
.athma-rehab-whatsapp-widget.is-open .athma-rehab-whatsapp-launcher { display: none; }
i.fa-brands.fa-whatsapp {color: #fbfcfb;font-size: 24px;}
@keyframes athmaWhatsappPulse { 0%, 100% { box-shadow: 0 12px 28px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0.4); } 50% { box-shadow: 0 12px 28px rgba(37, 211, 102, 0.45), 0 0 0 12px rgba(37, 211, 102, 0); } }
.athma-rehab-whatsapp-panel { position: absolute; bottom: 0; right: 0; width: 300px; background-color: #fff; border-radius: 8px; overflow: hidden; box-shadow: 0 24px 56px rgba(11, 37, 89, 0.24); opacity: 0; transform: translateY(16px) scale(0.96); pointer-events: none; transition: opacity 0.22s ease, transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1); }
.athma-rehab-whatsapp-widget.is-open .athma-rehab-whatsapp-panel { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.athma-rehab-whatsapp-panel-header { display: flex; align-items: center; gap: 10px; background-color: #25d366; padding: 14px 16px; }
.athma-rehab-whatsapp-panel-header-text { display: flex; flex-direction: column; flex-grow: 1; }
.athma-rehab-whatsapp-panel-header-text strong { color: #fff; font-size: var(--athma-fs-small); font-weight: var(--athma-fw-em); }
.athma-rehab-whatsapp-panel-header-text small { color: rgba(255, 255, 255, 0.85); font-size: 12px; }
.athma-rehab-whatsapp-panel-close { width: 28px; height: 28px; border-radius: 50%; border: none; background-color: rgba(255, 255, 255, 0.2); color: #fff; display: flex; align-items: center; justify-content: center; flex-shrink: 0; cursor: pointer; font-size: 16px; line-height: 1; }
.athma-rehab-whatsapp-panel-body { padding: 12px; display: flex; flex-direction: column; gap: 8px; }
.athma-rehab-whatsapp-contact { display: flex; align-items: center; gap: 10px; padding: 12px; border-radius: 8px; border: 1.5px solid var(--athma-border-light); transition: background-color 0.2s ease, border-color 0.2s ease; }
.athma-rehab-whatsapp-contact:hover { background-color: #f0fdf5; border-color: #25d366; }
.athma-rehab-whatsapp-contact-copy { display: flex; flex-direction: column; flex-grow: 1; }
.athma-rehab-whatsapp-contact-copy strong { color: var(--athma-navy); font-size: var(--athma-fs-small); }
.athma-rehab-whatsapp-contact-copy small { color: var(--athma-text-gray); font-size: 12px; }
p.new-text {
    margin: 0;
    font-size: 15px;
}

.athma-rehab-chatbot { position: fixed; bottom: 24px; right: 24px; z-index: 1200; }
.athma-rehab-chatbot-launcher-wrap { position: relative; display: flex; align-items: center; gap: 10px; }
.athma-rehab-chatbot.is-open .athma-rehab-chatbot-launcher-wrap { display: none; }
.athma-rehab-chatbot-launcher-bubble { background-color: #fff; color: var(--athma-navy); font-size: 11px; line-height: 1.4; padding: 10px 14px; border-radius: 8px; box-shadow: 0 12px 28px rgba(11, 37, 89, 0.2); max-width: 168px; position: relative; animation: athmaChatbotBubbleFloat 3s ease-in-out infinite; }
.athma-rehab-chatbot-launcher-bubble strong { display: block; color: var(--athma-orange); font-size: 12px; margin-bottom: 2px; }
.athma-rehab-chatbot-launcher-bubble::after { content: ""; position: absolute; top: 50%; right: -6px; transform: translateY(-50%); width: 0; height: 0; border-top: 7px solid transparent; border-bottom: 7px solid transparent; border-left: 7px solid #fff; }
@keyframes athmaChatbotBubbleFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }
.athma-rehab-chatbot-launcher { position: relative; width: 68px; height: 68px; border-radius: 50%; border: none; background-color: #fff; padding: 4px; display: flex; align-items: center; justify-content: center; cursor: pointer; box-shadow: 0 12px 28px rgba(24, 93, 155, 0.45); animation: athmaChatbotPulse 2.6s ease-in-out infinite; transition: transform 0.25s ease; }
.athma-rehab-chatbot-launcher:hover { transform: scale(1.08); }
.athma-rehab-chatbot-launcher:focus { outline: none; }
.athma-rehab-chatbot-launcher-gif { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; }
@keyframes athmaChatbotPulse { 0%, 100% { box-shadow: 0 12px 28px rgba(24, 93, 155, 0.45), 0 0 0 0 rgba(24, 93, 155, 0.4); } 50% { box-shadow: 0 12px 28px rgba(24, 93, 155, 0.45), 0 0 0 12px rgba(24, 93, 155, 0); } }
.athma-rehab-chatbot-launcher-badge { position: absolute; top: 0; right: 0; width: 22px; height: 22px; border-radius: 50%; background-color: var(--athma-navy); color: #fff; font-size: 10px; font-weight: var(--athma-fw-em); display: flex; align-items: center; justify-content: center; border: 2.5px solid #fff; }
.athma-rehab-chatbot-panel { position: fixed; bottom: 24px; right: 24px; width: 380px; max-height: min(640px, calc(100vh - 48px)); display: flex; flex-direction: column; background-color: #fff; border-radius: 8px; overflow: hidden; box-shadow: 0 30px 70px rgba(11, 37, 89, 0.28); opacity: 0; transform: translateY(24px) scale(0.96); pointer-events: none; transition: opacity 0.25s ease, transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1); }
.athma-rehab-chatbot.is-open .athma-rehab-chatbot-panel { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.athma-rehab-chatbot-header { display: flex; align-items: center; gap: 12px; background-color: #153360; padding: 16px 18px; flex-shrink: 0; }
.athma-rehab-chatbot-header-avatar { width: 44px; height: 44px; border-radius: 50%; overflow: hidden; background-color: #fff; flex-shrink: 0; }
.athma-rehab-chatbot-header-avatar img { width: 100%; height: 100%; object-fit: cover; }
.athma-rehab-chatbot-header-text { display: flex; flex-direction: column; flex-grow: 1; min-width: 0; }
.athma-rehab-chatbot-header-text strong { color: #fff; font-size: var(--athma-fs-h4); font-weight: var(--athma-fw-em); }
.athma-rehab-chatbot-header-text small { color: rgba(255, 255, 255, 0.85); font-size: 12.5px; }
.athma-rehab-chatbot-header-status { display: flex; align-items: center; gap: 5px; color: #dff5ff; font-size: 12px; font-weight: var(--athma-fw-em); margin-top: 2px; }
.athma-rehab-chatbot-online-dot { width: 7px; height: 7px; border-radius: 50%; background-color: #4ade80; box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.3); }
.athma-rehab-chatbot-close { position: relative; z-index: 5; width: 32px; height: 32px; border-radius: 50%; border: none; background-color: rgba(255, 255, 255, 0.16); color: #fff; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 16px; line-height: 1; cursor: pointer; transition: background-color 0.2s ease; }
.athma-rehab-chatbot-close:hover { background-color: rgba(255, 255, 255, 0.28); }
.athma-rehab-chatbot-body { background-color: #fbfbfd; background-repeat: repeat; background-size: 220px; flex-grow: 1; overflow-y: auto; padding: 18px; display: flex; flex-direction: column; gap: 14px; }
.athma-rehab-chatbot-message { display: flex; align-items: flex-start; gap: 8px; }
.athma-rehab-chatbot-message-avatar { width: 30px; height: 30px; border-radius: 50%; overflow: hidden; flex-shrink: 0; }
.athma-rehab-chatbot-message-avatar img { width: 100%; height: 100%; object-fit: cover; }
.athma-rehab-chatbot-message-bubble { background-color: #fff; border: 1px solid var(--athma-border-light); border-radius: 8px 8px 8px 3px; padding: 12px 14px; max-width: 82%; }
.athma-rehab-chatbot-message-bubble p { color: var(--athma-text-dark); font-size: var(--athma-fs-small); line-height: 1.6; margin: 0 0 6px; }
.athma-rehab-chatbot-message-bubble p strong { color: var(--athma-orange); }
.athma-rehab-chatbot-message-time { display: flex; align-items: center; gap: 4px; color: #2563eb; font-size: 11.5px; font-weight: var(--athma-fw-em); }
.athma-rehab-chatbot-message-user { flex-direction: row-reverse; }
.athma-rehab-chatbot-message-user .athma-rehab-chatbot-message-bubble { background-color: var(--athma-orange); border: none; border-radius: 8px 8px 3px 8px; }
.athma-rehab-chatbot-message-user .athma-rehab-chatbot-message-bubble p { color: #fff; }
.athma-rehab-chatbot-message-user .athma-rehab-chatbot-message-time { color: rgba(255, 255, 255, 0.8); }
.athma-rehab-chatbot-menu { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.athma-rehab-chatbot-menu-item { display: flex; align-items: center; gap: 8px; background-color: #fff; border: 1.5px solid rgba(24, 93, 155, 0.28); border-radius: 8px; padding: 11px 12px; color: var(--athma-text-dark); font-family: var(--athma-font-body); font-size: 12px; font-weight: var(--athma-fw-em); text-align: left; cursor: pointer; transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease; }
.athma-rehab-chatbot-menu-item:hover { background-color: #eaf3fb; border-color: var(--athma-orange); transform: translateY(-2px); }
.athma-rehab-chatbot-menu-item-wide { grid-column: 1 / -1; justify-content: center; }
.athma-rehab-chatbot-answer-list { margin: 8px 0 0; display: flex; flex-direction: column; gap: 6px; }
.athma-rehab-chatbot-answer-list li { font-size: var(--athma-fs-small); }
.athma-rehab-chatbot-answer-list-doctors li span { display: flex; flex-direction: column; line-height: 1.4; }
.athma-rehab-chatbot-answer-list-doctors li span strong { color: var(--athma-navy); font-size: var(--athma-fs-small); }
.athma-rehab-chatbot-answer-list-doctors li span small { color: var(--athma-text-gray); font-size: 12px; }
.athma-rehab-chatbot-answer-list-doctors li span em { color: var(--athma-orange); font-style: normal; font-weight: var(--athma-fw-em); font-size: 12px; margin-top: 1px; }
.athma-rehab-chatbot-answer-btn-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.athma-rehab-chatbot-answer-btn { display: inline-flex; align-items: center; gap: 6px; background-color: var(--athma-orange); color: #fff; font-size: 12.5px; font-weight: var(--athma-fw-em); padding: 8px 14px; border-radius: 999px; transition: background-color 0.2s ease, transform 0.2s ease; }
.athma-rehab-chatbot-answer-btn:hover { background-color: var(--athma-orange-dark); color: #fff; transform: translateY(-1px); }
.athma-rehab-chatbot-answer-btn-whatsapp { background-color: #25d366; }
.athma-rehab-chatbot-answer-btn-whatsapp:hover { background-color: #1eb857; }
.athma-rehab-chatbot-input-row { display: flex; align-items: center; gap: 10px; padding: 12px 14px; border-top: var(--athma-rule); flex-shrink: 0; }
.athma-rehab-chatbot-input { flex-grow: 1; border: 1.5px solid var(--athma-border-light); background-color: var(--athma-bg-light); border-radius: 999px; padding: 10px 16px; font-size: var(--athma-fs-small); font-family: var(--athma-font-body); color: var(--athma-text-dark); transition: border-color 0.2s ease, background-color 0.2s ease; }
.athma-rehab-chatbot-input:focus { outline: none; border-color: var(--athma-orange); background-color: #fff; }
.athma-rehab-chatbot-send { padding: 0 16px; height: 38px; border-radius: 999px; border: none; background-color: var(--athma-orange); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: var(--athma-fw-em); text-transform: uppercase; letter-spacing: 0.04em; flex-shrink: 0; cursor: pointer; transition: background-color 0.2s ease, transform 0.2s ease; }
.athma-rehab-chatbot-send:hover { background-color: var(--athma-orange-dark); transform: scale(1.04); }
.athma-rehab-chatbot-footer { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 10px; color: var(--athma-text-gray); font-size: 12px; border-top: var(--athma-rule); flex-shrink: 0; }
.athma-rehab-chatbot-footer-logo { height: 18px; width: auto; }

/* Our Services — aside list + three photo cards */
.athma-rehab-home-services-section { padding: 90px 0; background-color: #ffffff; }
.athma-rehab-home-services-row { row-gap: 28px; align-items: stretch; }
.athma-rehab-home-services-aside { background-color:rgb(255 255 255); border-radius: var(--athma-radius-lg); padding: 28px 24px; height: 100%; }
.athma-rehab-home-services-title { color: var(--athma-navy); margin-bottom: 22px; }
.athma-rehab-home-services-list li { border-bottom: 1px solid rgba(11, 37, 89, 0.12); }
.athma-rehab-home-services-list li:last-child { border-bottom: none; }
.athma-rehab-home-services-list a { display: block; padding: 13px 0; color: var(--athma-text-gray); font-size: var(--athma-fs-small); font-weight: var(--athma-fw-base); transition: color 0.2s ease, padding-left 0.2s ease; }
.athma-rehab-home-services-list a:hover { color: var(--athma-orange); padding-left: 6px; }

.athma-rehab-home-services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; height: 100%; }
.athma-rehab-home-services-card { position: relative; display: block; border-radius: var(--athma-radius-lg); overflow: hidden; background-color: var(--athma-bg-light); }
.athma-rehab-home-services-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.athma-rehab-home-services-card:hover img { transform: scale(1.07); }
.athma-rehab-home-services-card-overlay { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(11, 37, 89, 0.78) 0%, rgba(11, 37, 89, 0.25) 17%, rgba(11, 37, 87, 0) 30%); }
.athma-rehab-home-services-card-label { position: absolute; left: 18px; right: 18px; bottom: 18px; z-index: 1; display: flex; align-items: flex-end; justify-content: space-between; gap: 12px; color: #fff; font-size: 13px; font-weight: var(--athma-fw-em); line-height: 1.35; }
.athma-rehab-home-services-card-arrow { flex-shrink: 0; width: 29px;height: 29px; border-radius: 50%; background-color: #fff; color: var(--athma-navy); display: flex; align-items: center; justify-content: center; font-size: 16px; transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease; }
.athma-rehab-home-services-card:hover .athma-rehab-home-services-card-arrow { background-color: var(--athma-orange); color: #fff; transform: translateX(3px); }

/* Cookie bar */
.athma-cookie-consent { position: fixed; left: 0; right: 0; bottom: 0; width: 100%; background-color: #fff; box-shadow: 0 -14px 40px rgba(11,37,89,0.18); z-index: 1400; border-top: 3px solid var(--athma-orange); transform: translateY(100%); transition: transform 0.5s cubic-bezier(0.19,1,0.22,1); }
.athma-cookie-consent.is-visible { transform: translateY(0); }
.athma-cookie-consent-inner { max-width: 1160px; margin: 0 auto; padding: 28px 32px; display: flex; align-items: center; gap: 28px; }
.athma-cookie-consent-copy { flex: 1; min-width: 0; }
.athma-cookie-consent-title { display: block; color: var(--athma-navy); font-size: var(--athma-fs-h4); font-weight: var(--athma-fw-em); margin-bottom: 6px; }
.athma-cookie-consent-text { margin: 0; color: var(--athma-text-gray); font-size: var(--athma-fs-small); line-height: 1.6; }
.athma-cookie-consent-text a { color: var(--athma-navy); font-weight: var(--athma-fw-em); text-decoration: underline; }
.athma-cookie-consent-actions { flex-shrink: 0; }
.athma-cookie-consent-accept { padding: 13px 28px; font-size: var(--athma-fs-body); }

/* Promo modal */
.athma-promo-modal { position: fixed !important; inset: 0; z-index: 1500; display: flex; align-items: center; justify-content: center; padding: 20px; opacity: 0; pointer-events: none !important; transition: opacity 0.3s ease; }
.athma-promo-modal.is-open { opacity: 1; pointer-events: auto !important; }
.athma-promo-modal-backdrop { position: absolute; inset: 0; background-color: rgba(11,37,89,0.45); }
.athma-promo-modal-dialog { position: relative; width: 100%; max-width: 746px; border-radius: 8px; overflow: hidden; box-shadow: 0 40px 90px rgba(0,0,0,0.4); transform: scale(0.94) translateY(16px); transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1); }
.athma-promo-modal.is-open .athma-promo-modal-dialog { transform: scale(1) translateY(0); }
.athma-promo-modal-close { position: absolute; top: 16px; right: 16px; z-index: 3; width: 38px; height: 38px; border-radius: 50%; border: none; background-color: rgba(255,255,255,0.92); color: var(--athma-navy); display: flex; align-items: center; justify-content: center; font-size: 17px; line-height: 1; cursor: pointer; transition: background-color 0.2s ease, transform 0.2s ease; }
.athma-promo-modal-close:hover { background-color: var(--athma-orange); color: #fff; transform: rotate(90deg); }
.athma-promo-modal-media { position: relative; width: 100%; aspect-ratio: 1422 / 1106; background-color: #0b2559; }
.athma-promo-modal-media-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; clip-path: inset(0 100% 0 0); transform: scale(1.15); transition: clip-path 0.9s cubic-bezier(0.65,0,0.35,1) 0.15s, transform 1.1s cubic-bezier(0.16,1,0.3,1) 0.15s; }
.athma-promo-modal.is-open .athma-promo-modal-media-img { clip-path: inset(0 0 0 0); transform: scale(1); }
.athma-promo-modal-title-letter { display: inline-block; opacity: 0; transform: translateY(14px); transition: opacity 0.35s ease, transform 0.35s ease; }
.athma-promo-modal.is-open .athma-promo-modal-title-letter { opacity: 1; transform: translateY(0); }
.athma-promo-modal-overlay { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; padding: 26px 26px 28px; background: linear-gradient(0deg, rgba(11,37,89,0.92) 0%, rgba(11,37,89,0.72) 38%, rgba(11,37,89,0.05) 72%, rgba(11,37,89,0) 100%); }
.athma-promo-modal-title { color: #fff; margin-bottom: 8px; }
.athma-promo-modal-subtext { color: rgba(255,255,255,0.85); line-height: 1.6; margin-bottom: 20px; }
.athma-promo-modal-actions { display: flex; flex-direction: row; gap: 12px; }
.athma-promo-modal-btn { flex: 1; min-width: 0; display: flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 14px; border-radius: 8px; font-size: var(--athma-fs-small); font-weight: var(--athma-fw-em); cursor: pointer; background-color: transparent; border: 1.5px solid #fff; color: #fff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.athma-promo-modal-btn:hover { background-color: transparent; border-color: #fff; color: #fff; }

/* ============ 9. FACILITIES PAGE ============ */
.athma-rehab-facilities-hero-section { position: relative; background-image: url('image/facilities-hero-bg.webp'); background-size: cover; background-position: center; background-repeat: no-repeat; padding: 210px 0 210px; isolation: isolate; }
.athma-rehab-facilities-hero-section::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(72deg, rgba(8, 26, 64, 0.92) 0%, rgb(23 45 90 / 86%) 19%, rgba(11, 37, 89, 0.4) 65%); }
.athma-rehab-facilities-hero-title { color: #fff; margin-bottom: 18px; }
.athma-rehab-facilities-hero-text { color: rgba(255,255,255,0.78); line-height: 1.75; max-width: 540px; }
.athma-rehab-facilities-grid-section { padding: 48px 0 70px; background-color: var(--athma-bg-light); }
.athma-rehab-facilities-grid-row { row-gap: 20px; }
.athma-rehab-facilities-grid-card { background-color: #fff; border-radius: var(--athma-radius-lg); overflow: hidden; height: 100%; box-shadow: var(--athma-shadow-soft); transition: transform 0.25s ease, box-shadow 0.25s ease; }
.athma-rehab-facilities-grid-card:hover { transform: translateY(-6px); box-shadow: 0 20px 44px rgba(11,37,89,0.14); }
.athma-rehab-facilities-grid-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.athma-rehab-facilities-grid-card-body { padding: 16px 18px; }
.athma-rehab-facilities-grid-card-body strong { display: block; color: var(--athma-navy); font-size: var(--athma-fs-h4); font-weight: var(--athma-fw-em); margin-bottom: 4px; }
.athma-rehab-facilities-grid-card-body small { color: var(--athma-text-gray); font-size: var(--athma-fs-small); line-height: 1.55; }
.athma-rehab-facilities-detail-section { padding: 56px 0; background-color: #fff; }
.athma-rehab-facilities-detail-section-alt { background-color: #d9781421; }
.athma-rehab-facilities-detail-row { row-gap: 36px; }
.athma-rehab-facilities-detail-media { border-radius: var(--athma-radius-lg); overflow: hidden; box-shadow: 0 24px 60px rgba(11,37,89,0.16); aspect-ratio: 6/5; opacity: 0; transform: translateX(-40px); transition: opacity 0.6s ease, transform 0.6s ease; }
.athma-rehab-facilities-detail-section-alt .athma-rehab-facilities-detail-media { transform: translateX(40px); }
.athma-rehab-facilities-detail-media.is-visible { opacity: 1; transform: translateX(0); }
.athma-rehab-facilities-detail-img { width: 100%; height: 100%; object-fit: cover; will-change: transform; }
.athma-rehab-facilities-detail-title { color: var(--athma-navy); margin-bottom: 18px; }
.athma-rehab-facilities-detail-text { color: var(--athma-text-gray); line-height: 1.85; margin-bottom: 16px; }
.athma-rehab-facilities-detail-text:last-child { margin-bottom: 0; }
.athma-rehab-facilities-stats-section { background-color: var(--athma-navy); background-image: linear-gradient(120deg, var(--athma-navy-dark) 0%, var(--athma-navy) 60%, var(--athma-navy-soft) 100%); padding: 46px 0; }
.athma-rehab-facilities-stats-row { row-gap: 24px; }
.athma-rehab-facilities-stats-col { flex: 1 1 0; text-align: center; border-right: 1px solid rgba(255,255,255,0.12); display: flex; flex-direction: column; align-items: center; justify-content: center; }
.athma-rehab-facilities-stats-col:last-child { border-right: none; }
.athma-rehab-facilities-stats-col strong { display: block; color: #fff; font-size: 21px; font-weight: var(--athma-fw-em); margin-bottom: 4px; }
.athma-rehab-facilities-stats-col span { color: rgba(255,255,255,0.65); font-size: var(--athma-fs-small); }
.athma-rehab-facilities-gallery-section { padding: 56px 0; background-color: #fff; }
.athma-rehab-facilities-gallery-heading-wrap { max-width: 640px; margin: 0 auto 40px; }
.athma-rehab-facilities-gallery-title { color: var(--athma-navy); }
.athma-rehab-facilities-gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 316px; gap: 14px; }
.athma-rehab-facilities-gallery-item { position: relative; border: none; padding: 0; border-radius: var(--athma-radius-md); overflow: hidden; cursor: pointer; grid-column: span 1; }
.athma-rehab-facilities-gallery-item-wide { grid-column: span 2; }
.athma-rehab-facilities-gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.athma-rehab-facilities-gallery-item:hover img { transform: scale(1.08); }
.athma-rehab-facilities-gallery-item-label { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; color: #fff; font-size: var(--athma-fs-small); font-weight: var(--athma-fw-em); letter-spacing: 0.05em; text-transform: uppercase; background-color: rgba(11,37,89,0); opacity: 0; transition: background-color 0.25s ease, opacity 0.25s ease; pointer-events: none; }
.athma-rehab-facilities-gallery-item:hover .athma-rehab-facilities-gallery-item-label { background-color: rgba(11,37,89,0.45); opacity: 1; }
.athma-rehab-facilities-lightbox { position: fixed; inset: 0; z-index: 1600; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity 0.3s ease; }
.athma-rehab-facilities-lightbox.is-open { opacity: 1; pointer-events: auto; }
.athma-rehab-facilities-lightbox-backdrop { position: absolute; inset: 0; background-color: rgba(11,37,89,0.9); }
.athma-rehab-facilities-lightbox-content { position: relative; max-width: 900px; width: 92%; }
.athma-rehab-facilities-lightbox-img { width: 100%; max-height: 78vh; object-fit: contain; border-radius: var(--athma-radius-md); }
.athma-rehab-facilities-lightbox-caption { color: #fff; text-align: center; margin-top: 14px; font-weight: var(--athma-fw-em); font-size: var(--athma-fs-body); }
.athma-rehab-facilities-lightbox-close { position: absolute; top: -50px; right: 0; width: 40px; height: 40px; border-radius: 50%; border: none; background-color: rgba(255,255,255,0.15); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 19px; line-height: 1; cursor: pointer; }
.athma-rehab-facilities-lightbox-close:hover { background-color: var(--athma-orange); }

/* ============ 10. CONTACT PAGE ============ */
.athma-rehab-contact-hero-section { position: relative; background-image: url('image/contact-hero-bg.webp'); background-size: cover; background-position: center; background-repeat: no-repeat; padding: 134px 0 12px; isolation: isolate; }
.athma-rehab-contact-hero-section::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(74deg, rgba(21, 51, 96, 0.94) 0%, rgba(21, 47, 77, 0.82) 40%, rgba(13, 51, 78, 0.1) 57%); }
.athma-rehab-contact-hero-title { color: #fff; margin-bottom: 16px; }
.athma-rehab-contact-hero-text { color: rgba(255, 255, 255, 0.78); line-height: 1.75; max-width: 580px; margin-bottom: 40px; }
.athma-rehab-contact-hero-cards-wrap { position: relative; transform: translateY(50%); }
.athma-rehab-contact-hero-cards-row { row-gap: 16px; }
.athma-rehab-contact-hero-card { display: flex; align-items: center; border: 1px solid #b5b8bb; gap: 14px; background-color: #fff; border-radius: var(--athma-radius-lg); padding: 18px; height: 100%; box-shadow: 0 2px 10px rgba(11, 37, 89, 0.18); transition: transform 0.2s ease, box-shadow 0.2s ease; }
.athma-rehab-contact-hero-card:hover { transform: translateY(-4px); box-shadow: 0 26px 54px rgba(11, 37, 89, 0.24); }
.athma-rehab-contact-hero-card-copy { display: flex; flex-direction: column; min-width: 0; }
.athma-rehab-contact-hero-card-copy strong { color: var(--athma-navy); font-size: var(--athma-fs-small); font-weight: var(--athma-fw-em); }
.athma-rehab-contact-hero-card-value { color: var(--athma-orange); font-size: var(--athma-fs-body); font-weight: var(--athma-fw-em); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.athma-rehab-contact-hero-card-copy small { color: var(--athma-text-gray); font-size: 12px; }
.athma-rehab-contact-main-section { padding: 94px 0 36px; background-color: #fff; }
.athma-rehab-contact-main-row { row-gap: 30px; }
.athma-rehab-contact-map-card { background-color: #d9781421; border-radius: var(--athma-radius-lg); padding: 32px; height: 98%; border: 1.5px solid var(--athma-border-light); }
.athma-rehab-contact-map-title { color: var(--athma-navy); margin-bottom: 10px; font-size: 18px; font-weight: 600; }
.athma-rehab-contact-map-text { color: var(--athma-text-gray); margin-bottom: 20px; }
.athma-rehab-contact-map-address { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 22px; }
.athma-rehab-contact-map-address span { color: var(--athma-text-gray); font-size: var(--athma-fs-body); line-height: 1.7; }
.athma-rehab-contact-map-address span strong { display: block; color: var(--athma-navy); margin-bottom: 3px; }
.athma-rehab-contact-map-embed { border-radius: var(--athma-radius-md); overflow: hidden; aspect-ratio: 20 / 10; }
.athma-rehab-contact-map-embed iframe { display: block; width: 100%; height: 100%; }
.athma-rehab-contact-form-card { background-color: var(--athma-navy); background-image: linear-gradient(155deg, var(--athma-navy-dark) 0%, var(--athma-navy) 60%, var(--athma-navy-soft) 100%); border-radius: var(--athma-radius-lg); padding: 32px; }
.athma-rehab-contact-form-title { color: #fff; margin-bottom: 20px;font-size: 18px; }
.athma-rehab-contact-form-row { row-gap: 10 !important; }
.athma-rehab-contact-form-field { margin-bottom: 14px; }
.athma-rehab-contact-form-input { width: 100%; height: 50px; border: none; border-radius: 8px; padding: 0 16px; font-size: 14px; font-family: var(--athma-font-body); color: var(--athma-text-dark); background-color: #fff; transition: box-shadow 0.2s ease; }
.athma-rehab-contact-form-input:focus { outline: none; box-shadow: 0 0 0 3px rgba(24, 93, 155, 0.4); }
.athma-rehab-contact-form-textarea { height: auto; padding: 40px 16px; resize: vertical; }
select.athma-rehab-contact-form-input { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235c6b84' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; background-size: 15px; padding-right: 36px; }
.athma-rehab-contact-form-subheading { color: rgba(255, 255, 255, 0.7); font-size: 12.5px; font-weight: var(--athma-fw-em); text-transform: uppercase; letter-spacing: 0.06em; margin: 4px 0 10px; }
.athma-rehab-contact-form-programs { display: grid; grid-template-columns: repeat(3, 1fr); gap:	 8px; margin-bottom: 20px; }
.athma-rehab-contact-form-program { position: relative; cursor: pointer; }
.athma-rehab-contact-form-program input { position: absolute; opacity: 0; width: 100%; height: 100%; cursor: pointer; }
.athma-rehab-contact-form-program span { display: flex; align-items: center; justify-content: center; gap: 6px; background-color: rgba(255, 255, 255, 0.08); border: 1.5px solid rgba(255, 255, 255, 0.16); border-radius: 8px; padding: 10px; color: rgba(255, 255, 255, 0.85); font-size: 12.5px; font-weight: var(--athma-fw-em); transition: background-color 0.2s ease, border-color 0.2s ease; }
.athma-rehab-contact-form-program input:checked + span { background-color: var(--athma-orange); border-color: var(--athma-orange); color: #fff; }
.athma-rehab-contact-form-submit { width: 100%; height: 52px; font-size: var(--athma-fs-body); margin-top: 15px; }
.athma-rehab-contact-form-note { display: flex; align-items: center; gap: 6px; font-size: var(--athma-fs-small); font-weight: var(--athma-fw-em); margin: 12px 0 0; }
.athma-rehab-contact-form-note-error { color: #ff8080; }
.athma-rehab-contact-form-note-success { color: #6ee7a8; }
.athma-rehab-contact-branch-section { padding: 60px 0 90px; background-color: var(--athma-bg-light); }
.athma-rehab-contact-branch-heading-wrap { margin-bottom: 36px; }
.athma-rehab-contact-branch-title { color: var(--athma-navy); }
.athma-rehab-contact-branch-row { row-gap: 20px; }
.athma-rehab-contact-branch-card { position: relative; border-radius: var(--athma-radius-lg); overflow: hidden; aspect-ratio: 4 / 5; box-shadow: 0 14px 32px rgba(11, 37, 89, 0.14); transition: transform 0.25s ease, box-shadow 0.25s ease; }
.athma-rehab-contact-branch-card:hover { transform: translateY(-6px); box-shadow: 0 22px 44px rgba(11, 37, 89, 0.22); }
.athma-rehab-contact-branch-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.athma-rehab-contact-branch-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(11, 37, 89, 0.1) 0%, rgba(11, 37, 89, 0.85) 100%); }
.athma-rehab-contact-branch-tag { position: absolute; top: 12px; right: 12px; background-color: var(--athma-orange); color: #fff; font-size: 11px; font-weight: var(--athma-fw-em); text-transform: uppercase; letter-spacing: 0.03em; padding: 4px 10px; border-radius: 999px; }
.athma-rehab-contact-branch-content { position: absolute; left: 0; right: 0; bottom: 0; padding: 16px; }
.athma-rehab-contact-branch-name { display: block; color: #fff; font-size: var(--athma-fs-h4); font-weight: var(--athma-fw-em); margin-bottom: 8px; }
.athma-rehab-contact-branch-actions { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.athma-rehab-contact-branch-action { display: flex; align-items: center; gap: 6px; color: #fff; font-size: 12.5px; font-weight: var(--athma-fw-em); }
.athma-rehab-contact-branch-whatsapp { display: inline-flex; align-items: center; color: #fff; background-color: #25d366; font-size: 11px; font-weight: var(--athma-fw-em); padding: 4px 10px; border-radius: 999px; margin-left: auto; }

/* ============ 11. ABOUT PAGE ============ */
.athma-about-hero-section { position: relative; background-image: url('image/about-hero-building.webp'); background-size: cover; background-position: center; background-repeat: no-repeat; padding: 174px 0; isolation: isolate; }
.athma-about-hero-section::before { content: ""; position: absolute; inset: 0; z-index: -1; background:linear-gradient(100deg, rgb(13 51 125 / 92%) 0%, rgb(15 38 84 / 81%) 4%, rgba(11, 37, 89, 0.15) 100%); }
.athma-about-hero-title { color: #fff; margin-bottom: 18px; }
.athma-about-hero-text { color: rgba(255,255,255,0.78); line-height: 1.75; max-width: 560px; }
.athma-about-journey-section { padding: 50px 0; background-color: #fff; }
.athma-about-journey-row { row-gap: 30px; }
.athma-about-journey-title { color: var(--athma-navy); margin-bottom: 14px; }
.athma-about-journey-text { color: var(--athma-text-gray); line-height: 1.85; margin-bottom: 0px; max-width: 500px; }
.athma-about-journey-col-timeline, .athma-about-journey-col-media { display: flex; flex-direction: column; }
.athma-about-journey-col-media .athma-about-journey-purpose { flex: 1; display: flex; flex-direction: column; justify-content: center; }
.athma-about-journey-stat { background-color: var(--athma-bg-light); border-radius: var(--athma-radius-lg); padding: 20px; max-width: 360px; margin-top: 20px; }
.athma-about-journey-stat strong { display: block; color: var(--athma-orange); font-size: 31px; font-weight: var(--athma-fw-em); }
.athma-about-journey-stat span { display: block; color: var(--athma-navy); font-size: var(--athma-fs-h4); font-weight: var(--athma-fw-em); }
.athma-about-journey-stat span small { display: block; color: var(--athma-text-gray); font-weight: var(--athma-fw-base); font-size: var(--athma-fs-small); margin-top: 4px; }
.athma-about-journey-purpose { background-color: var(--athma-bg-light); border-radius: var(--athma-radius-lg); padding: 24px; }
.athma-about-journey-purpose-title { color: var(--athma-navy); margin-bottom: 16px; }
.athma-about-journey-purpose-grid { row-gap: 14px; }
.athma-about-journey-purpose-item { background-color: #fff; border-radius: var(--athma-radius-md); padding: 16px; height: 100%; }
.athma-about-journey-purpose-item strong { display: block; color: var(--athma-orange); font-size: var(--athma-fs-h4); font-weight: var(--athma-fw-em); margin-bottom: 6px; }
.athma-about-journey-purpose-item p { color: var(--athma-text-gray); font-size: var(--athma-fs-small); line-height: 1.7; margin: 0; }
.athma-about-founder-section { background-color: #df7c271c;padding: 65px 0; }
.athma-about-founder-col-text { display: flex; align-items: center; }
.athma-about-founder-photo-wrap { position: relative; height: 100%; min-height: 420px; max-height: 640px; background-color: var(--athma-navy-soft); }
.athma-about-founder-photo { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }
.athma-about-founder-content { padding: 0px 8px 0px 106px; width: 100%; }
.athma-about-founder-name { color: #303030; margin-bottom: 4px; }
.athma-about-founder-credentials { color: rgb(58 56 56 / 55%); font-size: var(--athma-fs-small); margin-bottom: 4px; }
.athma-about-founder-role { color: var(--athma-orange); font-size: var(--athma-fs-small); font-weight: var(--athma-fw-em); margin-bottom: 23px; }
.athma-about-founder-bio { color: var(--athma-text-gray); line-height: 1.8; margin-bottom: 20px; max-width: 580px; }
.athma-about-founder-quote { border-left: 3px solid var(--athma-orange); padding-left: 20px; margin: 0; color:var(--athma-text-gray); font-size: var(--athma-fs-body); line-height: 1.7; max-width: 500px; }
.athma-about-founder-quote cite { display: block; margin-top: 10px; color: rgb(100 98 98 / 85%); font-weight: var(--athma-fw-em); font-style: normal; font-size: var(--athma-fs-small); }
.athma-about-care-section { padding: 50px 0; background-color: var(--athma-bg-light); }
.athma-about-care-title { color: var(--athma-navy); margin-bottom: 12px;font-weight: 700; }
.athma-about-care-intro { color: var(--athma-text-gray); line-height: 1.85; margin: 0 auto 22px; max-width: 700px; }
.athma-about-care-cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 30px; 	margin-left: auto; margin-right: auto; }
.athma-about-care-card { display: flex; flex-direction: column; align-items: flex-start; text-align: left; background-color: var(--athma-bg-light); border-radius: var(--athma-radius-md); padding: 24px 20px; height: 100%; ; transition: transform 0.2s ease; }
.athma-about-care-card:hover { transform: translateY(-4px); }
.athma-about-care-card strong { display: block; color: var(--athma-navy); font-size: 15px; font-weight: var(--athma-fw-em); margin-bottom: 8px; }
.athma-about-care-card p { color: var(--athma-text-gray); font-size: var(--athma-fs-small); line-height: 1.65; margin-bottom: 12px; flex-grow: 1; }
.athma-about-accreditation-section { padding: 40px 0; background-color:#eef2f8; }
.athma-about-accreditation-heading-wrap { margin-bottom: 30px; }
.athma-about-accreditation-title { color: var(--athma-navy); }
.athma-about-accreditation-row { row-gap: 22px; }
.athma-about-accreditation-badge-card { display: flex; align-items: center; gap: 18px; }
.athma-about-accreditation-logo { width: 120px; height: 120px; flex-shrink: 0; background-color: var(--athma-bg-light); border-radius: 50%; object-fit: contain; padding: 8px; }
.athma-about-accreditation-proud { color: var(--athma-text-gray); font-size: var(--athma-fs-small); margin: 0; }
.athma-about-accreditation-name { display: block; color: var(--athma-navy); font-size: var(--athma-fs-h4); font-weight: var(--athma-fw-em); margin: 2px 0 6px; }
.athma-about-accreditation-text { color: var(--athma-text-gray); font-size: var(--athma-fs-small); line-height: 1.6; margin: 0; }
.athma-about-accreditation-points-row { background-color: #ffffff; border-radius: var(--athma-radius-lg); padding: 22px 10px; row-gap: 16px; }
.athma-about-accreditation-point { text-align: center; }
.athma-about-accreditation-point strong { display: block; color: var(--athma-navy); font-size: var(--athma-fs-small); font-weight: var(--athma-fw-em); }
.athma-about-facilities-grid-section { padding: 40px 0 50px; background-color: #fff; }
.athma-about-facilities-grid-heading-wrap { max-width: 660px; margin: 0 auto 32px; }
.athma-about-facilities-grid-title { color: var(--athma-navy); margin-bottom: 14px; }
.athma-about-facilities-grid-subtext { color: var(--athma-text-gray); line-height: 1.75; }
.athma-about-facilities-grid-photo { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.athma-about-facilities-grid-photo-item { position: relative; display: block; border-radius: var(--athma-radius-lg); overflow: hidden; aspect-ratio: 4/3; background-color: var(--athma-bg-light); }
.athma-about-facilities-grid-photo-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.athma-about-facilities-grid-photo-item:hover img { transform: scale(1.08); }
.athma-about-facilities-grid-photo-item::after { content: ""; position: absolute; inset: 0; background:linear-gradient(0deg, rgba(11,37,89,0.85) 0%, rgba(11,37,89,0.15) 35%, rgba(11,37,89,0) 52%); }
.athma-about-facilities-grid-photo-label { position: absolute; left: 18px; bottom: 16px; right: 18px; display: flex; align-items: center; justify-content: space-between; gap: 8px; color: #fff; font-size: 15px; font-weight: var(--athma-fw-em); z-index: 1; }
.athma-about-facilities-grid-photo-label::after { content: "\2192"; transition: transform 0.2s ease; }
.athma-about-facilities-grid-photo-item:hover .athma-about-facilities-grid-photo-label::after { transform: translateX(4px); }
.athma-about-facilities-grid-tagline { display: flex; align-items: center; justify-content: center; gap: 16px; max-width: 420px; margin: 46px auto 18px; }
.athma-about-facilities-grid-tagline-line { flex: 1; height: 1px; background-color: var(--athma-border-light); }
.athma-about-facilities-grid-tagline-text { text-align: center; color: var(--athma-navy); font-size: var(--athma-fs-h4); font-weight: var(--athma-fw-em); margin: 0; }
.athma-about-facilities-grid-tagline-text span { color: var(--athma-orange); }
.athma-about-team-grid-section { position: relative; overflow: hidden; padding: 50px 0; background-image: url("image/about-team-grid-bg.webp"); background-size: cover; background-position: center; background-repeat: no-repeat; isolation: isolate; }
.athma-about-team-grid-heading-wrap { max-width: 680px; margin: 0 auto 30px; position: relative; z-index: 1; }
.athma-about-team-grid-title { color: var(--athma-navy); margin-bottom: 10px; }
.athma-about-team-grid-subtext { color: var(--athma-text-gray); line-height: 1.75; }
.athma-about-team-grid-row { position: relative; z-index: 1; }
.athma-about-team-grid-card { background-color: #fff; border-radius: var(--athma-radius-lg);border: 1px solid #ff810047; overflow: hidden; height: 100%; box-shadow: 0 6px 18px rgba(11,37,89,0.07); text-align: center; transition: transform 0.25s ease, box-shadow 0.25s ease; }
.athma-about-team-grid-card:hover { transform: translateY(-6px); box-shadow: 0 20px 44px rgba(11,37,89,0.14); }
.athma-about-team-grid-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; background-color: var(--athma-bg-light); }
.athma-about-team-grid-card-body { padding: 14px;background-color: #ff80000c; }
.athma-about-team-grid-card-body strong { display: block; color: var(--athma-orange); font-size: var(--athma-fs-small); font-weight: var(--athma-fw-em); margin-bottom: 2px; }
.athma-about-team-grid-card-body small { display: block; color: var(--athma-text-gray); font-size: 12px; margin-bottom: 2px; }
.athma-about-team-grid-role { color: var(--athma-navy); font-size: 12.5px; font-weight: var(--athma-fw-em); margin-bottom: 12px; }
.athma-about-team-grid-viewprofile { display: inline-flex; align-items: center; gap: 5px; border: 1.5px solid var(--athma-orange); border-radius: 8px; padding: 7px 16px; color: var(--athma-orange); font-size: 12.5px; font-weight: var(--athma-fw-em); transition: border-color 0.2s ease, background-color 0.2s ease; }
.athma-about-team-grid-viewprofile:hover { border-color: var(--athma-orange-dark); color: var(--athma-orange-dark); }

/* ============ 12. SOCIAL / REVIEWS ============ */
.athma-rehab-social-section { padding: 56px 0; background-color: #fff; }
.athma-rehab-social-heading-wrap { max-width: 660px; margin: 0 auto 30px; }
.athma-rehab-social-title { color: var(--athma-navy); margin-bottom: 10px; }
.athma-rehab-social-subtext { color: var(--athma-text-gray); line-height: 1.75; }
.athma-rehab-social-tabs { display: flex; align-items: center; justify-content: center; gap: 8px; margin: 0 auto 28px; background-color: var(--athma-bg-light); border-radius: 999px; padding: 6px; max-width: 320px; }
.athma-rehab-social-tab { flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px; background-color: transparent; border: none; border-radius: 999px; padding: 10px 18px; font-family: var(--athma-font-body); font-size: var(--athma-fs-small); font-weight: var(--athma-fw-em); color: var(--athma-text-gray); cursor: pointer; transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease; }
.athma-rehab-social-tab.is-active { background-color: #fff; color: var(--athma-orange); box-shadow: var(--athma-shadow-soft); }
.athma-rehab-social-panel { display: none; }
.athma-rehab-social-panel.is-active { display: block; animation: athmaSocialFadeIn 0.35s ease; }
@keyframes athmaSocialFadeIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }
.athma-carousel { position: relative; display: flex; align-items: center; gap: 10px; }
.athma-carousel-arrow { flex-shrink: 0; width: 44px; height: 44px; border-radius: 50%; border: 1.5px solid var(--athma-border-light); background-color: #fff; color: var(--athma-navy); display: flex; align-items: center; justify-content: center; font-size: 18px; line-height: 1; cursor: pointer; transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease; box-shadow: var(--athma-shadow-soft); }
.athma-carousel-arrow:hover { background-color: var(--athma-orange); border-color: var(--athma-orange); color: #fff; }
.athma-carousel-arrow:disabled { opacity: 0.35; cursor: default; pointer-events: none; }
.athma-carousel-track { display: flex; gap: 18px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; flex: 1; min-width: 0; padding-bottom: 4px; -ms-overflow-style: none; scrollbar-width: none; }
.athma-carousel-track::-webkit-scrollbar { display: none; }
.athma-rehab-social-grid-yt { flex-wrap: nowrap; }
.athma-rehab-social-yt-item { border-radius: var(--athma-radius-md); overflow: hidden; box-shadow: var(--athma-shadow-soft); aspect-ratio: 16/9; flex: 0 0 calc(33.333% - 12px); scroll-snap-align: start; }
.athma-rehab-social-yt-item iframe { width: 100%; height: 100%; border: none; display: block; }
.athma-rehab-social-grid-insta { flex-wrap: nowrap; align-items: flex-start; }
.athma-rehab-social-grid-insta .instagram-media { flex: 0 0 calc(25% - 14px); scroll-snap-align: start; min-width: 240px !important; width: calc(25% - 14px) !important; }
.athma-rehab-social-viewmore-wrap { margin-top: 26px; }
.athma-rehab-social-viewmore { display: inline-flex; align-items: center; gap: 8px; color: var(--athma-navy); font-weight: var(--athma-fw-em); font-size: var(--athma-fs-small); }
.athma-rehab-social-viewmore::after { content: "\2192"; color: var(--athma-orange); }

.athma-google-reviews-wrap { overflow: hidden; margin-top: 8px;}
.athma-google-reviews-track { display: flex; gap: 18px; width: max-content; animation: athmaGoogleReviewsScroll 48s linear infinite; padding: 40px 0; }
.athma-google-reviews-wrap:hover .athma-google-reviews-track { animation-play-state: paused; }
@keyframes athmaGoogleReviewsScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.athma-google-review-card { flex: 0 0 360px; background-color: #fbefe1; border: 1.5px solid var(--athma-border-light); border-radius: var(--athma-radius-lg); padding: 26px; box-shadow: var(--athma-shadow-soft); transition: transform 0.25s ease, box-shadow 0.25s ease; }
.athma-google-review-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(11,37,89,0.14); }
.athma-google-review-head { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.athma-google-review-avatar { width: 48px; height: 48px; border-radius: 50%; color: #fff; font-weight: var(--athma-fw-em); font-size: var(--athma-fs-h4); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.athma-google-review-person { display: flex; flex-direction: column; flex-grow: 1; min-width: 0; }
.athma-google-review-person strong { color: var(--athma-navy); font-size: var(--athma-fs-body); font-weight: var(--athma-fw-em); }
.athma-google-review-person small { color: var(--athma-text-gray); font-size: 11.5px; }
.athma-google-review-brand { width: 22px; height: 22px; flex-shrink: 0; }
.athma-google-review-rating { color: #b47b06; font-size: 12px; font-weight: var(--athma-fw-em); letter-spacing: 0.05em; margin-bottom: 10px; }
.athma-google-review-text { color: var(--athma-text-dark); line-height: 1.75; margin: 0 0 14px; }
.athma-google-review-source { color: var(--athma-text-gray); font-size: 12.5px; font-weight: var(--athma-fw-em); }

/* ============ 13. LEGAL + BLOG PAGES ============ */
.athma-legal-hero-section { position: relative; background-color: var(--athma-navy); background-image: linear-gradient(72deg, rgba(8, 26, 64, 0.92) 15%, rgba(11, 37, 89, 0.46) 98%, rgba(16, 37, 89, 0.7) 102%), url('image/blog-background.webp'); background-size: cover; background-position: center; background-repeat: no-repeat; padding: 150px 0 60px; }
.athma-legal-hero-container { max-width: 900px; }
.athma-legal-hero-section-centered .athma-legal-hero-container { display: flex; flex-direction: column; align-items: center; }
.athma-legal-hero-logo { width: 407px; height: auto; margin-bottom: 22px; }
.athma-legal-title { color: #fff; margin-bottom: 10px; font-size: 40px;}
.athma-legal-updated { display: inline-flex; align-items: center; gap: 6px; color: rgba(255,255,255,0.65); font-size: var(--athma-fs-small); margin: 0;    font-size: 16px; }
.athma-legal-section { padding: 56px 0 90px; background-color: #fff; }
.athma-legal-doc { max-width: 820px; }
.athma-legal-doc-intro { color: var(--athma-text-gray); line-height: 1.9; margin: 0 0 40px; padding-bottom: 32px; border-bottom: var(--athma-rule); }
.athma-legal-doc-section { display: flex; gap: 22px; padding: 30px 0; border-bottom: var(--athma-rule); }
.athma-legal-doc-section:last-of-type { border-bottom: none; }
.athma-legal-doc-num { flex-shrink: 0; color: var(--athma-orange); font-size: var(--athma-fs-small); font-weight: var(--athma-fw-em); letter-spacing: 0.05em; padding-top: 5px; width: 34px; }
.athma-legal-doc-body { flex: 1; min-width: 0; }
.athma-legal-doc-body h2, .athma-legal-doc-body h3 { color: var(--athma-navy); font-weight: var(--athma-fw-em); margin: 0 0 12px; }
.athma-legal-doc-body p { color: var(--athma-text-gray); line-height: 1.9; margin: 0 0 12px; }
.athma-legal-doc-body p:last-child { margin-bottom: 0; }
.athma-legal-doc-body a { color: var(--athma-orange); font-weight: var(--athma-fw-em); }
.athma-legal-doc-contact { margin-top: 34px; background-color: var(--athma-navy); background-image: linear-gradient(155deg, var(--athma-navy-dark) 0%, var(--athma-navy) 60%, var(--athma-navy-soft) 100%); border-radius: var(--athma-radius-lg); padding: 32px 34px; }
.athma-legal-doc-contact h2, .athma-legal-doc-contact h3 { color: #fff; font-weight: var(--athma-fw-em); margin: 0 0 12px; }
.athma-legal-doc-contact p { color: rgba(255,255,255,0.82); line-height: 1.9; margin: 0 0 12px; }
.athma-legal-doc-contact p:last-child { margin-bottom: 0; }
.athma-legal-doc-contact a { color: var(--athma-orange); font-weight: var(--athma-fw-em); }
.athma-legal-card { background-color: #fff; border-radius: var(--athma-radius-lg); border: var(--athma-rule); padding: 28px 30px; margin-bottom: 16px; }
.athma-legal-card:last-of-type { margin-bottom: 0; }
.athma-legal-card h2, .athma-legal-card h3 { color: var(--athma-navy); font-weight: var(--athma-fw-em); margin: 0 0 10px; }
.athma-legal-card p { color: var(--athma-text-gray); line-height: 1.85; margin: 0 0 12px; }
.athma-legal-card p:last-child { margin-bottom: 0; }
.athma-legal-card a { color: var(--athma-orange); font-weight: var(--athma-fw-em); }
.athma-legal-list { margin: 0 0 12px; padding-left: 20px; list-style: disc; display: block; }
.athma-legal-list li { color: var(--athma-text-gray); font-size: var(--athma-fs-body); line-height: 1.8; margin-bottom: 6px; display: list-item; }

.athma-blogs-section { padding: 60px 0 90px; background-color: #fff; }
.athma-blogs-row { row-gap: 28px; }
.athma-blogs-card { display: block; background-color: #fff; border: var(--athma-rule); border-radius: var(--athma-radius-lg); overflow: hidden; height: 100%; transition: transform 0.25s ease, box-shadow 0.25s ease; }
.athma-blogs-card:hover { transform: translateY(-6px); box-shadow: var(--athma-shadow-soft); }
.athma-blogs-card-media-link { display: block; }
.athma-blogs-card-media { position: relative; aspect-ratio: 16/10; background-color: var(--athma-bg-light); overflow: hidden; }
.athma-blogs-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.athma-blogs-card-media-link:hover .athma-blogs-card-media img { transform: scale(1.06); }
.athma-blogs-card-tag { position: absolute; top: 14px; left: 14px; background-color: var(--athma-orange); color: #fff; font-size: 11px; font-weight: var(--athma-fw-em); padding: 5px 12px; border-radius: 999px; }
.athma-blogs-card-body { padding: 22px; }
.athma-blogs-card-date { display: inline-flex; align-items: center; gap: 6px; color: var(--athma-text-gray); font-size: 12px; font-weight: var(--athma-fw-em); margin-bottom: 10px; }
.athma-blogs-card-body h3 { color: var(--athma-navy); font-weight: var(--athma-fw-em); line-height: 1.4; margin-bottom: 10px; }
.athma-blogs-card-body h3 a { color: inherit; font-size: 18px;}
.athma-blogs-card-body h3 a:hover { color: var(--athma-orange); }
.athma-blogs-card-body p { color: var(--athma-text-gray); font-size: var(--athma-fs-small); line-height: 1.7; margin-bottom: 16px; }
.athma-blogs-card-readmore { display: inline-flex; align-items: center; gap: 8px; color: var(--athma-orange); font-weight: var(--athma-fw-em); font-size: 12.5px; border: 1.5px solid var(--athma-orange); border-radius: 8px; padding: 5px 25px; transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease; }
.athma-blogs-card-readmore:hover { background-color: var(--athma-orange); color: #fff; transform: translateY(-2px); }
p.athma-legal-eyebrow {
    font-size: 17px;
}
.athma-blogpost-hero-section { position: relative; background-color: var(--athma-navy); background-size: cover; background-position: center; background-repeat: no-repeat; padding: 100px 0 100px; isolation: isolate; }
.athma-blogpost-hero-section::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(72deg, rgba(8,26,64,0.92) 0%, rgba(11,37,89,0.5) 45%, rgba(11,37,89,0.72) 100%); }
.athma-blogpost-hero-container { text-align: center; }
.athma-blogpost-breadcrumb { display: flex; align-items: center; justify-content: center; gap: 8px; color: rgba(255,255,255,0.6); font-size: 12.5px; font-weight: var(--athma-fw-em); margin-bottom: 18px; }
.athma-blogpost-breadcrumb a { color: rgba(255,255,255,0.6); }
.athma-blogpost-breadcrumb a:hover { color: var(--athma-orange); }
.athma-blogpost-category { display: inline-flex; color: var(--athma-orange); font-weight: var(--athma-fw-em); letter-spacing: 0.08em; text-transform: uppercase; font-size: 12px; margin: 0 0 14px; background-color: rgba(255,255,255,0.1); padding: 6px 14px; border-radius: 999px; }
.athma-blogpost-title { color: #fff; margin-bottom: 16px; text-align: center; }
.athma-blogpost-meta { display: flex; align-items: center; justify-content: center; gap: 18px; flex-wrap: wrap; color: rgba(255,255,255,0.65); font-size: 12.5px; font-weight: var(--athma-fw-em); }
.athma-blogpost-body-section { padding: 50px 0 0px; background-color: #fff; }
.athma-blogpost-body { max-width: 1200px; width: 100%; margin: 0 auto; }
.athma-blogpost-lede { color: var(--athma-text-dark); font-weight: var(--athma-fw-em); line-height: 1.85; margin-bottom: 24px; }
.athma-blogpost-featured-img { margin: 0 0 34px; border-radius: var(--athma-radius-lg); overflow: hidden; box-shadow: var(--athma-shadow-soft); aspect-ratio: 16/9; background-color: var(--athma-bg-light); }
.athma-blogpost-featured-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.athma-blogpost-body h2 { color: var(--athma-navy); margin: 42px 0 16px; font-size: 23px;}
.athma-blogpost-body h3 { color: var(--athma-navy); margin: 30px 0 12px; font-size: 23px;font-weight: 500; }
.athma-blogpost-body h4 { color: var(--athma-navy); margin: 24px 0 10px; font-size: 20px; font-weight: 500;}
.athma-blogpost-body p { color: var(--athma-text-gray); line-height: 1.9; margin: 0 0 18px;font-size: 15px;}
.athma-blogpost-body blockquote {border-left: 3px solid var(--athma-orange); padding: 4px 0 4px 22px; margin: 30px 0; color: var(--athma-navy); font-size: var(--athma-fs-body); line-height: 1.7; }
.athma-blogpost-pull-image { margin: 36px 0; }
.athma-blogpost-pull-image figure { margin: 0; border-radius: var(--athma-radius-lg); overflow: hidden; box-shadow: var(--athma-shadow-soft); aspect-ratio: 16/8; background-color: var(--athma-bg-light); }
.athma-blogpost-pull-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.athma-blogpost-pull-image figcaption { margin-top: 10px; color: var(--athma-text-gray); font-size: 12.5px; text-align: center; }
.athma-blogpost-highlight-box { background-color: var(--athma-bg-light); border-left: 4px solid var(--athma-orange); border-radius: var(--athma-radius-md); padding: 22px 24px; margin: 34px 0; }
.athma-blogpost-highlight-box-copy strong { display: block; color: var(--athma-navy); font-size: 12.5px; font-weight: var(--athma-fw-em); text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 6px; }
.athma-blogpost-highlight-box-copy p { color: var(--athma-text-dark); line-height: 1.7; margin: 0; }
.athma-blogpost-slogan { text-align: center; padding: 34px 24px; margin: 50px 0 0; background-color: #fdf3ec; border-radius: var(--athma-radius-lg); }
.athma-blogpost-slogan p { color: var(--athma-navy); font-size: var(--athma-fs-body); line-height: 1.7; margin: 0; }
.athma-blogpost-slogan p span { color: var(--athma-orange); font-weight: var(--athma-fw-em); font-style: normal; }
.athma-blogpost-slogan cite { display: block; margin-top: 10px; color: var(--athma-orange); font-weight: var(--athma-fw-em); font-style: normal; font-size: 12.5px; }
.athma-blogpost-whatsapp-cta { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 36px 24px; margin: 0 0 40px; background-color: #eef7fb; border-radius: 0 0 var(--athma-radius-lg) var(--athma-radius-lg); }
.athma-blogpost-whatsapp-cta h3 { color: var(--athma-navy); margin: 0 0 8px; text-align: center; }
.athma-blogpost-whatsapp-cta p { color: var(--athma-text-gray); font-size: var(--athma-fs-small); margin: 0 0 20px; }
.athma-blogpost-whatsapp-cta-btn { display: inline-flex; align-items: center; justify-content: center; gap: 9px; background-color: var(--athma-orange); background-image: linear-gradient(135deg, var(--athma-orange) 0%, var(--athma-orange-dark) 100%); color: #fff; font-weight: var(--athma-fw-em); font-size: var(--athma-fs-small);     padding: 10px 26px;
    border-radius: 9px; box-shadow: 0 10px 22px rgba(242,112,28,0.3); transition: transform 0.2s ease, box-shadow 0.2s ease; }
.athma-blogpost-whatsapp-cta-btn:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 14px 28px rgba(242,112,28,0.4); }
.athma-blogpost-faq-section { padding: 20px 0 70px; background-color: #f5f9fd; }
.athma-blogpost-faq-wrap { max-width: 720px; margin: 0 auto; }
.athma-blogpost-faq-heading { text-align: center; margin-bottom: 30px; }
.athma-blogpost-final-cta { margin-top: 0px; }
.athma-blogpost-share { display: flex; align-items: center; flex-wrap: wrap; gap: 14px; margin: 44px 0 0; padding-top: 26px; border-top: var(--athma-rule); }
.athma-blogpost-share span { color: var(--athma-navy); font-weight: var(--athma-fw-em); font-size: var(--athma-fs-small); }
.athma-blogpost-share a { color: var(--athma-navy); background-color: var(--athma-bg-light); border-radius: 999px; padding: 8px 16px; font-size: 12.5px; font-weight: var(--athma-fw-em); transition: background-color 0.2s ease, color 0.2s ease; }
.athma-blogpost-share a:hover { background-color: var(--athma-orange); color: #fff; }

/* ============ 14. THERAPY PAGES ============ */
.athma-therapy-hero-section { position: relative; overflow: hidden; background-color: var(--athma-navy); background-size: cover; background-position: center; background-repeat: no-repeat; padding: 150px 0 80px; isolation: isolate; }
.athma-therapy-hero-container { max-width: 720px; margin: 0 auto; position: relative; z-index: 2; }
.athma-therapy-hero-breadcrumb { display: flex; align-items: center; justify-content: center; gap: 8px; color: rgba(255,255,255,0.6); font-size: 12.5px; font-weight: var(--athma-fw-em); margin-bottom: 18px; }
.athma-therapy-hero-breadcrumb a { color: rgba(255,255,255,0.6); }
.athma-therapy-hero-breadcrumb a:hover { color: var(--athma-orange); }
.athma-therapy-hero-title { color: #fff; line-height: 1.25; margin-bottom: 16px; }
.athma-therapy-hero-subtext { color: rgba(255,255,255,0.78); line-height: 1.75; margin: 0 auto 30px; max-width: 620px; }
.athma-therapy-hero-btn-row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 24px; }
.athma-therapy-hero-btn { padding: 14px 30px; font-size: var(--athma-fs-body); }
.athma-therapy-highlights-section { background-color: #eaf3fb; padding: 30px 0; border-bottom: 1px solid #d6e6f5; }
.athma-therapy-highlights-row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 40px; }
.athma-therapy-highlight-col { text-align: center; }
.athma-therapy-highlight-number { display: block; color: var(--athma-orange-dark); font-size: var(--athma-fs-h4); font-weight: var(--athma-fw-em); margin-bottom: 2px; }
.athma-therapy-highlight-col span { color: var(--athma-text-gray); font-size: 12.5px; font-weight: var(--athma-fw-em); }
.athma-therapy-faq-section { background-color: #ffffff; }
.athma-therapy-intro-section { padding: 60px 0; background-color: #fff; }
.athma-therapy-intro-row { row-gap: 32px; }
.athma-therapy-intro-media { border-radius: var(--athma-radius-lg); overflow: hidden; box-shadow: var(--athma-shadow-soft); background-color: var(--athma-bg-light); }
.athma-therapy-intro-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.athma-therapy-intro-title { color: var(--athma-navy); margin-bottom: 16px; }
.athma-therapy-intro-col-text p { color: var(--athma-text-gray); line-height: 1.85; margin-bottom: 14px; }
.athma-therapy-conditions-section { padding: 60px 0; background-color: #ff8d3b17; }
.athma-therapy-conditions-heading-wrap { max-width: 640px; margin: 0 auto 36px; }
.athma-therapy-conditions-title { color: var(--athma-navy); }
.athma-therapy-conditions-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.athma-therapy-conditions-card { background-color: #fff; border-radius: var(--athma-radius-lg); padding: 24px 22px; box-shadow: var(--athma-shadow-soft); transition: transform 0.2s ease; }
.athma-therapy-conditions-card:hover { transform: translateY(-4px); }
.athma-therapy-conditions-card strong { display: block; color: var(--athma-navy); font-size: var(--athma-fs-h4); font-weight: var(--athma-fw-em); margin-bottom: 6px; }
.athma-therapy-conditions-card p { color: var(--athma-text-gray); font-size: var(--athma-fs-small); line-height: 1.65; margin: 0; }
.athma-therapy-process-section { padding: 60px 0; background-color: #fff; }
.athma-therapy-process-heading-wrap { max-width: 720px; margin: 0 auto 40px; }
.athma-therapy-process-intro { color: var(--athma-text-gray); line-height: 1.75; margin-top: 12px; }
.athma-therapy-process-title { color: var(--athma-navy); }
.athma-therapy-process-steps { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; }
.athma-therapy-process-step { display: flex; gap: 22px; padding: 22px 0; border-bottom: var(--athma-rule); }
.athma-therapy-process-step:last-child { border-bottom: none; }
.athma-therapy-process-step-num { flex-shrink: 0; width: 46px; height: 46px; border-radius: 50%; background-color: var(--athma-navy); color: #fff; display: flex; align-items: center; justify-content: center; font-size: var(--athma-fs-small); font-weight: var(--athma-fw-em); }
.athma-therapy-process-step-copy strong { display: block; color: var(--athma-navy); font-size: var(--athma-fs-h4); font-weight: var(--athma-fw-em); margin-bottom: 4px; }
.athma-therapy-process-step-copy p { color: var(--athma-text-gray); line-height: 1.7; margin: 0; }
.athma-therapy-benefits-section { padding: 60px 0; background-color: #d9781421; }
.athma-therapy-benefits-row { row-gap: 32px; }
.athma-therapy-benefits-title { color: var(--athma-navy); margin-bottom: 18px; }
.athma-therapy-benefits-text { color: var(--athma-text-gray); line-height: 1.85; margin-bottom: 16px; }
.athma-therapy-benefits-text:last-child { margin-bottom: 0; }
.athma-therapy-benefits-media { border-radius: var(--athma-radius-lg); overflow: hidden; box-shadow: var(--athma-shadow-soft); background-color: #fff; }
.athma-therapy-benefits-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.athma-therapy-related-section { padding: 60px 0; background-color: #fff; }
.athma-therapy-related-heading-wrap { max-width: 640px; margin: 0 auto 32px; }
.athma-therapy-related-title { color: var(--athma-navy); }
.athma-therapy-related-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.athma-therapy-related-card { display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: 10px; background-color: var(--athma-bg-light); border-radius: var(--athma-radius-md); padding: 22px 14px; transition: background-color 0.2s ease, transform 0.2s ease; }
.athma-therapy-related-card:hover { background-color: #fff; box-shadow: var(--athma-shadow-soft); transform: translateY(-3px); }
.athma-therapy-related-card strong { color: var(--athma-navy); font-size: var(--athma-fs-small); font-weight: var(--athma-fw-em); }

/* ============ 15. SPECIALITY PAGES ============ */

.athma-speciality-hero-section { position: relative; overflow: hidden; background-color: var(--athma-navy); background-size: cover; background-position: center; background-repeat: no-repeat; padding: 180px 0 110px; min-height: 460px; display: flex; align-items: center; isolation: isolate; }
.athma-speciality-hero-container { max-width: 780px; margin: 0 auto; }
.athma-speciality-hero-breadcrumb { display: flex; align-items: center; justify-content: center; gap: 8px; color: rgba(255,255,255,0.6); font-size: var(--athma-fs-small); margin-bottom: 20px; }
.athma-speciality-hero-breadcrumb a { color: rgba(255,255,255,0.6); }
.athma-speciality-hero-breadcrumb a:hover { color: var(--athma-orange); }
.athma-speciality-hero-title { color: #fff; line-height: 1.25; margin-bottom: 18px; }
.athma-speciality-hero-subtext { color: rgba(255,255,255,0.8); line-height: 1.75; margin: 0 auto 34px; max-width: 640px; }
.athma-speciality-hero-btn-row { display: flex; justify-content: center; }
.athma-speciality-hero-btn { padding: 15px 32px; font-size: var(--athma-fs-body); }
.athma-speciality-highlights-section { background-color: #fff6ee; padding: 32px 0; border-bottom: 1px solid #fbe3cf; }
.athma-speciality-highlights-row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 44px; }
.athma-speciality-highlight-col { text-align: center; }
.athma-speciality-highlight-number { display: block; color: var(--athma-orange-dark); font-weight: var(--athma-fw-em); font-size: var(--athma-fs-h3); margin-bottom: 2px; }
.athma-speciality-highlight-col span { color: var(--athma-text-gray); font-size: 12.5px; font-weight: var(--athma-fw-em); }
.athma-speciality-overview-section { padding: 60px 0; background-color: #fff; }
.athma-speciality-overview-row { row-gap: 32px; }
.athma-speciality-overview-media { border-radius: var(--athma-radius-lg); overflow: hidden; box-shadow: var(--athma-shadow-soft); background-color: var(--athma-bg-light); }
.athma-speciality-overview-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.athma-speciality-overview-title { color: var(--athma-navy); margin-bottom: 16px; }
.athma-speciality-overview-col-text p { color: var(--athma-text-gray); line-height: 1.85; margin-bottom: 14px; }
.athma-speciality-helps-section { padding: 60px 0; background-color:#d9781421; }
.athma-speciality-helps-heading-wrap { max-width: 640px; margin: 0 auto 40px; text-align: center; }
.athma-speciality-helps-title { color: var(--athma-navy); }
.athma-speciality-helps-grid { max-width: 900px; margin: 0 auto; display: grid; grid-template-columns: repeat(2, 1fr); gap: 4px 40px; }
.athma-speciality-helps-item { display: flex; gap: 16px; padding: 18px 0; border-bottom: var(--athma-rule); }
.athma-speciality-helps-num { flex-shrink: 0; color: var(--athma-orange); font-weight: var(--athma-fw-em); font-size:18px; padding-top: 0px; width: 28px; }
.athma-speciality-helps-item strong { display: block; color: var(--athma-navy); font-size: var(--athma-fs-h4); font-weight: var(--athma-fw-em); margin-bottom: 4px; }
.athma-speciality-helps-item p { color: var(--athma-text-gray); font-size: 15px; line-height: 1.65; margin: 0; }
.athma-speciality-process-section { padding: 60px 0; background-color: #fff; }
.athma-speciality-process-heading-wrap { max-width: 720px; margin: 0 auto 44px; text-align: center; }
.athma-speciality-process-title { color: var(--athma-navy); margin-bottom: 12px; }
.athma-speciality-process-intro { color: var(--athma-text-gray); line-height: 1.75; margin: 0 auto; }
.athma-speciality-timeline { max-width: 660px; margin: 0 auto; position: relative; padding-left: 32px; }
.athma-speciality-timeline::before { content: ""; position: absolute; left: 13px; top: 6px; bottom: 6px; width: 2px; background-color: var(--athma-border-light); }
.athma-speciality-timeline-step { position: relative; padding-bottom: 34px; }
.athma-speciality-timeline-step:last-child { padding-bottom: 0; }
.athma-speciality-timeline-marker { position: absolute; left: -32px; top: 0; width: 28px; height: 28px; border-radius: 50%; background-color: var(--athma-navy); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 12.5px; font-weight: var(--athma-fw-em); z-index: 1; }
.athma-speciality-timeline-copy strong { padding-left: 20px; display: block; color: var(--athma-navy); font-size: var(--athma-fs-h4); font-weight: var(--athma-fw-em); margin-bottom: 6px; }
.athma-speciality-timeline-copy p { color: var(--athma-text-gray); line-height: 1.7; margin: 0; padding-left: 20px; }
.athma-speciality-included-section { padding: 60px 0; background-color:#fbbc7d26; }
.athma-speciality-included-row { row-gap: 32px; }
.athma-speciality-included-title { color: var(--athma-navy); margin-bottom: 18px; }
.athma-speciality-included-text { color: var(--athma-text-dark); line-height: 1.85; margin-bottom: 16px; }
.athma-speciality-included-text:last-child { margin-bottom: 0; }
.athma-speciality-included-media { border-radius: var(--athma-radius-lg); overflow: hidden; box-shadow: var(--athma-shadow-soft); background-color: #fff; }
.athma-speciality-included-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.athma-speciality-faq-section { background-color: #ffffff; }


.athma-therapy-related-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 20px;
	margin: 30px 0;
}

.athma-therapy-related-card {
	display: block;
	padding: 24px;
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	text-decoration: none;
	color: #1a202c;
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.athma-therapy-related-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
	border-color: #123277;
}

.athma-therapy-related-card strong {
	display: block;
	font-size: 1.1rem;
	font-weight: 600;
	margin-bottom: 8px;
	color: #123277;
}

.athma-therapy-related-card p {
	font-size: 0.9rem;
	line-height: 1.5;
	color: #78797a;
	margin: 0;
}

/* =========================================================
   16. MEDIA QUERIES — nothing below this line but breakpoints
   ========================================================= */

/* ---------- TABLET: up to 1024px ---------- */
@media (max-width: 1024px) {
	:root {
		--athma-fs-h1: 26px;
		--athma-fs-h2: 20px;
		--athma-fs-h3: 18px;
		--athma-fs-h4: 16px;
		--athma-fs-body: 13px !important;
		--athma-fs-small: 12px;
		--athma-fs-eyebrow: 12px;
	}
	.athma-rehab-home-hero-section { background-image: url('image/athma-home-banner-tab.webp'); }
	.athma-rehab-home-header-logo { width: 235px; }
	.athma-rehab-home-header-megamenu { width: 620px; padding: 22px; gap: 0 22px; }
	.athma-rehab-home-header-megamenu-col + .athma-rehab-home-header-megamenu-col { padding-left: 22px; }
	.athma-about-founder-content { padding: 36px 24px; }
	.athma-therapy-conditions-grid { grid-template-columns: repeat(2, 1fr); }
	.athma-therapy-related-grid { grid-template-columns: repeat(3, 1fr); }
	.athma-speciality-helps-grid { grid-template-columns: 1fr; }
	.athma-about-care-cards-grid { grid-template-columns: repeat(3, 1fr); }
	.athma-rehab-social-yt-item { flex-basis: calc(60% - 12px); }
	.athma-rehab-social-grid-insta .instagram-media { flex-basis: 70%; width: 70% !important; }
}

/* ---------- MOBILE: up to 768px (single consolidated block) ---------- */
@media (max-width: 767.98px) {
	:root {
		--athma-fs-h1: 20px;
		--athma-fs-h2: 17px;
		--athma-fs-h3: 16px;
		--athma-fs-h4: 15px;
		--athma-fs-body: 14px;
		--athma-fs-small: 13 x;
		--athma-fs-eyebrow: 11px;
	}

	/* --- Header / nav --- */
	.athma-rehab-home-header-wrap { position: fixed !important; top: 0 !important; left: 0 !important; width: 100% !important; z-index: 3 !important; }
	.athma-rehab-home-topbar-section { padding: 0; min-height: 30px; display: flex; align-items: center; }
	.athma-rehab-home-topbar-slogan, .athma-rehab-home-topbar-item-emergency, .athma-rehab-home-topbar-divider { display: none; }
	.athma-rehab-home-topbar-info { width: 100%; justify-content: space-around; gap: 10px; }
	.athma-rehab-home-topbar-item { font-size: 11px; }
	.athma-rehab-home-header-navbar { padding: 5px 0; min-height: 57px; }
	.athma-rehab-home-header-logo { width: 236px; }
	.athma-rehab-home-header-collapse { width: 86vw !important; max-width: 360px !important; box-shadow: -12px 0 40px rgba(8, 26, 64, 0.18); }
	.athma-rehab-home-header-offcanvas-header { display: flex; align-items: center; justify-content: space-between; width: 100%; padding: 18px 20px; border-bottom: var(--athma-rule); }
	.athma-rehab-home-header-offcanvas-logo { width: 222px; height: auto; }
	.athma-rehab-home-header-offcanvas-close { width: 34px; height: 34px; border-radius: 50%; border: 1.5px solid var(--athma-border-light); background-color: #fff; color: var(--athma-navy); display: flex; align-items: center; justify-content: center; font-size: 18px; line-height: 1; flex-shrink: 0; }
	.athma-rehab-home-header-offcanvas-body { padding: 18px !important; display: flex !important; flex-direction: column !important; gap: 16px !important; }
	.athma-rehab-home-header-actions.d-md-none { margin-top: 8px; }
	.athma-rehab-home-header-actions.d-md-none .athma-rehab-home-header-book-btn { width: 62%; justify-content: center; }
	.athma-rehab-home-header-menu { position: static !important; left: auto !important; top: auto !important; transform: none !important; display: flex !important; flex-direction: column !important; align-items: stretch !important; width: 100%; gap: 2px !important; }
	.athma-rehab-home-header-menu .nav-item { width: 100%; }
	.athma-rehab-home-header-menu .nav-link,
	.athma-rehab-home-header-menu .dropdown-toggle.nav-link { display: flex !important; width: 100% !important; justify-content: flex-start !important; text-align: left !important; padding: 12px 10px; border-bottom: var(--athma-rule); border-radius: 0; }
	.athma-rehab-home-header-dropdown-toggle { display: flex !important; justify-content: space-between !important; align-items: center; }
	.athma-rehab-home-header-megamenu { position: static; transform: none; width: 100%; margin-top: 0; box-shadow: none; padding: 0 0 0 14px; display: grid !important; grid-template-columns: 1fr; max-height: 0; overflow: hidden; opacity: 0; transition: max-height 0.4s ease, opacity 0.3s ease, padding 0.4s ease; }
	.athma-rehab-home-header-dropdown.is-mobile-open .athma-rehab-home-header-megamenu { max-height: 3000px; opacity: 1; padding: 4px 0 8px 14px; }
	.athma-rehab-home-header-dropdown.is-mobile-open .athma-rehab-home-header-dropdown-toggle { color: var(--athma-orange); }
	.athma-rehab-home-header-dropdown.is-mobile-open .athma-rehab-home-header-caret { transform: rotate(-135deg) translate(-2px, 2px); }
	.athma-rehab-home-header-dropdown-item { padding: 10px 6px; }
	.athma-rehab-home-header-megamenu-col + .athma-rehab-home-header-megamenu-col { border-left: none; padding-left: 0; margin-top: 8px; padding-top: 12px; border-top: var(--athma-rule); }

	/* --- Buttons --- */
	.btn { font-size: var(--athma-fs-small); padding: 10px 16px; }
	.athma-btn-primary { padding: 10px 16px; }
	.athma-rehab-home-leadership-eyebrow::before{display: none;}
	.athma-rehab-home-leadership-dots span {width: 5px;height: 5px;}
	.athma-rehab-home-journey-row {row-gap: 13px;}
	.athma-btn-slide-text-inner{    font-size: 11px;}
	.athma-therapy-related-card p {font-size: 11px;font-weight: 500;text-align: start;}
	.athma-therapy-related-card strong{font-size: 13px;text-align: start;}
	.athma-therapy-conditions-card strong{font-size:11px}
	.athma-rehab-home-header-dropdown-item-copy{font-size: 12px;}
	.athma-legal-hero-logo{    width: 260px;}
.athma-blogpost-body p{font-size: 13px;}
.athma-rehab-home-programs-list-row{margin-bottom: 15px;}
	/* --- Home hero --- */
	.athma-rehab-home-hero-section { background-image: url('image/athma-home-banner-mobile.webp'); padding: 0px 0 0; }
	.athma-rehab-home-hero-col-text { padding: 26px 16px;align-items: center; }
	.athma-rehab-home-hero-title { text-align: center;font-size: 23px; line-height: 1.3; margin-bottom: 18px; }
	.athma-rehab-home-hero-subtext { display: none; }
	.athma-rehab-home-hero-btn-group { flex-direction: row; align-items: flex-start; flex-wrap: nowrap; gap: 10px; margin-bottom: 312px; }
	.athma-rehab-home-hero-btn-primary,
	.athma-rehab-home-hero-btn-secondary { padding: 8px 9px; width: fit-content; }
	.athma-rehab-home-hero-quicklinks { flex-direction: column; align-items: flex-start; gap: 12px; padding-top: 18px;display:none }
	.athma-rehab-home-hero-quicklink-sep { display: none; }
	.athma-rehab-home-hero-stats-strip { padding: 10px 0 10px; margin-top: 0px; }
	.athma-rehab-home-hero-stats-col strong { font-size: 15px; }
	.athma-rehab-home-hero-stats-col span { font-size: 9px; }
	.athma-rehab-home-hero-stats-row > :nth-child(4) { display: none !important; }

.athma-rehab-home-hero-slide::before {background: linear-gradient(100deg, rgba(253,246,241,0.97) 0%, rgba(253,241,231,0.9) 0%, rgba(253,241,231,0.05) 0%, rgba(253,241,231,0) 60%)}

		.athma-rehab-home-hero-slide-1,
	.athma-rehab-home-hero-slide-2,
	.athma-rehab-home-hero-slide-3 { background-image: url('image/athma-home-banner-mobile.webp'); }
	.athma-rehab-home-hero-arrow { width: 30px; height: 30px; font-size: 17px; left: auto; }
	.athma-rehab-home-hero-arrow-prev { left: 6px; }
	.athma-rehab-home-hero-arrow-next { right: 6px; }



.athma-rehab-home-about-title{font-size: 16px;}
	.athma-therapy-related-grid{gap: 9px;}
	.athma-rehab-home-features-card-text {font-size: 10px;}
	.col-6.col-lg-3.athma-rehab-home-features-col {
    padding: 0;}
	.athma-therapy-conditions-card p{font-size: 11px;}
	.athma-rehab-contact-form-subheading{font-size: 10.5px;}
	.athma-rehab-contact-form-textarea{padding: 10px 12px 4px;}
	.athma-rehab-contact-branch-name{    font-size: 11px;}
	.athma-rehab-facilities-gallery-grid{gap: 9px;}
	.athma-rehab-contact-hero-section::before{background:linear-gradient(74deg, rgb(28 72 139 / 94%) 0%, rgb(30 65 105 / 82%) 1%, rgba(13, 51, 78, 0.1) 96%)}

	/* --- Home sections --- */
	.athma-rehab-home-expert-section { padding: 30px 0; }
	.athma-rehab-home-journey-bottom-cta-copy {font-size: 12px;}
	.athma-rehab-home-expert-media { padding: 0; }
	.athma-rehab-home-about-section { background-image: url('image/who-we-are-bg-mob.webp'); background-attachment: scroll; padding: 90px 0; }
	.athma-rehab-home-about-section::before { background:#9d99954f; }
	.athma-rehab-home-features-section { padding: 30px 0; }
	.athma-rehab-home-features-heading-wrap { margin-bottom: 22px; }
	.athma-rehab-home-features-row { row-gap: 8px; }
	.col-6.col-lg.athma-rehab-home-process-col {
    padding: 0;}
	.athma-rehab-home-expert-title {
    margin-bottom: 11px;}
	.athma-about-hero-title {font-size: 18px;}
	.athma-about-journey-stat span small{font-size: 12px;}
	.athma-rehab-home-journey-location{    margin-bottom: 3px;}
	.athma-rehab-home-journey-title{margin-bottom: 9px;}
	.athma-rehab-home-expert-cta-row {margin-top: 14px;}
	.athma-rehab-home-process-card{    margin: 6px;}
	.athma-rehab-home-features-card { padding: 13px 7px;margin: 5px }
	.athma-rehab-home-programs-section { padding: 30px 0 34px; }
	.athma-rehab-home-programs-list-item { padding: 10px 12px; }
	.athma-rehab-home-leadership-section { padding: 30px 0; background-image: #e1651315, url(image/leadership-bg-mobile.webp); }
	.athma-rehab-home-leadership-row { row-gap: 22px; }
	.athma-rehab-home-journey-section { padding: 34px 0; }
	.athma-rehab-home-journey-map-wrap { max-width: 400px; }
	.athma-rehab-home-journey-pin-avatar { width: 28px; height: 28px; border-width: 2px; }
	.athma-rehab-home-journey-pin-marker { width: 10px; height: 10px; }
	.athma-rehab-home-journey-pin-marker-main { width: 22px; height: 22px; }
	.athma-rehab-home-journey-pin-marker-main::before { width: 9px; height: 9px; }
	.athma-rehab-home-journey-pin-label { font-size: 7px; padding: 2px 6px; }
	.athma-rehab-home-journey-pin-label-main { font-size: 6px; }
	.athma-rehab-home-journey-pin-tooltip { width: 130px; padding: 9px 10px; font-size: 9px; }
	.athma-rehab-home-journey-pin-tooltip strong { font-size: 10px; margin-bottom: 0; }
	.athma-rehab-home-journey-bottom-bar { flex-direction: column; align-items: stretch; text-align: center; padding: 14px; gap: 10px; margin-top: 14px; }
	.athma-rehab-home-journey-bottom-cta { justify-content: center; width: fit-content; margin: auto; padding: 4px 14px; }
	.athma-rehab-home-journey-bottom-cta-copy small { display: none; }
	.athma-rehab-home-process-section { padding: 28px 0 34px; }
	.athma-rehab-home-process-row { row-gap: 10px; }
	.athma-rehab-home-journey-stat-copy strong {font-size: 18px;}
	.athma-rehab-home-process-label { padding:21px 0px 7px; }
	.athma-rehab-home-process-label {margin: -12px;}
	.athma-rehab-home-testimonials-section { padding: 34px 0; }
	.athma-rehab-home-testimonials-section .athma-rehab-home-process-eyebrow {font-size: 13px; color: #3b3b3b; text-shadow: none; margin-bottom: 0; }
	.athma-google-reviews-track { padding: 17px 0; }
	.athma-rehab-facilities-stats-col{justify-content: flex-start;}
	.athma-google-review-card { flex-basis: 280px; padding: 16px; }
	.athma-google-review-avatar { width: 38px; height: 38px; }
	.athma-rehab-home-journey-testimonial-eyebrow{margin-bottom: 0px;}
	.athma-about-team-grid-card{height: 95%;}

	/* --- FAQ + CTA --- */
	.athma-rehab-home-faq-section { padding: 28px 0; }
	.athma-rehab-home-faq-heading-wrap { margin: 0 auto 18px; }
	.athma-rehab-home-faq-list { gap: 12px; }
	.athma-rehab-home-faq-question { padding: 14px 14px; gap: 12px; }
	.athma-rehab-home-faq-question::after { width: 22px; height: 22px; background-size: 10px 2px, 2px 10px; }
	.athma-rehab-home-faq-item.is-open .athma-rehab-home-faq-answer { padding: 0 14px 16px; }
	.athma-rehab-home-cta-section { padding: 40px 0; background-size: inherit;}
	.athma-rehab-home-cta-text { margin: 0 auto 24px; }
	.athma-rehab-home-cta-btn-row { gap: 16px; }
	.athma-rehab-home-cta-call-icon { width: 32px; height: 32px; font-size: 13px; }
	.athma-rehab-home-cta-call { font-size: 12px; }
	.athma-rehab-home-cta-call small { font-size: 11px; }
	p.athma-legal-eyebrow {
    font-size: 12px;}
.athma-legal-title {
    font-size: 24px;
}
.athma-rehab-home-cta-call{color: #635e5e;}
.athma-legal-updated{
	font-size: 10px;
}
.athma-blogs-card-body h3 a {
    font-size: 11px;
}
.col-lg-5.athma-rehab-home-programs-col-media {
    width: 100.666667%;
}
.col-lg-7.athma-rehab-home-programs-col-content.athma-reveal-group {
    padding-left: 16px;
}

	/* --- Footer + widgets --- */
	.athma-rehab-home-footer-section { padding: 30px 0 0; }
	.athma-rehab-home-footer-logo { width: 220px; }
	.athma-rehab-home-footer-row { row-gap: 24px; }
	.athma-rehab-home-footer-link-list li { margin-bottom: 6px; }
	.athma-rehab-home-footer-heading { margin-bottom: 8px; }
	.athma-rehab-home-footer-contact-bar { gap: 12px 24px; margin-top: 14px; padding-top: 14px; }
	.athma-rehab-home-footer-contact-list { gap: 8px 16px; }
	.athma-rehab-whatsapp-widget { bottom: 84px; right: 16px; }
	.athma-rehab-whatsapp-launcher { width: 46px; height: 46px; font-size: 22px; }
	.athma-rehab-whatsapp-panel { width: 260px; }
	.athma-rehab-chatbot { bottom: 16px; right: 16px; }
	.athma-rehab-chatbot-launcher { width: 52px; height: 52px; }
	.athma-rehab-chatbot-launcher-bubble { display: none; }
	.athma-rehab-chatbot-panel { position: fixed; inset: 0; width: auto; max-height: none; border-radius: 0; z-index: 1300; }
	.athma-rehab-chatbot-header { padding-top: calc(16px + env(safe-area-inset-top, 0px)); }
	.athma-rehab-chatbot-menu { grid-template-columns: 1fr 1fr; }
	.athma-cookie-consent { backdrop-filter: blur(6px); background-color: #ffffffd1; }
	.athma-cookie-consent-inner { flex-direction: column; align-items: stretch; text-align: center; gap: 10px; padding: 16px 12px; }
	.athma-cookie-consent-actions { width: fit-content; margin: auto; }
	.athma-cookie-consent-accept { padding: 8px 22px; }
	.athma-promo-modal { padding: 6px; }
	.athma-promo-modal-media { aspect-ratio: 1349 / 1149; }
	.athma-promo-modal-close { top: 6px; right: 6px; width: 26px; height: 26px; font-size: 13px; }
	.athma-promo-modal-subtext { margin-bottom: 12px; }
	.athma-promo-modal-btn { padding: 9px 8px; }
	.athma-promo-modal-actions { flex-direction: column; }
	[class*="-eyebrow"] {font-size: 11px;margin-bottom: 5px;}

	/* --- Appointment modal --- */
	.athma-rehab-appointment-modal-dialog { max-width: 94vw; margin: 12px auto; }
	.athma-rehab-appointment-modal-content { max-height: 92vh; overflow-y: auto; }
	.athma-rehab-appointment-modal-grid { grid-template-columns: 1fr; }
	.athma-rehab-appointment-modal-aside { padding: 14px; }
	.athma-rehab-appointment-modal-aside-list { display: none; }
	.athma-rehab-appointment-modal-main { padding: 16px 14px; }
	.athma-rehab-appointment-modal-close { width: 26px; height: 26px; top: 11px; right: 14px; font-size: 14px; }
	.athma-rehab-appointment-modal-aside-call { padding: 8px 14px; width: fit-content; }
	.athma-rehab-appointment-modal-input { height: 40px; }
	.athma-rehab-appointment-modal-submit { height: 40px; }
	.athma-rehab-appointment-modal-subtext { margin-bottom: 8px; }
	.col-lg-7.athma-rehab-home-leadership-col-text.athma-reveal-group {text-align: center !important;}	
	.athma-rehab-home-leadership-text{max-width: 694px !important;}

	/* --- About page --- */
	.athma-about-hero-section { padding: 26px 0; }
	.col-lg-4.athma-about-accreditation-col-badge {
    width: 97.333333% !important;}
	.athma-about-journey-section { padding: 26px 0; }
	.athma-about-journey-row { row-gap: 14px; }
	.athma-about-whychoose-row {row-gap: 11px;}
	.athma-about-whychoose-card strong {font-size: 12px;}
	.athma-about-team-grid-heading-wrap {margin: 0 auto 19px;}
	.athma-about-journey-stat { padding: 14px; max-width: 100%;margin-top: 20px; }
	.athma-about-journey-stat strong { font-size: 22px; }
	.athma-about-journey-purpose { padding: 14px; }
	.athma-about-founder-section { margin-top: 20px; }
	.athma-about-care-intro{    margin: 0 auto 0px;}
	.athma-about-care-card strong{ font-size: 13px; margin-bottom: 5px;}
	.col-6.col-lg-3.athma-about-whychoose-col {padding: 0;}
	.athma-about-care-card{padding: 16px 14px;	}
	.athma-about-whychoose-card p{font-size: 11px;}
	.athma-rehab-social-grid-insta .instagram-media{min-width: 224px !important;}
	.athma-about-founder-photo-wrap { min-height: 242px;padding-top: 0px; }
	.athma-about-founder-content { padding: 22px 14px; }
	.athma-about-care-section { padding: 26px 0; }
	.athma-about-care-cards-grid { grid-template-columns: 1fr; }
	.athma-about-care-card { align-items: flex-start; }
	.athma-rehab-home-faq-question{font-size: 13px;}
	.athma-about-accreditation-section { padding: 24px 0; }
	.athma-about-accreditation-logo { width: 90px; height: 90px; }
	.athma-about-facilities-grid-section { padding: 26px 0; }
	.athma-about-facilities-grid-photo { grid-template-columns: repeat(2, 1fr); gap: 12px; }
	.athma-about-facilities-grid-photo-label { left: 12px; right: 12px; bottom: 10px;font-size: 11px; }
	.athma-about-facilities-grid-tagline { margin: 24px auto 14px; }
	.athma-about-accreditation-points-row{display: none;}
	.athma-about-whychoose-section { padding: 20px 0 26px; }
	.athma-about-team-grid-role{margin-bottom: 12px;}
	.athma-about-team-grid-viewprofile{font-size: 10.5px; padding: 3px 14px;}
	.athma-speciality-highlight-number{margin-bottom: 2px;}

	.athma-about-whychoose-card { padding: 12px 9px;margin: 6px; }
	.athma-about-team-grid-section { padding: 26px 0; }
	.athma-about-team-grid-row { display: flex !important; flex-wrap: nowrap; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 20px; scrollbar-width: none; }
	.athma-about-team-grid-row::-webkit-scrollbar { display: none; }
	.athma-about-team-grid-row > [class*="col-"] { flex: 0 0 60%; max-width: 60%; scroll-snap-align: center; }
	.athma-about-team-grid-card img { width: 100%; }
	.athma-about-team-grid-card{    margin: 7px;}
	.athma-about-team-grid-col.athma-reveal-item {padding: 0;}

	/* --- Social --- */
	.athma-rehab-social-section { padding: 24px 0; }
	.athma-rehab-social-tabs { max-width: 260px; }
	.athma-about-facilities-grid-heading-wrap{margin: 0 auto 18px;}
	.athma-speciality-overview-col-text p{    margin-bottom: 4px;}
	.athma-rehab-home-header-megamenu-heading{    font-size: 11px;}
	.athma-speciality-helps-item p{    font-size: 13px;}
	.athma-rehab-social-tab { padding: 7px 12px; }
	.athma-speciality-hero-title{font-size: 17px;}
	.athma-rehab-social-yt-item { flex-basis: 84%; }
	.athma-speciality-helps-num{font-size: 13px;}
	.athma-speciality-included-title{margin-bottom: 10px;}
	.athma-about-team-grid-role{font-size: 11.5px;}
	.athma-about-team-grid-card-body { padding: 9px;}
	.athma-about-team-grid-card-body small{font-size: 10px;}
.athma-about-team-grid-card-body strong {font-size: 10px;}
    .athma-about-team-grid-role {font-size: 8.5px;}
	.athma-rehab-social-grid-insta .instagram-media { flex-basis: 84%; width: 84% !important; }
	.athma-carousel-arrow { width: 26px; height: 26px; font-size: 29px; border: none; box-shadow: none; background-color: transparent; color: var(--athma-orange); }
	.athma-carousel-arrow:hover { background-color: transparent; color: var(--athma-orange-dark); }

	/* --- Contact page --- */
	.athma-rehab-contact-hero-section { padding: 34px 0 12px; background-image: url('image/contact-hero-bg-mobile.webp'); }
	.athma-rehab-contact-hero-text { margin-bottom: 26px; }
	.athma-rehab-contact-hero-cards-wrap { transform: translateY(56%); }
	.athma-rehab-contact-hero-cards-row { row-gap: 8px; }
	.athma-rehab-contact-hero-card { padding: 13px;margin: 4px;}
	.athma-rehab-contact-main-section { padding: 130px 0 26px; }
	.athma-rehab-contact-main-row { row-gap: 12px; }
	.athma-rehab-contact-map-card { padding: 16px 13px; }
	.athma-rehab-contact-form-card { padding: 18px;font-size: 12px; }
	.athma-rehab-contact-form-input { height: 40px; }
	.athma-rehab-contact-form-row { row-gap: 0px; }
	.athma-rehab-contact-form-submit { width: 100%; height: 49px; margin-top: 2px; }
	.athma-rehab-contact-branch-section { padding: 24px 0 30px; }
	.athma-rehab-contact-branch-heading-wrap { margin-bottom: 20px; }
	.athma-rehab-contact-branch-card { aspect-ratio: 1 / 1; }
	.athma-rehab-contact-branch-content { padding: 11px; }
	.athma-rehab-contact-branch-name { margin-bottom: 0px	 }
	.athma-rehab-contact-branch-action {font-size: 9px; padding: 1px 6px;}
	.athma-rehab-contact-branch-whatsapp { font-size: 8px; padding: 3px 8px; }
	.athma-rehab-contact-hero-card-value{font-size: 12px;}
	.athma-rehab-contact-branch-actions{    gap: 5px;}
	.athma-rehab-contact-hero-cards-wrap{ padding-top: 6px; padding: 22px 23px;}
	.athma-rehab-contact-map-title{font-size: 14px;}
	.athma-rehab-contact-form-title {font-size: 13px;}
	.athma-rehab-contact-form-program span{font-size: 11px;padding: 4px;}
	
		.athma-rehab-home-services-section { padding: 30px 0; }
	.athma-rehab-home-services-row { row-gap: 16px; }
	.athma-rehab-home-services-aside { padding: 18px 14px; }
	.athma-rehab-home-services-title { margin-bottom: 14px; }
	.athma-rehab-home-services-list a { padding: 10px 0; }
	.athma-rehab-home-services-grid { grid-template-columns: 1fr; gap: 12px; }
	.athma-rehab-home-services-card { aspect-ratio: 10 / 10; }
	.athma-rehab-home-services-card-label { left: 14px; right: 14px; bottom: 14px; }
	.athma-rehab-home-services-card-arrow { width: 30px; height: 30px;font-size: 18px; font-weight: 900; padding-bottom: 4px; }
	button.athma-rehab-facilities-gallery-item.athma-rehab-facilities-gallery-item-wide {
    display: none !important;}
	p.new-text {  font-size: 13px;}
.athma-blogpost-body h3{font-size: 17px;}
.athma-blogpost-body blockquote {margin: 16px 0;background-color: #ff810026;}
.athma-blogpost-body h2{margin: 25px 0 6px;}
.athma-blogpost-body h4{font-size: 17px;}

	/* --- Facilities page --- */
	.athma-rehab-facilities-hero-section { padding: 40px 0; }
	.athma-rehab-facilities-grid-section { padding: 26px 0 20px; }
	.athma-rehab-facilities-grid-row { row-gap: 14px; }
	.athma-rehab-facilities-grid-card-body { padding: 10px; margin-bottom: -18px; }
	.athma-rehab-facilities-detail-section { padding: 26px 0; }
	.athma-rehab-facilities-stats-section { padding: 18px 0; }
	.athma-rehab-facilities-stats-col strong { font-size: 13px; }
	.athma-rehab-facilities-stats-col span { font-size: 10px; }
	.athma-rehab-facilities-stats-col:last-child { display: none; }
	.athma-rehab-facilities-gallery-section { padding: 26px 0; }
	.athma-rehab-facilities-gallery-heading-wrap { margin: 0 auto 20px; }
	.athma-rehab-facilities-gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
	.athma-rehab-facilities-gallery-item-wide { grid-column: span 2; }
	.athma-rehab-facilities-lightbox-close { width: 28px; height: 28px; font-size: 15px; }
.athma-blogpost-title{font-size: 17px;}
.athma-blogpost-breadcrumb{font-size: 10.5px;}
.athma-blogpost-category{font-size: 9px;padding: 3px 10px;}

p.home-hero-eye {font-size: 8px;margin-bottom: 7px;}


	/* --- Legal + blog --- */
	.athma-legal-hero-section { padding: 30px 0 26px; }
	.athma-legal-section { padding: 28px 0 34px; }
	.athma-legal-doc-section { flex-direction: column; gap: 8px; padding: 14px 0; }
	.athma-legal-doc-intro { margin: 0 0 18px; padding-bottom: 18px; }
	.athma-legal-doc-contact { padding: 22px 18px; }
	.athma-legal-card { padding: 18px; }
	.athma-blogs-section { padding: 14px 0; }
	.athma-blogs-row { row-gap: 0px; }
	.athma-blogs-card-body { padding: 7px; }
	.athma-blogs-card-tag { padding: 2px 5px 1px;
        font-size: 7px;
        top: 5px;
        left: 5px;}
		.athma-blogs-card-body p{display: none;}
		.col-6.col-lg-4.athma-blogs-col {
    padding: 0}
	.col-6.col-lg-3.athma-rehab-contact-hero-card-col {padding: 0;}
	.athma-blogs-card-body h3{font-size: 10px; margin-bottom: 3px; line-height: 1.5;}
	.athma-blogs-card-date { font-size: 8px; margin-bottom: 4px; }
	.athma-blogs-card-readmore { font-size: 10px;  padding: 2px 9px; border-radius: 5px;margin: 6px 0;}
	.athma-blogpost-hero-section { padding: 40px 0 30px; }
	.athma-blogpost-body-section { padding:19px 0 10px; }
	.athma-blogpost-meta { gap: 10px; font-size: 10.5px; }
	.athma-blogpost-highlight-box { padding: 16px 18px; margin: 24px 0; }
	.athma-blogpost-slogan { padding: 22px 18px; }
	.athma-blogpost-whatsapp-cta { padding: 26px 18px; }
	.athma-blogpost-whatsapp-cta-btn { padding: 10px 18px; }
	.athma-blogs-card{margin: 7px;height: 94%;}
	.athma-blogpost-body h3{margin: 18px 0 3px;}

	/* --- Therapy pages --- */
	.athma-therapy-hero-section { padding: 40px 0; }
	.athma-therapy-highlights-section { padding: 14px 0; }
	.athma-therapy-highlights-row { gap: 9px; }
	.athma-therapy-highlight-col span { font-size: 8px; }
	.athma-therapy-intro-section { padding: 19px 0; }
	.athma-therapy-conditions-section { padding: 26px 0; }
	.athma-therapy-conditions-grid { grid-template-columns: repeat(2, 1fr); gap: 9px; }
	.athma-therapy-conditions-card { padding: 9px 12px; }
	.athma-therapy-process-section { padding: 26px 0; }
	.athma-rehab-home-features-card-title{font-size: 12px;}
	.athma-therapy-conditions-heading-wrap{  margin: 0 auto 25px;}
	.container.athma-therapy-highlights-row {
    padding: 0;}
	.athma-rehab-home-expert-row {
    row-gap: 22px;}
	.athma-therapy-process-step-copy strong {font-size: 13px;}
	.athma-therapy-highlight-number {font-size: 10px;}
	.athma-therapy-process-heading-wrap { margin: 0 auto 18px; }
	.athma-therapy-process-step { padding: 12px 0; gap: 12px; }
	.athma-therapy-process-step-num { width: 28px; height: 28px; font-size: 11px; }
	.athma-therapy-benefits-section { padding: 26px 0; }
	.athma-therapy-related-section { padding: 26px 0; }
	.athma-therapy-related-heading-wrap { margin: 0 auto 18px; }
	.athma-therapy-related-grid { grid-template-columns: repeat(2, 1fr);margin: 16px 0;}
	.athma-therapy-related-card { padding: 14px 10px; }
	.athma-therapy-hero-btn { padding: 9px 14px; }
	.athma-speciality-helps-item strong{    font-size: 13px;}
	.athma-divider{margin: 11px 0;height: 0.5px;}
	.athma-speciality-timeline-copy strong{font-size: 13px; }
	.col-6.col-lg-4.athma-rehab-facilities-grid-col {padding: 0;}
	.athma-rehab-facilities-grid-card-body small {display: none}
	.athma-rehab-facilities-grid-card{margin: 6px;}
	.athma-rehab-facilities-grid-card-body strong{font-size: 11px;}
.athma-therapy-intro-col-text p{margin-bottom: 2px;}
	.athma-about-journey-media { min-height: 0; aspect-ratio: 4 / 3; }

.athma-therapy-hero-title{margin-bottom: 8px;}
.athma-rehab-facilities-hero-title{    font-size: 18px;}
	/* --- Speciality pages --- */
	.athma-speciality-hero-section { padding: 50px 0; min-height: 278px; }
	.athma-speciality-hero-btn { padding: 9px 14px; }
	.athma-speciality-highlight-number {font-size: 13px;}
	.athma-speciality-highlights-section { padding: 16px 0; }
	.athma-speciality-highlights-row { 	gap: 12px; }
	.athma-speciality-highlight-col span { font-size: 9px; }
	.athma-speciality-overview-section { padding: 26px 0; }
	.container.athma-speciality-highlights-row {padding: 0;}
	.athma-speciality-helps-section { padding: 26px 0; }
	.athma-speciality-helps-heading-wrap { margin: 0 auto 16px; }
	.athma-speciality-helps-item { gap: 8px; padding: 12px 0; }
	.athma-speciality-process-section { padding: 26px 0; }
	.athma-speciality-process-heading-wrap { margin: 0 auto 20px; }
	.athma-speciality-timeline { padding-left: 28px; }
	.athma-speciality-timeline-marker { left: -26px; width: 22px; height: 22px; font-size: 11px; }
	.athma-speciality-timeline-copy strong, .athma-speciality-timeline-copy p { padding-left: 14px; }
	.athma-speciality-included-section { padding: 26px 0; }
}

/* ---------- REDUCED MOTION ---------- */
@media (prefers-reduced-motion: reduce) {
	* { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
	html { scroll-behavior: auto; }
	.athma-google-reviews-track { animation: none; }
}

@media (min-width: 768px) and (max-width: 1024px){
		/* --- Header logo (tablet only) --- */
	.athma-rehab-home-header-logo { width: 175px; }
	.athma-rehab-home-header-menu .nav-link { padding: 10px 9px; margin: 0; }
	.athma-rehab-home-header-book-btn { padding: 10px 16px; }

	/* --- Home hero (tablet only) --- */
	.athma-rehab-home-hero-section { min-height: 0; padding: 0 px 0 0; background-position: right center; }
	.athma-rehab-home-hero-section::before { background: linear-gradient(100deg, rgba(253, 246, 241, 0.97) 0%, rgba(253, 240, 224, 0.92) 6%, rgba(253, 241, 231, -1.45) 62%, rgba(253, 241, 231, 0) 88%); }
	.athma-rehab-home-hero-col-text { padding: 130px 0; }
	.athma-rehab-home-hero-title { font-size: 21px; line-height: 1.25; margin-bottom: 18px; max-width: 420px; }
	.athma-rehab-home-hero-subtext { max-width: 338px; margin-bottom: 22px;font-size: 12px; }
	.athma-rehab-home-hero-btn-group { gap: 12px; margin-bottom: 26px; }
	.athma-rehab-home-hero-btn-primary,
	.athma-rehab-home-hero-btn-secondary {padding: 9px 8px; }
	.athma-rehab-home-hero-quicklinks { flex-wrap: wrap; gap: 10px 16px; max-width: 254px; padding-top: 18px; }
	.athma-rehab-home-hero-stats-strip { padding: 20px 0 12px; }
	.athma-rehab-home-hero-stats-col strong { font-size: 20px; }
	.athma-rehab-home-hero-stats-col span { font-size: 11px; }
	.athma-btn-primary{font-size:12px}
	.athma-rehab-home-hero-quicklink{ font-size: 12px;}

		.athma-rehab-home-hero-slide { background-position: right center; }
	.athma-rehab-home-hero-slide::before { background:linear-gradient(100deg, rgba(253,246,241,0.97) 0%, rgba(253,240,224,0.22) 6%, rgba(253,241,231,0.45) 0%, rgba(253,241,231,0) 59%); }
	.athma-rehab-home-hero-slide-1,
	.athma-rehab-home-hero-slide-2,
	.athma-rehab-home-hero-slide-3 { background-image: url('image/athma-home-banner-tab.webp'); }
	.athma-rehab-home-hero-arrow { width: 38px; height: 38px; font-size: 20px; }


	.athma-btn-slide-text-inner {font-size: 12px;}
	.athma-about-founder-photo-wrap {min-height: 304px;}
	.athma-about-whychoose-card strong{font-size: 13px;}
	.athma-about-whychoose-card p{font-size: 12px;}
	.col-lg-5.athma-rehab-home-programs-col-media {
    width: 100.666667%;}
	.col-lg-7.athma-rehab-home-programs-col-content.athma-reveal-group {
    padding-left: 14px;}
	.athma-rehab-home-leadership-photo-wrap{max-width: 699px;}
	.col-lg-7.athma-rehab-home-leadership-col-text.athma-reveal-group {
    text-align: center;
}

		.athma-rehab-home-services-section { padding: 40px 0; }
	.athma-rehab-home-services-aside { padding: 22px 18px; }
	.athma-rehab-home-services-grid { gap: 12px; }
	.athma-rehab-home-services-card-label { left: 12px; right: 12px; bottom: 12px; }
	.athma-rehab-home-services-card-arrow { width: 32px; height: 32px; font-size: 15px; }

		.athma-about-journey-media { min-height: 0; aspect-ratio: 16 / 9; }
}
@media (max-width: 328px) {
.athma-rehab-home-hero-title{font-size: 18px;}
}