/* ========================================
   Dr Rajendran Multispeciality Clinic
   Unified Production Stylesheet
   Pages: index, about, services, specialists,
          facilities, healthcare, contact
   ======================================== */


/* ========================================
   GLOBAL VARIABLES
   ======================================== */
:root {
  --frost:           #faf8f5;
  --champagne:       #f5ede0;
  --rose-gold:       #c9956c;
  --pale-coral:      #f2c4b0;
  --peach:           #f7ddd0;
  --warm-silver:     #e8e2dc;
  --aqua:            #7dbfbf;
  --teal:            #4a9b9b;
  --copper:          #b8824a;
  --nude:            #e8cdb8;
  --warm-white:      #fffcf8;
  --text-dark:       #2c2118;
  --text-mid:        #6b5745;
  --text-light:      #a08070;
  --glass-bg:        rgba(255,252,248,0.6);
  --glass-border:    rgba(201,149,108,0.2);
  --glass-shadow:    0 20px 60px rgba(184,130,74,0.08);
  --glow-rose:       rgba(201,149,108,0.3);
  --glow-teal:       rgba(74,155,155,0.25);
  --section-spacing: 120px;
  --ff-display:      'Cormorant Garamond', Georgia, serif;
  --ff-body:         'Manrope', sans-serif;
  --bnav-h:          60px;
}


/* ========================================
   RESET & BASE STYLES
   ======================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: var(--ff-body);
  background: var(--warm-white);
  color: var(--text-dark);
  overflow-x: hidden;
  cursor: none;
}

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--champagne); }
::-webkit-scrollbar-thumb { background: var(--rose-gold); border-radius: 4px; }

img { max-width: 100%; height: auto; display: block; }

section { padding: var(--section-spacing) 0; position: relative; }

.page-wrapper { position: relative; z-index: 1; }

@media (hover: none) {
  .cursor, .cursor-follower { display: none; }
  body { cursor: auto; }
}


/* ========================================
   TYPOGRAPHY
   ======================================== */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--rose-gold);
  margin-bottom: 16px;
}
.section-tag::before {
  content: '';
  width: 24px;
  height: 2px;
  background: linear-gradient(90deg, var(--rose-gold), var(--teal));
  border-radius: 2px;
}

.section-headline {
  font-family: var(--ff-display);
  font-size: clamp(32px,4vw,64px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--text-dark);
  letter-spacing: -.01em;
}
.section-headline em { font-style: italic; color: var(--rose-gold); }

.section-body {
  font-size: 15px;
  line-height: 1.85;
  color: var(--text-mid);
  font-weight: 400;
  max-width: 560px;
}

/* Hero / page headline variants */
.hero-headline {
  font-family: var(--ff-display);
  font-size: clamp(40px,6vw,88px);
  font-weight: 300;
  line-height: 1.0;
  color: var(--text-dark);
  margin-bottom: 8px;
  letter-spacing: -.02em;
}
.hero-headline em {
  font-style: italic;
  font-weight: 500;
  background: linear-gradient(135deg,var(--rose-gold),var(--copper),var(--teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Shared page hero headline (about, services, specialists, facilities) */
.page-hero-headline {
  font-family: var(--ff-display);
  font-size: clamp(42px,6.5vw,90px);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -.025em;
  color: var(--text-dark);
  margin-bottom: 20px;
}
.page-hero-headline em {
  font-style: italic;
  font-weight: 500;
  background: linear-gradient(135deg,var(--rose-gold),var(--copper),var(--teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(13px,1.5vw,17px);
  font-weight: 400;
  color: var(--text-mid);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 40px;
}

.hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: .04em;
  margin-bottom: 22px;
}
.hero-breadcrumb a { color: var(--rose-gold); text-decoration: none; }

.breadcrumb-custom {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 20px;
}
.breadcrumb-custom a { color: var(--rose-gold); text-decoration: none; }
.breadcrumb-sep { font-size: 9px; opacity: .5; }


/* ========================================
   BUTTONS
   ======================================== */
.btn-primary-custom {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg,var(--rose-gold) 0%,var(--copper) 100%);
  color: white;
  padding: 15px 28px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
  box-shadow: 0 8px 32px rgba(201,149,108,0.35);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn-primary-custom::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,rgba(255,255,255,0.15),transparent);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}
.btn-primary-custom:hover::before { transform: translateX(100%); }
.btn-primary-custom:hover { transform: translateY(-3px); box-shadow: 0 14px 44px rgba(201,149,108,.45); color: white; }

.btn-glass {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,252,248,0.7);
  backdrop-filter: blur(12px);
  color: var(--text-dark);
  padding: 14px 24px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border: 1.5px solid var(--glass-border);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
  white-space: nowrap;
}
.btn-glass:hover {
  transform: translateY(-3px);
  background: rgba(201,149,108,.1);
  border-color: var(--rose-gold);
  color: var(--rose-gold);
  box-shadow: 0 12px 36px rgba(201,149,108,.15);
}

.btn-whatsapp {
  background: linear-gradient(135deg,#25d366,#128c7e) !important;
  box-shadow: 0 8px 28px rgba(37,211,102,.3) !important;
}
.btn-whatsapp:hover { box-shadow: 0 14px 40px rgba(37,211,102,.45) !important; color: white !important; }

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: white;
  color: var(--copper);
  padding: 15px 30px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all .35s;
  box-shadow: 0 8px 32px rgba(0,0,0,.12);
  border: none;
  cursor: pointer;
}
.btn-white:hover { transform: translateY(-3px); box-shadow: 0 14px 44px rgba(0,0,0,.18); color: var(--copper); }

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: white;
  padding: 14px 28px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all .35s;
  border: 2px solid rgba(255,255,255,.5);
  cursor: pointer;
}
.btn-outline-white:hover { background: rgba(255,255,255,.12); border-color: white; color: white; transform: translateY(-3px); }


/* ========================================
   PRELOADER
   ======================================== */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--warm-white);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease, transform 0.8s ease;
}
#preloader.hidden { opacity: 0; pointer-events: none; transform: scale(1.05); }

.preloader-rings { width: 80px; height: 80px; margin: 0 auto 24px; position: relative; }
.p-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: var(--rose-gold);
  animation: pRing 1.2s linear infinite;
}
.p-ring:nth-child(2) { inset: 10px; border-top-color: var(--teal); animation-duration: 1.8s; animation-direction: reverse; }
.p-ring:nth-child(3) { inset: 22px; border-top-color: var(--copper); animation-duration: 1s; }

.preloader-text { font-family: var(--ff-display); font-size: 22px; font-weight: 400; color: var(--text-dark); letter-spacing: .04em; text-align: center; }
.preloader-sub { font-size: 11px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--rose-gold); margin-top: 6px; text-align: center; }


/* ========================================
   CURSOR
   ======================================== */
.cursor {
  width: 10px; height: 10px;
  background: var(--rose-gold);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 99999;
  transform: translate(-50%,-50%);
  transition: transform 0.1s;
}
.cursor-follower {
  width: 36px; height: 36px;
  border: 1.5px solid var(--rose-gold);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 99998;
  transform: translate(-50%,-50%);
  transition: all 0.18s ease;
  opacity: 0.5;
}


/* ========================================
   AMBIENT ORBS
   ======================================== */
.orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
  animation: orbFloat 18s ease-in-out infinite;
}
.orb-1 { width:600px;height:600px;background:radial-gradient(circle,rgba(242,196,176,.35) 0%,transparent 70%);top:-200px;right:-150px; }
.orb-2 { width:500px;height:500px;background:radial-gradient(circle,rgba(125,191,191,.2) 0%,transparent 70%);bottom:10%;left:-200px;animation-delay:-7s; }
.orb-3 { width:400px;height:400px;background:radial-gradient(circle,rgba(201,149,108,.2) 0%,transparent 70%);top:40%;right:15%;animation-delay:-12s; }
.orb-4 { width:350px;height:350px;background:radial-gradient(circle,rgba(247,221,208,.4) 0%,transparent 70%);top:60%;left:30%;animation-delay:-4s; }
@media (max-width: 767px) { .orb { display: none; } }


/* ========================================
   HEADER / NAVBAR
   ======================================== */
.navbar-custom {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  max-width: 1300px;
  background: rgba(255,252,248,0.7);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(201,149,108,0.18);
  border-radius: 100px;
  padding: 14px 36px;
  z-index: 9990;
  transition: all 0.4s ease;
  box-shadow: 0 8px 32px rgba(184,130,74,0.08);
}
.navbar-custom.scrolled {
  background: rgba(255,252,248,0.92);
  box-shadow: 0 12px 48px rgba(184,130,74,0.14);
  top: 14px;
}

