/* ============================================================
   SUVIRA HOSPITAL — HOMEPAGE
   Theme: Teal primary · Navy supporting · Gold sparingly
   Fonts: Poppins (display + body) + Roboto (utility)
   Sizes: pixel-based, professional readable
============================================================ */

:root {
  /* TEAL — primary brand */
  --teal-50: #f0faf8;
  --teal-100: #d8f2ee;
  --teal-200: #b3e6dd;
  --teal-300: #7dd3c4;
  --teal-400: #1849a1;
  --teal-500: #1849a1;
  --teal-600: #1849a1;
  --teal-700: #1849a1;
  --teal-800: #0f5852;
  --teal-900: #0a3d39;
  --teal-bg-light: #ecf7f5;

  /* NAVY — supporting */
  --navy-950: #050f30;
  --navy-900: #0b1a42;
  --navy-800: #14285c;
  --navy-700: #1e3a7e;
  --navy-600: #2c4a91;
  --navy-50: #f3f5fb;
  /* very light navy-tinted bg */
  --navy-100: #e6ebf6;
  /* soft navy bg */
  --navy-150: #dde3f0;
  /* slightly stronger navy bg */
  --navy-bg-tint: #eef2fa;
  /* a balanced navy-light section bg */
  --cream-50: #fbf7ee;
  /* warm off-white */
  --cream-100: #f5eedb;
  /* slightly stronger cream */

  /* GOLD — sparing accent only */
  --gold-300: #e8bf5e;
  --gold-400: #d9a441;
  --gold-500: #c89a3f;
  --gold-600: #a37820;

  /* Neutrals */
  --ink-900: #0e1729;
  --ink-800: #1f2a47;
  --ink-700: #3d465e;
  --ink-600: #5a6478;
  --ink-500: #7a8094;
  --ink-400: #9aa0b4;
  --ink-300: #c3c8d6;
  --ink-200: #dee2ec;
  --ink-100: #eef0f6;
  --ink-50: #f6f8fc;

  --white: #ffffff;
  --bg: #ffffff;
  --bg-soft: #f6f9fb;

  /* Fonts */
  --f-display: 'Poppins', 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
  --f-body: 'Poppins', 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Type scale (px) */
  --fs-h1: 44px;
  --fs-h2: 34px;
  --fs-h3: 22px;
  --fs-h4: 18px;
  --fs-eyebrow: 12px;
  --fs-body: 15px;
  --fs-small: 13px;
  --fs-tiny: 11px;

  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(11, 26, 66, 0.04);
  --shadow-sm: 0 2px 8px rgba(11, 26, 66, 0.06);
  --shadow-md: 0 6px 18px rgba(11, 26, 66, 0.08);
  --shadow-lg: 0 14px 32px rgba(11, 26, 66, 0.10);
  --shadow-xl: 0 22px 50px rgba(11, 26, 66, 0.14);
  --shadow-teal: 0 8px 22px rgba(38, 166, 154, 0.28);

  /* Radii (px) */
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 18px;
  --r-xl: 24px;
  --r-2xl: 32px;
  --r-pill: 999px;

  --max: 1290px;

  --t-fast: 0.18s ease;
  --t-med: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  margin: 0;
  font-family: var(--f-body);
  font-size: var(--fs-body);
  font-weight: 400;
  line-height: 1.6;
  color: var(--ink-800);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img,
svg,
iframe {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  border: 0;
  background: transparent;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-family: var(--f-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy-900);
}

p {
  margin: 0 0 12px;
}

em,
.italic {
  font-style: normal;
}

/* avoid italic-everything */
blockquote {
  margin: 0;
}

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

.hide-sm {
  display: inline;
}

.hide-md {
  display: inline;
}

/* ============================================================
   HEADINGS (semantic, symmetric across page)
============================================================ */
.h-display {
  font-family: var(--f-display);
  font-size: var(--fs-h2);
  font-weight: 700;
  line-height: 1.18;
  color: var(--navy-900);
  letter-spacing: -0.4px;
}

.h-display--light {
  color: var(--white);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  color: var(--teal-700);
  background: var(--teal-100);
  border-radius: var(--r-pill);
  margin-bottom: 16px;
  font-family: var(--f-display);
}

.eyebrow--dark {
  background: rgba(38, 166, 154, 0.15);
  color: var(--teal-300);
}

.eyebrow .fa-google {
  color: #4285F4;
  font-size: 14px;
}

.accent-teal {
  color: #1aafae;
  font-weight: 700;
}

.accent-teal-light {
  color: var(--teal-300);
  font-weight: 700;
}

.lede {
  font-size: 16px;
  color: var(--ink-700);
  line-height: 1.65;
}

.section {
  padding: 70px 0;
  position: relative;
}

.section__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 48px;
}

.section__head--center {
  display: block;
  text-align: center;
  margin: 0 auto 20px;
}

.section__head-r p {
  font-size: var(--fs-body);
  color: var(--ink-600);
  line-height: 1.65;
  margin-bottom: 0;
  max-width: 460px;
}

.section__desc {
  font-size: 15px;
  color: #000000;
  line-height: 1.65;
  max-width: 80%;
  margin: 14px auto 0;
}

.section__desc--light {
  color: rgba(255, 255, 255, 0.78);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy-900);
  border-bottom: 2px solid var(--teal-500);
  padding-bottom: 3px;
  transition: gap var(--t-fast), border-color var(--t-fast), color var(--t-fast);
}

.link-arrow:hover {
  gap: 12px;
  color: var(--teal-700);
}

/* ============================================================
   BUTTONS
============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: var(--r-pill);
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.2px;
  border: 2px solid transparent;
  white-space: nowrap;
  text-align: center;
  transition: transform var(--t-fast), box-shadow var(--t-fast), background var(--t-fast), color var(--t-fast), border-color var(--t-fast);
}

.btn--primary {
  background: var(--teal-600);
  color: var(--white);
  box-shadow: var(--shadow-teal);
}

.btn--primary:hover {
  background: var(--teal-600);
  transform: translateY(-1px);
  box-shadow: 0 10px 26px rgba(38, 166, 154, 0.35);
}

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

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

.btn--ghost-white {
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--white);
}

.btn--ghost-white:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.btn--sm {
  padding: 9px 16px;
  font-size: 13px;
}

.btn--lg {
  padding: 14px 26px;
  font-size: 14.5px;
}

.btn--block {
  width: 100%;
}

/* ============================================================
   TOPBAR
============================================================ */
.topbar {
  background: var(--navy-950);
  color: rgba(255, 255, 255, 0.78);
  font-size: 12.5px;
  padding: 8px 0;
  font-family: var(--f-body);
  font-weight: 400;
}

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

.topbar__left,
.topbar__right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.topbar__left span,
.topbar__right a,
.topbar__right span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.topbar__right a {
  transition: color var(--t-fast);
}

.topbar__right a:hover {
  color: var(--teal-300);
}

.topbar__emerg {
  background: #4abfae;
  color: var(--white);
  padding: 4px 12px;
  border-radius: var(--r-pill);
  font-weight: 600;
  font-size: 12px;
}

.topbar__emerg a {
  color: var(--white);
}

/* ============================================================
   HEADER
============================================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--ink-100);
  transition: box-shadow var(--t-med), border-color var(--t-med);
}

.header.is-scrolled {
  box-shadow: var(--shadow-md);
  border-bottom-color: transparent;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 10px 0;
}

.header__logo img {
  height: 44px;
  width: auto;
}

.header__nav {
  display: flex;
  gap: 2px;
}

.header__nav a {
  position: relative;
  padding: 9px 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-700);
  border-radius: var(--r-md);
  transition: color var(--t-fast);
  font-family: var(--f-display);
}

.header__nav a:hover {
  color: var(--teal-600);
}

.header__nav a::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 4px;
  height: 2px;
  background: var(--teal-500);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform var(--t-fast);
}

.header__nav a:hover::after {
  transform: scaleX(1);
}

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

.header__phone {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header__phone-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--teal-500);
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 15px;
  box-shadow: var(--shadow-teal);
}

.header__phone-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.header__phone-text small {
  font-size: 10px;
  color: var(--ink-500);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-weight: 600;
}

.header__phone-text strong {
  font-size: 14px;
  color: var(--navy-900);
  font-weight: 600;
  font-family: var(--f-display);
}

.header__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.header__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy-900);
  border-radius: 2px;
  transition: transform var(--t-fast), opacity var(--t-fast);
}

.header__toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.header__toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.header__toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============================================================
   HERO — light teal bg, balanced layout, 2-line heading
============================================================ */
.hero {
  position: relative;
  background: linear-gradient(180deg, var(--teal-bg-light) 0%, #f5fbfa 100%);
  padding: 70px 0 80px;
  overflow: hidden;
}

.hero__decor {
  position: absolute;
  pointer-events: none;
}

.hero__decor--ring {
  top: -160px;
  right: -160px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  border: 2px solid rgba(38, 166, 154, 0.15);
}

.hero__decor--dots {
  bottom: 50px;
  left: 4%;
  width: 120px;
  height: 120px;
  background-image: radial-gradient(rgba(38, 166, 154, 0.25) 1.5px, transparent 1.5px);
  background-size: 13px 13px;
  opacity: 0.7;
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
  z-index: 1;
}

.hero__lead {
  max-width: 580px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 16px 7px 8px;
  background: var(--white);
  border: 1px solid var(--teal-200);
  border-radius: var(--r-pill);
  margin-bottom: 22px;
  box-shadow: var(--shadow-xs);
}

.hero__eyebrow i {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--teal-500);
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 11px;
  flex-shrink: 0;
}

.hero__eyebrow span {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--navy-900);
  text-transform: uppercase;
  letter-spacing: 1.6px;
  font-family: var(--f-display);
}

.hero__title {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: var(--fs-h1);
  line-height: 1.15;
  color: var(--navy-900);
  letter-spacing: -0.8px;
  margin-bottom: 18px;
}

.hero__title span {
  display: block;
  color: #1aafae;
  font-weight: 700;
  margin-top: 2px;
}

.hero__lede {
  font-size: 15.5px;
  color: var(--ink-700);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 520px;
}

.hero__lede em {
  color: var(--teal-700);
  font-weight: 600;
  font-style: italic;
}

.hero__cta-row {
  display: flex;
  gap: 10px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.hero__trust {
  display: inline-flex;
  align-items: center;
  background: var(--white);
  border: 1px solid #c0c0c0;
  border-radius: 10px;
  padding: 4px;
  box-shadow: var(--shadow-sm);
}

.hero__trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 11px 22px;
}

.hero__trust-item strong {
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy-900);
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  line-height: 1;
}

.hero__trust-item strong i {
  color: var(--gold-400);
  font-size: 14px;
}

.hero__trust-item span {
  font-size: 11px;
  font-weight: 500;
  color: var(--ink-600);
  margin-top: 5px;
  letter-spacing: 0.2px;
}

.hero__trust-divider {
  width: 1px;
  height: 32px;
  background: var(--teal-200);
}

/* RIGHT — single clean primary image with floating chips */
.hero__media {
  position: relative;
  height: 460px;
}

.hero__photo-frame {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: var(--r-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  background: var(--navy-900);
}

.hero__photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__photo-tag {
  position: absolute;
  bottom: 1px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  padding: 9px 14px;
  border-radius: var(--r-pill);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--navy-900);
  font-family: var(--f-display);
  left: 0;
  right: 0;
  width: max-content;
  margin: auto;
}

.hero__photo-tag i {
  color: var(--teal-600);
  font-size: 12px;
}

.hero__photo-tag a {
  gap: 10px;
  display: flex;
  align-items: center;
}

.hero__chip {
  position: absolute;
  background: var(--white);
  border-radius: var(--r-md);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-lg);
  z-index: 3;
  border: 1px solid rgba(38, 166, 154, 0.12);
}

.hero__chip i {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--teal-50);
  color: var(--teal-600);
  display: grid;
  place-items: center;
  font-size: 14px;
  flex-shrink: 0;
}

.hero__chip strong {
  display: block;
  font-family: var(--f-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--navy-900);
  line-height: 1;
}