.navbar-brand-custom { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-logo { width: 48px; max-height: 48px; height: auto; object-fit: contain; display: inline-block; }
.brand-text { line-height: 1; }
.brand-name { font-family: var(--ff-display); font-weight: 600; font-size: 16px; color: var(--text-dark); letter-spacing: .01em; }
.brand-sub { font-size: 9px; font-weight: 500; color: var(--rose-gold); letter-spacing: .15em; text-transform: uppercase; }

.brand-icon {
  width: 40px; height: 40px;
  background: linear-gradient(135deg,var(--rose-gold),var(--copper));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 18px;
  box-shadow: 0 4px 16px var(--glow-rose);
  flex-shrink: 0;
}

.hamburger {
  display: none;
  width: 40px; height: 40px;
  background: rgba(201,149,108,0.1);
  border: 1px solid rgba(201,149,108,0.2);
  border-radius: 12px;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition: all 0.3s ease;
}
.hamburger span { display: block; width: 20px; height: 2px; background: var(--rose-gold); border-radius: 2px; transition: all 0.3s ease; }


/* ========================================
   NAVIGATION
   ======================================== */
.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-links a {
  font-family: var(--ff-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-mid);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 100px;
  transition: all 0.3s ease;
  letter-spacing: .02em;
}
.nav-links a:hover, .nav-links a.active { background: rgba(201,149,108,0.12); color: var(--rose-gold); }

.nav-cta {
  background: linear-gradient(135deg,var(--rose-gold),var(--copper)) !important;
  color: white !important;
  padding: 10px 22px !important;
  border-radius: 100px !important;
  font-weight: 600 !important;
  box-shadow: 0 4px 20px var(--glow-rose);
}
.nav-cta:hover { transform: translateY(-2px) !important; box-shadow: 0 8px 28px var(--glow-rose) !important; color: white !important; }

/* Mobile menu overlay */
.mobile-menu {
  position: fixed; inset: 0;
  background: rgba(250,248,245,0.97);
  backdrop-filter: blur(40px);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.5s cubic-bezier(0.16,1,0.3,1);
  transform: scale(1.05);
  padding-bottom: calc(var(--bnav-h) + 10px);
}
.mobile-menu.active { opacity: 1; pointer-events: all; transform: scale(1); }
.mobile-menu a { font-family: var(--ff-display); font-size: 32px; font-weight: 500; color: var(--text-dark); text-decoration: none; transition: color 0.3s; }
.mobile-menu a:hover { color: var(--rose-gold); }
.mobile-menu-close {
  position: absolute; top: 24px; right: 24px;
  width: 44px; height: 44px;
  background: rgba(201,149,108,0.12);
  border: none; border-radius: 50%;
  cursor: pointer; font-size: 18px; color: var(--rose-gold);
  display: flex; align-items: center; justify-content: center;
}

/* ── Bottom Navigation ──────────────────────────────────────── */
.bottom-nav {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: rgba(255, 252, 248, 0.97);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-top: 1px solid rgba(201, 149, 108, 0.22);
  box-shadow: 0 -4px 20px rgba(184, 130, 74, 0.10);
  z-index: 9980;
  /* NO height here — let content define it */
}

.bottom-nav-inner {
  display: flex;
  align-items: stretch;
  height: 50px;
  padding: 0 6px;
  padding-bottom: env(safe-area-inset-bottom);
  /* remove justify-content: space-around */
}

.bottom-nav-item {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  text-decoration: none;
  color: var(--text-light);
  border-radius: 14px;
  margin: 5px 2px;
  padding: 5px 2px;
  position: relative;
  -webkit-tap-highlight-color: transparent;
  transition: color 0.2s, background 0.2s;
  overflow: hidden;
}

.bottom-nav-item i {
  font-size: clamp(20px, 4.5vw, 23px);
  line-height: 1;
  display: block;
  flex-shrink: 0;
}

.bottom-nav-item span {
  font-size: clamp(8px, 2.2vw, 10px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
  display: block;
}

.bottom-nav-item:not(.nav-book):hover,
.bottom-nav-item:not(.nav-book).active {
  color: var(--rose-gold);
  background: rgba(201, 149, 108, 0.09);
}

.bottom-nav-item:not(.nav-book).active::after {
  content: '';
  position: absolute;
  bottom: 3px; left: 50%;
  transform: translateX(-50%);
  width: clamp(14px, 3.5vw, 20px);
  height: 3px;
  background: linear-gradient(90deg, var(--rose-gold), var(--copper));
  border-radius: 2px;
}

.bottom-nav-item.nav-book {
  flex: 0 0 clamp(60px, 18vw, 84px);
  margin: 5px clamp(3px, 1.5vw, 10px);
  border-radius: 18px;
  background: linear-gradient(145deg, #c9956c, #b8824a);
  color: #fff;
  box-shadow: 0 4px 16px rgba(201, 149, 108, 0.42);
  transition: box-shadow 0.22s, transform 0.22s;
}

.bottom-nav-item.nav-book i,
.bottom-nav-item.nav-book span { color: #fff; }

.bottom-nav-item.nav-book i {
  font-size: clamp(16px, 4vw, 19px);
}

.bottom-nav-item.nav-book:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 22px rgba(201, 149, 108, 0.52);
}

/* Show on mobile/tablet */
@media (max-width: 991.98px) {
  .bottom-nav { display: block; }
}

@media (min-width: 992px) {
  .bottom-nav { display: none !important; }
}



/* FABs */
.fab-stack {
  position: fixed; right: 24px; bottom: 100px;
  display: flex; flex-direction: column; gap: 12px; align-items: center;
  z-index: 490;
  opacity: 0; pointer-events: none; transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.fab-stack.visible { opacity: 1; pointer-events: all; transform: translateY(0); }

.fab-btn {
  width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; text-decoration: none; border: none; cursor: pointer;
  position: relative;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.fab-call { background: linear-gradient(145deg,#c9956c,#b8824a); color: white; box-shadow: 0 4px 20px rgba(201,149,108,0.5); }
.fab-wa   { background: linear-gradient(145deg,#25d366,#128c7e); color: white; box-shadow: 0 4px 20px rgba(37,211,102,0.45); }
.fab-btn:hover { transform: scale(1.12); color: white; }

.fab-tooltip {
  position: absolute; right: 60px; top: 50%; transform: translateY(-50%);
  background: rgba(44,33,24,0.88); color: #fff;
  font-size: 11px; font-weight: 600; padding: 5px 10px; border-radius: 8px;
  white-space: nowrap; opacity: 0; pointer-events: none;
  transition: opacity 0.18s ease;
}
.fab-btn:hover .fab-tooltip { opacity: 1; }

/* Scroll to top */
.scroll-top {
  position: fixed; right: 24px; bottom: 36px;
  width: 50px; height: 50px;
  background: linear-gradient(135deg,var(--rose-gold),var(--copper));
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 18px; cursor: pointer; border: none;
  box-shadow: 0 8px 28px rgba(201,149,108,0.35);
  transition: opacity 0.4s ease, transform 0.4s ease, box-shadow 0.3s ease;
  opacity: 0; transform: translateY(20px); z-index: 500;
}
.scroll-top.visible { opacity: 1; transform: translateY(0); }
.scroll-top:hover { transform: translateY(-4px); box-shadow: 0 14px 40px rgba(201,149,108,0.45); }


/* ========================================
   GLASS CARD (shared)
   ======================================== */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 28px;
  box-shadow: var(--glass-shadow);
  transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
}
.glass-card:hover { transform: translateY(-8px); box-shadow: 0 32px 80px rgba(184,130,74,.14); border-color: rgba(201,149,108,.35); }


/* ========================================
   ICON COLOUR HELPERS
   ======================================== */
.icon-teal  { background: linear-gradient(135deg,rgba(125,191,191,.3),rgba(74,155,155,.15)); color: var(--teal); }
.icon-rose  { background: linear-gradient(135deg,rgba(242,196,176,.5),rgba(201,149,108,.2)); color: var(--copper); }
.icon-peach { background: linear-gradient(135deg,rgba(247,221,208,.6),rgba(201,149,108,.15)); color: var(--rose-gold); }
.icon-green { background: linear-gradient(135deg,rgba(37,211,102,.2),rgba(18,140,126,.1)); color: #25d366; }
.icon-gold  { background: linear-gradient(135deg,rgba(184,130,74,.25),rgba(201,149,108,.15)); color: var(--copper); }


/* ========================================
   HERO BADGE (shared)
   ======================================== */
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,149,108,.1);
  border: 1px solid rgba(201,149,108,.25);
  border-radius: 100px;
  padding: 8px 20px; margin-bottom: 28px;
  font-size: 11px; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: var(--copper);
}
.hero-badge-dot {
  width: 6px; height: 6px;
  background: var(--teal);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
  flex-shrink: 0;
}


/* ========================================
   HERO RING / ORB SYSTEM (shared)
   ======================================== */
.hero-visual-wrap { position: relative; display: flex; align-items: center; justify-content: center; min-height: 440px; }

/* Generic ring system used across pages */
.hero-ring-system,
.services-hero-ring-system { position: relative; }

.h-ring,
.services-h-ring {
  position: absolute; inset: 0; border-radius: 50%;
  border: 1.5px solid rgba(201,149,108,.2);
  animation: ringRot 20s linear infinite;
}
.h-ring:nth-child(2),
.services-h-ring:nth-child(2) { inset: 28px; border-color: rgba(74,155,155,.2); animation-duration: 15s; animation-direction: reverse; }
.h-ring:nth-child(3),
.services-h-ring:nth-child(3) { inset: 58px; border-color: rgba(201,149,108,.12); animation-duration: 26s; }

.h-core,
.services-h-core {
  position: absolute; inset: 80px;
  background: radial-gradient(circle at 40% 40%,rgba(247,221,208,.9),rgba(201,149,108,.3) 60%,transparent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  animation: corePulse 4s ease-in-out infinite;
  border: 1px solid rgba(201,149,108,.3);
  box-shadow: 0 0 80px rgba(201,149,108,.22), inset 0 0 60px rgba(255,255,255,.5);
}

/* Stat rows on page heroes */
.hero-stat-row {
  display: flex; gap: 40px;
  margin-top: 48px; padding-top: 36px;
  border-top: 1px solid rgba(201,149,108,.14);
  flex-wrap: wrap;
}
.h-stat-num {
  font-family: var(--ff-display);
  font-size: 44px; font-weight: 600; line-height: 1;
  background: linear-gradient(135deg,var(--rose-gold),var(--copper));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.h-stat-lbl { font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--text-light); margin-top: 5px; }

/* Float badges on hero visuals */
.float-badge {
  position: absolute;
  background: rgba(255,252,248,.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(201,149,108,.2);
  border-radius: 18px; padding: 14px 18px;
  box-shadow: 0 12px 40px rgba(184,130,74,.1);
  animation: floatCard 6s ease-in-out infinite;
}
.float-badge-icon {
  width: 28px; height: 28px;
  background: linear-gradient(135deg,var(--pale-coral),var(--rose-gold));
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 12px; margin-bottom: 7px;
}
.float-badge-label { font-size: 9px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--text-light); }
.float-badge-value { font-family: var(--ff-display); font-size: 20px; font-weight: 600; color: var(--text-dark); line-height: 1.1; }


/* ========================================
   HOME PAGE
   ======================================== */

/* ── Hero ── */
.hero { min-height: 100vh; display: flex; align-items: center; padding-top: 120px; position: relative; overflow: hidden; }
.hero-content { position: relative; z-index: 2; padding: 60px 0; }

.hero-trust { display: flex; align-items: center; gap: 16px; margin-bottom: 44px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 600; color: var(--text-mid); letter-spacing: .04em; }
.trust-item i { color: var(--teal); font-size: 14px; }
.trust-divider { width: 4px; height: 4px; background: var(--pale-coral); border-radius: 50%; }

.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-visual { position: relative; display: flex; align-items: center; justify-content: center; min-height: 500px; }
.hero-orb-container { position: relative; width: 420px; height: 420px; }
.hero-orb-ring { position: absolute; inset: 0; border-radius: 50%; border: 1.5px solid rgba(201,149,108,.2); animation: ringRotate 20s linear infinite; }
.hero-orb-ring:nth-child(2) { inset: 30px; border-color: rgba(74,155,155,.2); animation: ringRotate 15s linear infinite reverse; }
.hero-orb-ring:nth-child(3) { inset: 60px; border-color: rgba(201,149,108,.15); animation: ringRotate 25s linear infinite; }
.hero-orb-core { position: absolute; inset: 80px; background: radial-gradient(circle at 40% 40%,rgba(247,221,208,.9),rgba(201,149,108,.3) 60%,transparent); border-radius: 50%; display: flex; align-items: center; justify-content: center; animation: corePulse 4s ease-in-out infinite; backdrop-filter: blur(8px); border: 1px solid rgba(201,149,108,.3); box-shadow: 0 0 80px rgba(201,149,108,.25),inset 0 0 60px rgba(255,255,255,.5); }
.hero-float-card { position: absolute; background: rgba(255,252,248,.85); backdrop-filter: blur(20px); border: 1px solid rgba(201,149,108,.2); border-radius: 20px; padding: 16px 20px; box-shadow: 0 12px 40px rgba(184,130,74,.1); animation: cardFloat 6s ease-in-out infinite; }
.float-card-label { font-size: 9px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--text-light); margin-bottom: 4px; }
.float-card-value { font-family: var(--ff-display); font-size: 24px; font-weight: 600; color: var(--text-dark); }
.float-card-unit { font-size: 11px; color: var(--rose-gold); font-weight: 600; }
.float-card-icon { width: 32px; height: 32px; background: linear-gradient(135deg,var(--pale-coral),var(--rose-gold)); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: white; font-size: 14px; margin-bottom: 8px; }

.hero-stats { display: flex; gap: 32px; margin-top: 60px; padding-top: 40px; border-top: 1px solid rgba(201,149,108,.15); flex-wrap: wrap; }
.stat-number { font-family: var(--ff-display); font-size: 42px; font-weight: 600; line-height: 1; background: linear-gradient(135deg,var(--rose-gold),var(--copper)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.stat-label { font-size: 11px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--text-light); margin-top: 4px; }

/* ── About section (index) ── */
.about-section { background: linear-gradient(160deg,var(--warm-white) 60%,rgba(242,196,176,.15)); }
.about-main-card { border-radius: 32px; overflow: hidden; background: linear-gradient(135deg,rgba(247,221,208,.6),rgba(201,149,108,.2)); aspect-ratio: 4/5; display: flex; align-items: center; justify-content: center; position: relative; border: 1px solid rgba(201,149,108,.2); }
.about-organ-canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.about-overlay-card { position: absolute; bottom: -20px; right: -20px; background: rgba(255,252,248,.92); backdrop-filter: blur(20px); border: 1px solid rgba(201,149,108,.2); border-radius: 24px; padding: 24px; width: 200px; box-shadow: 0 20px 60px rgba(184,130,74,.12); }
.about-overlay-card2 { position: absolute; top: 30px; left: -25px; background: rgba(255,252,248,.92); backdrop-filter: blur(20px); border: 1px solid rgba(201,149,108,.2); border-radius: 20px; padding: 18px 20px; box-shadow: 0 20px 60px rgba(184,130,74,.12); }
.stat-circle { width: 72px; height: 72px; border-radius: 50%; background: linear-gradient(135deg,var(--rose-gold),var(--copper)); display: flex; flex-direction: column; align-items: center; justify-content: center; color: white; margin-bottom: 10px; }
.stat-circle-num { font-family: var(--ff-display); font-size: 22px; font-weight: 600; line-height: 1; }
.stat-circle-sub { font-size: 8px; font-weight: 700; letter-spacing: .05em; }
.about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 40px; }
.value-item { padding: 20px; background: rgba(247,221,208,.3); border-radius: 20px; border: 1px solid rgba(201,149,108,.15); transition: all .3s ease; }
.value-item:hover { background: rgba(201,149,108,.1); transform: translateY(-3px); }
.value-icon { font-size: 22px; color: var(--teal); margin-bottom: 10px; }
.value-title { font-family: var(--ff-display); font-size: 18px; font-weight: 600; margin-bottom: 6px; }
.value-desc { font-size: 12px; color: var(--text-mid); line-height: 1.6; }

/* ── Services bento (index) ── */
.services-section { background: linear-gradient(180deg,var(--warm-white),rgba(125,191,191,.06) 50%,var(--warm-white)); }
.bento-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.bento-item { padding: 28px 24px; border-radius: 28px; background: rgba(255,252,248,.7); backdrop-filter: blur(16px); border: 1px solid rgba(201,149,108,.15); position: relative; overflow: hidden; transition: all .45s cubic-bezier(.16,1,.3,1); cursor: default; opacity: 1; }
.bento-item::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg,transparent 60%,rgba(201,149,108,.08)); opacity: 0; transition: opacity .4s; }
.bento-item:hover::before { opacity: 1; }
.bento-item:hover { transform: translateY(-10px) scale(1.02); box-shadow: 0 24px 72px rgba(184,130,74,.18); border-color: rgba(201,149,108,.35); background: rgba(255,252,248,.95); }
.bento-item.span-2 { grid-column: span 2; }
.bento-item.span-full { grid-column: span 4; }
.bento-item.featured { background: linear-gradient(135deg,rgba(247,221,208,.6),rgba(201,149,108,.15)); border-color: rgba(201,149,108,.25); }
.bento-icon { width: 52px; height: 52px; border-radius: 18px; display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 18px; transition: transform .4s; position: relative; z-index: 1; }
.bento-item:hover .bento-icon { transform: rotate(10deg) scale(1.1); }
.bento-title { font-family: var(--ff-display); font-size: 21px; font-weight: 600; margin-bottom: 10px; color: var(--text-dark); position: relative; z-index: 1; }
.bento-desc { font-size: 13px; line-height: 1.7; color: var(--text-mid); position: relative; z-index: 1; }
.bento-tag { position: absolute; top: 18px; right: 18px; background: rgba(201,149,108,.12); border: 1px solid rgba(201,149,108,.2); border-radius: 100px; padding: 4px 12px; font-size: 10px; font-weight: 700; letter-spacing: .06em; color: var(--rose-gold); }
.bento-bg-number, .bento-num { position: absolute; bottom: -10px; right: 10px; font-family: var(--ff-display); font-size: 100px; font-weight: 700; color: rgba(201,149,108,.04); line-height: 1; user-select: none; transition: color .4s; }
.bento-item:hover .bento-bg-number,
.bento-item:hover .bento-num { color: rgba(201,149,108,.1); }
.bento-features { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 14px; position: relative; z-index: 1; }
.bento-feature { padding: 4px 10px; background: rgba(201,149,108,.08); border: 1px solid rgba(201,149,108,.15); border-radius: 100px; font-size: 10px; font-weight: 600; color: var(--text-mid); }

/* ── Specialities ── */
.spec-section,
.spec-section-page { background: linear-gradient(135deg,rgba(247,221,208,.15),var(--warm-white) 50%,rgba(125,191,191,.08)); }
.spec-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.spec-card { padding: 32px 20px; text-align: center; border-radius: 28px; background: rgba(255,252,248,.8); backdrop-filter: blur(16px); border: 1px solid rgba(201,149,108,.12); transition: all .45s cubic-bezier(.16,1,.3,1); position: relative; overflow: hidden; animation: specFloat 6s ease-in-out infinite; opacity: 1; }
.spec-card:nth-child(odd) { animation-delay: -3s; }
.spec-card:hover { transform: translateY(-12px) scale(1.04); box-shadow: 0 28px 80px rgba(184,130,74,.16); background: rgba(255,252,248,.98); animation-play-state: paused; }
.spec-orbit { width: 86px; height: 86px; margin: 0 auto 18px; position: relative; }
.spec-orbit-ring { position: absolute; inset: 0; border-radius: 50%; border: 1.5px solid rgba(201,149,108,.2); animation: ringRotate 12s linear infinite; }
.spec-orbit-core { position: absolute; inset: 12px; border-radius: 50%; background: linear-gradient(135deg,rgba(247,221,208,.8),rgba(201,149,108,.3)); display: flex; align-items: center; justify-content: center; font-size: 26px; box-shadow: 0 4px 24px rgba(201,149,108,.2); }
.spec-name { font-family: var(--ff-display); font-size: 19px; font-weight: 600; margin-bottom: 6px; color: var(--text-dark); }
.spec-desc { font-size: 12px; color: var(--text-light); line-height: 1.65; }
.spec-glow { position: absolute; width: 120px; height: 120px; background: radial-gradient(circle,rgba(201,149,108,.12),transparent 70%); border-radius: 50%; top: -40px; left: 50%; transform: translateX(-50%); pointer-events: none; }
.doc-card-visual {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  padding: 0 !important;
  background: none !important;
}

.doc-card-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  opacity: 1 !important;
  filter: none !important;
}

.doc-card-visual-bg {
  display: none !important;
}

.doc-card-visual-canvas {
  display: none !important;
}
/* ── Facilities (index) ── */
.info-card { padding: 28px; border-radius: 22px; background: rgba(255,252,248,.8); backdrop-filter: blur(16px); border: 1px solid rgba(201,149,108,.15); margin-bottom: 18px; transition: all .3s ease; }
.info-card:hover { transform: translateX(4px); border-color: rgba(201,149,108,.3); }
.info-icon { width: 54px; height: 54px; border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 16px; }
.info-title { font-weight: 700; font-size: 15px; color: var(--text-dark); margin-bottom: 8px; }
.info-text { font-size: 13px; color: var(--text-mid); line-height: 1.7; }

/* ── Testimonials ── */
.testimonials-section { background: linear-gradient(180deg,var(--warm-white),rgba(247,221,208,.2) 50%,var(--warm-white)); }
.testi-slider-wrapper { overflow: hidden; position: relative; border-radius: 32px; }
.testi-track { display: flex; gap: 24px; animation: testiScroll 40s linear infinite; width: max-content; }
.testi-track:hover { animation-play-state: paused; }
.testi-card { width: 340px; flex-shrink: 0; padding: 32px; border-radius: 28px; background: rgba(255,252,248,.9); backdrop-filter: blur(20px); border: 1px solid rgba(201,149,108,.15); box-shadow: 0 16px 56px rgba(184,130,74,.08); transition: all .4s ease; }
.testi-card:hover { box-shadow: 0 24px 80px rgba(184,130,74,.16); border-color: rgba(201,149,108,.3); }
.testi-stars { color: var(--rose-gold); margin-bottom: 16px; font-size: 13px; letter-spacing: 2px; }
.testi-quote { font-family: var(--ff-display); font-size: 16px; line-height: 1.7; color: var(--text-dark); font-weight: 400; margin-bottom: 22px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 46px; height: 46px; border-radius: 50%; background: linear-gradient(135deg,var(--pale-coral),var(--rose-gold)); display: flex; align-items: center; justify-content: center; color: white; font-family: var(--ff-display); font-size: 19px; font-weight: 600; border: 2px solid rgba(201,149,108,.25); flex-shrink: 0; }
.testi-name { font-weight: 700; font-size: 14px; color: var(--text-dark); }
.testi-dept { font-size: 11px; color: var(--text-light); margin-top: 2px; }
.testi-fade-l { position: absolute; left: 0; top: 0; bottom: 0; width: 80px; z-index: 2; background: linear-gradient(90deg,var(--warm-white),transparent); pointer-events: none; }
.testi-fade-r { position: absolute; right: 0; top: 0; bottom: 0; width: 80px; z-index: 2; background: linear-gradient(270deg,var(--warm-white),transparent); pointer-events: none; }

/* ── FAQ ── */
.faq-section { background: linear-gradient(160deg,rgba(125,191,191,.06),var(--warm-white) 50%,rgba(242,196,176,.1)); }
.faq-item { margin-bottom: 12px; border-radius: 18px; background: rgba(255,252,248,.8); backdrop-filter: blur(16px); border: 1px solid rgba(201,149,108,.12); overflow: hidden; transition: all .3s ease; }
.faq-item:hover { border-color: rgba(201,149,108,.25); }
.faq-item.active { border-color: rgba(201,149,108,.35); box-shadow: 0 12px 40px rgba(184,130,74,.1); }
.faq-trigger { width: 100%; background: none; border: none; padding: 20px 24px; display: flex; align-items: center; justify-content: space-between; cursor: pointer; text-align: left; gap: 14px; }
.faq-question { font-family: var(--ff-display); font-size: 18px; font-weight: 500; color: var(--text-dark); }
.faq-icon { width: 34px; height: 34px; flex-shrink: 0; background: rgba(201,149,108,.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: all .4s ease; border: 1px solid rgba(201,149,108,.15); }
.faq-icon i { color: var(--rose-gold); font-size: 13px; transition: transform .4s ease; }
.faq-item.active .faq-icon { background: linear-gradient(135deg,var(--rose-gold),var(--copper)); border-color: transparent; }
.faq-item.active .faq-icon i { color: white; transform: rotate(45deg); }
.faq-body { max-height: 0; overflow: hidden; transition: max-height .5s cubic-bezier(.16,1,.3,1), padding .4s ease; padding: 0 24px; }
.faq-item.active .faq-body { max-height: 300px; padding: 0 24px 20px; }
.faq-answer { font-size: 14px; color: var(--text-mid); line-height: 1.8; }

/* ── Appointment section ── */
.appt-section { background: linear-gradient(135deg,rgba(242,196,176,.15),var(--warm-white) 60%,rgba(125,191,191,.1)); }
.appt-form-wrap { padding: 48px; border-radius: 36px; background: rgba(255,252,248,.85); backdrop-filter: blur(24px); border: 1px solid rgba(201,149,108,.2); box-shadow: 0 24px 80px rgba(184,130,74,.1); }

/* ── Form elements ── */
.form-group-custom { margin-bottom: 20px; position: relative; }
.form-label-custom,
.appt-form-label { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--rose-gold); margin-bottom: 8px; display: block; }
.form-control-custom,
.appt-form-input {
  width: 100%; background: rgba(255,252,248,.9);
  border: 1.5px solid rgba(201,149,108,.2); border-radius: 14px;
  padding: 14px 16px; font-family: var(--ff-body); font-size: 14px; color: var(--text-dark);
  transition: all .3s ease; outline: none; -webkit-appearance: none; appearance: none;
}
.form-control-custom:focus,
.appt-form-input:focus { border-color: var(--rose-gold); box-shadow: 0 0 0 4px rgba(201,149,108,.1); background: rgba(255,252,248,1); }
.form-control-custom::placeholder,
.appt-form-input::placeholder { color: var(--text-light); }

/* ── Map section ── */
.map-section { background: linear-gradient(180deg,var(--warm-white),rgba(247,221,208,.15)); }
.map-container { border-radius: 28px 28px 0 0; overflow: hidden; border: 1px solid rgba(201,149,108,.2); border-bottom: none; height: 340px; }
.map-container iframe { width: 100%; height: 100%; border: none; }
.map-card-label { padding: 18px 22px; background: rgba(255,252,248,.9); backdrop-filter: blur(16px); border: 1px solid rgba(201,149,108,.15); border-top: none; border-radius: 0 0 28px 28px; display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.map-pin { width: 36px; height: 36px; flex-shrink: 0; background: linear-gradient(135deg,var(--rose-gold),var(--copper)); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: white; font-size: 14px; }
.map-location-name { font-weight: 700; font-size: 14px; color: var(--text-dark); }
.map-location-addr { font-size: 12px; color: var(--text-light); }

/* ── Particles ── */
.particles-container { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.particle { position: absolute; width: 4px; height: 4px; border-radius: 50%; background: rgba(201,149,108,.3); animation: particleDrift var(--dur,20s) ease-in-out infinite; animation-delay: var(--delay,0s); }

/* ── Toast notification ── */
.toast-notify {
  position: fixed; bottom: 32px; left: 50%; transform: translateX(-50%) translateY(80px);
  background: linear-gradient(135deg,#25d366,#128c7e); color: white;
  padding: 16px 28px; border-radius: 100px; font-size: 14px; font-weight: 600;
  z-index: 10000; opacity: 0; transition: all .5s cubic-bezier(.16,1,.3,1);
  display: flex; align-items: center; gap: 10px;
  box-shadow: 0 12px 40px rgba(37,211,102,.35); white-space: nowrap;
}
.toast-notify.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ── Index hero mobile fixes ── */
@media (max-width: 767px) {
  .hero .hero-btns {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    flex-direction: unset !important;
    align-items: unset !important;
    gap: 8px !important;
    width: 100% !important;
  }
  .hero .hero-btns a.btn-primary-custom:not(.btn-whatsapp),
  .hero .hero-btns a.btn-glass {
    width: 100% !important; padding: 11px 8px !important; font-size: 11px !important;
    gap: 5px !important; border-radius: 12px !important; justify-content: center !important;
    flex-direction: row !important;
  }
  .hero .hero-btns a.btn-whatsapp {
    grid-column: 1 / -1 !important; width: 100% !important; padding: 12px !important;
    font-size: 13px !important; border-radius: 12px !important; justify-content: center !important;
  }
  .hero .hero-stats {
    display: grid !important; grid-template-columns: 1fr 1fr !important;
    flex-direction: unset !important; gap: 14px 10px !important;
    margin-top: 24px !important; padding-top: 20px !important;
    padding-left: 0 !important; overflow: visible !important;
  }
  .hero .hero-stats .stat-item { min-width: 0 !important; width: 100% !important; }
  .hero .stat-number { font-size: 26px !important; }
  .hero .stat-label { font-size: 10px !important; }
}


/* ========================================
   ABOUT PAGE
   ======================================== */
.about-hero {
  min-height: 72vh; display: flex; align-items: center;
  padding-top: 130px; padding-bottom: 80px;
  position: relative; overflow: hidden;
  background: linear-gradient(160deg,var(--warm-white) 55%,rgba(242,196,176,.18));
  isolation: isolate;
}
.about-hero .container { position: relative; z-index: 2; }

.about-hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,149,108,0.1); border: 1px solid rgba(201,149,108,0.25);
  border-radius: 100px; padding: 8px 20px; margin-bottom: 28px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--copper);
}
.about-hero-badge-dot { width: 6px; height: 6px; background: var(--teal); border-radius: 50%; animation: pulse-dot 2s ease-in-out infinite; flex-shrink: 0; }

.about-hero-headline { font-family: var(--ff-display); font-size: clamp(46px,7vw,96px); font-weight: 300; line-height: 1.0; letter-spacing: -.025em; color: var(--text-dark); }
.about-hero-headline em { font-style: italic; font-weight: 500; background: linear-gradient(135deg,var(--rose-gold),var(--copper),var(--teal)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

.about-hero-stat-row { display: flex; gap: 36px; margin-top: 48px; padding-top: 36px; border-top: 1px solid rgba(201,149,108,.14); flex-wrap: wrap; }
.about-hero-stat-num { font-family: var(--ff-display); font-size: 44px; font-weight: 600; line-height: 1; background: linear-gradient(135deg,var(--rose-gold),var(--copper)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.about-hero-stat-lbl { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-light); margin-top: 5px; }

/* About hero visual orb */
.about-hero-visual-side { position: relative; width: 360px; height: 360px; display: flex; align-items: center; justify-content: center; }
.about-hero-visual-orb { position: relative; width: 280px; height: 280px; }
.about-h-ring { position: absolute; inset: 0; border-radius: 50%; border: 1.5px solid rgba(201,149,108,.2); animation: ringRot 20s linear infinite; }
.about-h-ring:nth-child(2) { inset: 28px; border-color: rgba(74,155,155,.2); animation-duration: 15s; animation-direction: reverse; }
.about-h-ring:nth-child(3) { inset: 58px; border-color: rgba(201,149,108,.12); animation-duration: 26s; }
.about-h-core { position: absolute; inset: 78px; background: radial-gradient(circle at 40% 40%,rgba(247,221,208,.9),rgba(201,149,108,.3) 60%,transparent); border-radius: 50%; display: flex; align-items: center; justify-content: center; animation: corePulse 4s ease-in-out infinite; border: 1px solid rgba(201,149,108,.3); box-shadow: 0 0 80px rgba(201,149,108,.22),inset 0 0 60px rgba(255,255,255,.5); }
.about-float-badge { position: absolute; background: rgba(255,252,248,.92); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border: 1px solid rgba(201,149,108,.2); border-radius: 18px; padding: 14px 18px; box-shadow: 0 12px 40px rgba(184,130,74,.1); animation: floatCard 6s ease-in-out infinite; z-index: 2; }
.about-float-badge-icon { width: 28px; height: 28px; background: linear-gradient(135deg,var(--pale-coral),var(--rose-gold)); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: white; font-size: 12px; margin-bottom: 7px; }
.about-float-badge-label { font-size: 9px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--text-light); }
.about-float-badge-value { font-family: var(--ff-display); font-size: 20px; font-weight: 600; color: var(--text-dark); line-height: 1.1; }

/* Vision & Mission */
.aboutpg-vm-section { padding: var(--section-spacing) 0; position: relative; overflow: hidden; background: linear-gradient(135deg,rgba(247,221,208,.15),var(--warm-white) 60%,rgba(125,191,191,.08)); }
.aboutpg-vm-bg-shape { position: absolute; border-radius: 50%; pointer-events: none; }
.aboutpg-vm-bg-shape-1 { width: 500px; height: 500px; background: radial-gradient(circle,rgba(201,149,108,.08),transparent 70%); top: -150px; right: -100px; }
.aboutpg-vm-bg-shape-2 { width: 400px; height: 400px; background: radial-gradient(circle,rgba(125,191,191,.08),transparent 70%); bottom: -100px; left: -80px; }
.aboutpg-vm-inner { position: relative; z-index: 1; }
.aboutpg-vm-header { text-align: center; margin-bottom: 60px; }
.aboutpg-mx-auto { margin-left: auto; margin-right: auto; }
.aboutpg-mt-3 { margin-top: 16px; }
.aboutpg-vm-dual { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: start; }
.aboutpg-vm-card { border-radius: 28px; overflow: hidden; background: rgba(255,252,248,.88); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border: 1px solid rgba(201,149,108,.16); box-shadow: 0 20px 64px rgba(184,130,74,.09); transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), box-shadow 0.4s; }
.aboutpg-vm-card:hover { transform: translateY(-6px); box-shadow: 0 32px 80px rgba(184,130,74,.15); }
.aboutpg-vm-card-header { padding: 32px 32px 24px; position: relative; overflow: hidden; }
.aboutpg-vm-card-header-vision { background: linear-gradient(135deg,rgba(242,196,176,.5),rgba(201,149,108,.2)); }
.aboutpg-vm-card-header-mission { background: linear-gradient(135deg,rgba(125,191,191,.3),rgba(74,155,155,.15)); }
.aboutpg-vm-card-eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 10px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--copper); margin-bottom: 12px; }
.aboutpg-vm-card-eyebrow-dot { width: 6px; height: 6px; background: var(--teal); border-radius: 50%; animation: pulse-dot 2s ease-in-out infinite; flex-shrink: 0; }
.aboutpg-vm-card-title { font-family: var(--ff-display); font-size: clamp(20px,2.5vw,30px); font-weight: 500; color: var(--text-dark); line-height: 1.2; margin-bottom: 0; }
.aboutpg-vm-card-icon { position: absolute; top: 20px; right: 24px; font-size: 36px; opacity: .45; }
.aboutpg-vm-card-body { padding: 28px 32px 32px; }
.aboutpg-vm-card-text { font-size: 14px; line-height: 1.85; color: var(--text-mid); margin-bottom: 24px; }
.aboutpg-vm-pillars { display: flex; flex-direction: column; gap: 16px; }
.aboutpg-vm-pillar { display: flex; align-items: flex-start; gap: 14px; padding: 14px 16px; background: rgba(247,221,208,.3); border: 1px solid rgba(201,149,108,.12); border-radius: 14px; transition: background .3s, border-color .3s; }
.aboutpg-vm-pillar:hover { background: rgba(201,149,108,.1); border-color: rgba(201,149,108,.25); }
.aboutpg-vm-pillar-dot { width: 36px; height: 36px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 15px; flex-shrink: 0; }
.aboutpg-vm-pillar-dot-vision { background: linear-gradient(135deg,rgba(242,196,176,.6),rgba(201,149,108,.25)); color: var(--copper); }
.aboutpg-vm-pillar-dot-mission { background: linear-gradient(135deg,rgba(125,191,191,.4),rgba(74,155,155,.2)); color: var(--teal); }
.aboutpg-vm-pillar-text { flex: 1; min-width: 0; }
.aboutpg-vm-pillar-label { font-size: 12px; font-weight: 700; color: var(--text-dark); margin-bottom: 3px; letter-spacing: .03em; }
.aboutpg-vm-pillar-value { font-size: 12px; color: var(--text-light); line-height: 1.55; }

/* Story section */
.story-section { background: linear-gradient(160deg,var(--warm-white) 60%,rgba(242,196,176,.1)); }
.timeline { position: relative; padding-left: 0; }
.timeline::before { content: ''; position: absolute; left: 20px; top: 0; bottom: 0; width: 2px; background: linear-gradient(180deg,var(--rose-gold),var(--teal),var(--rose-gold)); opacity: .3; border-radius: 2px; }
.timeline-item { position: relative; padding-left: 60px; margin-bottom: 48px; }
.timeline-item:last-child { margin-bottom: 0; }
.timeline-dot { position: absolute; left: 10px; top: 4px; width: 20px; height: 20px; border-radius: 50%; background: linear-gradient(135deg,var(--rose-gold),var(--copper)); border: 3px solid var(--warm-white); box-shadow: 0 0 0 2px rgba(201,149,108,.35); z-index: 1; }
.timeline-year { font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--rose-gold); margin-bottom: 8px; }
.timeline-heading { font-family: var(--ff-display); font-size: 22px; font-weight: 600; color: var(--text-dark); margin-bottom: 8px; }
.timeline-text { font-size: 13px; line-height: 1.8; color: var(--text-mid); }
.story-image-stack { position: relative; height: 560px; }
.story-img-main { position: absolute; inset: 0; border-radius: 32px; background: linear-gradient(145deg,rgba(247,221,208,.8),rgba(201,149,108,.3)); display: flex; align-items: center; justify-content: center; border: 1px solid rgba(201,149,108,.2); overflow: hidden; }
.story-img-main canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.story-img-main-inner { position: relative; z-index: 2; text-align: center; padding: 32px; }
.story-card-overlay { position: absolute; bottom: 28px; right: -20px; background: rgba(255,252,248,.95); backdrop-filter: blur(20px); border: 1px solid rgba(201,149,108,.18); border-radius: 22px; padding: 20px 24px; box-shadow: 0 20px 60px rgba(184,130,74,.12); width: 200px; }
.story-card-overlay2 { position: absolute; top: 40px; left: -20px; background: rgba(255,252,248,.95); backdrop-filter: blur(20px); border: 1px solid rgba(201,149,108,.18); border-radius: 18px; padding: 16px 18px; box-shadow: 0 16px 48px rgba(184,130,74,.1); }

/* Founder section */
.founder-section { background: linear-gradient(135deg,rgba(125,191,191,.06),var(--warm-white) 60%,rgba(247,221,208,.12)); }
.founder-card { border-radius: 36px; overflow: hidden; background: rgba(255,252,248,.8); border: 1px solid rgba(201,149,108,.15); box-shadow: 0 24px 80px rgba(184,130,74,.09); }
.founder-visual { width: 100%; aspect-ratio: 1; background: linear-gradient(145deg,rgba(247,221,208,.9),rgba(201,149,108,.3)); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.founder-canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.founder-avatar { position: relative; z-index: 2; width: 140px; height: 140px; border-radius: 50%; background: linear-gradient(135deg,var(--pale-coral),var(--rose-gold)); display: flex; align-items: center; justify-content: center; color: white; font-family: var(--ff-display); font-size: 56px; font-weight: 600; border: 4px solid rgba(255,255,255,.6); box-shadow: 0 12px 48px rgba(201,149,108,.4); }
.founder-body { padding: 40px; }
.founder-tag { display: inline-flex; align-items: center; gap: 6px; background: linear-gradient(135deg,rgba(201,149,108,.12),rgba(184,130,74,.06)); border: 1px solid rgba(201,149,108,.2); border-radius: 100px; padding: 6px 16px; font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--copper); margin-bottom: 16px; }
.founder-name { font-family: var(--ff-display); font-size: clamp(28px,3vw,44px); font-weight: 500; color: var(--text-dark); margin-bottom: 6px; }
.founder-title { font-size: 13px; color: var(--rose-gold); font-weight: 600; letter-spacing: .04em; margin-bottom: 22px; }
.founder-quote { font-family: var(--ff-display); font-size: 18px; font-style: italic; color: var(--text-mid); line-height: 1.8; margin-bottom: 22px; padding-left: 20px; border-left: 3px solid rgba(201,149,108,.4); }
.founder-bio { font-size: 13.5px; line-height: 1.85; color: var(--text-mid); margin-bottom: 26px; }
.founder-creds, .cred-wrap { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 26px; }
.cred-chip { padding: 7px 14px; background: rgba(247,221,208,.5); border: 1px solid rgba(201,149,108,.18); border-radius: 100px; font-size: 11px; font-weight: 600; color: var(--text-mid); }

/* Team section */
.team-section { background: linear-gradient(180deg,var(--warm-white),rgba(242,196,176,.1) 50%,var(--warm-white)); }
.team-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
.team-card { border-radius: 26px; background: rgba(255,252,248,.85); backdrop-filter: blur(16px); border: 1px solid rgba(201,149,108,.13); overflow: hidden; transition: all .45s cubic-bezier(.16,1,.3,1); }
.team-card:hover { transform: translateY(-10px); box-shadow: 0 28px 72px rgba(184,130,74,.16); border-color: rgba(201,149,108,.3); }
.team-card-visual { aspect-ratio: 1; background: linear-gradient(145deg,rgba(247,221,208,.7),rgba(201,149,108,.25)); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.team-card-visual::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg,transparent 50%,rgba(44,33,24,.08)); }
.team-avatar { width: 80px; height: 80px; border-radius: 50%; background: linear-gradient(135deg,var(--pale-coral),var(--rose-gold)); display: flex; align-items: center; justify-content: center; color: white; font-family: var(--ff-display); font-size: 34px; font-weight: 600; border: 3px solid rgba(255,255,255,.5); box-shadow: 0 8px 32px rgba(201,149,108,.35); }
.team-card-body { padding: 20px; }
.team-name { font-family: var(--ff-display); font-size: 20px; font-weight: 600; color: var(--text-dark); margin-bottom: 4px; }
.team-spec { font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--rose-gold); margin-bottom: 10px; }
.team-exp { font-size: 12px; color: var(--text-light); display: flex; align-items: center; gap: 6px; }
.team-exp i { color: var(--teal); font-size: 11px; }