.hero__chip em {
  display: block;
  font-style: normal;
  font-size: 10.5px;
  font-weight: 600;
  color: var(--ink-600);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

.hero__chip--nabh {
  top: 24px;
  left: -18px;
}

.hero__chip--nabh i {
  background: var(--navy-900);
  color: var(--gold-300);
}

.hero__chip--er {
  bottom: 70px;
  right: -18px;
}

/* --- RIGHT SIDE: SCROLLING ENGINE --- */
.hero__media {
  position: relative;
  height: 500px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 24px;
  /* var(--r-2xl) */
  overflow: hidden;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  /* var(--shadow-xl) */
  display: flex;
  gap: 15px;
  padding: 15px;
  z-index: 1;
}

/* Gradient Overlays (Top & Bottom) */
.hero__media::before,
.hero__media::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 100px;
  /* Gradient ki depth */
  z-index: 5;
  pointer-events: none;
}

.hero__media::before {
  top: 0;
  background: linear-gradient(to bottom, #f5fbfa 0%, rgba(245, 251, 250, 0) 100%);
}

.hero__media::after {
  bottom: 0;
  background: linear-gradient(to top, #f5fbfa 0%, rgba(245, 251, 250, 0) 100%);
}

/* Scroll Columns */
.scroll-col {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.scroll-track {
  display: flex;
  flex-direction: column;
  gap: 15px;
  /* Jhatka hatane ke liye linear timing use karein */
  animation: scrollLoop 20s linear infinite;
}

/* Dusre column ki speed thodi alag rakhein natural look ke liye */
.col-2 .scroll-track {
  animation: scrollLoop 25s linear infinite;
}

.scroll-track img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 15px;
  background: #eee;
  flex-shrink: 0;
  object-position: top;
}

/* Keyframes: Main Logic for Seamless Loop */
@keyframes scrollLoop {
  0% {
    transform: translateY(0);
  }

  100% {
    /* Kyunki humne images duplicate ki hain, hum sirf aadhe track tak scroll karenge 
       fir wo automatically 0 par reset hoga bina kisi jhatke ke */
    transform: translateY(calc(-50% - 7.5px));
    /* 7.5px is half of the gap (15px) */
  }
}

/* Hover par pause karne ke liye (Optional par acha lagta hai) */
.hero__media:hover .scroll-track {
  animation-play-state: paused;
}

.hero__photo-tag {
  z-index: 10;
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  padding: 8px 16px;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* ============================================================
   TICKER — navy strip with teal top border
============================================================ */
.ticker {
  background: var(--navy-900);
  color: var(--white);
  padding: 16px 0;
  border-top: 3px solid var(--teal-500);
  overflow: hidden;
}

.ticker__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

.ticker__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  color: var(--teal-300);
  text-transform: uppercase;
  letter-spacing: 1.8px;
  white-space: nowrap;
  flex-shrink: 0;
  font-family: var(--f-display);
}

.ticker__label i {
  font-size: 13px;
}

.ticker__track {
  display: flex;
  flex: 1;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}

.ticker__track img {
  width: 100px;
}

.ticker {
  background: #0c2a5b;
  padding: 15px 0;
  overflow: hidden;
}

.ticker__inner {
  display: flex;
  align-items: center;
  gap: 20px;
}

.ticker__label {
  color: #fff;
  font-weight: 600;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
}

.ticker__wrapper {
  overflow: hidden;
  flex: 1;
}

.ticker__track {
  display: flex;
  align-items: center;
  gap: 20px;
  width: max-content;
  animation: scrollTicker 20s linear infinite;
}

/* Hover pe stop */
.ticker__wrapper:hover .ticker__track {
  animation-play-state: paused;
}

/* Images fix */
.ticker__track img {
  height: 40px;
  /* same height sabka */
  width: auto;
  /* aspect ratio maintain */
  object-fit: contain;
  filter: brightness(1);
  /* optional */
  border-radius: 4px;
}

/* Animation */
@keyframes scrollTicker {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.ticker__group {
  display: flex;
  gap: 36px;
  white-space: nowrap;
  animation: tickerScroll 38s linear infinite;
  padding-right: 36px;
}

.ticker__group span {
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--f-display);
}

@keyframes tickerScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

/* ============================================================
   ABOUT
============================================================ */
.about {
  background: var(--white);
  position: relative;
}

.about .about__visual {
  position: sticky;
  top: 100px;
}

.about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(circle at 4% 12%, rgba(38, 166, 154, 0.07), transparent 30%),
    radial-gradient(circle at 96% 88%, rgba(11, 26, 66, 0.05), transparent 35%);
  pointer-events: none;
}

.about>.container {
  position: relative;
  z-index: 1;
}

.about__grid {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 64px;
  align-items: start;
}

.about__visual {
  position: relative;
}

.about__photo {
  border-radius: var(--r-2xl);
  overflow: hidden;
  aspect-ratio: 4 / 3.7;
  box-shadow: var(--shadow-xl);
  position: relative;
}

.about__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(11, 26, 66, 0.45) 100%);
}

.about__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.about__plaque {
  position: absolute;
  bottom: 22px;
  left: 22px;
  right: 22px;
  background: var(--white);
  padding: 14px 20px;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  border-left: 4px solid var(--teal-500);
  z-index: 2;
}

.about__plaque em {
  display: block;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 19px;
  font-weight: 600;
  color: var(--navy-900);
  line-height: 1.25;
}

.about__plaque span {
  font-size: 11px;
  color: var(--ink-500);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  font-family: var(--f-display);
}

.about__sticker {
  position: absolute;
  top: -10px;
  right: -16px;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: var(--gold-400);
  color: var(--navy-950);
  display: grid;
  place-items: center;
  text-align: center;
  box-shadow: var(--shadow-lg);
  transform: rotate(-8deg);
  z-index: 3;
  font-family: var(--f-display);
}

.about__sticker i {
  font-size: 16px;
  margin-bottom: 2px;
}

.about__sticker strong {
  display: block;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}

.about__sticker span {
  display: block;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 2px;
}

.about__body p {
  font-size: var(--fs-body);
  color: var(--ink-700);
  line-height: 1.75;
  margin-bottom: 14px;
}

.about__body strong {
  color: var(--navy-900);
  font-weight: 600;
}

.about__pillars {
  margin: 24px 0 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.about__pillars li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 18px;
  background: var(--teal-50);
  border: 1px solid var(--teal-100);
  border-radius: var(--r-md);
  position: relative;
  cursor: default;
  overflow: hidden;
  transition: background var(--t-fast), transform var(--t-fast), border-color var(--t-fast), box-shadow var(--t-fast);
  opacity: 0;
  transform: translateX(-12px);
  animation: aboutPillarIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.about__pillars li:nth-child(1) {
  animation-delay: 0.1s;
}

.about__pillars li:nth-child(2) {
  animation-delay: 0.25s;
}

.about__pillars li:nth-child(3) {
  animation-delay: 0.4s;
}

.about__pillars li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: var(--teal-500);
  transform: scaleY(0);
  transform-origin: top center;
  transition: transform var(--t-med);
}

.about__pillars li:hover {
  background: var(--white);
  transform: translateX(6px);
  border-color: var(--teal-300);
  box-shadow: var(--shadow-md);
}

.about__pillars li:hover::before {
  transform: scaleY(1);
}

.about__pillars li:hover .about__pillar-num {
  color: var(--teal-700);
  transform: scale(1.15);
}

@keyframes aboutPillarIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.about__pillar-num {
  font-family: var(--f-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--teal-600);
  line-height: 1;
  min-width: 44px;
  transition: color var(--t-fast), transform var(--t-fast);
  display: inline-block;
}

.about__pillars strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy-900);
  margin-bottom: 4px;
  font-family: var(--f-display);
}

.about__pillars span {
  display: block;
  font-size: 13.5px;
  color: var(--ink-600);
  line-height: 1.55;
}

/* ============================================================
   STATS — teal strip
============================================================ */
.stats {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-800));
  color: var(--white);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}

.stats::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 90% 10%, rgba(38, 166, 154, 0.30), transparent 45%),
    radial-gradient(circle at 10% 90%, rgba(38, 166, 154, 0.18), transparent 45%);
  pointer-events: none;
}

.stats__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 56px;
  align-items: center;
}

.stats__head .eyebrow {
  background: rgba(38, 166, 154, 0.20);
  color: var(--teal-300);
  border: 1px solid rgba(38, 166, 154, 0.4);
  margin-bottom: 12px;
}

.stats__head h3 {
  font-family: var(--f-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}

.stats__head h3 em {
  color: var(--teal-300);
  font-style: italic;
  font-weight: 700;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.stats__item {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--r-md);
  padding: 16px 18px;
  position: relative;
  overflow: hidden;
  transition: border-color var(--t-med), background var(--t-med);
}

.stats__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--teal-400);
  transition: width var(--t-med);
}

.stats__item:hover {
  border-color: rgba(38, 166, 154, 0.35);
  background: rgba(255, 255, 255, 0.08);
}

.stats__item:hover::before {
  width: 100%;
}

.stats__item strong {
  display: block;
  font-family: var(--f-display);
  font-size: 30px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 5px;
}

.stats__item strong span {
  font-size: 22px;
  opacity: 0.85;
}

.stats__item strong i {
  color: var(--gold-300);
  font-size: 18px;
}

.stats__item>span {
  font-size: 11.5px;
  font-weight: 600;
  color: #cfcfcf;
  text-transform: uppercase;
  letter-spacing: 1.1px;
  font-family: var(--f-display);
}

/* ============================================================
/* ============================================================
   DEPARTMENTS — interactive expanding image panels
============================================================ */
.departments {
  background:
    linear-gradient(180deg, #f5fbfa 0%, var(--teal-bg-light) 100%);
  position: relative;
  overflow: hidden;
}

.departments::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -120px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(38, 166, 154, 0.10), transparent 70%);
  pointer-events: none;
}

.departments::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -100px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(20, 40, 92, 0.08), transparent 70%);
  pointer-events: none;
}

.departments>.container {
  position: relative;
  z-index: 1;
}

.dept-panels {
  display: flex;
  gap: 10px;
  height: 360px;
  margin-bottom: 10px;
  align-items: stretch;
}

.dept-panels--row2 {
  margin-bottom: 36px;
}

/* Each panel — uses --panel-img CSS var to set the bg image */
.dept-panel {
  position: relative;
  flex: 1;
  border-radius: var(--r-lg);
  overflow: hidden;
  text-decoration: none;
  background-image: var(--panel-img);
  background-size: cover;
  background-position: center;
  transition: flex 0.55s cubic-bezier(0.4, 0, 0.2, 1), box-shadow var(--t-med);
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(11, 26, 66, 0.10);
  isolation: isolate;
}

/* When .is-active or hovered, expand to take more space */
.dept-panels:hover .dept-panel {
  flex: 1;
}

.dept-panels .dept-panel.is-active,
.dept-panels:hover .dept-panel:hover {
  flex: 3;
  box-shadow: 0 18px 38px rgba(11, 26, 66, 0.20);
}

.dept-panels:hover .dept-panel.is-active:not(:hover) {
  flex: 1;
}

/* Overlay gradient — darker on inactive panels, lighter on active */
.dept-panel__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 26, 66, 0.50) 0%, rgba(11, 26, 66, 0.85) 100%);
  transition: opacity var(--t-med), background var(--t-med);
  z-index: 1;
}

.dept-panel.is-active .dept-panel__overlay,
.dept-panel:hover .dept-panel__overlay {
  background: linear-gradient(180deg, rgb(11 26 66 / 0%) 50%, rgba(11, 26, 66, 0.92) 80%);
}

/* Icon — visible always, sits at the top */
.dept-panel__icon {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  color: var(--teal-600);
  display: grid;
  place-items: center;
  font-size: 17px;
  z-index: 3;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  transition: transform var(--t-med);
}

.dept-panel:hover .dept-panel__icon,
.dept-panel.is-active .dept-panel__icon {
  transform: scale(1.08);
}

.dept-panel--alert .dept-panel__icon {
  color: #c42020;
}

/* Content — bottom alignment, expands when active */
.dept-panel__content {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 2;
  color: var(--white);
}