/* Values section */
.values-section { background: linear-gradient(135deg,rgba(247,221,208,.15),var(--warm-white) 50%,rgba(125,191,191,.07)); }
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.value-card { padding: 36px 28px; border-radius: 28px; background: rgba(255,252,248,.8); backdrop-filter: blur(16px); border: 1px solid rgba(201,149,108,.13); transition: all .4s cubic-bezier(.16,1,.3,1); position: relative; overflow: hidden; }
.value-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg,transparent 60%,rgba(201,149,108,.06)); opacity: 0; transition: opacity .4s; }
.value-card:hover::before { opacity: 1; }
.value-card:hover { transform: translateY(-8px); box-shadow: 0 28px 72px rgba(184,130,74,.14); border-color: rgba(201,149,108,.3); }
.value-icon-wrap { width: 60px; height: 60px; border-radius: 20px; display: flex; align-items: center; justify-content: center; font-size: 26px; margin-bottom: 22px; position: relative; z-index: 1; transition: transform .4s; }
.value-card:hover .value-icon-wrap { transform: rotate(8deg) scale(1.1); }
.vi-teal { background: linear-gradient(135deg,rgba(125,191,191,.3),rgba(74,155,155,.12)); color: var(--teal); }
.vi-rose { background: linear-gradient(135deg,rgba(242,196,176,.5),rgba(201,149,108,.2)); color: var(--copper); }
.vi-peach { background: linear-gradient(135deg,rgba(247,221,208,.6),rgba(201,149,108,.15)); color: var(--rose-gold); }
.value-title { font-family: var(--ff-display); font-size: 24px; font-weight: 600; color: var(--text-dark); margin-bottom: 12px; position: relative; z-index: 1; }
.value-desc { font-size: 13.5px; line-height: 1.8; color: var(--text-mid); position: relative; z-index: 1; }
.value-num { position: absolute; bottom: -8px; right: 12px; font-family: var(--ff-display); font-size: 96px; font-weight: 700; color: rgba(201,149,108,.04); line-height: 1; user-select: none; transition: color .4s; }
.value-card:hover .value-num { color: rgba(201,149,108,.09); }