.dept-panel__pill {
  display: inline-block;
  padding: 3px 10px;
  background: #ef4b4b;
  color: var(--white);
  border-radius: var(--r-pill);
  font-family: var(--f-display);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.dept-panel__name {
  font-family: var(--f-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin: 0 0 6px;
  letter-spacing: -0.2px;
  /* Inactive panels: vertical-rotated narrow display */
  transform-origin: left bottom;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), font-size var(--t-med);
}

.dept-panel__sub {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
  margin: 0 0 10px;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s 0.1s ease, margin 0.4s ease;
}

.dept-panel__cta {
  font-family: var(--f-display);
  font-size: 12px;
  font-weight: 600;
  color: var(--teal-300);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s 0.15s ease;
}

.dept-panel.is-active .dept-panel__name,
.dept-panel:hover .dept-panel__name {
  font-size: 22px;
}

.dept-panel.is-active .dept-panel__sub,
.dept-panel:hover .dept-panel__sub {
  max-height: 60px;
  opacity: 1;
  margin-bottom: 12px;
}

.dept-panel.is-active .dept-panel__cta,
.dept-panel:hover .dept-panel__cta {
  max-height: 30px;
  opacity: 1;
}

.dept-panel.is-active .dept-panel__cta i,
.dept-panel:hover .dept-panel__cta i {
  transition: transform var(--t-fast);
}


/* Foot */
.depts__foot {
  text-align: center;
  margin-top: 10px;
}

.depts__foot-text {
  font-size: 14px;
  color: var(--ink-600);
  margin-bottom: 12px;
}


/* ============================================================
   PITCH STRIP — light teal
============================================================ */
.pitch-strip {
  background: var(--cream-50);
  padding: 28px 0;
  border-top: 1px solid var(--cream-100);
  border-bottom: 1px solid var(--cream-100);
}

.pitch-strip--cream {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-800));
  border-color: var(--cream-100);
}

.pitch-strip--cream .btn--outline-dark {
  border-color: #ffffff;
  color: #ffffff;
  background: transparent;
}

.pitch-strip--cream .pitch-strip__text strong {
  color: #ffffff;
}

.pitch-strip--cream .pitch-strip__text span {
  color: #ffffff;
}

.pitch-strip--navy {
  background: var(--navy-100);
  border-top: 1px solid var(--navy-150);
  border-bottom: 1px solid var(--navy-150);
}

.pitch-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.pitch-strip__text strong {
  display: block;
  font-family: var(--f-display);
  font-size: 19px;
  font-weight: 600;
  color: var(--navy-900);
  line-height: 1.25;
}

.pitch-strip__text span {
  display: block;
  font-size: 14px;
  color: var(--ink-700);
  margin-top: 4px;
}

.pitch-strip__actions {
  display: flex;
  gap: 10px;
}

/* ============================================================
   DOCTORS — slider
============================================================ */
.doctors {
  background:
    linear-gradient(180deg, var(--cream-50) 0%, #fdf9ef 100%);
  overflow: hidden;
  position: relative;
}

.doctors::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 90% 15%, rgba(38, 166, 154, 0.10), transparent 35%),
    radial-gradient(circle at 5% 85%, rgba(11, 26, 66, 0.06), transparent 40%);
  pointer-events: none;
}

.doctors>.container {
  position: relative;
  z-index: 1;
}

.doctors__nav {
  display: inline-flex;
  gap: 8px;
  margin-top: 12px;
}

.doctors__nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--navy-900);
  color: var(--navy-900);
  display: grid;
  place-items: center;
  font-size: 13px;
  transition: background var(--t-fast), color var(--t-fast);
}

.doctors__nav-btn:hover {
  background: var(--navy-900);
  color: var(--teal-300);
}

/* --- YAHAN BADLAAV KIYA HAI (SCROLL HATAKAR 4x4 GRID KIYA HAI) --- */
.doc-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  /* Ek row me 4 cards */
  gap: 24px 20px;
  /* Row gap 24px aur Column gap 20px */
  padding: 8px 4px 24px;
}

/* Mobile aur Tablets ke liye responsive break (Taaki screen choti hone par 4 cards kharab na ho) */
@media (max-width: 1024px) {
  .doc-track {
    grid-template-columns: repeat(2, 1fr);
    /* Tablet par ek row me 2 cards */
  }
}

@media (max-width: 600px) {
  .doc-track {
    grid-template-columns: repeat(1, 1fr);
    /* Mobile par ek row me 1 card */
  }
}

/* Card ki layout design same hai, bas flexibility change ki hai grid ke mutabik */
.doc-card {
  width: 100%;
  /* flex: 0 0 305px se change kiya taaki grid me fit baithe */
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--ink-100);
  transition: transform var(--t-med), box-shadow var(--t-med);
  display: flex;
  flex-direction: column;
}

.doc-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.doc-card--feat {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-800));
  border-color: transparent;
}

.doc-card__media {
  position: relative;
  aspect-ratio: 1/1;
  background: var(--teal-50);
  overflow: hidden;
}

.doc-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.doc-card__exp {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--teal-500);
  color: var(--white);
  padding: 5px 12px;
  border-radius: var(--r-pill);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.4px;
  font-family: var(--f-display);
  box-shadow: var(--shadow-md);
}

.doc-card__body {
  padding: 18px 20px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.doc-card__spec {
  display: inline-block;
  align-self: flex-start;
  padding: 4px 10px;
  border-radius: var(--r-pill);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 10px;
  font-family: var(--f-display);
}

.doc-card__spec--cardio {
  background: rgba(196, 32, 32, 0.1);
  color: #c42020;
}

.doc-card__spec--surg {
  background: var(--teal-50);
  color: var(--teal-700);
}

.doc-card__spec--uro {
  background: rgba(44, 74, 145, 0.1);
  color: var(--navy-700);
}

.doc-card__spec--ortho {
  background: rgba(217, 164, 65, 0.15);
  color: var(--gold-600);
}

.doc-card__spec--neuro {
  background: rgba(90, 74, 140, 0.12);
  color: #5a4a8c;
}

.doc-card__spec--pulmo {
  background: var(--teal-100);
  color: var(--teal-800);
}

.doc-card__spec--med {
  background: rgba(38, 166, 154, 0.12);
  color: var(--teal-700);
}

.doc-card--feat .doc-card__spec {
  background: rgba(38, 166, 154, 0.2);
  color: var(--teal-300);
}

.doc-card h3 {
  font-family: var(--f-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--navy-900);
  line-height: 1.2;
  margin-bottom: 5px;
}

.doc-card--feat h3 {
  color: var(--white);
}

.doc-card__creds {
  font-size: 12.5px;
  color: var(--ink-500);
  margin-bottom: 5px;
  font-style: italic;
}

.doc-card--feat .doc-card__creds {
  color: var(--teal-300);
}

.doc-card__role {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-700);
  margin-bottom: 10px;
}

.doc-card--feat .doc-card__role {
  color: rgba(255, 255, 255, 0.85);
}

.doc-card__cta {
  margin-top: auto;
  font-size: 12px;
  font-weight: 600;
  color: var(--teal-600);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding-top: 12px;
  border-top: 1px solid var(--ink-100);
  transition: gap var(--t-fast);
  font-family: var(--f-display);
}

.doc-card--feat .doc-card__cta {
  color: var(--teal-300);
  border-top-color: rgba(255, 255, 255, 0.1);
}

.doc-card:hover .doc-card__cta {
  gap: 10px;
}

.doctors__foot {
  text-align: center;
  margin-top: 26px;
}

.doctors__nav--bottom {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}

.doctors__nav--bottom .doctors__nav-btn {
  width: 48px;
  height: 48px;
}

/* ============================================================
   DEEP PITCH — middle of page editorial pitch with image
============================================================ */
.deep-pitch {
  background: var(--white);
  position: relative;
}

.deep-pitch::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 5% 20%, rgba(38, 166, 154, 0.07), transparent 30%),
    radial-gradient(circle at 95% 80%, rgba(11, 26, 66, 0.05), transparent 35%);
  pointer-events: none;
}

.deep-pitch>.container {
  position: relative;
  z-index: 1;
}

.deep-pitch__grid {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 56px;
  align-items: start;
}

.deep-pitch__media {
  position: relative;
  border-radius: var(--r-2xl);
  overflow: hidden;
  background: var(--teal-50);
  aspect-ratio: 6 / 5;
  box-shadow: var(--shadow-xl);
  position: sticky;
  top: 90px;
}

.deep-pitch__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.deep-pitch__badge {
  position: absolute;
  bottom: 18px;
  left: 18px;
  background: var(--white);
  padding: 12px 16px;
  border-radius: var(--r-md);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-lg);
  font-family: var(--f-display);
}

.deep-pitch__badge strong {
  font-size: 22px;
  font-weight: 700;
  color: var(--navy-900);
  line-height: 1;
}

.deep-pitch__badge i {
  color: var(--gold-400);
  font-size: 14px;
}

.deep-pitch__badge span {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--ink-600);
  margin-left: 4px;
}

.deep-pitch__body .h-display {
  margin-bottom: 14px;
  font-size: 32px;
  color: var(--navy-900);
}

.deep-pitch__body .lede {
  margin-bottom: 24px;
  color: #000;
}

.deep-pitch__pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 26px;
}

.dpitch {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px;
  background: var(--teal-50);
  border: 1px solid var(--teal-100);
  border-radius: var(--r-md);
  position: relative;
  overflow: hidden;
  transition: border-color var(--t-fast), box-shadow var(--t-fast), transform var(--t-fast), background var(--t-fast);
}

.dpitch::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 32px;
  height: 3px;
  background: var(--teal-500);
  transition: width var(--t-med);
}

.dpitch:hover {
  border-color: var(--teal-300);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  background: var(--white);
}

.dpitch:hover::before {
  width: 100%;
}

.dpitch__ic {
  width: 38px;
  height: 38px;
  border-radius: var(--r-sm);
  background: var(--white);
  color: var(--teal-600);
  display: grid;
  place-items: center;
  font-size: 14px;
  box-shadow: 0 4px 10px rgba(38, 166, 154, 0.15);
}

.dpitch strong {
  font-family: var(--f-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--navy-900);
}

.dpitch span {
  font-size: 14px;
  color: #2d2d2d;
  line-height: 1.55;
}

.deep-pitch__ctas {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* ============================================================
   FACILITIES — dark navy
============================================================ */
.facilities {
  background: linear-gradient(180deg, var(--navy-950) 0%, var(--navy-900) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
  padding: 70px 0;
}

.facilities__bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.4;
  pointer-events: none;
}

.facilities__glow {
  position: absolute;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}

.facilities__glow--l {
  top: -150px;
  left: -150px;
  background: rgba(38, 166, 154, 0.22);
}

.facilities__glow--r {
  bottom: -150px;
  right: -150px;
  background: rgba(38, 166, 154, 0.18);
}

.facilities>.container {
  position: relative;
  z-index: 1;
}

/* RADIAL LAYOUT */
.facs-radial {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
  position: relative;
}

.facs-radial__col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Center hospital image hub */
.facs-radial__center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  position: relative;
}

.facs-radial__hub {
  position: relative;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45), 0 0 0 8px rgba(255, 255, 255, 0.06);
  isolation: isolate;
}

.facs-radial__hub img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.facs-radial__hub::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, transparent 50%, rgba(11, 26, 66, 0.40) 100%);
  pointer-events: none;
}

.facs-radial__hub-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% + 40px);
  height: calc(100% + 40px);
  border-radius: 50%;
  border: 1px dashed rgba(38, 166, 154, 0.45);
  pointer-events: none;
  animation: ringRotate 60s linear infinite;
}

.facs-radial__hub-ring--2 {
  width: calc(100% + 80px);
  height: calc(100% + 80px);
  border: 1px dashed rgba(38, 166, 154, 0.22);
  animation: ringRotate 90s linear infinite reverse;
}

@keyframes ringRotate {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.facs-radial__hub-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(38, 166, 154, 0.6);
  animation: hubPulse 3s ease-out infinite;
  pointer-events: none;
}

@keyframes hubPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(38, 166, 154, 0.6);
  }

  70% {
    box-shadow: 0 0 0 36px rgba(38, 166, 154, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(38, 166, 154, 0);
  }
}

.facs-radial__hub-cap {
  text-align: center;
  font-family: var(--f-display);
  margin-top: 8px;
}

.facs-radial__hub-cap strong {
  display: block;
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
  letter-spacing: -0.2px;
}

.facs-radial__hub-cap span {
  display: block;
  font-size: 11.5px;
  color: var(--teal-300);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Facility card — left column has reversed icon position */
.fac {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r-lg);
  padding: 18px 20px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
  transition: transform var(--t-med), box-shadow var(--t-med);
  height: 180px;
}

.fac::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--teal-500);
  transition: width var(--t-med);
}

.fac:hover {
  transform: translateX(4px);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.30);
}

.fac:hover::before {
  width: 100%;
}

/* Left column: icon goes to the RIGHT, content reads right-aligned (mirroring the centerpiece) */
.fac--right {
  grid-template-columns: 1fr auto;
  text-align: right;
}

.fac--right:hover {
  transform: translateX(-4px);
}

.fac--right::before {

  right: 0;
}

.fac__main {
  display: flex;
  flex-direction: column;
  min-width: 0;
  text-align: start;
}

.fac__num {
  font-family: var(--f-display);
  font-size: 10.5px;
  font-weight: 700;
  color: var(--teal-600);
  letter-spacing: 1.4px;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.fac__ic {
  width: 48px;
  height: 48px;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, var(--teal-500), var(--teal-700));
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 18px;
  flex-shrink: 0;
  box-shadow: 0 6px 14px rgba(38, 166, 154, 0.35);
}

.fac h4 {
  font-family: var(--f-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--navy-900);
  line-height: 1.25;
  margin: 0 0 5px;
}

.fac p {
  font-size: 16px;
  color: #2d2d2d;
  line-height: 1.7;
  margin: 0;
}

/* ============================================================
   GALLERY — prominent tabbed layout
============================================================ */
.gallery {
  background: linear-gradient(180deg, var(--cream-50) 0%, #fdf9ef 100%);
  position: relative;
  overflow: hidden;
}

.gallery::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 80% 20%, rgba(38, 166, 154, 0.12), transparent 40%),
    radial-gradient(circle at 10% 90%, rgba(11, 26, 66, 0.08), transparent 40%);
  pointer-events: none;
}

.gallery>.container {
  position: relative;
  z-index: 1;
}

/* Tabs */
.gtabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 36px;
  padding: 6px;
  background: var(--white);
  border-radius: var(--r-pill);
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: var(--shadow-sm);
}

.gtab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: var(--r-pill);
  font-family: var(--f-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-700);
  background: transparent;
  cursor: pointer;
  transition: background var(--t-fast), color var(--t-fast), box-shadow var(--t-fast);
  white-space: nowrap;
}

.gtab i {
  font-size: 13px;
  color: var(--teal-600);
  transition: color var(--t-fast);
}

.gtab:hover {
  color: var(--navy-900);
  background: var(--cream-100);
}

.gtab.is-active {
  background: var(--navy-900);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(11, 26, 66, 0.25);
}

.gtab.is-active i {
  color: var(--teal-300);
}

/* Grid */
.ggrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.gitem {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  aspect-ratio: 4/3;
  display: block;
  transition: transform var(--t-med), box-shadow var(--t-med), opacity 0.3s ease, filter 0.3s ease;
}

.gitem.is-hidden {
  display: none;
}

.gitem:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: var(--shadow-lg);
  z-index: 2;
}

.gitem img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-med);
}

.gitem:hover img {
  transform: scale(1.06);
}

.gitem::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(11, 26, 66, 0.85) 100%);
  pointer-events: none;
  opacity: 0.7;
  transition: opacity var(--t-fast);
}

.gitem:hover::after {
  opacity: 0.95;
}

.gitem__cap {
  position: absolute;
  bottom: 14px;
  left: 14px;
  right: 14px;
  z-index: 2;
  color: var(--white);
  font-family: var(--f-display);
}

.gitem__cap strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 3px;
}

.gitem__cap span {
  display: block;
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}

.gallery__foot {
  text-align: center;
  margin-top: 36px;
}

.gallery__foot .fa-youtube {
  color: #ff0000;
  font-size: 16px;
}

/* ============================================================
   VIDEOS — YouTube-style cards on dark navy (NEW)
============================================================ */
.videos {
  position: relative;
  background: linear-gradient(135deg, var(--navy-950) 0%, var(--navy-900) 60%, var(--navy-800) 100%);
  color: var(--white);
  padding: 70px 0;
  overflow: hidden;
}

.videos__bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.35;
  pointer-events: none;
}

.videos__glow {
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
}

.videos__glow--l {
  top: -180px;
  left: -180px;
  background: rgba(255, 0, 0, 0.18);
}

.videos__glow--r {
  bottom: -180px;
  right: -180px;
  background: rgba(38, 166, 154, 0.20);
}

.videos>.container {
  position: relative;
  z-index: 1;
}

.videos__head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: end;
  margin-bottom: 36px;
}

.videos__head .eyebrow .fa-youtube {
  color: #ff0000;
  font-size: 14px;
}

/* Channel card */
.videos__channel {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px 12px 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--r-pill);
  backdrop-filter: blur(10px);
}

.videos__channel-avi {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ff0000;
  display: grid;
  place-items: center;
  color: var(--white);
  font-size: 18px;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(255, 0, 0, 0.3);
}

.videos__channel-info {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.videos__channel-info strong {
  font-family: var(--f-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
}

.videos__channel-info span {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 500;
}

.videos__channel-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: var(--r-pill);
  background: #ff0000;
  color: var(--white);
  font-family: var(--f-display);
  font-size: 12.5px;
  font-weight: 600;
  transition: background var(--t-fast), transform var(--t-fast);
}

.videos__channel-btn:hover {
  background: #cc0000;
  transform: translateY(-1px);
}

.videos__channel-btn .fa-youtube {
  font-size: 14px;
}

/* Video grid */
.vgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.vcard {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: transform var(--t-med), box-shadow var(--t-med);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.20);
}

.vcard:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.30);
}

.vcard__thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--ink-100);
}

.vcard__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-med);
}

.vcard:hover .vcard__thumb img {
  transform: scale(1.05);
}

.vcard__duration {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.85);
  color: var(--white);
  padding: 3px 7px;
  border-radius: 4px;
  font-family: var(--f-display);
  font-size: 11px;
  font-weight: 600;
  z-index: 2;
}

.vcard__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.85);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 0, 0, 0.95);
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 18px;
  z-index: 2;
  opacity: 0;
  transition: opacity var(--t-med), transform var(--t-med);
  box-shadow: 0 6px 16px rgba(255, 0, 0, 0.4);
}

.vcard:hover .vcard__play {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.vcard__body {
  padding: 14px 16px 16px;
  display: flex;
  gap: 12px;
  flex: 1;
}

.vcard__avi {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 50%;
  background: #ff0000;
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 14px;
  flex-shrink: 0;
}

.vcard__meta {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.vcard__meta h4 {
  font-family: var(--f-display);
  font-size: 14.5px;
  font-weight: 600;
  color: var(--navy-900);
  line-height: 1.35;
  margin: 0 0 2px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.vcard__channel {
  font-size: 12px;
  color: var(--ink-600);
  font-weight: 500;
}

.vcard__stats {
  font-size: 11.5px;
  color: var(--ink-500);
}

.videos__foot {
  text-align: center;
  margin-top: 36px;
}

.videos__foot .fa-youtube {
  color: #ff0000;
}

/* ============================================================
   SEO CONTENT — editorial split layout (REDESIGNED)
============================================================ */
.seo {
  position: relative;
  background: linear-gradient(135deg, var(--navy-950) 0%, var(--navy-900) 50%, var(--navy-800) 100%);
  color: var(--white);
  padding: 70px 0;
  overflow: hidden;
}

.seo__bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 12% 22%, rgba(38, 166, 154, 0.22), transparent 45%),
    radial-gradient(circle at 92% 78%, rgba(38, 166, 154, 0.14), transparent 45%);
  pointer-events: none;
}

.seo__pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: 0.35;
  pointer-events: none;
}

.seo__container {
  position: relative;
  z-index: 1;
}

.seo__split {
  display: grid;
  grid-template-columns: 0.95fr 1fr;
  gap: 56px;
  align-items: center;
}

/* LEFT */
.seo__left {
  position: sticky;
  top: 100px;
}

.seo__left .eyebrow {
  margin-bottom: 16px;
}

.seo__hl {
  font-family: var(--f-display);
  font-size: 36px;
  font-weight: 700;
  line-height: 1.18;
  color: var(--white);
  letter-spacing: -0.5px;
  margin-bottom: 18px;
}

.seo__hl span {
  display: block;
  color: var(--teal-300);
  margin-top: 4px;
}

.seo__lead {
  font-size: 14.5px;
  line-height: 1.7;
  margin-bottom: 28px;
}

.seo__lead strong {
  font-weight: 600;
}

/* Metrics grid (2x2) */
.seo__metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 28px;
}

.seo__metric {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r-md);
  padding: 16px 18px;
  position: relative;
  overflow: hidden;
  transition: border-color var(--t-fast), background var(--t-fast);
}

.seo__metric::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background: var(--teal-400);
  transition: width var(--t-med);
}

.seo__metric:hover {
  border-color: rgba(38, 166, 154, 0.35);
  background: rgba(255, 255, 255, 0.07);
}

.seo__metric:hover::before {
  width: 100%;
}

.seo__metric strong {
  display: block;
  font-family: var(--f-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -0.5px;
}

.seo__metric span {
  display: block;
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  line-height: 1.4;
}

/* CTA */
.seo__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* RIGHT — numbered articles */
.seo__right {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.seo__article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  padding: 26px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  align-items: start;
  transition: padding var(--t-fast);
}

.seo__article:first-child {
  border-top: none;
  padding-top: 8px;
}

.seo__article:last-child {
  padding-bottom: 0;
}

.seo__article-num {
  font-family: var(--f-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--teal-300);
  line-height: 0.95;
  letter-spacing: -1px;
  min-width: 56px;
  opacity: 0.85;
}

.seo__article-body {
  min-width: 0;
}

.seo__article h3 {
  font-family: var(--f-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.3;
  margin: 4px 0 8px;
  letter-spacing: -0.2px;
}

.seo__article p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.65;
  margin: 0;
}

.seo__article p strong {
  font-weight: 600;
}

/* ============================================================
   GOOGLE REVIEWS — proper Google profile theme
============================================================ */
.greviews {
  background:
    linear-gradient(180deg, var(--navy-50) 0%, var(--navy-100) 100%);
  position: relative;
  overflow: hidden;
}

.greviews .eyebrow img {
  width: 20px;
}

.greviews::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 95% 15%, rgba(38, 166, 154, 0.12), transparent 40%),
    radial-gradient(circle at 8% 80%, rgba(20, 40, 92, 0.10), transparent 40%);
  pointer-events: none;
}

.greviews>.container {
  position: relative;
  z-index: 1;
}

.gprofile {
  background: var(--white);
  border: 1px solid var(--ink-100);
  border-radius: var(--r-xl);
  padding: 24px 30px;
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  gap: 30px;
  align-items: center;
  margin-bottom: 30px;
  box-shadow: var(--shadow-md);
}

.gprofile__brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.gprofile__g {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--ink-100);
  display: grid;
  place-items: center;
  font-size: 22px;
  flex-shrink: 0;
}

.gprofile__g .fa-google {
  color: #4285F4;
}

.gprofile__brand strong {
  display: block;
  font-family: var(--f-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 2px;
}

.gprofile__brand em {
  display: block;
  font-style: normal;
  font-size: 12.5px;
  color: var(--ink-600);
}

.gprofile__rating {
  border-left: 1px solid var(--ink-100);
  padding-left: 30px;
}

.gprofile__rating-num {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 4px;
}

.gprofile__rating-num strong {
  font-family: var(--f-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--navy-900);
  line-height: 1;
}

.gprofile__rating-stars {
  display: inline-flex;
  gap: 2px;
}

.gprofile__rating-stars i {
  color: var(--gold-400);
  font-size: 16px;
}

.gprofile__rating-count {
  font-size: 12.5px;
  color: var(--ink-600);
}

.gprofile__rating-count strong {
  color: var(--navy-900);
  font-weight: 600;
}

.gprofile__actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.section.greviews .g-img {
  width: 20px;
}

.gprofile__actions .btn {
  white-space: nowrap;
}

.gprofile__actions .btn .fa-google {
  color: #4285F4;
}

.gprofile__actions .btn--primary .fa-google {
  color: var(--white);
}

.greviews__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.greview {
  background: var(--white);
  border: 1px solid var(--ink-100);
  border-radius: var(--r-lg);
  padding: 20px;
  transition: transform var(--t-med), box-shadow var(--t-med), border-color var(--t-med);
  display: flex;
  flex-direction: column;
}

.greview:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--teal-200);
}