/* Accreditations */
.accred-section { background: var(--warm-white); }
.accred-strip { display: flex; align-items: stretch; gap: 20px; flex-wrap: wrap; }
.accred-card { flex: 1; min-width: 180px; padding: 28px 24px; border-radius: 24px; background: rgba(255,252,248,.8); border: 1px solid rgba(201,149,108,.15); text-align: center; transition: all .35s; }
.accred-card:hover { transform: translateY(-6px); box-shadow: 0 20px 56px rgba(184,130,74,.13); border-color: rgba(201,149,108,.3); }
.accred-icon { font-size: 36px; margin-bottom: 14px; }
.accred-name { font-family: var(--ff-display); font-size: 20px; font-weight: 600; color: var(--text-dark); margin-bottom: 6px; }
.accred-desc { font-size: 12px; color: var(--text-light); line-height: 1.6; }

/* Milestones band (about, specialists) */
.milestones-band { background: linear-gradient(135deg,rgba(201,149,108,.08),rgba(247,221,208,.18),rgba(125,191,191,.07)); border-top: 1px solid rgba(201,149,108,.12); border-bottom: 1px solid rgba(201,149,108,.12); padding: 64px 0; }
.milestone-row { display: flex; }
.milestone-item { flex: 1; text-align: center; padding: 0 24px; position: relative; }
.milestone-item:not(:last-child)::after { content: ''; position: absolute; right: 0; top: 50%; transform: translateY(-50%); height: 60px; width: 1px; background: linear-gradient(180deg,transparent,rgba(201,149,108,.25),transparent); }
.milestone-num { font-family: var(--ff-display); font-size: clamp(36px,4vw,60px); font-weight: 600; line-height: 1; background: linear-gradient(135deg,var(--rose-gold),var(--copper)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.milestone-lbl { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--text-light); margin-top: 8px; }


/* ========================================
   SERVICES PAGE
   ======================================== */

/* Services page hero */
.services-hero {
  position: relative; min-height: 92vh; display: flex; align-items: center;
  padding-top: 130px; padding-bottom: 80px; overflow: hidden;
  background: linear-gradient(160deg,var(--warm-white) 55%,rgba(242,196,176,.15));
  isolation: isolate;
}
.services-hero > .container { position: relative; z-index: 2; }
.services-hero-canvas-wrap { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.services-hero-canvas-wrap canvas { width: 100%; height: 100%; display: block; }

.services-hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(201,149,108,.1); border: 1px solid rgba(201,149,108,.25); border-radius: 100px; padding: 8px 20px; margin-bottom: 28px; font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--copper); }
.services-hero-badge-dot { width: 6px; height: 6px; background: var(--teal); border-radius: 50%; animation: pulse-dot 2s ease-in-out infinite; flex-shrink: 0; }
.services-hero-headline { font-family: var(--ff-display); font-size: clamp(42px,6.5vw,90px); font-weight: 300; line-height: 1.0; letter-spacing: -.025em; color: var(--text-dark); margin-bottom: 20px; }
.services-hero-headline em { font-style: italic; font-weight: 500; background: linear-gradient(135deg,var(--rose-gold),var(--copper),var(--teal)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.services-hero-sub { font-size: clamp(13px,1.4vw,16px); font-weight: 400; color: var(--text-mid); line-height: 1.8; max-width: 480px; margin-bottom: 36px; }
.services-h-stat-num { font-family: var(--ff-display); font-size: 42px; font-weight: 600; line-height: 1; background: linear-gradient(135deg,var(--rose-gold),var(--copper)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.services-h-stat-lbl { font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--text-light); margin-top: 4px; }
.services-hero-visual-wrap { position: relative; width: 380px; height: 380px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.services-hero-ring-system { position: relative; width: 300px; height: 300px; }
.services-h-core { inset: 80px; }
.services-orbit-icon { position: absolute; width: 40px; height: 40px; background: rgba(255,252,248,.92); backdrop-filter: blur(16px); border: 1px solid rgba(201,149,108,.2); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 16px; box-shadow: 0 8px 24px rgba(184,130,74,.1); animation: floatCard 5s ease-in-out infinite; z-index: 3; }
.services-float-card { position: absolute; background: rgba(255,252,248,.92); backdrop-filter: blur(20px); border: 1px solid rgba(201,149,108,.2); border-radius: 18px; padding: 14px 18px; box-shadow: 0 12px 40px rgba(184,130,74,.1); animation: floatCard 6s ease-in-out infinite; z-index: 3; min-width: 120px; }
.services-float-icon { width: 28px; height: 28px; background: linear-gradient(135deg,var(--pale-coral),var(--rose-gold)); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: white; font-size: 12px; margin-bottom: 7px; }
.services-float-label { font-size: 9px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--text-light); }
.services-float-value { font-family: var(--ff-display); font-size: 20px; font-weight: 600; color: var(--text-dark); line-height: 1.1; }

/* Filter bar */
.filter-section { padding: 0 0 60px; position: relative; z-index: 2; }
.filter-bar { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; padding: 6px; background: rgba(255,252,248,.8); backdrop-filter: blur(20px); border: 1px solid rgba(201,149,108,.15); border-radius: 100px; width: fit-content; margin: 0 auto; }
.filter-btn { padding: 10px 22px; border-radius: 100px; font-size: 13px; font-weight: 600; border: none; cursor: pointer; transition: all .3s; color: var(--text-mid); background: transparent; letter-spacing: .02em; white-space: nowrap; }
.filter-btn:hover { color: var(--rose-gold); }
.filter-btn.active { background: linear-gradient(135deg,var(--rose-gold),var(--copper)); color: white; box-shadow: 0 6px 20px rgba(201,149,108,.35); }

/* Main services */
.main-services { background: linear-gradient(180deg,var(--warm-white),rgba(125,191,191,.06) 50%,var(--warm-white)); padding-top: 0; }

/* Service spotlight */
.service-spotlight { background: linear-gradient(135deg,rgba(247,221,208,.15),var(--warm-white) 60%,rgba(125,191,191,.08)); }
.spotlight-card { border-radius: 40px; overflow: hidden; background: rgba(255,252,248,.85); border: 1px solid rgba(201,149,108,.18); box-shadow: 0 28px 90px rgba(184,130,74,.1); }
.spotlight-visual { background: linear-gradient(145deg,rgba(247,221,208,.8),rgba(201,149,108,.4)); min-height: 400px; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.spotlight-canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.spotlight-inner { position: relative; z-index: 2; text-align: center; padding: 40px; }
.spotlight-big-icon { font-size: 80px; color: rgba(201,149,108,.4); display: block; margin-bottom: 16px; animation: pulse-icon 3s ease-in-out infinite; }
.spotlight-body { padding: 48px 44px; }
.spotlight-tag { display: inline-flex; align-items: center; gap: 6px; background: linear-gradient(135deg,rgba(201,149,108,.12),rgba(184,130,74,.06)); border: 1px solid rgba(201,149,108,.2); border-radius: 100px; padding: 6px 16px; font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--copper); margin-bottom: 14px; }
.spotlight-title { font-family: var(--ff-display); font-size: clamp(28px,3vw,48px); font-weight: 500; color: var(--text-dark); margin-bottom: 10px; line-height: 1.1; }
.spotlight-subtitle { font-size: 14px; color: var(--rose-gold); font-weight: 600; letter-spacing: .04em; margin-bottom: 20px; }
.spotlight-desc { font-size: 14px; line-height: 1.85; color: var(--text-mid); margin-bottom: 28px; }
.spotlight-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-bottom: 28px; }
.sp-stat { text-align: center; padding: 16px; background: rgba(247,221,208,.4); border: 1px solid rgba(201,149,108,.15); border-radius: 18px; }
.sp-stat-num { font-family: var(--ff-display); font-size: 28px; font-weight: 600; color: var(--rose-gold); }
.sp-stat-lbl { font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--text-light); margin-top: 4px; }
.checklist { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 28px; }
.checklist li { display: flex; align-items: flex-start; gap: 8px; font-size: 13px; color: var(--text-mid); line-height: 1.5; }
.checklist li::before { content: '✓'; color: var(--teal); font-weight: 700; font-size: 13px; flex-shrink: 0; margin-top: 1px; }

/* Process steps */
.process-section { background: linear-gradient(160deg,rgba(125,191,191,.07),var(--warm-white)); }
.process-track { display: grid; grid-template-columns: repeat(5,1fr); gap: 0; position: relative; }
.process-track::before { content: ''; position: absolute; top: 38px; left: 10%; right: 10%; height: 2px; background: linear-gradient(90deg,var(--rose-gold),var(--teal),var(--rose-gold)); opacity: .25; z-index: 0; }
.process-step { text-align: center; padding: 0 12px; position: relative; z-index: 1; }
.step-circle { width: 76px; height: 76px; margin: 0 auto 20px; border-radius: 50%; background: rgba(255,252,248,.9); backdrop-filter: blur(16px); border: 2px solid rgba(201,149,108,.2); display: flex; align-items: center; justify-content: center; font-size: 28px; position: relative; transition: all .4s; box-shadow: 0 8px 28px rgba(184,130,74,.08); }
.step-circle::after { content: attr(data-n); position: absolute; top: -6px; right: -6px; width: 24px; height: 24px; background: linear-gradient(135deg,var(--rose-gold),var(--copper)); border-radius: 50%; font-size: 10px; font-weight: 700; color: white; display: flex; align-items: center; justify-content: center; }
.process-step:hover .step-circle { transform: scale(1.1); border-color: rgba(201,149,108,.45); box-shadow: 0 14px 44px rgba(184,130,74,.18); }
.step-title { font-family: var(--ff-display); font-size: 17px; font-weight: 600; color: var(--text-dark); margin-bottom: 6px; }
.step-desc { font-size: 12px; color: var(--text-light); line-height: 1.65; }

/* Technology cards */
.tech-section { background: linear-gradient(180deg,var(--warm-white),rgba(247,221,208,.12) 50%,var(--warm-white)); }
.tech-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.tech-card { border-radius: 26px; overflow: hidden; background: rgba(255,252,248,.85); border: 1px solid rgba(201,149,108,.13); transition: all .4s cubic-bezier(.16,1,.3,1); }
.tech-card:hover { transform: translateY(-10px); box-shadow: 0 28px 72px rgba(184,130,74,.16); border-color: rgba(201,149,108,.3); }
.tech-visual { height: 160px; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.tech-canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.tech-visual-icon { position: relative; z-index: 2; font-size: 52px; }
.tech-body { padding: 24px; }
.tech-name { font-family: var(--ff-display); font-size: 21px; font-weight: 600; color: var(--text-dark); margin-bottom: 6px; }
.tech-spec { font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--rose-gold); margin-bottom: 10px; }
.tech-desc { font-size: 13px; line-height: 1.75; color: var(--text-mid); }

/* Insurance section */
.insurance-section { background: linear-gradient(135deg,rgba(125,191,191,.07),var(--warm-white)); }
.insurance-grid { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.ins-chip { padding: 14px 24px; background: rgba(255,252,248,.9); border: 1px solid rgba(201,149,108,.15); border-radius: 18px; font-size: 13px; font-weight: 600; color: var(--text-mid); transition: all .3s; display: flex; align-items: center; gap: 8px; }
.ins-chip:hover { background: rgba(247,221,208,.5); border-color: rgba(201,149,108,.3); color: var(--text-dark); transform: translateY(-3px); box-shadow: 0 10px 28px rgba(184,130,74,.1); }
.ins-chip i { color: var(--teal); font-size: 14px; }

/* Specialities page — mobile fix */
@media (max-width: 767px) {
  .spec-section .spec-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
  }
  .spec-section .spec-card { padding: 16px 10px !important; animation: none !important; min-width: 0 !important; }
  .spec-section .spec-orbit { width: 62px !important; height: 62px !important; margin-bottom: 10px !important; }
  .spec-section .spec-orbit-core { inset: 10px !important; font-size: 20px !important; }
  .spec-section .spec-name { font-size: 13px !important; }
  .spec-section .spec-desc { font-size: 11px !important; line-height: 1.4 !important; }
  .spec-section .spec-glow { display: none !important; }

  /* Insurance chips mobile */
  .insurance-section .insurance-grid {
    display: grid !important; grid-template-columns: 1fr 1fr !important; gap: 8px !important;
  }
  .insurance-section .ins-chip { padding: 9px 10px !important; font-size: 11px !important; border-radius: 12px !important; gap: 5px !important; justify-content: flex-start !important; min-width: 0 !important; }
}


/* ========================================
   SPECIALISTS PAGE
   ======================================== */
.spec-hero {
  position: relative; min-height: 92vh; display: flex; align-items: center;
  padding-top: 130px; padding-bottom: 80px; overflow: hidden;
  background: linear-gradient(160deg,var(--warm-white) 55%,rgba(242,196,176,.15));
  isolation: isolate;
}
.spec-hero > .container { position: relative; z-index: 2; }
.spec-hero .hero-canvas-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; width: 100%; height: 100%; }
.spec-hero .hero-visual-wrap { position: relative; width: 380px; height: 380px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; overflow: visible; }
.spec-hero .hero-ring-system { position: relative; width: 300px; height: 300px; flex-shrink: 0; }
.spec-hero .h-core { inset: 80px; }
.spec-hero .float-badge { position: absolute; min-width: 110px; max-width: 150px; z-index: 3; }

/* Search */
.search-wrap { position: relative; max-width: 480px; margin: 0 auto 40px; }
.search-input { width: 100%; padding: 14px 20px 14px 50px; background: rgba(255,252,248,.9); border: 1.5px solid rgba(201,149,108,.2); border-radius: 100px; font-family: var(--ff-body); font-size: 14px; color: var(--text-dark); outline: none; transition: all .3s; }
.search-input:focus { border-color: var(--rose-gold); box-shadow: 0 0 0 4px rgba(201,149,108,.1); }
.search-input::placeholder { color: var(--text-light); }
.search-icon { position: absolute; left: 18px; top: 50%; transform: translateY(-50%); color: var(--rose-gold); font-size: 16px; pointer-events: none; }