.greview__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.greview__avi {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 50%;
  color: var(--white);
  display: grid;
  place-items: center;
  font-family: var(--f-display);
  font-size: 17px;
  font-weight: 700;
  flex-shrink: 0;
}

.greview__id {
  flex: 1;
  min-width: 0;
}

.greview__id strong {
  display: block;
  font-family: var(--f-display);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--navy-900);
}

.greview__id em {
  display: block;
  font-style: normal;
  font-size: 11.5px;
  color: var(--ink-500);
  margin-top: 1px;
}

.greview__src {
  font-size: 14px;
  color: #4285F4;
  flex-shrink: 0;
}

.greview__stars {
  display: flex;
  gap: 2px;
  margin-bottom: 10px;
}

.greview__stars i {
  color: var(--gold-400);
  font-size: 12px;
}

.greview blockquote {
  font-size: 13px;
  color: var(--ink-700);
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

/* ============================================================
   BLOG — featured + side list
============================================================ */
.blog {
  background: linear-gradient(180deg, var(--teal-bg-light) 0%, #e3f1ee 100%);
  position: relative;
  overflow: hidden;
}

.blog::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 8% 25%, rgba(38, 166, 154, 0.14), transparent 40%),
    radial-gradient(circle at 92% 80%, rgba(11, 26, 66, 0.08), transparent 40%);
  pointer-events: none;
}

.blog>.container {
  position: relative;
  z-index: 1;
}

.blog-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 24px;
}

/* Featured blog */
.blog-feat {
  background: var(--white);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--ink-100);
  transition: transform var(--t-med), box-shadow var(--t-med);
  display: flex;
  flex-direction: column;
}

.blog-feat:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.blog-feat__media {
  position: relative;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--teal-700), var(--navy-900));
  overflow: hidden;
}

.blog-feat__media-bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 30% 40%, rgba(38, 166, 154, 0.4), transparent 60%);
}

.blog-feat__media-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 100px;
  color: rgba(38, 166, 154, 0.35);
}

.blog-feat__cat {
  position: absolute;
  bottom: 18px;
  right: 18px;
  background: var(--white);
  color: var(--navy-900);
  padding: 6px 14px;
  border-radius: var(--r-pill);
  font-family: var(--f-display);
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.4px;
}

.blog-feat__body {
  padding: 26px 28px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-feat__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  color: var(--ink-500);
  margin-bottom: 14px;
}

.blog-feat__meta i {
  color: var(--teal-600);
  margin-right: 4px;
  font-size: 11px;
}

.blog-feat__meta .dot {
  color: var(--ink-300);
}

.blog-feat h3 {
  font-family: var(--f-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--navy-900);
  line-height: 1.25;
  margin-bottom: 12px;
}

.blog-feat p {
  font-size: 14px;
  color: var(--ink-600);
  line-height: 1.65;
  margin-bottom: 18px;
  flex: 1;
}

.blog-feat__cta {
  font-size: 13px;
  font-weight: 600;
  color: var(--teal-600);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: gap var(--t-fast);
  font-family: var(--f-display);
}

.blog-feat:hover .blog-feat__cta {
  gap: 11px;
}

/* Blog list */
.blog-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.blog-row {
  background: var(--white);
  border: 1px solid var(--ink-100);
  border-radius: var(--r-md);
  padding: 16px 20px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: transform var(--t-fast), border-color var(--t-fast), box-shadow var(--t-fast);
  flex: 1;
}

.blog-row:hover {
  transform: translateX(4px);
  border-color: var(--teal-300);
  box-shadow: var(--shadow-sm);
}

.blog-row__num {
  font-family: var(--f-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--teal-500);
  line-height: 1;
  min-width: 36px;
}

.blog-row__body {
  flex: 1;
}

.blog-row__cat {
  display: inline-block;
  font-family: var(--f-display);
  font-size: 9.5px;
  font-weight: 700;
  color: var(--teal-700);
  text-transform: uppercase;
  letter-spacing: 1.4px;
  background: var(--teal-50);
  padding: 3px 10px;
  border-radius: var(--r-pill);
  margin-bottom: 6px;
}

.blog-row h4 {
  font-family: var(--f-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--navy-900);
  line-height: 1.3;
  margin-bottom: 6px;
}

.blog-row__meta {
  display: flex;
  gap: 6px;
  align-items: center;
  font-size: 14px;
  color: var(--ink-500);
}

.blog-row__meta i {
  color: var(--teal-600);
  margin-right: 3px;
  font-size: 10px;
}

.blog-row__meta .dot {
  color: var(--ink-300);
}

/* ============================================================
   CONTACT
============================================================ */
.contact {
  background: linear-gradient(180deg, var(--cream-50) 0%, #fdf9ef 100%);
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 90% 10%, rgba(38, 166, 154, 0.12), transparent 40%),
    radial-gradient(circle at 5% 90%, rgba(11, 26, 66, 0.08), transparent 40%);
  pointer-events: none;
}

.contact>.container {
  position: relative;
  z-index: 1;
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  max-width: 1100px;
  margin: 0 auto;
}

.contact__left {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact__info {
  background: var(--white);
  border: 1px solid var(--ink-100);
  border-radius: var(--r-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact__info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--ink-100);
}

.contact__info-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.contact__info-ic {
  width: 42px;
  height: 42px;
  border-radius: var(--r-md);
  background: var(--teal-50);
  color: var(--teal-600);
  display: grid;
  place-items: center;
  font-size: 15px;
  flex-shrink: 0;
}

.contact__info-item strong {
  display: block;
  font-family: var(--f-display);
  font-size: 11px;
  font-weight: 700;
  color: var(--ink-500);
  text-transform: uppercase;
  letter-spacing: 1.4px;
  margin-bottom: 4px;
}

.contact__info-item span {
  display: block;
  font-size: 14px;
  color: var(--navy-900);
  font-weight: 500;
  line-height: 1.5;
}

.contact__info-item a {
  color: var(--teal-600);
  font-weight: 600;
}

.contact__info-item a:hover {
  text-decoration: underline;
}

.contact__map {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--ink-100);
  background: var(--ink-100);
}

.contact__map iframe {
  display: block;
  width: 100%;
  height: 240px;
  border: 0;
}

.contact__form {
  background: var(--white);
  border: 1px solid var(--ink-100);
  border-radius: var(--r-lg);
  padding: 28px;
  box-shadow: var(--shadow-md);
}

.contact__form-top {
  margin-bottom: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--ink-100);
}

.contact__form-top h3 {
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 4px;
}

.contact__form-top p {
  font-size: 13px;
  color: var(--ink-600);
  margin: 0;
}

.contact__form-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

#appointmentPopup .form-field label {
  display: none;
}

#appointmentPopup  .popup-right
{
  padding: 20px;
}

.form-field label {
  display: block;
  font-family: var(--f-display);
  font-size: 11.5px;
  font-weight: 600;
  color: var(--ink-700);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-field label em {
  color: #d44545;
  font-style: normal;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 11px 13px;
  border: 1.5px solid var(--ink-200);
  border-radius: var(--r-md);
  font-size: 14px;
  background: var(--white);
  color: var(--ink-900);
  transition: border var(--t-fast), box-shadow var(--t-fast);
  font-family: var(--f-body);
}

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

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--teal-500);
  box-shadow: 0 0 0 3px rgba(38, 166, 154, 0.12);
}

.form-field select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' fill='none' stroke='%235a6478' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.phone-input {
  display: flex;
  align-items: stretch;
  border: 1.5px solid var(--ink-200);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border var(--t-fast), box-shadow var(--t-fast);
}

.phone-input:focus-within {
  border-color: var(--teal-500);
  box-shadow: 0 0 0 3px rgba(38, 166, 154, 0.12);
}

.phone-input span {
  padding: 11px 14px;
  background: var(--teal-50);
  color: var(--teal-700);
  font-weight: 600;
  font-size: 14px;
  border-right: 1px solid var(--ink-200);
  display: flex;
  align-items: center;
  font-family: var(--f-display);
}

.phone-input input {
  border: 0 !important;
  box-shadow: none !important;
  border-radius: 0;
}

.contact__form-note {
  text-align: center;
  font-size: 11px;
  color: var(--ink-500);
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.contact__form-note i {
  color: var(--teal-600);
}

/* ============================================================
   TREATMENTS BY CATEGORY — interactive tabs + cards (NEW)
============================================================ */
.treatments {
  background:
    linear-gradient(180deg, var(--navy-50) 0%, var(--navy-100) 100%);
  position: relative;
  overflow: hidden;
}

.treatments::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(38, 166, 154, 0.16), transparent 70%);
  pointer-events: none;
}

.treatments::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -100px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(20, 40, 92, 0.14), transparent 70%);
  pointer-events: none;
}

.treatments>.container {
  position: relative;
  z-index: 1;
}

/* Tabs */
.trtabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 36px;
  padding: 6px;
  background: var(--teal-bg-light);
  border-radius: var(--r-pill);
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.trtab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: var(--r-pill);
  font-family: var(--f-display);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-700);
  background: transparent;
  cursor: pointer;
  transition: background var(--t-fast), color var(--t-fast), box-shadow var(--t-fast);
  white-space: nowrap;
}

.trtab i {
  font-size: 14px;
  color: var(--teal-600);
  transition: color var(--t-fast);
}

.trtab:hover {
  color: var(--navy-900);
  background: var(--white);
}

.trtab.is-active {
  background: var(--teal-500);
  color: var(--white);
  box-shadow: var(--shadow-teal);
}

.trtab.is-active i {
  color: var(--white);
}

/* Panels */
.trpanel {
  display: none;
  animation: trpanelFade 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.trpanel.is-active {
  display: block;
}

@keyframes trpanelFade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.trpanel__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  width: 90%;
  margin: auto;
}

/* Treatment card */
.trcard {
  background: var(--white);
  border: 1px solid var(--ink-100);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--t-med), box-shadow var(--t-med), border-color var(--t-med);
  text-decoration: none;
}

.trcard:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--teal-300);
}

.trcard__media {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: var(--ink-100);
}

.trcard__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-med);
}

.trcard:hover .trcard__media img {
  transform: scale(1.06);
}

.trcard__media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(11, 26, 66, 0.45) 100%);
  pointer-events: none;
  z-index: 1;
}

.trcard__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--white);
  display: grid;
  place-items: center;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.20);
  transition: transform var(--t-med), background var(--t-med);
}

.trcard__badge i {
  font-size: 14px;
  transition: color var(--t-med);
}

/* Cardiology badge color */
.trcard__media--c1 .trcard__badge i,
.trcard__media--c2 .trcard__badge i,
.trcard__media--c3 .trcard__badge i,
.trcard__media--c4 .trcard__badge i,
.trcard__media--c5 .trcard__badge i,
.trcard__media--c6 .trcard__badge i {
  color: #c42020;
}

/* Ortho badge color */
.trcard__media--o1 .trcard__badge i,
.trcard__media--o2 .trcard__badge i,
.trcard__media--o3 .trcard__badge i,
.trcard__media--o4 .trcard__badge i,
.trcard__media--o5 .trcard__badge i,
.trcard__media--o6 .trcard__badge i {
  color: var(--navy-700);
}

/* Uro badge color */
.trcard__media--u1 .trcard__badge i,
.trcard__media--u2 .trcard__badge i,
.trcard__media--u3 .trcard__badge i,
.trcard__media--u4 .trcard__badge i,
.trcard__media--u5 .trcard__badge i,
.trcard__media--u6 .trcard__badge i {
  color: #1e5a8e;
}

/* Surgery badge color */
.trcard__media--s1 .trcard__badge i,
.trcard__media--s2 .trcard__badge i,
.trcard__media--s3 .trcard__badge i,
.trcard__media--s4 .trcard__badge i,
.trcard__media--s5 .trcard__badge i,
.trcard__media--s6 .trcard__badge i {
  color: var(--teal-700);
}

/* Med badge color */
.trcard__media--m1 .trcard__badge i,
.trcard__media--m2 .trcard__badge i,
.trcard__media--m3 .trcard__badge i,
.trcard__media--m4 .trcard__badge i,
.trcard__media--m5 .trcard__badge i,
.trcard__media--m6 .trcard__badge i {
  color: #0d6e54;
}