/* Specialists grid */
.specialists-section { background: linear-gradient(180deg,var(--warm-white),rgba(125,191,191,.06) 50%,var(--warm-white)); padding-top: 0; }
.spec-grid-main {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.spec-grid-main {
  display: grid;
  grid-template-columns: repeat(6, 1fr);  /* 6-col base */
  gap: 24px;
}

.doc-card:nth-child(1) { grid-column: span 2; }
.doc-card:nth-child(2) { grid-column: span 2; }
.doc-card:nth-child(3) { grid-column: span 2; }
.doc-card:nth-child(4) { grid-column: 2 / span 2; }  /* centers pair */
.doc-card:nth-child(5) { grid-column: 4 / span 2; }

/* Doctor cards */
.doc-card { border-radius: 28px; background: rgba(255,252,248,.88); backdrop-filter: blur(16px); border: 1px solid rgba(201,149,108,.13); overflow: hidden; transition: all .45s cubic-bezier(.16,1,.3,1); position: relative; }
.doc-card:hover { transform: translateY(-12px); box-shadow: 0 32px 88px rgba(184,130,74,.18); border-color: rgba(201,149,108,.32); }
.doc-card-visual { position: relative; padding: 32px 20px 20px; text-align: center; overflow: hidden; }
.doc-card-visual-canvas { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }
.doc-card-visual-bg { position: absolute; inset: 0; background: linear-gradient(145deg,rgba(247,221,208,.7),rgba(201,149,108,.22)); transition: opacity .4s; }
.doc-card:hover .doc-card-visual-bg { opacity: .85; }
.doc-avatar-wrap { position: relative; width: 88px; height: 88px; margin: 0 auto 14px; }
.doc-avatar-ring { position: absolute; inset: -6px; border-radius: 50%; border: 1.5px solid rgba(201,149,108,.25); animation: ringRot 10s linear infinite; }
.doc-avatar-ring-2 { position: absolute; inset: -14px; border-radius: 50%; border: 1px solid rgba(74,155,155,.15); animation: ringRot 18s linear infinite reverse; }
.doc-avatar { width: 88px; height: 88px; border-radius: 50%; background: linear-gradient(135deg,var(--pale-coral),var(--rose-gold)); display: flex; align-items: center; justify-content: center; color: white; font-family: var(--ff-display); font-size: 36px; font-weight: 600; border: 3px solid rgba(255,255,255,.6); box-shadow: 0 8px 32px rgba(201,149,108,.32); position: relative; z-index: 1; }
.availability-dot { position: absolute; bottom: 2px; right: 2px; width: 16px; height: 16px; border-radius: 50%; background: #25d366; border: 2.5px solid white; z-index: 2; animation: availPulse 2s ease-in-out infinite; }
.availability-dot.busy { background: var(--rose-gold); animation: availPulse2 2s ease-in-out infinite; }
.doc-dept-badge { display: inline-flex; align-items: center; gap: 5px; background: rgba(201,149,108,.15); border: 1px solid rgba(201,149,108,.22); border-radius: 100px; padding: 5px 12px; font-size: 9px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--copper); position: relative; z-index: 1; }
.doc-card-body { padding: 18px 20px 22px; }
.doc-name { font-family: var(--ff-display); font-size: 20px; font-weight: 600; color: var(--text-dark); margin-bottom: 3px; line-height: 1.2; }
.doc-title { font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--rose-gold); margin-bottom: 12px; }
.doc-info-row { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--text-mid); margin-bottom: 8px; }
.doc-info-row i { color: var(--teal); font-size: 11px; width: 14px; flex-shrink: 0; }
.doc-exp-bar { height: 4px; border-radius: 2px; background: rgba(201,149,108,.12); margin: 14px 0 10px; overflow: hidden; }
.doc-exp-fill { height: 100%; border-radius: 2px; background: linear-gradient(90deg,var(--rose-gold),var(--copper)); transition: width 1.2s cubic-bezier(.16,1,.3,1); }
.doc-exp-label { display: flex; justify-content: space-between; font-size: 10px; color: var(--text-light); font-weight: 600; letter-spacing: .04em; }
.doc-tags { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 14px; }
.doc-tag { padding: 4px 10px; background: rgba(247,221,208,.5); border: 1px solid rgba(201,149,108,.15); border-radius: 100px; font-size: 10px; font-weight: 600; color: var(--text-mid); }
.doc-card-footer { padding: 0 20px 20px; display: flex; gap: 8px; }
.doc-btn-book { flex: 1; display: flex; align-items: center; justify-content: center; gap: 7px; background: linear-gradient(135deg,var(--rose-gold),var(--copper)); color: white; padding: 10px; border-radius: 12px; font-size: 12px; font-weight: 700; text-decoration: none; border: none; cursor: pointer; transition: all .3s; box-shadow: 0 4px 16px rgba(201,149,108,.3); }
.doc-btn-book:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,149,108,.4); color: white; }
.doc-btn-wa { width: 40px; height: 40px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg,#25d366,#128c7e); color: white; border-radius: 12px; font-size: 16px; text-decoration: none; border: none; cursor: pointer; transition: all .3s; box-shadow: 0 4px 14px rgba(37,211,102,.3); }
.doc-btn-wa:hover { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(37,211,102,.4); color: white; }
.doc-btn-profile { width: 40px; height: 40px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; background: rgba(201,149,108,.1); color: var(--rose-gold); border-radius: 12px; font-size: 15px; text-decoration: none; border: 1px solid rgba(201,149,108,.18); cursor: pointer; transition: all .3s; }
.doc-btn-profile:hover { background: rgba(201,149,108,.2); transform: translateY(-2px); }
.no-results { display: none; text-align: center; padding: 60px 20px; font-family: var(--ff-display); font-size: 28px; color: var(--text-light); font-style: italic; }
.no-results.show { display: block; }

/* Department grid (specialists page) */
.dept-section { background: linear-gradient(135deg,rgba(247,221,208,.1),var(--warm-white) 60%,rgba(125,191,191,.06)); }
.dept-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.dept-card { padding: 26px 20px; text-align: center; border-radius: 26px; background: rgba(255,252,248,.82); backdrop-filter: blur(16px); border: 1px solid rgba(201,149,108,.12); transition: all .45s cubic-bezier(.16,1,.3,1); position: relative; overflow: hidden; cursor: pointer; animation: deptFloat 6s ease-in-out infinite; }
.dept-card:nth-child(odd) { animation-delay: -3s; }
.dept-card:hover { transform: translateY(-10px) scale(1.03); box-shadow: 0 24px 72px rgba(184,130,74,.15); animation-play-state: paused; }
.dept-orbit { width: 80px; height: 80px; margin: 0 auto 16px; position: relative; }
.dept-orbit-ring { position: absolute; inset: 0; border-radius: 50%; border: 1.5px solid rgba(201,149,108,.2); animation: ringRot 12s linear infinite; }
.dept-orbit-core { position: absolute; inset: 12px; border-radius: 50%; background: linear-gradient(135deg,rgba(247,221,208,.8),rgba(201,149,108,.3)); display: flex; align-items: center; justify-content: center; font-size: 24px; box-shadow: 0 4px 20px rgba(201,149,108,.2); }
.dept-name { font-family: var(--ff-display); font-size: 17px; font-weight: 600; margin-bottom: 4px; color: var(--text-dark); }
.dept-count { font-size: 11px; color: var(--rose-gold); font-weight: 700; letter-spacing: .06em; }
.dept-glow { position: absolute; width: 110px; height: 110px; background: radial-gradient(circle,rgba(201,149,108,.1),transparent 70%); border-radius: 50%; top: -40px; left: 50%; transform: translateX(-50%); pointer-events: none; }

/* Specialist spotlight section */
.spotlight-section { background: linear-gradient(135deg,rgba(247,221,208,.12),var(--warm-white) 60%,rgba(125,191,191,.07)); }
.spotlight-name { font-family: var(--ff-display); font-size: clamp(28px,3vw,48px); font-weight: 500; color: var(--text-dark); margin-bottom: 6px; line-height: 1.1; }
.spotlight-title { font-size: 14px; color: var(--rose-gold); font-weight: 600; letter-spacing: .04em; margin-bottom: 20px; }
.spotlight-quote { font-family: var(--ff-display); font-size: 18px; font-style: italic; color: var(--text-mid); line-height: 1.8; margin-bottom: 22px; padding-left: 20px; border-left: 3px solid rgba(201,149,108,.4); }
.spotlight-desc { font-size: 13.5px; line-height: 1.85; color: var(--text-mid); margin-bottom: 26px; }
.spotlight-avatar { width: 140px; height: 140px; border-radius: 50%; background: linear-gradient(135deg,var(--pale-coral),var(--rose-gold)); display: flex; align-items: center; justify-content: center; color: white; font-family: var(--ff-display); font-size: 56px; font-weight: 600; border: 4px solid rgba(255,255,255,.65); box-shadow: 0 12px 48px rgba(201,149,108,.4); margin: 0 auto 18px; position: relative; }
.spotlight-avatar-ring { position: absolute; inset: -12px; border-radius: 50%; border: 2px solid rgba(201,149,108,.3); animation: ringRot 8s linear infinite; }
.spotlight-avatar-ring-2 { position: absolute; inset: -26px; border-radius: 50%; border: 1.5px solid rgba(74,155,155,.2); animation: ringRot 14s linear infinite reverse; }

/* Appointment band */
.appt-band { background: linear-gradient(160deg,rgba(247,221,208,.2),var(--warm-white)); padding: 80px 0; }
.appt-card { border-radius: 36px; overflow: hidden; background: rgba(255,252,248,.88); border: 1px solid rgba(201,149,108,.18); box-shadow: 0 24px 80px rgba(184,130,74,.1); padding: 52px; }


/* ========================================
   FACILITIES PAGE
   ======================================== */
.facilities-hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  overflow: hidden; padding: 120px 0 80px;
  background: linear-gradient(160deg,var(--warm-white) 55%,rgba(242,196,176,.15));
}
.facilities-hero .hero-canvas-wrap { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.facilities-hero .container { position: relative; z-index: 3; }
.facilities-hero .hero-visual-wrap { position: relative; display: inline-flex; justify-content: center; align-items: center; width: 100%; max-width: 480px; }
.facilities-hero .hero-building-wrap { position: relative; width: 340px; height: 340px; border-radius: 50%; overflow: hidden; flex-shrink: 0; box-shadow: 0 0 0 2px rgba(212,149,106,.3), 0 0 40px rgba(212,149,106,.18); }
.facilities-hero .building-canvas { width: 100%; height: 100%; display: block; }
.facilities-hero .float-card { position: absolute; backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border: 1px solid rgba(212,149,106,.35) !important; border-radius: 16px; padding: 14px 18px; min-width: 138px; animation: floatCard 5s ease-in-out infinite; box-shadow: 0 8px 32px rgba(0,0,0,.45); }
.facilities-hero .float-icon { width: 36px; height: 36px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 15px; margin-bottom: 8px; }
.facilities-hero .float-label { font-size: 10px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 2px; }
.facilities-hero .float-value { font-family: var(--ff-display); font-size: 1.25rem; font-weight: 700; }

/* Facilities — info cards grid */
.facilities-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* Facilities — glass cards grid */
.facilities-glass-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

/* Desktop stagger offsets */
.facilities-glass-offset-1 { margin-top: 30px; }
.facilities-glass-offset-2 { margin-top: -10px; }
.facilities-glass-offset-3 { margin-top: 20px; }

/* Facilities bento */
.overview-section { background: linear-gradient(180deg,var(--warm-white),rgba(125,191,191,.06) 50%,var(--warm-white)); padding-top: 0; }
.fac-bento { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.fac-item { padding: 30px 26px; border-radius: 28px; background: rgba(255,252,248,.75); backdrop-filter: blur(16px); border: 1px solid rgba(201,149,108,.13); position: relative; overflow: hidden; transition: all .45s cubic-bezier(.16,1,.3,1); }
.fac-item::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg,transparent 60%,rgba(201,149,108,.07)); opacity: 0; transition: opacity .4s; }
.fac-item:hover::before { opacity: 1; }
.fac-item:hover { transform: translateY(-10px) scale(1.02); box-shadow: 0 28px 80px rgba(184,130,74,.18); border-color: rgba(201,149,108,.35); background: rgba(255,252,248,.98); }
.fac-item.span-2 { grid-column: span 2; }
.fac-item.span-3 { grid-column: span 3; }
.fac-item.featured { background: linear-gradient(135deg,rgba(247,221,208,.6),rgba(201,149,108,.15)); border-color: rgba(201,149,108,.25); }
.fac-icon { width: 54px; height: 54px; border-radius: 18px; display: flex; align-items: center; justify-content: center; font-size: 24px; margin-bottom: 18px; transition: transform .4s; position: relative; z-index: 1; }
.fac-item:hover .fac-icon { transform: rotate(10deg) scale(1.1); }
.fac-title { font-family: var(--ff-display); font-size: 22px; font-weight: 600; margin-bottom: 10px; color: var(--text-dark); position: relative; z-index: 1; }
.fac-desc { font-size: 13px; line-height: 1.75; color: var(--text-mid); position: relative; z-index: 1; }
.fac-tag { position: absolute; top: 18px; right: 18px; background: rgba(201,149,108,.12); border: 1px solid rgba(201,149,108,.2); border-radius: 100px; padding: 4px 12px; font-size: 10px; font-weight: 700; letter-spacing: .06em; color: var(--rose-gold); }
.fac-num { position: absolute; bottom: -8px; right: 10px; font-family: var(--ff-display); font-size: 100px; font-weight: 700; color: rgba(201,149,108,.04); line-height: 1; user-select: none; transition: color .4s; }
.fac-item:hover .fac-num { color: rgba(201,149,108,.09); }
.fac-features { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 14px; position: relative; z-index: 1; }
.fac-feature { padding: 4px 10px; background: rgba(201,149,108,.08); border: 1px solid rgba(201,149,108,.15); border-radius: 100px; font-size: 10px; font-weight: 600; color: var(--text-mid); }

/* Floor plan */
.floorplan-section { background: linear-gradient(135deg,rgba(247,221,208,.15),var(--warm-white) 60%,rgba(125,191,191,.08)); }
.floor-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 36px; }
.floor-tab { padding: 10px 22px; border-radius: 100px; font-size: 13px; font-weight: 600; border: 1.5px solid rgba(201,149,108,.2); cursor: pointer; transition: all .3s; color: var(--text-mid); background: transparent; }
.floor-tab:hover { color: var(--rose-gold); border-color: var(--rose-gold); }
.floor-tab.active { background: linear-gradient(135deg,var(--rose-gold),var(--copper)); color: white; border-color: transparent; box-shadow: 0 6px 20px rgba(201,149,108,.35); }
.floor-display { border-radius: 32px; overflow: hidden; background: rgba(255,252,248,.88); border: 1px solid rgba(201,149,108,.16); box-shadow: 0 20px 70px rgba(184,130,74,.1); }
.floor-visual { position: relative; height: 380px; overflow: hidden; }
.floor-canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.floor-labels { position: absolute; inset: 0; z-index: 2; pointer-events: none; }
.floor-label { position: absolute; background: rgba(255,252,248,.92); backdrop-filter: blur(10px); border: 1px solid rgba(201,149,108,.2); border-radius: 12px; padding: 8px 14px; font-size: 11px; font-weight: 600; color: var(--text-dark); box-shadow: 0 4px 16px rgba(184,130,74,.1); animation: labelFloat 5s ease-in-out infinite; }
.floor-info { padding: 36px 40px; display: flex; gap: 36px; align-items: flex-start; flex-wrap: wrap; }
.floor-info-block h3 { font-family: var(--ff-display); font-size: 28px; font-weight: 500; color: var(--text-dark); margin-bottom: 8px; }
.floor-info-block p { font-size: 13px; color: var(--text-mid); line-height: 1.75; }
.floor-rooms { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
.floor-room-chip { padding: 7px 16px; background: rgba(201,149,108,.08); border: 1px solid rgba(201,149,108,.18); border-radius: 100px; font-size: 11px; font-weight: 600; color: var(--text-mid); display: flex; align-items: center; gap: 6px; }
.floor-room-chip i { color: var(--teal); font-size: 10px; }
.floor-stat-block { text-align: center; padding: 20px 28px; background: rgba(247,221,208,.4); border: 1px solid rgba(201,149,108,.15); border-radius: 22px; min-width: 120px; }
.floor-stat-block .num { font-family: var(--ff-display); font-size: 36px; font-weight: 600; color: var(--rose-gold); line-height: 1; }
.floor-stat-block .lbl { font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--text-light); margin-top: 6px; }

/* Rooms grid */
.rooms-section { background: linear-gradient(160deg,rgba(125,191,191,.07),var(--warm-white)); }
.room-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.room-card { border-radius: 28px; overflow: hidden; background: rgba(255,252,248,.85); border: 1px solid rgba(201,149,108,.13); transition: all .4s cubic-bezier(.16,1,.3,1); }
.room-card:hover { transform: translateY(-10px); box-shadow: 0 28px 72px rgba(184,130,74,.16); border-color: rgba(201,149,108,.3); }
.room-visual { height: 180px; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.room-canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.room-icon-wrap { position: relative; z-index: 2; text-align: center; }
.room-big-icon { font-size: 52px; display: block; margin-bottom: 8px; }
.room-badge { display: inline-block; padding: 4px 12px; border-radius: 100px; font-size: 10px; font-weight: 700; letter-spacing: .06em; color: white; background: linear-gradient(135deg,var(--rose-gold),var(--copper)); }
.room-body { padding: 24px; }
.room-name { font-family: var(--ff-display); font-size: 22px; font-weight: 600; color: var(--text-dark); margin-bottom: 6px; }
.room-type { font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--rose-gold); margin-bottom: 10px; }
.room-desc { font-size: 13px; line-height: 1.75; color: var(--text-mid); margin-bottom: 14px; }
.room-amenities { display: flex; flex-wrap: wrap; gap: 6px; }
.amenity { padding: 4px 10px; background: rgba(125,191,191,.1); border: 1px solid rgba(74,155,155,.18); border-radius: 100px; font-size: 10px; font-weight: 600; color: var(--teal); }