/* Neuro badge color */
.trcard__media--n1 .trcard__badge i,
.trcard__media--n2 .trcard__badge i,
.trcard__media--n3 .trcard__badge i,
.trcard__media--n4 .trcard__badge i,
.trcard__media--n5 .trcard__badge i,
.trcard__media--n6 .trcard__badge i {
  color: #5a4a8c;
}

.trcard:hover .trcard__badge {
  transform: scale(1.1) rotate(-5deg);
}

.trcard__body {
  padding: 18px 20px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.trcard__cat {
  display: inline-block;
  align-self: flex-start;
  font-family: var(--f-display);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: #c42020;
  background: rgba(196, 32, 32, 0.08);
  padding: 3px 10px;
  border-radius: var(--r-pill);
  margin-bottom: 8px;
}

.trcard__cat--ortho {
  color: var(--navy-700);
  background: rgba(44, 74, 145, 0.08);
}

.trcard__cat--uro {
  color: #1e5a8e;
  background: rgba(43, 127, 192, 0.08);
}

.trcard__cat--surg {
  color: var(--teal-700);
  background: rgba(38, 166, 154, 0.10);
}

.trcard__cat--med {
  color: #0d6e54;
  background: rgba(18, 164, 125, 0.08);
}

.trcard__cat--neuro {
  color: #5a4a8c;
  background: rgba(107, 77, 158, 0.08);
}

.trcard h4 {
  font-family: var(--f-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--navy-900);
  line-height: 1.25;
  margin-bottom: 6px;
}

.trcard p {
  font-size: 14px;
  color: #000000;
  line-height: 1.7;
  margin: 0 0 12px;
  flex: 1;
}

.trcard__cta {
  font-family: var(--f-display);
  font-size: 12px;
  font-weight: 600;
  color: var(--teal-600);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  transition: gap var(--t-fast);
}

.trcard:hover .trcard__cta {
  gap: 10px;
}


/* ============================================================
   CATEGORIZED FAQ — vertical pill tabs left + accordion right
============================================================ */
.faqs {
  background: linear-gradient(180deg, var(--teal-bg-light) 0%, #e3f1ee 100%);
  position: relative;
  overflow: hidden;
}

.faqs::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 12% 20%, rgba(38, 166, 154, 0.14), transparent 40%),
    radial-gradient(circle at 88% 80%, rgba(20, 40, 92, 0.10), transparent 40%);
  pointer-events: none;
}

.faqs>.container {
  position: relative;
  z-index: 1;
}

.faqcat {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 32px;
  align-items: start;
}

/* Vertical tabs aside */
.faqcat__tabs {
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: sticky;
  top: 100px;
}

.faqcat__tab {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: var(--white);
  border: 1.5px solid var(--ink-100);
  border-radius: var(--r-md);
  cursor: pointer;
  text-align: left;
  transition: all var(--t-fast);
  font-family: var(--f-body);
}

.faqcat__tab:hover {
  border-color: var(--teal-300);
  background: var(--teal-50);
  transform: translateX(2px);
}

.faqcat__tab.is-active {
  background: var(--navy-900);
  border-color: var(--navy-900);
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
}

.faqcat__tab i {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--teal-50);
  color: var(--teal-600);
  display: grid;
  place-items: center;
  font-size: 14px;
  flex-shrink: 0;
  transition: background var(--t-fast), color var(--t-fast);
}

.faqcat__tab.is-active i {
  background: var(--teal-500);
  color: var(--white);
}

.faqcat__tab strong {
  display: block;
  font-family: var(--f-display);
  font-size: 14.5px;
  font-weight: 600;
  color: var(--navy-900);
  line-height: 1.2;
  margin-bottom: 2px;
}

.faqcat__tab span {
  display: block;
  font-size: 11.5px;
  color: var(--ink-500);
  line-height: 1.3;
}

.faqcat__tab.is-active strong {
  color: var(--white);
}

.faqcat__tab.is-active span {
  color: rgba(255, 255, 255, 0.7);
}

/* Panels */
.faqcat__panels {
  background: var(--white);
  border: 1px solid var(--ink-100);
  border-radius: var(--r-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}

.faqcat__panel {
  display: none;
  flex-direction: column;
  gap: 10px;
  animation: trpanelFade 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faqcat__panel.is-active {
  display: flex;
}

/* ============================================================
   FAQ — accordion left + sticky aside right (legacy, retained)
============================================================ */
.faq {
  background: var(--white);
}

.faq__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  align-items: start;
}

.faq__qa-head {
  margin-bottom: 28px;
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.qa {
  background: var(--white);
  border: 1px solid var(--ink-100);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: box-shadow var(--t-fast), border-color var(--t-fast);
}

.qa[open] {
  border-color: var(--teal-300);
  box-shadow: var(--shadow-sm);
}

.qa summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 20px;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 14.5px;
  color: var(--navy-900);
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.qa summary::-webkit-details-marker {
  display: none;
}

.qa summary i {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--teal-50);
  color: var(--teal-600);
  display: grid;
  place-items: center;
  font-size: 11px;
  flex-shrink: 0;
  transition: transform var(--t-fast), background var(--t-fast), color var(--t-fast);
}

.qa[open] summary i {
  transform: rotate(45deg);
  background: var(--teal-500);
  color: var(--white);
}

.qa p {
  padding: 0 20px 18px;
  font-size: 13.5px;
  color: var(--ink-600);
  line-height: 1.7;
  margin: 0;
}

.qa p strong {
  color: var(--navy-900);
  font-weight: 600;
}

.qa p a {
  color: var(--teal-600);
  font-weight: 600;
}

.faq__aside {
  position: relative;
}

.faq__aside-sticky {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq__aside-sticky img {
  width: 100%;
  height: auto;
  max-height: 320px;
  object-fit: contain;
  border-radius: var(--r-lg);
  background: var(--teal-50);
  padding: 24px;
}

.faq__help {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-800));
  color: var(--white);
  padding: 22px 24px;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
}

.faq__help h4 {
  font-family: var(--f-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.faq__help p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
  margin: 0 0 14px;
}

.faq__help .btn+.btn {
  margin-top: 8px;
}

.faq__help .btn--outline-dark {
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--white);
}

.faq__help .btn--outline-dark:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

/* ============================================================
   FINAL CTA
============================================================ */
.final-cta {
  position: relative;
  background: var(--navy-950);
  color: var(--white);
  padding: 70px 0;
  text-align: center;
  overflow: hidden;
}

.final-cta__bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(38, 166, 154, 0.2), transparent 45%),
    radial-gradient(circle at 80% 50%, rgba(38, 166, 154, 0.16), transparent 45%);
}

.final-cta__inner {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
}

.final-cta__title {
  font-family: var(--f-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 12px;
}

.final-cta p {
  font-size: 15.5px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
  margin-bottom: 24px;
}

.final-cta__row {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   FOOTER
============================================================ */
.footer {
  background: var(--navy-950);
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 36px;
  padding-bottom: 36px;
}

.footer__brand img {
  height: 50px;
  margin-bottom: 16px;
  border-radius: 6px;
}

.footer__brand p {
  font-size: 13px;
  line-height: 1.7;
  margin-bottom: 18px;
  color: #fff;
}

.footer__brand em {
  color: var(--teal-300);
  font-style: italic;
  font-weight: 500;
}

.footer__social {
  display: flex;
  gap: 10px;
}

.footer__social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  display: grid;
  place-items: center;
  color: var(--white);
  font-size: 13px;
  transition: background var(--t-fast), transform var(--t-fast);
}

.footer__social a:hover {
  background: var(--teal-500);
  transform: translateY(-2px);
}

.footer__col h4 {
  font-family: var(--f-display);
  font-size: 12px;
  font-weight: 700;
  color: var(--teal-300);
  text-transform: uppercase;
  letter-spacing: 1.6px;
  margin-bottom: 16px;
}

.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer__col li a,
.footer__col li {
  font-size: 13px;
  color: #fff;
  transition: color var(--t-fast);
}

.footer__col li a:hover {
  color: var(--teal-300);
}

.footer__contact li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
}

.footer__contact i {
  color: #fff;
  margin-top: 3px;
  font-size: 12px;
  flex-shrink: 0;
}

.footer__contact a {
  color: rgba(255, 255, 255, 0.65);
}

.footer__contact a:hover {
  color: var(--teal-300);
}

.footer__base {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px 0;
  background: var(--navy-900);
}

.footer__base-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 12px;
  color: #fff;
}

.footer__base-links {
  display: flex;
  gap: 12px;
  align-items: center;
}

.footer__base-links a {
  color: #fff;
}

.footer__base-links a:hover {
  color: var(--teal-300);
}

.footer__base-links span {
  color: rgba(255, 255, 255, 0.3);
}

/* ============================================================
   FAB + MOBILE BAR
============================================================ */
.fab {
  position: fixed;
  right: 22px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--white);
  font-size: 21px;
  box-shadow: var(--shadow-lg);
  z-index: 90;
  transition: transform var(--t-fast);
}

.fab:hover {
  transform: translateY(-3px);
}

.fab--wa {
  background: #25d366;
  bottom: 90px;
}

.fab--call {
  background: var(--teal-500);
  bottom: 22px;
}

.fab__ring {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(38, 166, 154, 0.4);
  animation: ring 2s ease-out infinite;
  pointer-events: none;
}

@keyframes ring {
  0% {
    transform: scale(0.95);
    opacity: 0.9;
  }

  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

.mobile-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 1px solid var(--ink-200);
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.08);
  padding: 8px 6px calc(8px + env(safe-area-inset-bottom, 0));
  z-index: 95;
  gap: 6px;
}

.mobile-bar__btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 9px 4px;
  border-radius: var(--r-md);
  font-family: var(--f-display);
  font-size: 10.5px;
  font-weight: 600;
  color: var(--ink-700);
  background: var(--bg-soft);
  transition: background var(--t-fast);
  min-height: 48px;
}

.mobile-bar__btn:active {
  background: var(--ink-100);
}

.mobile-bar__btn i {
  font-size: 17px;
  color: var(--teal-600);
}

.mobile-bar__btn--wa {
  background: #25d366;
  color: var(--white);
}

.mobile-bar__btn--wa i {
  color: var(--white);
}

.mobile-bar__btn--book {
  background: var(--teal-500);
  color: var(--white);
}

.mobile-bar__btn--book i {
  color: var(--white);
}

/* ============================================================
   RESPONSIVE — 1100px (tablet)
============================================================ */
@media (max-width: 1100px) {
  .header__nav {
    display: none;
  }

  .header__toggle {
    display: flex;
  }

  .header__nav.is-open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 14px;
    gap: 4px;
    box-shadow: var(--shadow-lg);
    border-top: 1px solid var(--ink-100);
  }

  .header__phone-text {
    display: none;
  }

  .section {
    padding: 64px 0;
  }

  .section__head {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-bottom: 36px;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .hero__media {
    height: 380px;
    max-width: 560px;
  }

  .hero__title {
    font-size: 38px;
  }

  .about__grid {
    grid-template-columns: 1fr;
    gap: 44px;
    max-width: 700px;
    margin: 0 auto;
  }

  .stats__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  /* Departments tablet — keep panels side-by-side but lower height */
  .dept-panels {
    height: 280px;
    gap: 8px;
  }

  .dept-panel__name {
    font-size: 16px;
  }

  .dept-panel.is-active .dept-panel__name,
  .dept-panel:hover .dept-panel__name {
    font-size: 19px;
  }

  .deep-pitch__grid {
    grid-template-columns: 1fr;
    gap: 36px;
    max-width: 700px;
    margin: 0 auto;
  }

  .deep-pitch__media {
    aspect-ratio: 16/9;
  }

  /* Facilities tablet: hub on top, cards in 2-col grid below */
  .facs-radial {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
  }

  .facs-radial__col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .facs-radial__center {
    order: -1;
  }

  .fac--right {
    grid-template-columns: auto 1fr;
    text-align: left;
  }

  .fac--right::before {
    left: 0;
    right: auto;
  }

  .fac--right:hover {
    transform: translateX(4px);
  }

  /* Reorder ic to left for both columns on tablet */
  .fac--right .fac__ic {
    order: -1;
  }

  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 200px 200px 200px;
  }

  .gallery__item--lg {
    grid-column: span 2;
    grid-row: span 1;
  }

  .gprofile {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 22px;
  }

  .gprofile__rating {
    border-left: 0;
    padding-left: 0;
    border-top: 1px solid var(--ink-100);
    padding-top: 18px;
  }

  .gprofile__actions {
    flex-direction: row;
  }

  .gprofile__actions .btn {
    flex: 1;
  }

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

  .blog-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contact__grid {
    grid-template-columns: 1fr;
    max-width: 640px;
  }

  .faq__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .faq__aside-sticky {
    position: static;
    flex-direction: row;
    gap: 18px;
  }

  .faq__aside-sticky img {
    width: 40%;
    max-height: 260px;
    padding: 18px;
  }

  .faq__help {
    flex: 1;
  }

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

  .topbar .hide-sm,
  .topbar .hide-md {
    display: none;
  }

  /* Treatments tablet */
  .trpanel__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* FAQ categorized tablet — stack tabs horizontally above */
  .faqcat {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .faqcat__tabs {
    position: static;
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 10px;
    margin: 0 -18px;
    padding: 4px 18px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .faqcat__tabs::-webkit-scrollbar {
    display: none;
  }

  .faqcat__tab {
    flex: 0 0 240px;
    scroll-snap-align: start;
  }

  .faqcat__tab.is-active {
    transform: none;
  }

  .faqcat__tab:hover {
    transform: none;
  }

  /* Gallery tabs tablet */
  .ggrid {
    grid-template-columns: repeat(3, 1fr);
  }

  .gtabs {
    max-width: none;
    overflow-x: auto;
    flex-wrap: nowrap;
    justify-content: flex-start;
  }

  .gtab {
    flex: 0 0 auto;
  }

  /* Videos tablet */
  .videos__head {
    grid-template-columns: 1fr;
    gap: 22px;
  }

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

  /* SEO tablet */
  .seo__split {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .seo__left {
    position: static;
  }

  .seo__hl {
    font-size: 30px;
  }

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

/* ============================================================
   RESPONSIVE — 780px (mobile landscape / app feel)
============================================================ */
@media (max-width: 780px) {
  .container {
    padding: 0 18px;
  }

  .topbar {
    padding: 6px 0;
    font-size: 11.5px;
  }

  .topbar__left {
    gap: 12px;
  }

  .topbar__emerg {
    padding: 3px 10px;
    font-size: 10.5px;
  }

  .header__actions .header__phone {
    display: none;
  }

  .header__actions .btn--primary {
    padding: 9px 14px;
    font-size: 12.5px;
  }

  .header__logo img {
    height: 38px;
  }

  .section {
    padding: 50px 0;
  }

  .section__head {
    margin-bottom: 28px;
  }

  /* HERO mobile — clean app-like stacking */
  .hero {
    padding: 36px 0 44px;
  }

  .hero__title {
    font-size: 28px;
    line-height: 1.18;
  }

  .hero__lede {
    font-size: 14px;
  }

  .hero__cta-row {
    gap: 8px;
  }

  .hero__cta-row .btn {
    flex: 1;
    padding: 12px 16px;
    font-size: 13px;
  }

  .hero__trust {
    width: 100%;
    max-width: 360px;
  }

  .hero__trust-item {
    padding: 10px 8px;
    flex: 1;
  }

  .hero__trust-item strong {
    font-size: 19px;
  }

  .hero__trust-item span {
    font-size: 10.5px;
  }

  .hero__media {
    height: 280px;
  }

  .hero__chip {
    padding: 9px 12px;
  }

  .hero__chip--nabh {
    left: -8px;
    top: 14px;
  }

  .hero__chip--er {
    right: -8px;
    bottom: 30px;
  }

  .hero__chip i {
    width: 30px;
    height: 30px;
    font-size: 12px;
  }

  .hero__chip strong {
    font-size: 12px;
  }

  .hero__chip em {
    font-size: 9.5px;
  }

  .hero__photo-tag {
    padding: 7px 11px;
    font-size: 11px;
  }

  .ticker__inner {
    gap: 12px;
    padding: 0 18px;
  }

  .ticker__label {
    font-size: 10px;
    letter-spacing: 1.5px;
  }

  .ticker__group {
    gap: 28px;
    padding-right: 28px;
  }

  .ticker__group span {
    font-size: 12.5px;
  }

  .h-display {
    font-size: 24px;
  }

  .lede {
    font-size: 14.5px;
  }

  .about__sticker {
    width: 80px;
    height: 80px;
    right: -8px;
    top: -6px;
  }

  .about__sticker strong {
    font-size: 16px;
  }

  .about__plaque em {
    font-size: 16px;
  }

  .stats__head h3 {
    font-size: 22px;
  }

  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .stats__item {
    padding: 14px;
  }

  .stats__item strong {
    font-size: 24px;
  }

  .stats__item>span {
    font-size: 10.5px;
  }

  /* DEPARTMENTS — mobile: stack panels into 2-col grid */
  .dept-panels {
    flex-wrap: wrap;
    height: auto;
    gap: 8px;
  }

  .dept-panel {
    flex: 0 0 calc(50% - 4px);
    height: 180px;
    border-radius: var(--r-md);
  }

  /* Disable the expanding hover behavior on mobile */
  .dept-panels .dept-panel.is-active,
  .dept-panels:hover .dept-panel:hover {
    flex: 0 0 calc(50% - 4px);
  }

  /* On mobile, always show full content */
  .dept-panel__sub {
    max-height: 50px;
    opacity: 1;
    margin-bottom: 8px;
  }

  .dept-panel__cta {
    max-height: 24px;
    opacity: 1;
  }

  .dept-panel__name {
    font-size: 15px;
  }

  .dept-panel.is-active .dept-panel__name,
  .dept-panel:hover .dept-panel__name {
    font-size: 15px;
  }

  .dept-panel__sub {
    font-size: 11px;
  }

  .dept-panel__icon {
    width: 36px;
    height: 36px;
    font-size: 14px;
    top: 12px;
    left: 12px;
  }

  .dept-panel__content {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .dept-panel__overlay {
    background: linear-gradient(180deg, rgba(11, 26, 66, 0.30) 0%, rgba(11, 26, 66, 0.92) 100%);
  }

  .pitch-strip__inner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .pitch-strip__text strong {
    font-size: 17px;
  }

  .pitch-strip__actions {
    flex-direction: column;
  }

  .pitch-strip__actions .btn {
    width: 100%;
  }

  .doctors__nav {
    margin-top: 0;
  }

  .doc-card {
    flex: 0 0 220px;
  }

  .deep-pitch__pillars {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .deep-pitch__body .h-display {
    font-size: 24px;
  }

  .deep-pitch__ctas {
    flex-direction: column;
  }

  .deep-pitch__ctas .btn {
    width: 100%;
  }

  .facs-radial {
    gap: 22px;
  }

  .facs-radial__col {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .facs-radial__hub {
    width: 220px;
    height: 220px;
  }

  .fac {
    padding: 16px 16px;
    gap: 12px;
  }

  .fac__ic {
    width: 44px;
    height: 44px;
    font-size: 17px;
  }

  .fac h4 {
    font-size: 14.5px;
  }

  .fac p {
    font-size: 12px;
  }

  .gallery__grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 12px;
    padding: 0 18px 12px;
    margin: 0 -18px;
    grid-template-columns: none;
    grid-template-rows: none;
  }

  .gallery__item {
    flex: 0 0 80%;
    min-width: 260px;
    scroll-snap-align: start;
    height: 220px;
  }

  .gallery__item--lg {
    grid-column: auto;
    grid-row: auto;
  }

  .gprofile {
    padding: 18px;
    gap: 14px;
  }

  .gprofile__brand strong {
    font-size: 16px;
  }

  .gprofile__rating-num strong {
    font-size: 30px;
  }

  .gprofile__actions {
    flex-direction: column;
  }

  .greviews__grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 12px;
    padding: 0 18px 12px;
    margin: 0 -18px;
    grid-template-columns: none;
  }

  .greview {
    flex: 0 0 82%;
    min-width: 270px;
    scroll-snap-align: start;
  }

  .blog-feat h3 {
    font-size: 19px;
  }

  .blog-feat__body {
    padding: 20px;
  }

  .contact__form {
    padding: 22px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .faq__aside-sticky {
    flex-direction: column;
  }

  .faq__aside-sticky img {
    width: 100%;
  }

  .qa summary {
    padding: 14px 16px;
    font-size: 13.5px;
  }

  .final-cta {
    padding: 50px 0;
  }

  .final-cta__title {
    font-size: 26px;
  }

  .final-cta__row {
    flex-direction: column;
  }

  .final-cta__row .btn {
    width: 100%;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .footer__base-inner {
    justify-content: center;
    text-align: center;
  }

  .fab {
    width: 48px;
    height: 48px;
    font-size: 19px;
  }

  .fab--wa {
    bottom: 142px;
  }

  .fab--call {
    bottom: 84px;
  }

  .mobile-bar {
    display: flex;
  }

  body {
    padding-bottom: 76px;
  }

  /* Treatments mobile — proper slider for tabs and cards */
  .trtabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    justify-content: flex-start;
    border-radius: var(--r-md);
    margin: 0 -18px 26px;
    padding: 6px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    max-width: none;
  }

  .trtabs::-webkit-scrollbar {
    display: none;
  }

  .trtab {
    flex: 0 0 auto;
    scroll-snap-align: start;
    padding: 9px 14px;
    font-size: 12.5px;
  }

  .trpanel__grid {
    grid-template-columns: none;
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 12px;
    padding: 4px 18px 12px;
    margin: 0 -18px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .trpanel__grid::-webkit-scrollbar {
    display: none;
  }

  .trcard {
    flex: 0 0 78%;
    min-width: 250px;
    scroll-snap-align: start;
  }

  /* FAQ categorized mobile */
  .faqcat__panels {
    padding: 18px;
  }

  /* Departments mobile */
  .departments {
    padding: 60px 0;
  }

  .dept-panels {
    gap: 6px;
  }

  .dept-panel {
    height: 160px;
  }

  /* Gallery mobile */
  .gtabs {
    overflow-x: auto;
    flex-wrap: nowrap;
    justify-content: flex-start;
    margin: 0 -18px 26px;
    padding: 6px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    border-radius: var(--r-md);
  }

  .gtabs::-webkit-scrollbar {
    display: none;
  }

  .gtab {
    flex: 0 0 auto;
    padding: 8px 14px;
    font-size: 12.5px;
  }

  .ggrid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 12px;
    padding: 0 18px 12px;
    margin: 0 -18px;
    grid-template-columns: none;
  }

  .ggrid::-webkit-scrollbar {
    display: none;
  }

  .gitem {
    flex: 0 0 80%;
    min-width: 260px;
    scroll-snap-align: start;
    aspect-ratio: 4/3;
  }

  .gitem.is-hidden {
    display: none;
  }

  /* Videos mobile */
  .videos {
    padding: 60px 0;
  }

  .videos__channel {
    flex-wrap: wrap;
    width: 100%;
    border-radius: var(--r-lg);
  }

  .videos__channel-info {
    flex: 1;
    min-width: 0;
  }

  .videos__channel-btn {
    width: 100%;
    justify-content: center;
    margin-top: 4px;
  }

  .vgrid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 14px;
    padding: 0 18px 12px;
    margin: 0 -18px;
    grid-template-columns: none;
  }

  .vgrid::-webkit-scrollbar {
    display: none;
  }

  .vcard {
    flex: 0 0 82%;
    min-width: 280px;
    scroll-snap-align: start;
  }

  /* SEO mobile */
  .seo {
    padding: 56px 0;
  }

  .seo__split {
    gap: 28px;
  }

  .seo__hl {
    font-size: 26px;
  }

  .seo__lead {
    font-size: 13.5px;
  }

  .seo__metrics {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .seo__metric {
    padding: 14px 16px;
  }

  .seo__metric strong {
    font-size: 22px;
  }

  .seo__metric span {
    font-size: 10.5px;
  }

  .seo__cta {
    flex-direction: column;
  }

  .seo__cta .btn {
    width: 100%;
  }

  .seo__article {
    gap: 14px;
    padding: 22px 0;
  }

  .seo__article-num {
    font-size: 28px;
    min-width: 44px;
  }

  .seo__article h3 {
    font-size: 17px;
  }

  .seo__article p {
    font-size: 13px;
  }
}

/* ============================================================
   RESPONSIVE — 480px (small phone)
============================================================ */
@media (max-width: 480px) {
  .container {
    padding: 0 14px;
  }

  .section {
    padding: 44px 0;
  }

  .hero__title {
    font-size: 24px;
  }

  .hero__media {
    height: 240px;
  }

  .h-display {
    font-size: 22px;
  }

  .doc-card {
    flex: 0 0 200px;
  }

  .final-cta__title {
    font-size: 22px;
  }

  .greview {
    flex: 0 0 88%;
  }
}

/* =============================================================
   THANK YOU PAGE — shares the same theme
============================================================= */

/* --- SUCCESS HERO --- */
.ty-hero {
  position: relative;
  background: linear-gradient(135deg, var(--navy-950) 0%, var(--navy-800) 50%, var(--navy-900) 100%);
  color: var(--white);
  overflow: hidden;
  padding: 70px 0 80px;
  text-align: center;
}

.ty-hero__bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(78, 196, 185, 0.14), transparent 45%),
    radial-gradient(circle at 80% 70%, rgba(217, 164, 65, 0.14), transparent 45%);
  pointer-events: none;
}

.ty-hero__pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.4;
  pointer-events: none;
}

.ty-hero__glow {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}

.ty-hero__glow--l {
  top: -150px;
  left: -150px;
  background: rgba(78, 196, 185, 0.25);
}

.ty-hero__glow--r {
  bottom: -150px;
  right: -150px;
  background: rgba(217, 164, 65, 0.18);
}

.ty-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 780px;
  margin: 0 auto;
}

/* animated checkmark */
.ty-check {
  width: 140px;
  height: 140px;
  margin: 0 auto 28px;
  position: relative;
}

.ty-check::before {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(78, 196, 185, 0.2), transparent 70%);
  animation: tyPulse 2s ease-out infinite;
}