/* OT / Implant showcase */
.ot-section { background: linear-gradient(180deg,var(--warm-white),rgba(247,221,208,.12) 50%,var(--warm-white)); }
.ot-showcase { border-radius: 40px; overflow: hidden; background: rgba(255,252,248,.85); border: 1px solid rgba(201,149,108,.18); box-shadow: 0 28px 90px rgba(184,130,74,.1); }
.ot-visual { position: relative; min-height: 380px; display: flex; align-items: center; justify-content: center; overflow: hidden; background: linear-gradient(145deg,rgba(44,33,24,.94),rgba(44,33,24,.8)); }
.ot-bg-canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.ot-content { position: relative; z-index: 2; padding: 48px; text-align: center; }
.ot-label { font-size: 10px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--rose-gold); margin-bottom: 14px; display: block; }
.ot-big-num { font-family: var(--ff-display); font-size: clamp(80px,15vw,140px); font-weight: 700; line-height: 1; background: linear-gradient(135deg,var(--rose-gold),var(--copper),var(--teal)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.ot-big-label { font-family: var(--ff-display); font-size: 28px; font-weight: 300; color: rgba(255,252,248,.7); letter-spacing: .02em; }
.ot-sub { font-size: 13px; color: rgba(255,252,248,.45); margin-top: 8px; letter-spacing: .04em; }
.ot-body { padding: 42px; }
.ot-tag { display: inline-flex; align-items: center; gap: 6px; background: linear-gradient(135deg,rgba(201,149,108,.12),rgba(184,130,74,.06)); border: 1px solid rgba(201,149,108,.2); border-radius: 100px; padding: 6px 16px; font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--copper); margin-bottom: 14px; }
.ot-title { font-family: var(--ff-display); font-size: clamp(24px,3vw,42px); font-weight: 500; color: var(--text-dark); margin-bottom: 12px; line-height: 1.15; }
.ot-desc { font-size: 14px; line-height: 1.85; color: var(--text-mid); margin-bottom: 24px; }
.ot-stats { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; margin-bottom: 24px; }
.ot-stat { text-align: center; padding: 16px; background: rgba(247,221,208,.4); border: 1px solid rgba(201,149,108,.15); border-radius: 18px; }
.ot-stat-num { font-family: var(--ff-display); font-size: 28px; font-weight: 600; color: var(--rose-gold); }
.ot-stat-lbl { font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--text-light); margin-top: 4px; }
.ot-list { list-style: none; display: grid; grid-template-columns: 1fr; gap: 8px; }
.ot-list li { display: flex; align-items: flex-start; gap: 8px; font-size: 13px; color: var(--text-mid); line-height: 1.5; }
.ot-list li::before { content: '✓'; color: var(--teal); font-weight: 700; font-size: 13px; flex-shrink: 0; }
/* ── OT Section: Premium Photo Mosaic ── */
.ot-showcase .col-lg-5 > div[style*="grid"] {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  grid-template-rows: 1fr 1fr !important;
  height: 100% !important;
  min-height: 460px !important;
  gap: 3px !important;
}

.ot-showcase .col-lg-5 > div[style*="grid"] > div {
  position: relative;
  overflow: hidden;
}

.ot-showcase .col-lg-5 > div[style*="grid"] > div img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  display: block !important;
  transition: transform 0.5s ease !important;
}

.ot-showcase .col-lg-5 > div[style*="grid"] > div:hover img {
  transform: scale(1.05);
}

/* Right panel alignment */
.ot-body {
  padding: 44px 40px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  height: 100% !important;
}

/* Stats — 2×2 uniform grid */
.ot-stats {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 12px !important;
  margin-bottom: 22px !important;
}

.ot-stat {
  text-align: center !important;
  padding: 18px 12px !important;
  background: rgba(247,221,208,0.35) !important;
  border: 1px solid rgba(201,149,108,0.15) !important;
  border-radius: 16px !important;
}

/* ── OT Photo Grid: Square cells ── */
.ot-showcase .col-lg-5 {
  aspect-ratio: 1 / 1;
}

.ot-showcase .col-lg-5 > div[style*="grid"] {
  height: 100% !important;
  min-height: unset !important;
}

/* Mobile */
@media (max-width: 991px) {
  .ot-showcase .col-lg-5 > div[style*="grid"] {
    min-height: 280px !important;
    grid-template-columns: 1fr 1fr !important;
    grid-template-rows: 1fr 1fr !important;
  }
  .ot-body { padding: 28px 22px !important; }
}

/* Amenities */
.amenities-section { background: linear-gradient(135deg,rgba(247,221,208,.12),var(--warm-white) 50%,rgba(125,191,191,.07)); }
.am-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
.am-card { padding: 30px 18px; text-align: center; border-radius: 28px; background: rgba(255,252,248,.82); backdrop-filter: blur(16px); border: 1px solid rgba(201,149,108,.12); transition: all .45s cubic-bezier(.16,1,.3,1); position: relative; overflow: hidden; animation: amFloat 6s ease-in-out infinite; }
.am-card:nth-child(odd) { animation-delay: -3s; }
.am-card:hover { transform: translateY(-12px) scale(1.04); box-shadow: 0 28px 80px rgba(184,130,74,.16); background: rgba(255,252,248,.98); animation-play-state: paused; }
.am-orbit { width: 86px; height: 86px; margin: 0 auto 18px; position: relative; }
.am-orbit-ring { position: absolute; inset: 0; border-radius: 50%; border: 1.5px solid rgba(201,149,108,.2); animation: ringRot 12s linear infinite; }
.am-orbit-core { position: absolute; inset: 12px; border-radius: 50%; background: linear-gradient(135deg,rgba(247,221,208,.8),rgba(201,149,108,.3)); display: flex; align-items: center; justify-content: center; font-size: 26px; box-shadow: 0 4px 24px rgba(201,149,108,.2); }
.am-name { font-family: var(--ff-display); font-size: 18px; font-weight: 600; margin-bottom: 6px; color: var(--text-dark); }
.am-desc { font-size: 12px; color: var(--text-light); line-height: 1.65; }
.am-glow { position: absolute; width: 120px; height: 120px; background: radial-gradient(circle,rgba(201,149,108,.12),transparent 70%); border-radius: 50%; top: -40px; left: 50%; transform: translateX(-50%); pointer-events: none; }

/* Accreditations grid (facilities) */
.accred-grid-fac, .accred-grid { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }
.accred-chip { padding: 18px 28px; background: rgba(255,252,248,.9); border: 1px solid rgba(201,149,108,.15); border-radius: 22px; font-size: 13px; font-weight: 600; color: var(--text-mid); transition: all .3s; display: flex; align-items: center; gap: 12px; min-width: 180px; justify-content: center; flex-direction: column; text-align: center; }
.accred-chip:hover { background: rgba(247,221,208,.5); border-color: rgba(201,149,108,.3); color: var(--text-dark); transform: translateY(-4px); box-shadow: 0 12px 36px rgba(184,130,74,.12); }
.accred-chip-icon { width: 44px; height: 44px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 20px; margin: 0 auto; }
.accred-chip-name { font-size: 12px; font-weight: 700; color: var(--text-dark); }
.accred-chip-sub { font-size: 10px; color: var(--text-light); font-weight: 500; }

/* Visiting hours */
.visiting-section { background: linear-gradient(160deg,var(--warm-white),rgba(247,221,208,.12)); }
.visiting-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.visiting-card { padding: 28px 24px; border-radius: 26px; background: rgba(255,252,248,.85); border: 1px solid rgba(201,149,108,.13); transition: all .4s; }
.visiting-card:hover { transform: translateY(-8px); box-shadow: 0 20px 60px rgba(184,130,74,.12); border-color: rgba(201,149,108,.28); }
.v-card-icon { width: 52px; height: 52px; border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 16px; }
.v-card-title { font-family: var(--ff-display); font-size: 20px; font-weight: 600; color: var(--text-dark); margin-bottom: 6px; }
.v-card-sub { font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--rose-gold); margin-bottom: 14px; }
.v-time-block { display: flex; align-items: center; justify-content: space-between; padding: 10px 14px; background: rgba(247,221,208,.3); border: 1px solid rgba(201,149,108,.12); border-radius: 12px; margin-bottom: 8px; }
.v-time-label { font-size: 12px; font-weight: 600; color: var(--text-mid); }
.v-time-val { font-family: var(--ff-display); font-size: 16px; font-weight: 600; color: var(--text-dark); }
.v-note { font-size: 11px; color: var(--text-light); margin-top: 10px; line-height: 1.6; }


/* ========================================
   HEALTHCARE PAGE
   ======================================== */
.hc-hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  overflow: hidden; padding: 120px 0 80px;
  background: linear-gradient(160deg,var(--warm-white) 55%,rgba(125,191,191,.07));
}
.hc-hero-canvas { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; z-index: 0; }
.hc-hero-content { position: relative; z-index: 2; width: 100%; }
.hc-hero-stats { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 40px; width: 100%; }
.hc-stat-card { flex: 1 1 100px; padding: 18px 16px; border-radius: 18px; background: rgba(255,252,248,.7); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border: 1px solid rgba(201,149,108,.12); text-align: center; min-width: 90px; }
.hc-stat-num { font-family: var(--ff-display); font-size: clamp(26px,3.5vw,38px); font-weight: 600; line-height: 1; color: var(--text-dark); }
.hc-stat-label { font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--text-light); margin-top: 4px; }
.hc-hero-visual { position: relative; width: min(420px,90vw); height: min(420px,90vw); flex-shrink: 0; }
.dna-orb-wrap { position: relative; width: 100%; height: 100%; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: radial-gradient(circle at 40% 40%,rgba(201,149,108,.18) 0%,rgba(125,191,191,.10) 60%,transparent 100%); }
.dna-ring { position: absolute; border-radius: 50%; border: 1px solid rgba(201,149,108,.15); animation: dna-spin 12s linear infinite; }
.dna-ring:nth-child(1) { width: 100%; height: 100%; animation-duration: 18s; }
.dna-ring:nth-child(2) { width: 80%; height: 80%; animation-duration: 12s; animation-direction: reverse; }
.dna-ring:nth-child(3) { width: 60%; height: 60%; animation-duration: 8s; }
.dna-core { position: relative; z-index: 2; display: flex; align-items: center; justify-content: center; }
.hc-float-card { position: absolute; display: flex; align-items: center; gap: 10px; padding: 12px 16px; border-radius: 16px; background: rgba(255,252,248,.9); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border: 1px solid rgba(201,149,108,.15); box-shadow: 0 8px 32px rgba(0,0,0,.08); animation: float-badge 4s ease-in-out infinite; z-index: 5; white-space: nowrap; }
.hc-float-icon { width: 36px; height: 36px; border-radius: 10px; display: flex; align-items: center; justify-content: center; color: white; font-size: 15px; flex-shrink: 0; }
.hc-float-label { font-size: 9px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--text-light); line-height: 1; }
.hc-float-value { font-family: var(--ff-display); font-size: 20px; font-weight: 600; color: var(--text-dark); line-height: 1.2; }

/* Health packages */
.pkg-section { background: linear-gradient(180deg,var(--warm-white),rgba(242,196,176,.12) 50%,var(--warm-white)); }
.pkg-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.pkg-card { border-radius: 28px; background: rgba(255,252,248,.85); backdrop-filter: blur(18px); border: 1px solid rgba(201,149,108,.14); overflow: hidden; transition: all .45s cubic-bezier(.16,1,.3,1); position: relative; }
.pkg-card:hover { transform: translateY(-12px) scale(1.015); box-shadow: 0 32px 80px rgba(184,130,74,.18); border-color: rgba(201,149,108,.35); }
.pkg-card.featured { border-color: rgba(201,149,108,.35); box-shadow: 0 20px 60px rgba(184,130,74,.14); }
.pkg-ribbon { position: absolute; top: 20px; right: -28px; background: linear-gradient(135deg,var(--rose-gold),var(--copper)); color: white; font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; padding: 5px 40px; transform: rotate(45deg); transform-origin: center; }
.pkg-header { padding: 28px 28px 0; }
.pkg-icon-wrap { width: 60px; height: 60px; border-radius: 20px; display: flex; align-items: center; justify-content: center; font-size: 24px; margin-bottom: 18px; }
.pkg-name { font-family: var(--ff-display); font-size: 24px; font-weight: 600; margin-bottom: 6px; color: var(--text-dark); }
.pkg-tagline { font-size: 12px; color: var(--text-light); margin-bottom: 20px; line-height: 1.5; }
.pkg-price-wrap { display: flex; align-items: baseline; gap: 6px; margin-bottom: 22px; }
.pkg-price { font-family: var(--ff-display); font-size: 42px; font-weight: 600; background: linear-gradient(135deg,var(--rose-gold),var(--copper)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1; }
.pkg-price-unit { font-size: 13px; color: var(--text-light); font-weight: 500; }
.pkg-divider { height: 1px; background: linear-gradient(90deg,transparent,rgba(201,149,108,.2),transparent); margin: 0 28px; }
.pkg-body { padding: 22px 28px 28px; }
.pkg-feature { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 10px; font-size: 13px; color: var(--text-mid); }
.pkg-feature i { color: var(--teal); font-size: 12px; margin-top: 2px; flex-shrink: 0; }

/* Wellness section */
.wellness-section { background: linear-gradient(135deg,rgba(125,191,191,.06),var(--warm-white) 50%,rgba(247,221,208,.12)); }
.wellness-timeline { position: relative; padding-left: 40px; }
.wellness-timeline::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 2px; background: linear-gradient(180deg,var(--rose-gold),var(--teal),var(--copper)); border-radius: 2px; }
.wt-item { position: relative; padding: 0 0 40px 32px; }
.wt-item:last-child { padding-bottom: 0; }
.wt-dot { position: absolute; left: -48px; top: 6px; width: 18px; height: 18px; border-radius: 50%; background: linear-gradient(135deg,var(--rose-gold),var(--copper)); border: 3px solid var(--warm-white); box-shadow: 0 0 0 3px rgba(201,149,108,.2); }
.wt-card { padding: 24px; border-radius: 22px; background: rgba(255,252,248,.85); backdrop-filter: blur(16px); border: 1px solid rgba(201,149,108,.12); transition: all .35s ease; }
.wt-card:hover { transform: translateX(6px); border-color: rgba(201,149,108,.3); box-shadow: 0 12px 40px rgba(184,130,74,.1); }
.wt-step { font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--rose-gold); margin-bottom: 6px; }
.wt-title { font-family: var(--ff-display); font-size: 20px; font-weight: 600; margin-bottom: 8px; color: var(--text-dark); }
.wt-desc { font-size: 13px; color: var(--text-mid); line-height: 1.7; }
.wellness-card { padding: 28px; border-radius: 24px; background: rgba(255,252,248,.85); backdrop-filter: blur(16px); border: 1px solid rgba(201,149,108,.12); margin-bottom: 18px; transition: all .35s cubic-bezier(.16,1,.3,1); cursor: default; position: relative; overflow: hidden; }
.wellness-card::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: linear-gradient(180deg,var(--rose-gold),var(--teal)); border-radius: 4px 0 0 4px; opacity: 0; transition: opacity .3s; }
.wellness-card:hover { transform: translateX(5px); border-color: rgba(201,149,108,.28); box-shadow: 0 14px 44px rgba(184,130,74,.12); }
.wellness-card:hover::before { opacity: 1; }
.wellness-card-icon { width: 48px; height: 48px; border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 20px; margin-bottom: 14px; }
.wellness-card-title { font-family: var(--ff-display); font-size: 19px; font-weight: 600; margin-bottom: 6px; color: var(--text-dark); }
.wellness-card-desc { font-size: 13px; color: var(--text-mid); line-height: 1.7; }
.wellness-tag { display: inline-block; background: rgba(201,149,108,.1); border: 1px solid rgba(201,149,108,.18); border-radius: 100px; padding: 3px 10px; font-size: 10px; font-weight: 700; color: var(--rose-gold); letter-spacing: .06em; margin-top: 10px; }