.ty-check__svg {
  width: 100%;
  height: 100%;
  display: block;
}

.ty-check__ring {
  stroke: rgba(78, 196, 185, 0.3);
  stroke-dasharray: 8 6;
  transform-origin: center;
  animation: tyRingSpin 18s linear infinite;
}

.ty-check__circle {
  stroke: var(--teal-500);
  stroke-dasharray: 380;
  stroke-dashoffset: 380;
  animation: tyDrawCircle 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s forwards;
}

.ty-check__tick {
  stroke: var(--gold-300);
  stroke-dasharray: 90;
  stroke-dashoffset: 90;
  animation: tyDrawTick 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.9s forwards;
}

@keyframes tyDrawCircle {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes tyDrawTick {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes tyRingSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes tyPulse {
  0% {
    transform: scale(0.9);
    opacity: 0.8;
  }

  100% {
    transform: scale(1.3);
    opacity: 0;
  }
}

.ty-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(78, 196, 185, 0.15);
  border: 1px solid rgba(78, 196, 185, 0.3);
  border-radius: var(--r-pill);
  font-size: 12px;
  font-weight: 700;
  color: var(--teal-500);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
}

.ty-hero__eyebrow i {
  color: var(--teal-500);
}

.ty-hero__title {
  font-family: var(--f-display);
  font-size: clamp(38px, 5vw, 60px);
  line-height: 1.05;
  margin-bottom: 18px;
}

.ty-hero__title .accent {
  color: var(--gold-300);
  font-style: italic;
}

.ty-hero__lede {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.65;
  max-width: 640px;
  margin: 0 auto 28px;
}

.ty-hero__lede strong {
  color: var(--white);
  font-weight: 600;
}

.ty-hero__ref {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--r-lg);
  padding: 0;
  margin-bottom: 28px;
  backdrop-filter: blur(12px);
  overflow: hidden;
}

.ty-hero__ref-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding: 14px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  min-width: 140px;
}

.ty-hero__ref-item:last-child {
  border-right: 0;
}

.ty-hero__ref-item span {
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 600;
}

.ty-hero__ref-item strong {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  font-family: var(--f-body);
  letter-spacing: 0.5px;
}

.ty-hero__ref-item--trust {
  flex-direction: row;
  align-items: center;
  gap: 8px;
  background: rgba(78, 196, 185, 0.1);
}

.ty-hero__ref-item--trust i {
  color: var(--teal-500);
  font-size: 14px;
}

.ty-hero__ref-item--trust strong {
  color: var(--teal-300);
}

.ty-hero__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.ty-hero__actions .btn--gold {
  box-shadow: 0 8px 24px rgba(217, 164, 65, 0.4);
}

/* --- CONFETTI --- */
.ty-confetti {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 3;
}

.ty-confetti i {
  position: absolute;
  top: -20px;
  left: var(--x, 50%);
  width: var(--s, 8px);
  height: var(--s, 8px);
  background: var(--bg, var(--gold-400));
  transform: rotate(var(--r, 0));
  animation: tyConfettiFall 3s cubic-bezier(0.2, 0.6, 0.3, 1) var(--d, 0s) forwards;
  opacity: 0;
  border-radius: 2px;
}

.ty-confetti i:nth-child(even) {
  border-radius: 50%;
}

.ty-confetti i:nth-child(3n) {
  width: calc(var(--s, 8px) * 1.3);
  height: calc(var(--s, 8px) * 0.4);
}

@keyframes tyConfettiFall {
  0% {
    transform: translateY(0) rotate(var(--r));
    opacity: 1;
  }

  100% {
    transform: translateY(100vh) rotate(calc(var(--r) + 540deg));
    opacity: 0;
  }
}

/* --- NEXT STEPS --- */
.ty-next {
  background: var(--bg-soft);
}

.ty-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
}

.ty-steps::before {
  content: "";
  position: absolute;
  top: 70px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--ink-300) 0, var(--ink-300) 6px, transparent 6px, transparent 12px);
  z-index: 0;
}

.ty-step {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--ink-100);
  text-align: center;
  position: relative;
  z-index: 1;
  transition: transform var(--t-med), box-shadow var(--t-med);
}

.ty-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.ty-step--hero {
  background: linear-gradient(180deg, var(--gold-100), rgba(253, 245, 225, 0.4));
  border-color: var(--gold-300);
  box-shadow: 0 14px 40px rgba(217, 164, 65, 0.18);
}

.ty-step__num {
  display: inline-block;
  font-family: var(--f-display);
  font-size: 14px;
  color: var(--ink-500);
  background: var(--bg-soft);
  border: 1px solid var(--ink-100);
  padding: 4px 14px;
  border-radius: var(--r-pill);
  margin-bottom: 14px;
  letter-spacing: 1px;
}

.ty-step--hero .ty-step__num {
  background: var(--gold-300);
  color: var(--navy-950);
  border-color: var(--gold-400);
  font-weight: 700;
}

.ty-step__ic {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-100), var(--teal-200));
  color: var(--teal-700);
  display: grid;
  place-items: center;
  font-size: 24px;
  margin: 0 auto 18px;
}

.ty-step--hero .ty-step__ic {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  color: var(--navy-950);
  box-shadow: 0 10px 24px rgba(217, 164, 65, 0.3);
}

.ty-step h3 {
  font-family: var(--f-display);
  font-size: 22px;
  color: var(--navy-900);
  margin-bottom: 10px;
}

.ty-step p {
  font-size: 13.5px;
  color: var(--ink-600);
  line-height: 1.6;
  margin: 0 0 16px;
}

.ty-step p strong {
  color: var(--navy-900);
}

.ty-step__tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  background: var(--teal-100);
  color: var(--teal-700);
  border-radius: var(--r-pill);
  font-size: 11.5px;
  font-weight: 700;
}

.ty-step__tag--gold {
  background: rgba(217, 164, 65, 0.2);
  color: var(--gold-700);
}


/* --- FINAL CTA STRIP --- */
.ty-cta {
  position: relative;
  background: linear-gradient(135deg, var(--teal-800), var(--navy-900));
  color: var(--white);
  padding: 48px 0;
  overflow: hidden;
}

.ty-cta__bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 80% 50%, rgba(217, 164, 65, 0.2), transparent 50%);
  pointer-events: none;
}

.ty-cta__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.ty-cta__left {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
  min-width: 280px;
}

.ty-cta__left>i {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: grid;
  place-items: center;
  color: var(--gold-300);
  font-size: 26px;
  flex-shrink: 0;
}

.ty-cta__left h3 {
  font-family: var(--f-display);
  font-size: 26px;
  color: var(--white);
  margin-bottom: 4px;
}

.ty-cta__left p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
  line-height: 1.5;
}

.ty-cta__right {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  flex-wrap: wrap;
}


/* --- TRUST STRIP --- */
.ty-trust {
  background: var(--bg-cream);
  padding: 56px 0;
  border-top: 1px solid var(--ink-100);
  border-bottom: 1px solid var(--ink-100);
}

.ty-trust__head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 34px;
}

.ty-trust__head h2 {
  font-family: var(--f-display);
  font-size: clamp(26px, 3.2vw, 34px);
  color: var(--navy-900);
  line-height: 1.15;
  margin-bottom: 10px;
}

.ty-trust__head h2 .accent {
  color: var(--teal-700);
  font-style: italic;
}

.ty-trust__head p {
  font-size: 14.5px;
  color: var(--ink-600);
  line-height: 1.6;
  margin: 0;
}

.ty-trust__head p em {
  color: var(--gold-600);
  font-style: italic;
  font-weight: 500;
}

.ty-trust__grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--ink-100);
  border-radius: var(--r-xl);
  padding: 24px 28px;
  box-shadow: var(--shadow-sm);
}

.ty-trust__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 120px;
}

.ty-trust__item strong {
  font-family: var(--f-display);
  font-size: clamp(28px, 3.4vw, 36px);
  color: var(--navy-900);
  line-height: 1;
}

.ty-trust__item span {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--teal-700);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 6px;
}

.ty-trust__divider {
  width: 1px;
  height: 40px;
  background: var(--ink-200);
}

/* Compact footer grid variant */
.footer__grid--compact {
  grid-template-columns: 1.5fr 1fr;
}

/* --- RESPONSIVE — Thank You page --- */
@media (max-width: 780px) {
  .ty-header .header__phone {
    display: none;
  }

  .ty-hero {
    padding: 44px 0 56px;
  }

  .ty-check {
    width: 110px;
    height: 110px;
    margin-bottom: 20px;
  }

  .ty-hero__title {
    font-size: 32px;
  }

  .ty-hero__lede {
    font-size: 14.5px;
  }

  .ty-hero__ref {
    width: 100%;
    max-width: 420px;
    flex-direction: column;
  }

  .ty-hero__ref-item {
    width: 100%;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 20px;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .ty-hero__ref-item:last-child {
    border-bottom: 0;
  }

  .ty-hero__ref-item span {
    font-size: 10px;
  }

  .ty-hero__actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    max-width: 360px;
    margin: 0 auto;
  }

  .ty-hero__actions .btn {
    width: 100%;
  }

  .ty-steps {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .ty-steps::before {
    display: none;
  }

  .ty-step {
    padding: 22px;
  }

  .ty-step h3 {
    font-size: 20px;
  }

  .ty-trust {
    padding: 40px 0;
  }

  .ty-trust__head {
    margin-bottom: 22px;
  }

  .ty-trust__grid {
    padding: 18px;
    gap: 14px;
    flex-wrap: wrap;
  }

  .ty-trust__item {
    min-width: 0;
    flex: 1 1 40%;
  }

  .ty-trust__divider {
    display: none;
  }

  .ty-cta {
    padding: 36px 0;
  }

  .ty-cta__left {
    gap: 14px;
    flex-direction: column;
    align-items: flex-start;
  }

  .ty-cta__left>i {
    width: 52px;
    height: 52px;
    font-size: 20px;
  }

  .ty-cta__left h3 {
    font-size: 22px;
  }

  .ty-cta__right {
    width: 100%;
  }

  .ty-cta__right .btn {
    flex: 1;
    min-width: 140px;
  }

  .footer__grid--compact {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .ty-hero {
    padding: 36px 0 44px;
  }

  .ty-hero__title {
    font-size: 28px;
  }

  .ty-hero__ref-item {
    padding: 11px 16px;
  }

  .ty-step__ic {
    width: 54px;
    height: 54px;
    font-size: 20px;
  }

  .ty-step h3 {
    font-size: 19px;
  }

  .ty-trust__item strong {
    font-size: 24px;
  }

  .ty-trust__item span {
    font-size: 10.5px;
  }

  .ty-cta__right {
    flex-direction: column;
  }

  .ty-cta__right .btn {
    width: 100%;
  }
}