/* Checker section */
.checker-section { background: linear-gradient(160deg,rgba(247,221,208,.15),var(--warm-white) 60%,rgba(125,191,191,.08)); }
.checker-wrap { padding: 48px; border-radius: 36px; background: rgba(255,252,248,.88); backdrop-filter: blur(24px); border: 1px solid rgba(201,149,108,.2); box-shadow: 0 24px 80px rgba(184,130,74,.1); position: relative; overflow: hidden; }
.checker-wrap::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg,var(--rose-gold),var(--teal),var(--copper)); border-radius: 36px 36px 0 0; }
.bmi-slider { width: 100%; -webkit-appearance: none; appearance: none; height: 6px; border-radius: 6px; background: linear-gradient(90deg,var(--teal),var(--rose-gold)); outline: none; cursor: pointer; margin: 10px 0 6px; }
.bmi-slider::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 22px; height: 22px; border-radius: 50%; background: linear-gradient(135deg,var(--rose-gold),var(--copper)); cursor: pointer; box-shadow: 0 4px 14px rgba(201,149,108,.5); border: 3px solid white; }
.bmi-slider::-moz-range-thumb { width: 22px; height: 22px; border-radius: 50%; background: linear-gradient(135deg,var(--rose-gold),var(--copper)); cursor: pointer; box-shadow: 0 4px 14px rgba(201,149,108,.5); border: 3px solid white; }
.bmi-gauge { height: 10px; border-radius: 10px; background: linear-gradient(90deg,#3b82f6 0%,#22c55e 30%,#eab308 60%,#ef4444 100%); position: relative; margin: 12px 0 6px; }
.bmi-indicator { position: absolute; top: -4px; width: 18px; height: 18px; border-radius: 50%; background: white; border: 3px solid var(--rose-gold); box-shadow: 0 3px 10px rgba(201,149,108,.4); transform: translateX(-50%); transition: left .5s cubic-bezier(.16,1,.3,1); }
.bmi-gauge-labels { display: flex; justify-content: space-between; font-size: 9px; font-weight: 700; letter-spacing: .04em; color: var(--text-light); text-transform: uppercase; }
.bmi-result-badge { display: inline-flex; align-items: center; gap: 8px; padding: 10px 20px; border-radius: 100px; font-size: 14px; font-weight: 700; transition: all .4s ease; }
.symptom-pill { padding: 8px 16px; border-radius: 100px; background: rgba(255,252,248,.9); border: 1.5px solid rgba(201,149,108,.2); font-size: 12px; font-weight: 600; color: var(--text-mid); cursor: pointer; transition: all .25s ease; user-select: none; white-space: nowrap; }
.symptom-pill:hover { border-color: var(--rose-gold); color: var(--rose-gold); background: rgba(201,149,108,.06); }
.symptom-pill.active { background: linear-gradient(135deg,var(--rose-gold),var(--copper)); color: white; border-color: transparent; box-shadow: 0 4px 16px rgba(201,149,108,.3); }

/* Insurer grid */
.insurer-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.insurer-card { padding: 22px 18px; border-radius: 20px; background: rgba(255,252,248,.8); backdrop-filter: blur(14px); border: 1px solid rgba(201,149,108,.12); text-align: center; transition: all .4s cubic-bezier(.16,1,.3,1); }
.insurer-card:hover { transform: translateY(-8px); box-shadow: 0 20px 56px rgba(184,130,74,.15); border-color: rgba(201,149,108,.3); }
.insurer-icon-ring { width: 72px; height: 72px; margin: 0 auto 14px; position: relative; }
.insurer-icon-ring::before { content: ''; position: absolute; inset: 0; border-radius: 50%; border: 1.5px solid rgba(201,149,108,.2); animation: ringRot 14s linear infinite; }
.insurer-icon-core { position: absolute; inset: 10px; border-radius: 50%; background: linear-gradient(135deg,rgba(247,221,208,.8),rgba(201,149,108,.25)); display: flex; align-items: center; justify-content: center; font-size: 22px; }
.insurer-name { font-family: var(--ff-display); font-size: 16px; font-weight: 600; margin-bottom: 4px; color: var(--text-dark); }
.insurer-tag { font-size: 10px; color: var(--text-light); }

.insurance-process { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; position: relative; margin-top: 56px; }
.insurance-process::before { content: ''; position: absolute; top: 30px; left: 12.5%; right: 12.5%; height: 2px; background: linear-gradient(90deg,var(--rose-gold),var(--teal),var(--copper),var(--rose-gold)); border-radius: 2px; z-index: 0; }
.ip-step { text-align: center; position: relative; z-index: 1; }
.ip-num { width: 60px; height: 60px; border-radius: 50%; background: linear-gradient(135deg,var(--rose-gold),var(--copper)); color: white; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; font-family: var(--ff-display); font-size: 26px; font-weight: 600; box-shadow: 0 8px 24px rgba(201,149,108,.3); border: 4px solid var(--warm-white); }
.ip-title { font-weight: 700; font-size: 14px; color: var(--text-dark); margin-bottom: 6px; }
.ip-desc { font-size: 12px; color: var(--text-light); line-height: 1.6; }

/* Health tips */
.tips-section { background: linear-gradient(135deg,rgba(247,221,208,.12),var(--warm-white) 60%,rgba(125,191,191,.07)); }
.tips-featured { border-radius: 28px; overflow: hidden; background: rgba(255,252,248,.85); backdrop-filter: blur(18px); border: 1px solid rgba(201,149,108,.15); transition: all .4s ease; }
.tips-featured:hover { transform: translateY(-6px); box-shadow: 0 28px 72px rgba(184,130,74,.15); border-color: rgba(201,149,108,.3); }
.tips-featured-visual { height: 220px; background: linear-gradient(135deg,rgba(242,196,176,.6),rgba(201,149,108,.35)); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.tips-featured-visual canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.tips-featured-visual-icon { font-size: 64px; color: rgba(201,149,108,.35); position: relative; z-index: 1; }
.tips-featured-body { padding: 24px; }
.tips-cat { display: inline-block; background: rgba(201,149,108,.1); border: 1px solid rgba(201,149,108,.18); border-radius: 100px; padding: 4px 12px; font-size: 10px; font-weight: 700; color: var(--rose-gold); letter-spacing: .08em; text-transform: uppercase; margin-bottom: 12px; }
.tips-featured-title { font-family: var(--ff-display); font-size: 22px; font-weight: 600; color: var(--text-dark); line-height: 1.3; margin-bottom: 10px; }
.tips-featured-excerpt { font-size: 13px; color: var(--text-mid); line-height: 1.7; }
.tips-small { border-radius: 20px; background: rgba(255,252,248,.8); backdrop-filter: blur(14px); border: 1px solid rgba(201,149,108,.12); padding: 20px; margin-bottom: 14px; display: flex; gap: 16px; align-items: flex-start; transition: all .35s ease; cursor: default; }
.tips-small:hover { transform: translateX(4px); border-color: rgba(201,149,108,.28); box-shadow: 0 12px 36px rgba(184,130,74,.1); }
.tips-small-icon { width: 48px; height: 48px; flex-shrink: 0; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 20px; }
.tips-small-cat { font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--rose-gold); margin-bottom: 4px; }
.tips-small-title { font-family: var(--ff-display); font-size: 16px; font-weight: 600; color: var(--text-dark); margin-bottom: 5px; line-height: 1.3; }
.tips-small-meta { font-size: 11px; color: var(--text-light); }

/* CTA Band */
.cta-band { background: linear-gradient(135deg,rgba(201,149,108,.14),rgba(74,155,155,.1)); border-top: 1px solid rgba(201,149,108,.12); border-bottom: 1px solid rgba(201,149,108,.12); padding: 72px 0; position: relative; overflow: hidden; }
.cta-band-canvas { position: absolute; inset: 0; pointer-events: none; }
.cta-band-content { position: relative; z-index: 2; }


/* ========================================
   CONTACT PAGE
   ======================================== */
.contact-hero { min-height: 46vh; display: flex; align-items: center; padding-top: 140px; padding-bottom: 60px; position: relative; overflow: hidden; }
.contact-hero-bg-canvas { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; z-index: 1; }
.contact-hero-content { position: relative; z-index: 2; }

.quick-strip { background: linear-gradient(135deg,rgba(201,149,108,.08),rgba(74,155,155,.06)); border-top: 1px solid rgba(201,149,108,.12); border-bottom: 1px solid rgba(201,149,108,.12); padding: 24px 0; }
.quick-strip-item { display: flex; align-items: center; gap: 14px; padding: 8px 0; }
.quick-strip-icon { width: 46px; height: 46px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.quick-strip-label { font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--text-light); margin-bottom: 3px; }
.quick-strip-value { font-weight: 700; font-size: 14px; color: var(--text-dark); }
.quick-strip-divider { width: 1px; height: 48px; background: linear-gradient(180deg,transparent,rgba(201,149,108,.25),transparent); }

.contact-section { padding: var(--section-spacing) 0; background: linear-gradient(160deg,var(--warm-white) 60%,rgba(242,196,176,.12)); position: relative; }
.contact-form-wrap { padding: 48px; border-radius: 36px; background: rgba(255,252,248,.88); backdrop-filter: blur(24px); border: 1px solid rgba(201,149,108,.2); box-shadow: 0 24px 80px rgba(184,130,74,.1); position: relative; overflow: hidden; }
.contact-form-wrap::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg,var(--rose-gold),var(--teal),var(--copper)); border-radius: 36px 36px 0 0; }

.dept-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }
.dept-chip { padding: 7px 14px; border-radius: 100px; background: rgba(255,252,248,.9); border: 1.5px solid rgba(201,149,108,.2); font-size: 12px; font-weight: 600; color: var(--text-mid); cursor: pointer; transition: all .25s ease; user-select: none; }
.dept-chip:hover { border-color: var(--rose-gold); color: var(--rose-gold); background: rgba(201,149,108,.06); }
.dept-chip.selected { background: linear-gradient(135deg,var(--rose-gold),var(--copper)); color: white; border-color: transparent; box-shadow: 0 4px 16px rgba(201,149,108,.3); }

.contact-info-card { padding: 28px; border-radius: 24px; background: rgba(255,252,248,.85); backdrop-filter: blur(16px); border: 1px solid rgba(201,149,108,.15); margin-bottom: 18px; transition: all .35s cubic-bezier(.16,1,.3,1); position: relative; overflow: hidden; }
.contact-info-card:hover { transform: translateX(6px); border-color: rgba(201,149,108,.32); box-shadow: 0 16px 48px rgba(184,130,74,.12); }
.contact-info-card::after { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: linear-gradient(180deg,var(--rose-gold),var(--teal)); border-radius: 3px 0 0 3px; opacity: 0; transition: opacity .3s; }
.contact-info-card:hover::after { opacity: 1; }
.contact-info-icon { width: 52px; height: 52px; border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 20px; margin-bottom: 16px; }
.contact-info-title { font-weight: 700; font-size: 15px; color: var(--text-dark); margin-bottom: 8px; }
.contact-info-text { font-size: 13px; color: var(--text-mid); line-height: 1.75; }
.contact-info-link { color: var(--rose-gold); text-decoration: none; font-weight: 600; transition: color .2s; }
.contact-info-link:hover { color: var(--copper); }

.emergency-banner { padding: 24px 28px; border-radius: 24px; background: linear-gradient(135deg,rgba(220,38,38,.07),rgba(220,38,38,.03)); border: 1.5px solid rgba(220,38,38,.18); margin-bottom: 18px; position: relative; overflow: hidden; }
.emergency-banner::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg,#dc2626,#ef4444,#dc2626); animation: emergencyGlow 2s ease-in-out infinite; }
.emergency-pulse { width: 10px; height: 10px; background: #ef4444; border-radius: 50%; animation: emergencyPulse 1.5s ease-in-out infinite; display: inline-block; }

.dept-section-contact { padding: var(--section-spacing) 0; background: linear-gradient(180deg,var(--warm-white),rgba(125,191,191,.06) 50%,var(--warm-white)); }
.dept-grid-contact { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.dept-card-contact { padding: 22px 18px; border-radius: 22px; background: rgba(255,252,248,.8); backdrop-filter: blur(14px); border: 1px solid rgba(201,149,108,.12); transition: all .4s cubic-bezier(.16,1,.3,1); cursor: default; position: relative; overflow: hidden; }
.dept-card-contact:hover { transform: translateY(-8px); box-shadow: 0 24px 64px rgba(184,130,74,.16); border-color: rgba(201,149,108,.3); }
.dept-card-icon { width: 44px; height: 44px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 18px; margin-bottom: 14px; }
.dept-card-name { font-family: var(--ff-display); font-size: 17px; font-weight: 600; margin-bottom: 5px; color: var(--text-dark); }
.dept-card-phone { font-size: 12px; color: var(--rose-gold); font-weight: 600; margin-bottom: 4px; }
.dept-card-timing { font-size: 11px; color: var(--text-light); }
.dept-card-ext { position: absolute; top: 16px; right: 16px; background: rgba(201,149,108,.1); border: 1px solid rgba(201,149,108,.18); border-radius: 100px; padding: 3px 9px; font-size: 10px; font-weight: 700; color: var(--rose-gold); letter-spacing: .05em; }

.social-section { padding: 72px 0; background: linear-gradient(135deg,rgba(247,221,208,.2),var(--warm-white)); border-top: 1px solid rgba(201,149,108,.1); }
.social-grid { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; margin-top: 36px; }
.social-big-card { display: flex; align-items: center; gap: 14px; padding: 18px 24px; border-radius: 20px; background: rgba(255,252,248,.85); border: 1px solid rgba(201,149,108,.15); text-decoration: none; transition: all .35s cubic-bezier(.16,1,.3,1); min-width: 180px; }
.social-big-card:hover { transform: translateY(-5px); box-shadow: 0 18px 52px rgba(184,130,74,.14); border-color: rgba(201,149,108,.3); }
.social-big-icon { width: 44px; height: 44px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.social-big-label { font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--text-light); }
.social-big-handle { font-size: 14px; font-weight: 700; color: var(--text-dark); }


/* ========================================
   CTA STRIP (shared)
   ======================================== */
.cta-strip { background: linear-gradient(135deg,var(--rose-gold),var(--copper) 60%,var(--teal)); padding: 72px 0; position: relative; overflow: hidden; }
.cta-strip::before { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); }
.cta-strip .container { position: relative; z-index: 1; }
.cta-headline { font-family: var(--ff-display); font-size: clamp(30px,4vw,54px); font-weight: 400; color: white; margin-bottom: 14px; line-height: 1.15; }
.cta-sub { font-size: 15px; color: rgba(255,255,255,.78); max-width: 500px; line-height: 1.7; }


/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: linear-gradient(160deg,rgba(247,221,208,.25),var(--warm-white) 60%,rgba(125,191,191,.1));
  border-top: 1px solid rgba(201,149,108,.12);
  padding: 72px 0 40px; position: relative; overflow: hidden;
}
.footer-glow { position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 600px; height: 2px; background: linear-gradient(90deg,transparent,var(--rose-gold),var(--teal),var(--rose-gold),transparent); animation: glowPulse 4s ease-in-out infinite; }
.footer-brand-name { font-family: var(--ff-display); font-size: 24px; font-weight: 500; color: var(--text-dark); margin-bottom: 8px; }
.footer-brand-tagline { font-size: 12px; color: var(--text-light); line-height: 1.6; max-width: 260px; margin-bottom: 24px; }
.footer-social { display: flex; gap: 10px; margin-bottom: 28px; flex-wrap: wrap; }
.social-icon { width: 40px; height: 40px; border-radius: 12px; background: rgba(201,149,108,.1); border: 1px solid rgba(201,149,108,.15); display: flex; align-items: center; justify-content: center; color: var(--rose-gold); font-size: 16px; text-decoration: none; transition: all .3s ease; }
.social-icon:hover { background: linear-gradient(135deg,var(--rose-gold),var(--copper)); color: white; transform: translateY(-3px); border-color: transparent; box-shadow: 0 8px 24px rgba(201,149,108,.3); }
.footer-col-title { font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--rose-gold); margin-bottom: 20px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 13px; color: var(--text-mid); text-decoration: none; transition: all .3s ease; display: flex; align-items: center; gap: 6px; }
.footer-links a:hover { color: var(--rose-gold); transform: translateX(4px); }
.footer-links a::before { content: '→'; font-size: 10px; opacity: 0; transform: translateX(-8px); transition: all .3s; }
.footer-links a:hover::before { opacity: 1; transform: translateX(0); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; font-size: 13px; color: var(--text-mid); }
.footer-contact-item i { color: var(--teal); margin-top: 2px; flex-shrink: 0; width: 14px; }
.footer-bottom { border-top: 1px solid rgba(201,149,108,.12); margin-top: 52px; padding-top: 24px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px; }
.footer-copy { font-size: 12px; color: var(--text-light); }
.footer-legal { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-legal a { font-size: 12px; color: var(--text-light); text-decoration: none; transition: color .3s; }
.footer-legal a:hover { color: var(--rose-gold); }


/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes orbFloat   { 0%,100% { transform:translate(0,0) scale(1); } 33% { transform:translate(30px,-40px) scale(1.05); } 66% { transform:translate(-20px,20px) scale(.97); } }
@keyframes pRing      { to { transform: rotate(360deg); } }
@keyframes ringRot    { to { transform: rotate(360deg); } }
@keyframes ringRotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes dna-spin   { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes corePulse  { 0%,100% { transform:scale(1); box-shadow:0 0 80px rgba(201,149,108,.2); } 50% { transform:scale(1.04); box-shadow:0 0 120px rgba(201,149,108,.35); } }
@keyframes cardFloat  { 0%,100% { transform:translateY(0); } 50% { transform:translateY(-12px); } }
@keyframes floatCard  { 0%,100% { transform:translateY(0); } 50% { transform:translateY(-10px); } }
@keyframes float-badge { 0%,100% { transform:translateY(0); } 50% { transform:translateY(-8px); } }
@keyframes pulse-dot  { 0%,100% { box-shadow:0 0 0 0 rgba(74,155,155,.4); } 50% { box-shadow:0 0 0 6px rgba(74,155,155,0); } }
@keyframes glowPulse  { 0%,100% { opacity:.5; } 50% { opacity:1; } }
@keyframes specFloat  { 0%,100% { transform:translateY(0); } 50% { transform:translateY(-6px); } }
@keyframes deptFloat  { 0%,100% { transform:translateY(0); } 50% { transform:translateY(-6px); } }
@keyframes amFloat    { 0%,100% { transform:translateY(0); } 50% { transform:translateY(-6px); } }
@keyframes labelFloat { 0%,100% { transform:translateY(0); } 50% { transform:translateY(-5px); } }
@keyframes particleDrift { 0% { transform:translate(0,0) scale(1);opacity:0; } 10% { opacity:1; } 90% { opacity:.5; } 100% { transform:translate(var(--dx,100px),var(--dy,-200px)) scale(.5);opacity:0; } }
@keyframes testiScroll { from { transform:translateX(0); } to { transform:translateX(calc(-50% - 12px)); } }
@keyframes pulse-icon { 0%,100% { transform:scale(1); } 50% { transform:scale(1.07); } }
@keyframes availPulse  { 0%,100% { box-shadow:0 0 0 0 rgba(37,211,102,.4); } 50% { box-shadow:0 0 0 5px rgba(37,211,102,0); } }
@keyframes availPulse2 { 0%,100% { box-shadow:0 0 0 0 rgba(201,149,108,.4); } 50% { box-shadow:0 0 0 5px rgba(201,149,108,0); } }
@keyframes emergencyGlow { 0%,100% { opacity:.6; } 50% { opacity:1; } }
@keyframes emergencyPulse { 0%,100% { box-shadow:0 0 0 0 rgba(239,68,68,.5); } 50% { box-shadow:0 0 0 8px rgba(239,68,68,0); } }
@keyframes heroBadgePulse { 0%,100% { opacity:1; transform:scale(1); } 50% { opacity:.6; transform:scale(1.4); } }


/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

/* ── Tablet / medium (≤ 991px) ── */
@media (max-width: 991px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .bottom-nav { display: block; }
  .footer { padding-bottom: calc(var(--bnav-h) + 28px + env(safe-area-inset-bottom)); }
  .fab-stack { bottom: calc(60px + 62px + 10px); right: 18px; }
  .scroll-top { bottom: calc(var(--bnav-h) + 14px); right: 18px; }

  .hero { padding-top: 90px; }
  .hero-content { padding: 40px 0 20px; }
  .hero-visual { min-height: 280px; margin-top: 20px; }
  .hero-orb-container { width: 280px; height: 280px; }
  .hero-float-card { display: none; }
  .hero-stats { gap: 20px; margin-top: 36px; padding-top: 28px; }
  .hero { padding-bottom: calc(var(--bnav-h) + 10px); }

  .bento-grid { grid-template-columns: repeat(2,1fr); }
  .bento-item.span-full { grid-column: span 2; }
  .spec-grid { grid-template-columns: repeat(2,1fr); gap: 16px; }
  .spec-card { padding: 26px 18px; }
  .team-grid { grid-template-columns: repeat(2,1fr); }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .aboutpg-vm-dual { grid-template-columns: 1fr; }
  .milestone-row { flex-wrap: wrap; }
  .milestone-item { flex: 0 0 50%; padding: 20px 16px; }
  .milestone-item:nth-child(2n)::after { display: none; }
  .story-image-stack { height: 300px; }
  .story-card-overlay,.story-card-overlay2 { display: none; }
  .founder-body { padding: 28px 22px; }
  .founder-visual { min-height: 360px; aspect-ratio: auto; }

  .services-hero { padding-top: 100px; padding-bottom: 60px; min-height: auto; }
  .services-hero-visual-wrap { width: 260px; height: 260px; margin: 28px auto 0; }
  .services-hero-ring-system { width: 220px; height: 220px; }
  .services-h-core { inset: 55px; }
  .services-float-card { display: none; }
  .services-orbit-icon { display: none; }
  .hero-stat-row { gap: 18px; }
  .services-h-stat-num { font-size: 30px; }
  .spotlight-body { padding: 28px 24px; }
  .spotlight-visual { min-height: 260px; }
  .spotlight-stats { grid-template-columns: 1fr 1fr; }
  .checklist { grid-template-columns: 1fr; }
  .tech-grid { grid-template-columns: 1fr 1fr; }
  .process-track { grid-template-columns: 1fr 1fr; gap: 28px; }
  .process-track::before { display: none; }

  .spec-hero { padding-top: 100px; padding-bottom: 60px; min-height: auto; }
  .spec-hero .hero-visual-wrap { width: 260px; height: 260px; margin: 28px auto 0; }
  .spec-hero .hero-ring-system { width: 220px; height: 220px; }
  .spec-hero .h-core { inset: 55px; }
  .spec-hero .float-badge { display: none; }
  .spec-hero .hero-stat-row { gap: 16px; margin-top: 32px; }
  .spec-grid-main { grid-template-columns: repeat(2, 1fr); }
  .doc-card:nth-child(n) { grid-column: span 1; }
  .dept-grid { grid-template-columns: repeat(2,1fr); }
  .appt-card { padding: 28px 22px; }

  .facilities-hero { padding: 110px 0 70px; text-align: center; }
  .facilities-hero .hero-building-wrap { width: 280px; height: 280px; }
  .facilities-hero .float-card { display: none; }
  .fac-bento { grid-template-columns: repeat(2,1fr); }
  .fac-item.span-3 { grid-column: span 2; }
  .room-grid { grid-template-columns: 1fr 1fr; }
  .am-grid { grid-template-columns: repeat(2,1fr); gap: 16px; }
  .am-card { padding: 24px 16px; }
  .ot-body { padding: 26px 22px; }
  .ot-visual { min-height: 280px; }
  .ot-content { padding: 30px; }
  .floor-visual { height: 260px; }
  .floor-info { padding: 22px 18px; gap: 18px; }
  .floor-info-block h3 { font-size: 22px; }
  .visiting-grid { grid-template-columns: 1fr 1fr; }

  .hc-hero { padding: 100px 0 60px; min-height: auto; }
  .hc-hero-visual { width: min(320px,80vw); height: min(320px,80vw); margin: 20px auto 0; }
  .hc-float-card { display: none; }
  .hc-hero-stats { justify-content: center; }
  .pkg-grid { grid-template-columns: 1fr 1fr; }
  .insurer-grid { grid-template-columns: repeat(2,1fr); }
  .insurance-process { grid-template-columns: 1fr 1fr; }
  .insurance-process::before { display: none; }
  .checker-wrap { padding: 28px 22px; }

  .dept-grid-contact { grid-template-columns: repeat(2,1fr); }
  .about-hero { padding-top: 100px; padding-bottom: 48px; min-height: auto; }
  .about-overlay-card,.about-overlay-card2 { display: none; }
  .about-main-card { aspect-ratio: 3/2; }
  .about-hero-visual-side { width: 260px; height: 260px; }
  .about-hero-visual-orb { width: 200px; height: 200px; }
  .about-h-core { inset: 55px; }
  .about-float-badge { display: none; }
  .about-hero-stat-row { gap: 20px; }
  .about-hero-stat-num { font-size: 32px; }
}

/* ── Mobile (≤ 767px) ── */
@media (max-width: 767px) {
  :root { --section-spacing: 64px; }
  .container { padding-left: 16px; padding-right: 16px; }
  .row { --bs-gutter-x: 20px; }
  section { overflow-x: hidden; }

  .hero { min-height: auto; padding-top: 80px; }
  .hero-headline { font-size: clamp(36px,10vw,52px); }
  .hero-orb-container { width: 220px; height: 220px; }
  .trust-divider { display: none; }
  .hero-trust { gap: 10px; }

  .bento-grid { grid-template-columns: 1fr; gap: 14px; }
  .bento-item.span-2,.bento-item.span-full { grid-column: span 1; }
  .bento-item { padding: 22px 20px; }
  .bento-bg-number,.bento-num { font-size: 70px; }

  .testi-card { width: 280px; padding: 24px; }
  .testi-quote { font-size: 14px; }
  .faq-trigger { padding: 16px 18px; }
  .faq-question { font-size: 15px; }
  .faq-body { padding: 0 18px; }
  .faq-item.active .faq-body { padding: 0 18px 16px; }
  .appt-form-wrap { padding: 20px 16px; border-radius: 24px; }
  .form-control-custom,.appt-form-input { font-size: 16px; }
  .map-container { height: 240px; }
  .map-card-label { padding: 14px 16px; gap: 10px; }
  .map-card-label .btn-glass { width: 100%; justify-content: center; margin-top: 8px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal { justify-content: center; gap: 14px; }
  .quick-strip-divider { display: none; }
  .toast-notify { bottom: calc(var(--bnav-h)+16px); font-size: 13px; padding: 12px 20px; }

  .about-hero { padding-top: 100px; padding-bottom: 48px; min-height: auto; }
  .about-values { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .team-card-body { padding: 14px; }
  .team-name { font-size: 17px; }
  .accred-strip { flex-direction: column; }
  .milestone-row { flex-wrap: wrap; }
  .milestone-item { flex: 0 0 50%; }
  .story-image-stack { height: 240px; }
  .founder-body { padding: 22px 16px; }

  .services-hero { padding-bottom: calc(var(--bnav-h) + 20px); }
  .services-hero-headline { font-size: clamp(36px,10vw,52px); }
  .services-hero-sub { font-size: 14px; }
  .services-hero-visual-wrap { width: 200px; height: 200px; }
  .services-hero-ring-system { width: 180px; height: 180px; }
  .services-h-core { inset: 44px; }
  .tech-grid { grid-template-columns: 1fr; }
  .process-track { grid-template-columns: 1fr; }
  .filter-bar { border-radius: 20px; width: 100%; max-width: 100%; }
  .filter-btn { padding: 9px 14px; font-size: 12px; }
  .spotlight-body { padding: 22px 18px; }
  .spotlight-stats { grid-template-columns: 1fr; }

  .spec-hero { padding-bottom: calc(var(--bnav-h) + 20px); }
  .spec-hero .hero-visual-wrap { width: 200px; height: 200px; }
  .spec-hero .hero-ring-system { width: 180px; height: 180px; }
  .spec-hero .h-core { inset: 44px; }
  .spec-grid-main { grid-template-columns: 1fr; gap: 16px; }
  .doc-card:nth-child(n) { grid-column: span 1; } /* reset all nth overrides */
  .dept-grid { grid-template-columns: 1fr 1fr; gap: 12px; }

  .facilities-hero { padding: 100px 0 60px; }
  .facilities-hero .hero-headline { font-size: 2rem; }
  .facilities-hero .hero-building-wrap { width: 220px; height: 220px; }
  .fac-bento { grid-template-columns: 1fr; gap: 14px; }
  .fac-item.span-2,.fac-item.span-3 { grid-column: span 1; }
  .fac-item { padding: 24px 20px; }
  .fac-num { font-size: 70px; }
  .room-grid { grid-template-columns: 1fr; }
  .ot-stats { grid-template-columns: 1fr; }
  .ot-content { padding: 22px; }
  .am-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .am-card { padding: 18px 12px; }
  .am-orbit { width: 70px; height: 70px; }
  .am-orbit-core { font-size: 22px; }
  .am-name { font-size: 15px; }
  .visiting-grid { grid-template-columns: 1fr; }
  .h-stat-num { font-size: 32px; }
  .hero-stat-row { gap: 16px; }

  .hc-hero { padding: 90px 0 50px; }
  .hc-hero-visual { width: min(260px,75vw); height: min(260px,75vw); }
  .hc-stat-card { flex: 1 1 80px; padding: 14px 10px; }
  .hc-stat-num { font-size: 28px; }
  .pkg-grid { grid-template-columns: 1fr; }
  .insurer-grid { grid-template-columns: 1fr 1fr; }
  .insurance-process { grid-template-columns: 1fr 1fr; }

  .contact-form-wrap { padding: 24px 18px; border-radius: 24px; }
  .contact-hero { padding-top: 110px; min-height: auto; }
  .dept-grid-contact { grid-template-columns: 1fr; }
}

/* ── Small mobile (≤ 480px) ── */
@media (max-width: 480px) {
  :root { --section-spacing: 52px; }
  .spec-grid { grid-template-columns: repeat(2,1fr); gap: 12px; }
  .spec-card { padding: 20px 14px; }
  .spec-orbit { width: 70px; height: 70px; }
  .spec-orbit-core { font-size: 22px; }
  .spec-name { font-size: 16px; }
  .dept-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .am-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
}

/* ── Large screens (≥ 1200px) ── */
@media (min-width: 1200px) {
  .services-hero-visual-wrap { width: 380px; height: 380px; }
  .services-hero-ring-system { width: 300px; height: 300px; }
}

@media (min-width: 992px) {
  .bottom-nav { display: none !important; }
}

/* ── Mobile: stack everything single-column ── */
@media (max-width: 575.98px) {
  .facilities-info-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .facilities-glass-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  /* Kill the stagger on mobile — cards just stack cleanly */
  .facilities-glass-offset-1,
  .facilities-glass-offset-2,
  .facilities-glass-offset-3 {
    margin-top: 0;
  }
}

/* ── Small tablets (576–767px): keep 2 cols but kill stagger ── */
@media (min-width: 576px) and (max-width: 767.98px) {
  .facilities-glass-offset-1,
  .facilities-glass-offset-2,
  .facilities-glass-offset-3 {
    margin-top: 0;
  }
}

@media (max-width: 767px) {
  .hc-hero        { padding-top: 140px; }
  .about-hero     { padding-top: 140px; }
  .services-hero  { padding-top: 140px; }
  .spec-hero      { padding-top: 140px; }
  .facilities-hero{ padding-top: 140px; }
  .contact-hero   { padding-top: 160px; }
}

/* Add to your @media (max-width: 767px) block */
@media (max-width: 767px) {
  .hc-hero { padding-top: 140px; }
}

/* ── Mobile: Hero badge spacing fix ── */
@media (max-width: 767px) {
  .hero-badge {
    margin-top: 16px;
  }
}

/* ── Mobile: About card size + gap fix ── */
@media (max-width: 991px) {
  .about-main-card {
    aspect-ratio: 3 / 2.2 !important;
    min-height: 260px;
  }

  .about-main-card > div {
    padding: 28px !important;
  }

  .about-main-card > div > div:nth-child(2) {
    font-size: 38px !important;
  }
}

@media (max-width: 767px) {
  .about-section .row.g-5 {
    --bs-gutter-y: 20px !important;
  }

  .about-main-card {
    aspect-ratio: unset !important;
    height: 200px;
  }

  .about-main-card > div {
    padding: 20px !important;
  }

  .about-main-card > div > div:nth-child(2) {
    font-size: 34px !important;
  }

  .about-main-card > div > div:nth-child(3) {
    font-size: 10px !important;
    letter-spacing: 0.08em !important;
  }
}

/* ── Social grid: 2 columns on mobile ── */
@media (max-width: 767px) {
  .social-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 12px !important;
  }

  .social-big-card {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    padding: 16px 10px !important;
    min-width: unset !important;
    gap: 10px !important;
  }

  .social-big-label {
    font-size: 9px !important;
  }

  .social-big-handle {
    font-size: 11px !important;
    word-break: break-word !important;
    overflow-wrap: anywhere !important;
  }
}

@media (max-width: 991px) {
  .team-section .team-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}
@media (max-width: 575px) {
  .team-section .team-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 767px) {
  .about-main-card > div[style] {
    padding: 16px 18px 14px !important;
  }
  /* The 64+ number */
  .about-main-card > div[style] > div:first-child {
    font-size: 28px !important;
  }
  /* The subtitle text */
  .about-main-card > div[style] > div:last-child {
    font-size: 9px !important;
    letter-spacing: 0.1em !important;
  }
  /* Fix about card height on mobile */
  .about-main-card {
    aspect-ratio: 3/2 !important;
    height: auto !important;
  }
}

@media (max-width: 767px) {
  .story-image-stack {
    height: 260px !important;
    margin-bottom: 32px;
  }
  .story-card-overlay2 {
    display: none !important;
  }
  .story-img-main {
    border-radius: 20px !important;
  }
}

/* ── Mobile: Fix story image stack height ── */
@media (max-width: 767px) {
  .story-image-stack {
    height: 340px !important;
    margin-bottom: 32px;
  }

  .story-img-main {
    height: 100% !important;
    border-radius: 20px !important;
  }

  .story-img-main img {
    height: 100% !important;
    width: 100% !important;
    object-fit: cover !important;
    object-position: top center !important;
  }
}

/* ── Mobile: Fix about section main card ── */
@media (max-width: 767px) {
  .about-main-card {
    aspect-ratio: unset !important;
    height: 320px !important;
    border-radius: 20px !important;
  }

  .about-main-card > img {
    height: 100% !important;
    width: 100% !important;
    object-fit: cover !important;
    object-position: center top !important;
  }
}

/* ── Mobile: Fix about section on index page ── */
@media (max-width: 767px) {
  .about-section .col-lg-5 {
    margin-bottom: 0 !important;
  }

  .about-overlay-card,
  .about-overlay-card2 {
    display: none !important;
  }
}

/* ── Spotlight: equal 50/50 split with taller visual ── */
.spotlight-card .spotlight-visual {
  min-height: 520px !important;
  height: 100% !important;
}

/* Mobile: visual stacks on top, reasonable height */
@media (max-width: 991px) {
  .spotlight-card .spotlight-visual {
    min-height: 300px !important;
    height: 300px !important;
  }
  .spotlight-body {
    padding: 28px 22px !important;
  }
  .spotlight-stats {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}

@media (max-width: 575px) {
  .spotlight-card .spotlight-visual {
    min-height: 240px !important;
    height: 240px !important;
  }
  .spotlight-stats {
    grid-template-columns: 1fr 1fr !important;
  }
  .spotlight-body {
    padding: 20px 16px !important;
  }
  .checklist {
    grid-template-columns: 1fr !important;
  }
}