/* =====================================================
   THE FETAL CLINIC — PREMIUM CSS v2
   Modern, Subtle, Soothing Pink | Fully Responsive
   Fonts: Plus Jakarta Sans (headings) + Inter (body)
   ===================================================== */

/* ---- ROOT VARIABLES ---- */
:root {
  --pink-50: #FFF5F8;
  --pink-100: #FFE4EE;
  --pink-200: #FFBDD5;
  --pink-300: #F9A3C0;
  --pink-400: #E07599;
  --pink-500: #C94F7C;
  --pink-600: #A33460;
  --plum: #7B1F5E;
  --plum-soft: #B56FA0;
  --navy: #1B2F5E;
  --navy-mid: #2D4A8A;
  --bg: #FEFBFC;
  --bg-alt: #FFF7FA;
  --surface: #FFFFFF;
  --text: #1A1028;
  --text-mid: #4A3858;
  --muted: #9584A0;
  --border: #EFD8E8;
  --border-soft: #F5E8F0;
  --shadow-xs: 0 1px 4px rgba(180, 80, 120, 0.06);
  --shadow-sm: 0 2px 12px rgba(180, 80, 120, 0.08);
  --shadow-md: 0 6px 24px rgba(140, 60, 100, 0.11);
  --shadow-lg: 0 16px 48px rgba(120, 40, 90, 0.13);
  --radius: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- RESET ---- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', 'Noto Sans Devanagari', sans-serif;
  font-size: 15px;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

[data-lang="hi"] {
  font-family: 'Noto Sans Devanagari', 'Inter', sans-serif;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  font-family: inherit;
}

input,
select,
textarea {
  font-family: inherit;
}

/* ---- CONTAINER ---- */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- TYPOGRAPHY — MODERN ---- */
h1,
h2,
h3,
h4,
h5 {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
}

h3 {
  font-size: 1.15rem;
  font-weight: 600;
}

h4 {
  font-size: 1rem;
  font-weight: 600;
}

h5 {
  font-size: 0.95rem;
  font-weight: 600;
}

p {
  font-size: 0.93rem;
  line-height: 1.7;
}

/* ---- BUTTONS ---- */
.btn-primary {
  background: linear-gradient(135deg, var(--pink-500) 0%, var(--plum) 100%);
  color: #fff;
  padding: 0.7rem 1.6rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.1px;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(201, 79, 124, 0.28);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 79, 124, 0.38);
}

.btn-ghost {
  background: transparent;
  color: var(--navy);
  padding: 0.7rem 1.6rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.88rem;
  border: 1.5px solid var(--navy);
  transition: var(--transition);
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.btn-ghost:hover {
  background: var(--navy);
  color: #fff;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--pink-500);
  padding: 0.65rem 1.6rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.88rem;
  border: 1.5px solid var(--pink-500);
  transition: var(--transition);
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.btn-outline:hover {
  background: var(--pink-500);
  color: #fff;
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.45rem 1rem;
  font-size: 0.8rem;
}

.btn-lg {
  padding: 0.9rem 2.2rem;
  font-size: 1rem;
}

.news-cta-solo {
  margin-top: 0.5rem;
}

.btn-full {
  width: 100%;
  justify-content: center;
  padding: 0.9rem;
  font-size: 0.95rem;
}

.btn-book {
  background: linear-gradient(135deg, var(--pink-500), var(--plum));
  color: #fff;
  padding: 0.55rem 1.3rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.82rem;
  transition: var(--transition);
  white-space: nowrap;
  box-shadow: 0 3px 12px rgba(201, 79, 124, 0.25);
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.btn-book:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(201, 79, 124, 0.35);
}

/* ---- SECTION UTILITIES ---- */
.section {
  padding: 80px 0;
}

.sec-header {
  text-align: center;
  margin-bottom: 3rem;
}

.sec-tag {
  display: inline-block;
  background: var(--pink-100);
  color: var(--pink-600);
  padding: 0.3rem 1rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.sec-h2 {
  color: var(--navy);
  margin-bottom: 0.85rem;
}

.sec-p {
  color: var(--text-mid);
  max-width: 580px;
  margin: 0 auto;
}

.sec-cta {
  text-align: center;
  margin-top: 2.5rem;
}

.learn-link,
.more-link {
  color: var(--pink-500);
  font-weight: 600;
  font-size: 0.82rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.learn-link:hover,
.more-link:hover {
  color: var(--plum);
  transform: translateX(3px);
}

/* ---- REVEAL ANIMATION ---- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =====================================================
   HEADER — REFINED
   ===================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition);
}

.header-strip {
  background: linear-gradient(90deg, var(--plum) 0%, var(--navy) 100%);
  padding: 0.38rem 0;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.88);
}

.header-strip-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.strip-left {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  flex-wrap: wrap;
  overflow: hidden;
}

.strip-sep {
  opacity: 0.4;
}

.strip-right {
  display: flex;
  gap: 1.25rem;
  flex-shrink: 0;
}

.strip-link {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.75rem;
  transition: var(--transition);
}

.strip-link:hover {
  color: #fff;
}

.navbar {
  background: rgba(255, 251, 252, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-soft);
  padding: 0.4rem 0;
  transition: var(--transition);
}

.header.scrolled .header-strip {
  display: none;
}

.header.scrolled .navbar {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 20px rgba(180, 80, 120, 0.08);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-width: 0;
}

/* LOGO */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  text-decoration: none;
  min-width: 0;
}

.logo-img {
  height: 68px;
  width: auto;
  object-fit: contain;
}

.logo-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
  padding-left: 12px;
  border-left: 1.5px solid var(--border);
}

.logo-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: var(--plum);
  line-height: 1.2;
  letter-spacing: -0.2px;
  white-space: nowrap;
}

.logo-sub {
  font-size: 0.68rem;
  font-weight: 400;
  color: var(--muted);
  white-space: nowrap;
  letter-spacing: 0.1px;
}

.logo-badge-text {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--plum), var(--navy));
  color: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.logo-clinic-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
}

.logo-clinic-name em {
  color: var(--plum);
  font-style: italic;
}

/* NAV LINKS */
.nav-links {
  display: flex;
  gap: 0;
  align-items: center;
  flex-wrap: nowrap;
}

.nav-link {
  padding: 0.4rem 0.7rem;
  font-size: 0.83rem;
  font-weight: 500;
  color: var(--text-mid);
  border-radius: 8px;
  transition: var(--transition);
  white-space: nowrap;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.nav-link:hover,
.nav-link.active {
  color: var(--plum);
  background: var(--pink-100);
}

/* NAV RIGHT */
.nav-right {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 3px;
  background: var(--pink-50);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 0.3rem 0.75rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
  transition: var(--transition);
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.lang-toggle:hover {
  border-color: var(--pink-400);
}

.lang-en.active,
.lang-hi.active {
  color: var(--plum);
}

.lang-div {
  opacity: 0.35;
  font-size: 0.7rem;
}

/* SOCIAL ICONS — Modern outline style */
.nav-socials {
  display: flex;
  gap: 4px;
  align-items: center;
}

.nsocial {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: var(--muted);
  background: transparent;
  border: 1px solid var(--border);
}

.nsocial svg {
  width: 13px;
  height: 13px;
}

.nsocial.wa:hover {
  color: #fff;
  background: #25D366;
  border-color: #25D366;
  transform: translateY(-2px);
}

.nsocial.ig:hover {
  color: #fff;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  border-color: #fd1d1d;
  transform: translateY(-2px);
}

.nsocial.fb:hover {
  color: #fff;
  background: #1877F2;
  border-color: #1877F2;
  transform: translateY(-2px);
}

.nsocial.tw:hover {
  color: #fff;
  background: #14171A;
  border-color: #14171A;
  transform: translateY(-2px);
}

/* NAV DROPDOWN */
.has-drop {
  position: relative;
}

/* Invisible bridge to prevent hover gap */
.has-drop::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 18px;
  background: transparent;
}

.drop-chev {
  width: 11px;
  height: 11px;
  vertical-align: middle;
  margin-left: 2px;
  transition: transform 0.22s ease;
  flex-shrink: 0;
}

.has-drop:hover .drop-chev {
  transform: rotate(180deg);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(120, 40, 90, 0.13);
  border: 1px solid var(--border-soft);
  padding: 0.45rem;
  min-width: 230px;
  max-height: 70vh;
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 600;
}

/* Small arrow tip */
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 10px;
  height: 10px;
  background: #fff;
  border-left: 1px solid var(--border-soft);
  border-top: 1px solid var(--border-soft);
}

.has-drop:hover .nav-dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.drop-item {
  display: flex;
  align-items: center;
  padding: 0.52rem 0.85rem;
  border-radius: 10px;
  font-size: 0.82rem;
  color: var(--text-mid);
  white-space: nowrap;
  transition: var(--transition);
  gap: 0.4rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.drop-item:hover {
  background: var(--pink-50);
  color: var(--plum);
}

.drop-item:hover .drop-ico {
  stroke: var(--plum);
}

.drop-cta {
  color: var(--pink-500);
  font-weight: 600;
}

.drop-cta:hover {
  background: var(--pink-100);
  color: var(--plum);
}

/* Elegant line-art SVG icons */
.drop-ico {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  stroke: var(--muted);
  transition: stroke 0.2s ease;
}

.drop-divider {
  height: 1px;
  background: var(--border-soft);
  margin: 0.3rem 0.6rem;
}

/* HAMBURGER */

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 6px;
  border-radius: 6px;
  transition: var(--transition);
}

.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--pink-500);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* =====================================================
   HERO — SOFTER & MORE MODERN
   ===================================================== */
.hero {
  min-height: 100vh;
  padding-top: 110px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(150deg, #FFF5F8 0%, #FEFBFC 45%, #F8F0FF 100%);
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.22;
  animation: blobFloat 10s ease-in-out infinite alternate;
  pointer-events: none;
}

.b1 {
  width: 480px;
  height: 480px;
  background: var(--pink-300);
  top: -80px;
  right: -60px;
  animation-delay: 0s;
}

.b2 {
  width: 360px;
  height: 360px;
  background: #DDB8FF;
  bottom: -60px;
  left: -60px;
  animation-delay: 2.5s;
}

.b3 {
  width: 280px;
  height: 280px;
  background: var(--pink-200);
  top: 45%;
  left: 35%;
  animation-delay: 5s;
}

.b4 {
  width: 200px;
  height: 200px;
  background: rgba(123, 31, 94, 0.15);
  top: 15%;
  right: 20%;
  animation-delay: 1s;
}

@keyframes blobFloat {
  from {
    transform: translate(0, 0) scale(1);
  }

  to {
    transform: translate(20px, 15px) scale(1.07);
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 1rem 24px 5rem;
}

/* HERO LEFT */
.hero-left {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--pink-200);
  padding: 0.35rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--plum);
  width: fit-content;
  backdrop-filter: blur(10px);
  animation: fadeSlideDown 0.8s ease both;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.hero-h1 {
  color: var(--navy);
  animation: fadeSlideUp 0.85s ease 0.1s both;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.hero-accent {
  background: linear-gradient(135deg, var(--plum) 0%, var(--pink-500) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  color: var(--text-mid);
  font-size: 0.92rem;
  line-height: 1.75;
  animation: fadeSlideUp 0.85s ease 0.2s both;
  max-width: 480px;
}

.hero-usp {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--plum);
  margin-top: -0.4rem;
  animation: fadeSlideUp 0.85s ease 0.25s both;
}

.hero-btns {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  animation: fadeSlideUp 0.85s ease 0.3s both;
}

.hero-stats {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  padding: 1rem 1.4rem;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  width: fit-content;
  animation: fadeSlideUp 0.85s ease 0.4s both;
  box-shadow: var(--shadow-xs);
}

.hs {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
}

.hs strong {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.hs span {
  font-size: 0.7rem;
  color: var(--muted);
  white-space: nowrap;
  letter-spacing: 0.2px;
}

.hs-div {
  width: 1px;
  height: 30px;
  background: var(--border);
}

/* HERO RIGHT */
.hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-visual {
  position: relative;
  width: 380px;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Subtle decorative ring behind the card */
.hv-ring {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  border: 1.5px dashed var(--pink-200);
  animation: spin 30s linear infinite;
  opacity: 0.5;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

@keyframes spin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* Logo card — clean modern card, works with any logo shape */
.hv-logo-wrap {
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 2rem 2.5rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 260px;
}

.hv-logo {
  width: 100%;
  max-width: 220px;
  height: auto;
  max-height: 160px;
  object-fit: contain;
  display: block;
}

.hv-logo-fallback {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--plum), var(--navy));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  display: none;
}

/* Floating cards */
.hv-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 0.6rem 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  box-shadow: var(--shadow-sm);
  font-size: 0.78rem;
  min-width: 140px;
  z-index: 2;
}

.hv-card.top {
  top: 10px;
  left: -30px;
  animation: floatCard 3.5s ease-in-out infinite alternate;
}

.hv-card.bottom {
  bottom: 20px;
  right: -25px;
  animation: floatCard 4s ease-in-out 0.5s infinite alternate;
}

.hv-card.left-card {
  top: 50%;
  left: -55px;
  transform: translateY(-50%);
  animation: floatCardLR 4s ease-in-out 1s infinite alternate;
}

.hv-card>span {
  font-size: 1.3rem;
}

.hvc-title {
  font-weight: 600;
  color: var(--navy);
  font-size: 0.75rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.hvc-sub {
  font-size: 0.68rem;
  color: var(--plum);
  font-weight: 500;
}

@keyframes floatCard {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-8px);
  }
}

@keyframes floatCardLR {
  from {
    transform: translateY(-50%) translateX(0);
  }

  to {
    transform: translateY(-50%) translateX(-7px);
  }
}

.scroll-bounce {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
  opacity: 0.5;
}

.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid var(--plum);
  border-bottom: 2px solid var(--plum);
  transform: rotate(45deg);
  animation: bounce 1.6s ease-in-out infinite;
}

@keyframes bounce {

  0%,
  100% {
    transform: rotate(45deg) translateY(0);
  }

  50% {
    transform: rotate(45deg) translateY(7px);
  }
}

@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeSlideDown {
  from {
    opacity: 0;
    transform: translateY(-14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =====================================================
   STATS BAR — CLEANER
   ===================================================== */
.stats-bar {
  background: linear-gradient(135deg, var(--plum) 0%, var(--navy) 100%);
  padding: 1.75rem 0;
}

.stats-bar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  text-align: center;
}

.stat-item {
  color: #fff;
}

.stat-num {
  font-size: 2rem;
  font-weight: 800;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.stat-suf {
  font-size: 1.3rem;
  font-weight: 700;
  opacity: 0.75;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.stat-label {
  font-size: 0.78rem;
  opacity: 0.7;
  margin-top: 0.2rem;
  letter-spacing: 0.2px;
}

/* =====================================================
   SPECIALIZATIONS — SUBTLE CARDS
   ===================================================== */
.spec-section {
  background: var(--bg);
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.spec-card {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.4rem;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow-xs);
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  cursor: pointer;
}

.spec-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--pink-200);
}

.spec-icon {
  font-size: 2.1rem;
  width: 58px;
  height: 58px;
  background: var(--pink-50);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  transition: var(--transition);
}

.spec-card:hover .spec-icon {
  background: var(--pink-100);
  transform: scale(1.08);
}

.spec-card h3 {
  font-size: 0.9rem;
  color: var(--navy);
}

.spec-card p {
  font-size: 0.82rem;
  color: var(--muted);
  flex: 1;
  line-height: 1.6;
}

/* =====================================================
   DOCTORS — REFINED CARDS
   ===================================================== */
.doc-section {
  background: var(--bg-alt);
}

.doc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.doc-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  border: 1px solid var(--border-soft);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.doc-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.doc-img-wrap {
  background: linear-gradient(135deg, var(--pink-100) 0%, var(--pink-50) 100%);
  height: 260px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

.doc-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.doc-card:hover .doc-photo {
  transform: scale(1.05);
}

.doc-avatar {
  font-size: 4.5rem;
}

.doc-exp {
  position: absolute;
  top: 10px;
  right: 10px;
  background: linear-gradient(135deg, var(--plum), var(--pink-500));
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.2rem 0.65rem;
  border-radius: 50px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.doc-info {
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.doc-info .btn-primary {
  margin-top: auto;
}

.doc-info h3 {
  font-size: 1.05rem;
  color: var(--navy);
}

.doc-deg {
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 1.4;
}

.doc-spec {
  font-size: 0.82rem;
  color: var(--pink-600);
  font-weight: 500;
}

.doc-edu {
  font-size: 0.72rem;
  color: var(--text-mid);
  line-height: 1.4;
  font-style: italic;
  opacity: 0.85;
}

.doc-rating {
  font-size: 0.78rem;
  color: var(--text-mid);
}

.doc-tags {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.dtag {
  background: var(--pink-50);
  color: var(--plum);
  font-size: 0.7rem;
  font-weight: 500;
  padding: 0.2rem 0.6rem;
  border-radius: 50px;
  border: 1px solid var(--pink-100);
  font-family: 'Plus Jakarta Sans', sans-serif;
}

/* =====================================================
   FACILITIES — SUBTLE DARK SECTION
   ===================================================== */
.fac-section {
  background: linear-gradient(145deg, #1B2342 0%, #2A1040 100%);
  position: relative;
  overflow: hidden;
}

.fac-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(201, 79, 124, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(123, 31, 94, 0.1) 0%, transparent 60%);
}

.fac-section .sec-tag {
  background: rgba(255, 255, 255, 0.12);
  color: var(--pink-200);
}

.fac-section .sec-h2 {
  color: #fff;
}

.fac-section .sec-p {
  color: rgba(255, 255, 255, 0.62);
}

.fac-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  position: relative;
  z-index: 1;
}

.fac-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.4rem;
  transition: var(--transition);
  text-align: center;
}

.fac-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(249, 168, 201, 0.3);
  transform: translateY(-4px);
}

.fac-icon {
  font-size: 2.2rem;
  margin-bottom: 0.9rem;
}

.fac-card h4 {
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: 0.45rem;
}

.fac-card p {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.83rem;
  line-height: 1.65;
}

/* =====================================================
   REVIEWS TICKER
   ===================================================== */
.reviews-section {
  background: var(--pink-50);
  overflow: hidden;
}

.ticker-wrapper {
  overflow: hidden;
  width: 100%;
  padding: 0.75rem 0;
}

.ticker-track {
  display: flex;
  gap: 1.25rem;
  width: max-content;
  animation: ticker 45s linear infinite;
}

.ticker-track:hover {
  animation-play-state: paused;
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.rev-card {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 1.35rem 1.25rem;
  width: 320px;
  flex-shrink: 0;
  box-shadow: var(--shadow-xs);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.rev-card:hover {
  box-shadow: var(--shadow-sm);
  border-color: var(--pink-200);
}

.rev-top {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.rev-av {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--pink-400), var(--plum));
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
  font-family: 'Plus Jakarta Sans', sans-serif;
  text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(120, 40, 90, 0.2);
}

/* Unique gradient per reviewer card */
.rev-card:nth-child(9n+1) .rev-av {
  background: linear-gradient(135deg, #C94F7C, #7B2D5F);
}

.rev-card:nth-child(9n+2) .rev-av {
  background: linear-gradient(135deg, #4A90D9, #2B5EA7);
}

.rev-card:nth-child(9n+3) .rev-av {
  background: linear-gradient(135deg, #E67E22, #C0392B);
}

.rev-card:nth-child(9n+4) .rev-av {
  background: linear-gradient(135deg, #8E44AD, #6C3483);
}

.rev-card:nth-child(9n+5) .rev-av {
  background: linear-gradient(135deg, #27AE60, #1E8449);
}

.rev-card:nth-child(9n+6) .rev-av {
  background: linear-gradient(135deg, #2980B9, #1ABC9C);
}

.rev-card:nth-child(9n+7) .rev-av {
  background: linear-gradient(135deg, #D35400, #E74C3C);
}

.rev-card:nth-child(9n+8) .rev-av {
  background: linear-gradient(135deg, #8E44AD, #C94F7C);
}

.rev-card:nth-child(9n+9) .rev-av {
  background: linear-gradient(135deg, #16A085, #2ECC71);
}

.rev-name {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--navy);
}

.rev-stars {
  font-size: 0.75rem;
}

.rev-badge {
  margin-left: auto;
  background: #4285F4;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 600;
  padding: 0.18rem 0.55rem;
  border-radius: 50px;
  white-space: nowrap;
  flex-shrink: 0;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.rev-text {
  font-size: 0.83rem;
  color: var(--text-mid);
  line-height: 1.65;
  font-style: italic;
}

/* =====================================================
   PATIENT STORIES — STAGGERED VIDEO GRID
   ===================================================== */
.stories-section-new {
  background: linear-gradient(150deg, #0a081d 0%, #151233 50%, #0d0b21 100%);
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

.stories-section-new::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 10% 20%, rgba(201, 79, 124, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(123, 31, 94, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.stories-section-new .sec-tag {
  background: rgba(255, 255, 255, 0.12);
  color: #f9a8d4;
}

.stories-section-new .sec-h2 {
  color: #fff;
}

.stories-section-new .sec-p {
  color: rgba(255, 255, 255, 0.62);
}

.video-stories-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  align-items: center;
  margin-top: 2.5rem;
}

.stories-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
}

/* Individual Video Story Card */
.video-story-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  cursor: pointer;
  background: #1a1a2e;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    border-color 0.4s;
  display: flex;
  flex-direction: column;
}

/* Specific heights matching the layout */
.col-1 .video-story-card,
.col-5 .video-story-card {
  height: 350px;
}

.col-2 .video-story-card,
.col-4 .video-story-card {
  height: 230px;
}

.col-3 .video-story-card {
  height: 530px;
}

/* Card background snap */
.story-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
}

/* Overlay gradient for legibility */
.video-story-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.1) 40%, rgba(0, 0, 0, 0.85) 100%);
  z-index: 1;
  transition: opacity 0.4s;
}

/* Play button center overlay */
.play-button-wrap {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.play-button-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1.5px solid rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

.play-button-circle svg {
  margin-left: 3px;
  transition: transform 0.3s;
}

/* Hover effects */
.video-story-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(201, 79, 124, 0.25);
  border-color: rgba(249, 163, 192, 0.4);
}

.video-story-card:hover .story-card-bg {
  transform: scale(1.08);
}

.video-story-card:hover .play-button-circle {
  background: #ffffff;
  border-color: #ffffff;
  transform: scale(1.15);
  box-shadow: 0 0 24px rgba(255, 255, 255, 0.6);
}

.video-story-card:hover .play-button-circle svg {
  fill: var(--pink-600);
  transform: scale(1.1);
}

/* Content positioning at the bottom */
.story-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem 1.25rem;
  z-index: 3;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.story-condition {
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.35;
  margin: 0;
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  font-family: 'Plus Jakarta Sans', sans-serif;
  letter-spacing: -0.2px;
}

.col-3 .story-condition {
  font-size: 1.25rem;
}

.story-patient-name {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.col-3 .story-patient-name {
  font-size: 0.85rem;
}

/* =====================================================
   VIDEO MODAL PLAYER STYLE
   ===================================================== */
.video-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(8, 4, 18, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: none;
  place-items: center;
  z-index: 3000;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.video-modal-overlay.show {
  display: grid;
  opacity: 1;
}

.video-modal-box {
  background: #110d24;
  border-radius: 28px;
  width: 100%;
  max-width: 860px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  transform: scale(0.9) translateY(20px);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), max-width 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.video-modal-box.is-instagram {
  max-width: 420px;
  /* Sleek mobile portrait width */
  border-color: rgba(249, 168, 201, 0.35);
  /* Soft premium branded pink glow */
  box-shadow: 0 24px 64px rgba(201, 79, 124, 0.25);
}

.video-modal-overlay.show .video-modal-box {
  transform: scale(1) translateY(0);
}

.video-modal-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(17, 13, 36, 0.75);
  /* Sleek translucent brand navy */
  color: #ffffff;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  cursor: pointer;
  z-index: 3200;
  /* Float above everything including modal content box */
  transition: background 0.2s, transform 0.2s, border-color 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
}

.video-modal-close:hover {
  background: #c94f7c;
  /* Dynamic premium brand pink hover */
  border-color: #ffffff;
  transform: rotate(90deg);
  box-shadow: 0 4px 20px rgba(201, 79, 124, 0.7);
}

/* Responsive button alignment for smaller screens */
@media (max-width: 576px) {
  .video-modal-close {
    top: 16px;
    right: 16px;
    width: 38px;
    height: 38px;
    font-size: 1.4rem;
  }
}

/* Responsive sizing for portrait modal to guarantee perfect centering on short viewports */
@media (max-height: 900px) {
  .video-modal-box.is-instagram {
    max-width: 360px;
  }
}

@media (max-height: 780px) {
  .video-modal-box.is-instagram {
    max-width: 310px;
  }
}

@media (max-height: 660px) {
  .video-modal-box.is-instagram {
    max-width: 270px;
  }
}


.video-iframe-container {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  /* 16:9 Aspect Ratio */
  background: #000;
  transition: padding-top 0.35s ease;
}

.video-modal-box.is-instagram .video-iframe-container {
  padding-top: 177.78%;
  /* 9:16 Portrait Ratio for Reels */
}

.video-iframe-container iframe,
.video-iframe-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  background: #000;
  object-fit: contain;
}

.video-modal-info {
  padding: 1.5rem 2rem;
  color: #ffffff;
  background: linear-gradient(to bottom, #110d24, #0b0818);
}

.video-modal-info h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 6px;
  color: #ffffff;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.video-modal-info p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

/* =====================================================
   RESPONSIVE DESIGN FOR NEW PATIENT STORIES
   ===================================================== */
@media (max-width: 992px) {
  .video-stories-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 24px;
    margin-left: -24px;
    margin-right: -24px;
    padding-left: 24px;
    padding-right: 24px;
    gap: 16px;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .video-stories-grid::-webkit-scrollbar {
    display: none;
  }

  .stories-col {
    flex-direction: row;
    gap: 16px;
    flex-shrink: 0;
  }

  .video-story-card,
  .col-1 .video-story-card,
  .col-2 .video-story-card,
  .col-3 .video-story-card,
  .col-4 .video-story-card,
  .col-5 .video-story-card {
    width: 280px !important;
    height: 420px !important;
    flex-shrink: 0;
    scroll-snap-align: start;
  }

  .story-condition,
  .col-3 .story-condition {
    font-size: 1.05rem;
  }

  .story-patient-name,
  .col-3 .story-patient-name {
    font-size: 0.78rem;
  }

  .play-button-circle {
    width: 48px;
    height: 48px;
  }
}

/* =====================================================
   NEWS & EVENTS
   ===================================================== */
.news-section {
  background: var(--bg);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.news-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  border: 1px solid var(--border-soft);
  transition: var(--transition);
}

.news-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
  border-color: var(--pink-200);
}

.news-img {
  height: 130px;
  background: linear-gradient(135deg, var(--pink-100), var(--pink-50));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.news-img-real {
  height: 180px;
  overflow: hidden;
  position: relative;
}

.news-img-real img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.news-card:hover .news-img-real img {
  transform: scale(1.05);
}

.news-body {
  padding: 1.35rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.news-meta {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.ncat {
  font-size: 0.68rem;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.ncat.camp {
  background: #E8F5E9;
  color: #2E7D32;
}

.ncat.award {
  background: #FFF8E1;
  color: #E65100;
}

.ncat.aware {
  background: var(--pink-100);
  color: var(--pink-600);
}

.ncat.event {
  background: #E3F2FD;
  color: #1565C0;
}

.ndate {
  font-size: 0.73rem;
  color: var(--muted);
}

.news-card h4 {
  font-size: 0.93rem;
  color: var(--navy);
  line-height: 1.4;
}

.news-card p {
  font-size: 0.82rem;
  color: var(--text-mid);
  line-height: 1.6;
}

/* =====================================================
   BLOG
   ===================================================== */
.blog-section {
  background: var(--bg-alt);
}

.blog-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 1.25rem;
}

/* Two-card blog layout (centered, not stretched full width) */
.blog-grid-2 {
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
  max-width: 900px;
  margin: 0 auto;
}

.blog-img.featured-img {
  height: 180px;
  font-size: 3.5rem;
}

@media (max-width: 768px) {
  .blog-grid-2 {
    grid-template-columns: 1fr;
    max-width: 460px;
  }
}

.blog-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  border: 1px solid var(--border-soft);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
  border-color: var(--pink-200);
}

.blog-img {
  height: 120px;
  background: linear-gradient(135deg, var(--pink-100), #EFE0FF);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.8rem;
}

.blog-card.featured-blog .blog-img {
  height: 180px;
  font-size: 3.5rem;
}

.blog-body {
  padding: 1.35rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  flex: 1;
}

.blog-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.bcat {
  font-size: 0.68rem;
  font-weight: 600;
  background: var(--pink-100);
  color: var(--pink-600);
  padding: 0.18rem 0.55rem;
  border-radius: 50px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.bread {
  font-size: 0.72rem;
  color: var(--muted);
}

.blog-card h4 {
  font-size: 0.93rem;
  color: var(--navy);
  line-height: 1.4;
}

.blog-card p {
  font-size: 0.82rem;
  color: var(--text-mid);
  line-height: 1.6;
  flex: 1;
}

.blog-author-wrap {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-top: 1px solid var(--border-soft);
  padding-top: 0.7rem;
}

.ba-av {
  font-size: 1.35rem;
}

.ba-name {
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--navy);
}

.ba-spec {
  font-size: 0.72rem;
  color: var(--muted);
}

/* =====================================================
   APPOINTMENT
   ===================================================== */
.appt-section {
  background: var(--pink-50);
}

.appt-layout {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 3.5rem;
  align-items: start;
}

.appt-info-col .sec-h2,
.appt-info-col .sec-p {
  text-align: left;
  margin: 0;
}

.appt-details {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  margin-top: 1.5rem;
}

.appt-det-item {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
}

.adi-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.appt-det-item strong {
  display: block;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.18rem;
  font-size: 0.88rem;
}

.appt-det-item p,
.appt-det-item a {
  font-size: 0.83rem;
  color: var(--text-mid);
  line-height: 1.5;
}

.appt-det-item a:hover {
  color: var(--plum);
}

/* FORM */
.form-box {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-soft);
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-grp {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-grp label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-mid);
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.form-grp input,
.form-grp select,
.form-grp textarea {
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 0.7rem 0.95rem;
  font-size: 0.87rem;
  color: var(--text);
  background: var(--bg);
  transition: var(--transition);
  outline: none;
  width: 100%;
}

.form-grp input:focus,
.form-grp select:focus,
.form-grp textarea:focus {
  border-color: var(--pink-400);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(201, 79, 124, 0.09);
}

.form-grp textarea {
  resize: none;
}

/* WhatsApp Booking Card */
.wa-booking-card {
  position: relative;
  overflow: hidden;
}

.wa-booking-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #25D366, #128C7E, #25D366);
  background-size: 200% 100%;
  animation: waGradientSlide 3s ease infinite;
}

@keyframes waGradientSlide {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.wa-booking-header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid var(--border-soft);
  margin-bottom: 0.25rem;
}

.wa-booking-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
}

.wa-booking-icon svg {
  width: 26px;
  height: 26px;
  color: #fff;
  fill: #fff;
}

.wa-booking-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  font-family: 'Plus Jakarta Sans', sans-serif;
  margin: 0;
}

.wa-booking-sub {
  font-size: 0.82rem;
  color: var(--muted);
  margin: 0.15rem 0 0;
}

.btn-wa-book {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: 100%;
  padding: 0.85rem 1.5rem;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
  font-family: 'Plus Jakarta Sans', sans-serif;
  letter-spacing: 0.2px;
}

.btn-wa-book:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.4);
  background: linear-gradient(135deg, #20c05e, #0f7a6e);
}

.btn-wa-book:active {
  transform: translateY(0);
}

.btn-wa-svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.wa-booking-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--muted);
  margin: 0;
  padding-top: 0.3rem;
}

/* =====================================================
   CONTACT
   ===================================================== */
.contact-section {
  background: var(--bg);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 2.5rem;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
}

.ci-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.ci-icon {
  font-size: 1.35rem;
  flex-shrink: 0;
}

.ci-item strong {
  font-weight: 600;
  color: var(--navy);
  display: block;
  margin-bottom: 0.2rem;
  font-size: 0.88rem;
}

.ci-item p,
.ci-item a {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.5;
}

.ci-item a:hover {
  color: var(--plum);
}

.contact-socials {
  margin-top: 0.25rem;
}

.contact-socials h4 {
  font-size: 0.9rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.csoc-row {
  display: flex;
  gap: 8px;
}

.csoc {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  background: var(--pink-50);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.csoc svg {
  width: 18px;
  height: 18px;
}

.csoc.wa:hover {
  color: #fff;
  background: #25D366;
  border-color: #25D366;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.3);
}

.csoc.ig:hover {
  color: #fff;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  border-color: #fd1d1d;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(253, 29, 29, 0.25);
}

.csoc.fb:hover {
  color: #fff;
  background: #1877F2;
  border-color: #1877F2;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(24, 119, 242, 0.3);
}

.csoc.tw:hover {
  color: #fff;
  background: #14171A;
  border-color: #14171A;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.contact-map-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.map-dir-btn {
  display: block;
  text-align: center;
}

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
  background: linear-gradient(180deg, #170A28 0%, #0D0520 100%);
  color: rgba(255, 255, 255, 0.75);
}

.footer-top {
  padding: 3.5rem 0 2.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1.1fr;
  gap: 2.5rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-logo {
  height: 56px;
  width: auto;
  object-fit: contain;
}

.footer-logo-text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.1rem;
  color: #fff;
  font-weight: 700;
}

.footer-about {
  font-size: 0.83rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.58);
  max-width: 280px;
}

.footer-socials {
  display: flex;
  gap: 8px;
}

.fsoc {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}

.fsoc svg {
  width: 14px;
  height: 14px;
}

.fsoc:hover {
  transform: translateY(-2px);
  border-color: transparent;
}

.fsoc.wa:hover {
  color: #fff;
  background: #25D366;
}

.fsoc.ig:hover {
  color: #fff;
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
}

.fsoc.fb:hover {
  color: #fff;
  background: #1877F2;
}

.fsoc.tw:hover {
  color: #fff;
  background: #14171A;
}

.footer-col h5 {
  color: #fff;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 1rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-col li a {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  transition: var(--transition);
}

.footer-col li a:hover {
  color: var(--pink-300);
  padding-left: 3px;
}

.fc-contact li {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.55;
}

.fc-contact a {
  color: rgba(255, 255, 255, 0.55);
}

.fc-contact a:hover {
  color: var(--pink-300);
}

.lang-toggle-footer {
  margin-top: 0.9rem;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
  padding: 0.4rem 0.9rem;
  border-radius: 50px;
  font-size: 0.78rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: var(--transition);
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.lang-toggle-footer:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.25rem 0;
}

.fb-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.fb-inner p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
}

.fb-links {
  display: flex;
  gap: 1.25rem;
}

.fb-links a {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
  transition: var(--transition);
}

.fb-links a:hover {
  color: var(--pink-300);
}

/* =====================================================
   FLOATING WHATSAPP
   ===================================================== */
.wa-float {
  position: fixed;
  bottom: 88px;
  right: 22px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.35);
  z-index: 900;
  transition: var(--transition);
}

.wa-float svg {
  width: 25px;
  height: 25px;
}

.wa-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
}

.wa-tip {
  position: absolute;
  right: 58px;
  background: #1a1a1a;
  color: #fff;
  font-size: 0.73rem;
  padding: 0.3rem 0.65rem;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.wa-float:hover .wa-tip {
  opacity: 1;
}

/* =====================================================
   CHATBOT
   ===================================================== */
.chatbot-wrap {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 901;
}

.chat-toggle-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink-500), var(--plum));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(201, 79, 124, 0.35);
  transition: var(--transition);
  position: relative;
}

.chat-icon-svg {
  width: 22px;
  height: 22px;
}

.chat-toggle-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 26px rgba(201, 79, 124, 0.45);
}

.chat-bubble-dot {
  position: absolute;
  top: 1px;
  right: 1px;
  width: 11px;
  height: 11px;
  background: #FF4757;
  border-radius: 50%;
  border: 2px solid #fff;
  animation: pulse-dot 2s ease-in-out infinite;
  display: none;
}

.chat-bubble-dot.show {
  display: block;
}

@keyframes pulse-dot {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.3);
  }
}

.chat-panel {
  position: absolute;
  bottom: 62px;
  right: 0;
  width: 340px;
  max-height: 500px;
  background: #fff;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-soft);
  display: none;
  flex-direction: column;
  overflow: hidden;
  animation: chatSlide 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

.chat-panel.open {
  display: flex;
}

@keyframes chatSlide {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.chat-head {
  background: linear-gradient(135deg, var(--plum), var(--navy));
  padding: 0.9rem 1.1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;
}

.chat-head-info {
  display: flex;
  gap: 0.65rem;
  align-items: center;
}

.chat-head-av {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.chat-head-name {
  color: #fff;
  font-weight: 600;
  font-size: 0.85rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.chat-head-status {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.72rem;
}

.chat-close-btn {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.chat-close-btn:hover {
  background: rgba(255, 255, 255, 0.28);
}

.chat-msgs {
  flex: 1;
  overflow-y: auto;
  padding: 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.chat-msg {
  max-width: 85%;
  display: flex;
}

.chat-msg.bot {
  justify-content: flex-start;
}

.chat-msg.user {
  justify-content: flex-end;
}

.chat-bubble {
  padding: 0.6rem 0.9rem;
  border-radius: 13px;
  font-size: 0.83rem;
  line-height: 1.5;
}

.bot .chat-bubble {
  background: var(--pink-50);
  color: var(--text);
  border-bottom-left-radius: 4px;
  border: 1px solid var(--border-soft);
}

.user .chat-bubble {
  background: linear-gradient(135deg, var(--pink-500), var(--plum));
  color: #fff;
  border-bottom-right-radius: 4px;
}

.typing .chat-bubble {
  display: flex;
  gap: 4px;
  align-items: center;
}

.typing-dot {
  width: 6px;
  height: 6px;
  background: var(--muted);
  border-radius: 50%;
  animation: typingBounce 1.2s ease-in-out infinite;
}

.typing-dot:nth-child(2) {
  animation-delay: 0.2s;
}

.typing-dot:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes typingBounce {

  0%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-5px);
  }
}

.chat-qr {
  padding: 0 0.9rem 0.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.qr-btn {
  background: var(--pink-50);
  color: var(--plum);
  border: 1px solid var(--pink-200);
  border-radius: 50px;
  padding: 0.3rem 0.8rem;
  font-size: 0.75rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.qr-btn:hover {
  background: var(--plum);
  color: #fff;
  border-color: var(--plum);
}

.chat-input-wrap {
  padding: 0.75rem 0.9rem;
  border-top: 1px solid var(--border-soft);
  display: flex;
  gap: 0.65rem;
  align-items: center;
  flex-shrink: 0;
}

#chatInput {
  flex: 1;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  padding: 0.5rem 0.9rem;
  font-size: 0.82rem;
  outline: none;
  font-family: inherit;
  background: var(--bg);
}

#chatInput:focus {
  border-color: var(--pink-400);
}

.chat-send-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink-500), var(--plum));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: var(--transition);
  flex-shrink: 0;
}

.chat-send-btn:hover {
  transform: scale(1.08);
}

/* =====================================================
   BACK TO TOP + MODAL + TOAST
   ===================================================== */
.btt {
  position: fixed;
  bottom: 22px;
  left: 22px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink-500), var(--plum));
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  z-index: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btt.show {
  opacity: 1;
  pointer-events: all;
}

.btt:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 5, 30, 0.55);
  backdrop-filter: blur(8px);
  display: none;
  place-items: center;
  z-index: 2000;
  padding: 1rem;
}

.modal-box {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 2.25rem;
  width: 100%;
  max-width: 520px;
  box-shadow: var(--shadow-lg);
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
  animation: modalIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes modalIn {
  from {
    opacity: 0;
    transform: scale(0.93) translateY(16px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.modal-x {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--pink-50);
  color: var(--muted);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.modal-x:hover {
  background: var(--pink-200);
  color: var(--navy);
}

.modal-top {
  text-align: center;
  margin-bottom: 1.75rem;
}

.modal-logo {
  height: 56px;
  width: auto;
  margin: 0 auto 0.85rem;
}

.modal-top h2 {
  color: var(--navy);
  font-size: 1.4rem;
}

.modal-top p {
  color: var(--muted);
  font-size: 0.85rem;
  margin-top: 0.25rem;
}

.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--navy);
  color: #fff;
  padding: 0.9rem 1.75rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  box-shadow: var(--shadow-lg);
  z-index: 3000;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.toast.show {
  transform: translateX(-50%) translateY(0);
}

/* =====================================================
   RESPONSIVE — FULLY FIXED
   ===================================================== */

/* Tablet: 1024px — HAMBURGER MENU */
@media (max-width: 1024px) {
  .spec-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .doc-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .blog-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stories-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .hero-content {
    gap: 2rem;
  }

  .hero-visual {
    width: 300px;
    height: 300px;
  }

  .hv-card.left-card {
    display: none;
  }

  .nav-socials {
    display: none;
  }

  /* Hide strip on tablet */
  .header-strip {
    display: none;
  }

  .hero {
    padding-top: 80px;
  }

  /* Hamburger */
  .hamburger {
    display: flex;
  }

  .nav-right .btn-book {
    display: none;
  }

  /* Mobile nav drawer */
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 75%;
    max-width: 300px;
    background: #fff;
    flex-direction: column;
    padding: 5rem 1.75rem 2rem;
    box-shadow: -8px 0 40px rgba(0, 0, 0, 0.15);
    z-index: 999;
    gap: 0.25rem;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .nav-links.open {
    display: flex;
    transform: translateX(0);
  }

  /* Mobile dropdown — accordion style */
  .has-drop {
    width: 100%;
  }

  .has-drop .nav-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }

  .nav-dropdown {
    position: static;
    transform: none !important;
    box-shadow: none;
    border: none;
    border-radius: 0;
    padding: 0;
    min-width: unset;
    max-height: 0;
    opacity: 1 !important;
    pointer-events: all !important;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease !important;
    background: var(--pink-50);
    border-radius: 10px;
    margin-top: 4px;
  }

  .nav-dropdown::before {
    display: none;
  }

  .has-drop.drop-open .nav-dropdown {
    max-height: 60vh;
    overflow-y: auto;
    padding: 0.3rem;
  }

  .has-drop.drop-open .drop-chev {
    transform: rotate(180deg);
  }

  .drop-item {
    font-size: 0.8rem;
    padding: 0.45rem 0.75rem;
    white-space: normal;
  }

  /* Overlay when nav open */
  body.nav-open::before {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 998;
  }

  .nav-link {
    font-size: 1rem;
    padding: 0.7rem 0.5rem;
    border-bottom: 1px solid var(--border-soft);
    border-radius: 0;
    width: 100%;
  }

  .nav-link:last-child {
    border-bottom: none;
  }
}

/* Mobile: 768px */
@media (max-width: 768px) {

  /* Hero */
  .hero-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding-bottom: 3rem;
  }

  .hero-right {
    display: none;
  }

  .hero-h1 {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }

  .hero-btns {
    flex-direction: column;
  }

  .hero-stats {
    padding: 0.9rem 1rem;
    gap: 1rem;
  }

  .hs strong {
    font-size: 1rem;
  }

  /* Stats bar */
  .stats-bar-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

  /* Spec */
  .spec-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  /* Docs */
  .doc-grid {
    grid-template-columns: 1fr;
  }

  /* Stories */
  .stories-grid {
    grid-template-columns: 1fr;
  }

  .story-card.featured {
    order: -1;
  }

  /* Facilities */
  .fac-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  /* News / Blog */
  .news-grid {
    grid-template-columns: 1fr;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-card.featured-blog {
    order: -1;
  }

  /* Appointment */
  .appt-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  /* Contact */
  .contact-layout {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.75rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  /* Chat panel smaller on mobile */
  .chat-panel {
    width: 300px;
    max-height: 440px;
  }

  /* Section padding */
  .section {
    padding: 60px 0;
  }
}

/* Small mobile: 480px */
@media (max-width: 480px) {
  .spec-grid {
    grid-template-columns: 1fr;
  }

  .fac-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .stats-bar-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 0.75rem;
  }

  .hs-div {
    display: none;
  }

  h2 {
    font-size: 1.5rem;
  }

  .container {
    padding: 0 16px;
  }

  .chat-panel {
    width: 280px;
    right: -8px;
  }

  .wa-float,
  .chat-toggle-btn {
    width: 46px;
    height: 46px;
  }

  .nav-right .btn-book {
    padding: 0.45rem 0.9rem;
    font-size: 0.75rem;
  }

  .hv-clinic-card {
    width: 240px;
    padding: 1.25rem;
  }
}

/* =====================================================
   REFINEMENTS — SCROLL BAR + HERO CARD + UX POLISH
   ===================================================== */

/* 1. Scroll Progress Bar */
#scrollProgress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--pink-500), var(--plum));
  z-index: 9999;
  transition: width 0.1s linear;
  border-radius: 0 2px 2px 0;
}

/* 2. Page Fade-in */
@keyframes pageFade {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

body {
  animation: pageFade 0.45s ease both;
}

/* 3. Custom Scrollbar */
::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: var(--pink-200);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--pink-400);
}

/* 4. Text Selection */
::selection {
  background: var(--pink-100);
  color: var(--navy);
}

/* 5. Nav Active Underline */
.nav-link {
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--pink-500);
  border-radius: 2px;
  transition: width 0.25s ease, left 0.25s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 60%;
  left: 20%;
}

/* 6. Hero Clinic Card */
.hv-clinic-card {
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 1.6rem 1.75rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-soft);
  width: 280px;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  animation: fadeSlideUp 0.9s ease 0.3s both;
}

.hvc-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-mid);
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.hvc-pulse {
  width: 8px;
  height: 8px;
  background: #22C55E;
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulseGreen 2s ease-in-out infinite;
}

@keyframes pulseGreen {
  0% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4);
  }

  70% {
    box-shadow: 0 0 0 7px rgba(34, 197, 94, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
  }
}

.hvc-time {
  margin-left: auto;
  background: var(--pink-50);
  color: var(--pink-600);
  padding: 0.15rem 0.55rem;
  border-radius: 50px;
  font-size: 0.68rem;
  font-weight: 600;
}

.hvc-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--navy);
}

.hvc-divider {
  height: 1px;
  background: var(--border-soft);
}

.hvc-rows {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.hvc-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hvc-ico {
  font-size: 1.3rem;
  flex-shrink: 0;
}

.hvc-row-info {
  display: flex;
  flex-direction: column;
}

.hvc-row-info strong {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
  font-family: 'Plus Jakarta Sans', sans-serif;
  line-height: 1.2;
}

.hvc-row-info span {
  font-size: 0.7rem;
  color: var(--muted);
}

/* 7. Floating card position tweak */
.hero-visual .hv-card.top {
  top: -15px;
  left: -40px;
}

.hero-visual .hv-card.bottom {
  bottom: 0;
  right: -40px;
}

/* 8. Input placeholder */
input::placeholder,
textarea::placeholder {
  color: var(--muted);
  font-size: 0.85rem;
}

/* 9. Focus ring */
*:focus-visible {
  outline: 2px solid var(--pink-400);
  outline-offset: 2px;
  border-radius: 4px;
}

/* 10. Doc card top accent */
.doc-card {
  border-top: 3px solid transparent;
}

.doc-card:hover {
  border-top-color: var(--pink-500);
}

/* 11. Spec card bottom accent */
.spec-card {
  border-bottom: 2px solid transparent;
}

.spec-card:hover {
  border-bottom-color: var(--pink-400);
}

/* 12. Doctor avatar scale on hover */
.doc-img-wrap {
  overflow: hidden;
}

.doc-avatar {
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: inline-block;
}

.doc-card:hover .doc-avatar {
  transform: scale(1.12) translateY(-4px);
}

/* 13. Stories section bg */
.stories-section {
  background: linear-gradient(150deg, #FFF6FB 0%, #F8F0FF 100%);
}

.story-card.featured {
  border-color: var(--pink-200);
  background: linear-gradient(160deg, #FFF8FC 0%, #FFF0F8 100%);
}

/* 14. Footer */
.footer {
  background: linear-gradient(180deg, #170A28 0%, #0D0520 100%);
}

/* 15. Facilities */
.fac-section {
  background: linear-gradient(145deg, #1B2342 0%, #2A1040 100%);
}

.fac-section::before {
  background: radial-gradient(ellipse at 20% 50%, rgba(201, 79, 124, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(123, 31, 94, 0.1) 0%, transparent 60%);
}

.fac-card:hover {
  border-color: rgba(249, 168, 201, 0.3);
}

/* Facilities — Collapse/Expand */
.fac-grid.fac-collapsed .fac-card:nth-child(n+7) {
  display: none;
}

.fac-grid.fac-collapsed {
  position: relative;
}

.fac-grid.fac-collapsed::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent, rgba(27, 35, 66, 0.95));
  pointer-events: none;
  border-radius: 0 0 16px 16px;
}

.fac-toggle-wrap {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
}

.fac-toggle-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.8rem;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  font-family: 'Plus Jakarta Sans', sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
}

.fac-toggle-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(249, 168, 201, 0.4);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 79, 124, 0.2);
}

.fac-toggle-chev {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.fac-toggle-chev.rotated {
  transform: rotate(180deg);
}

/* =====================================================
   ORBITAL HERO WIDGET
   ===================================================== */
.hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.orbital-wrap {
  position: relative;
  width: 580px;
  height: 580px;
  flex-shrink: 0;
}

/* Center circle — bigger, 0.4cm (≈15px) gap from ring (ring=336px → inner=336-30=306px) */
.orbital-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  border-radius: 50%;
  overflow: hidden;
  z-index: 3;
  box-shadow: 0 8px 40px rgba(123, 31, 94, 0.22);
  border: 5px solid #fff;
}

/* Video embed inside orbital center */
.orbital-video-wrap {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink-200) 0%, var(--plum) 100%);
}

.orbital-video-wrap iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 600px;
  min-height: 480px;
  border: none;
  border-radius: 0;
  pointer-events: auto;
}

/* Placeholder — swapped out when user provides photo */
.orbital-ph {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--pink-200) 0%, var(--plum) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  color: #fff;
}

.orbital-ph span {
  font-size: 3.5rem;
}

.orbital-ph small {
  font-size: 0.75rem;
  font-weight: 600;
  text-align: center;
  padding: 0 1rem;
  opacity: 0.9;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

/* Orbital ring — dashed, slow spin */
.orb-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 480px;
  height: 480px;
  border-radius: 50%;
  border: 1.5px dashed var(--pink-300);
  z-index: 1;
  opacity: 0.7;
  animation: orbSpin 70s ease-in-out infinite;
}

@keyframes orbSpin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* Connection dots at 45° (ring-radius = 168px, offset = 168 × 0.707 ≈ 119px) */
.orb-dot {
  position: absolute;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #fff;
  border: 2.5px solid var(--pink-400);
  z-index: 4;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.orb-dot:hover {
  background: var(--pink-500);
  border-color: var(--pink-500);
  transform: scale(1.5);
  box-shadow: 0 0 12px rgba(201, 79, 124, 0.4);
}

.dot-nw {
  top: calc(50% - 170px - 5.5px);
  left: calc(50% - 170px - 5.5px);
}

.dot-ne {
  top: calc(50% - 170px - 5.5px);
  left: calc(50% + 170px - 5.5px);
}

.dot-sw {
  top: calc(50% + 170px - 5.5px);
  left: calc(50% - 170px - 5.5px);
}

.dot-se {
  top: calc(50% + 170px - 5.5px);
  left: calc(50% + 170px - 5.5px);
}

/* Feature labels */
.orb-feat {
  position: absolute;
  z-index: 5;
  max-width: 135px;
}

.orb-feat h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.35;
  font-family: 'Plus Jakarta Sans', sans-serif;
  margin-bottom: 0.4rem;
}

.orb-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--plum);
  font-family: 'Plus Jakarta Sans', sans-serif;
  transition: var(--transition);
  white-space: nowrap;
  background: rgba(255, 255, 255, 0.92);
  padding: 3px 9px 3px 10px;
  border-radius: 50px;
  box-shadow: 0 2px 8px rgba(120, 40, 90, 0.14);
  backdrop-filter: blur(4px);
}

.feat-tl .orb-link,
.feat-bl .orb-link {
  padding: 3px 10px 3px 9px;
}

.orb-link > span:last-child {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: var(--pink-500);
  color: #fff;
  border-radius: 50%;
  font-size: 0.85rem;
  transition: var(--transition);
  flex-shrink: 0;
}

.orb-link:hover {
  color: var(--plum);
}

.orb-link:hover > span:last-child {
  background: var(--plum);
  transform: translateX(2px);
}

/* Position each label */
.feat-tl {
  top: 18px;
  left: 8px;
  text-align: right;
}

.feat-tl .orb-link {
  flex-direction: row-reverse;
}

.feat-tr {
  top: 18px;
  right: 8px;
  text-align: left;
}

.feat-bl {
  bottom: 18px;
  left: 8px;
  text-align: right;
}

.feat-bl .orb-link {
  flex-direction: row-reverse;
}

.feat-br {
  bottom: 18px;
  right: 8px;
  text-align: left;
}

/* Tablet: shrink orbital */
@media (max-width: 1024px) {
  .orbital-wrap {
    width: 460px;
    height: 460px;
  }

  .orbital-center {
    width: 310px;
    height: 310px;
  }

  .orb-ring {
    width: 390px;
    height: 390px;
  }

  /* ring-radius=195, offset=195×0.707≈138 */
  .dot-nw {
    top: calc(50% - 138px - 5.5px);
    left: calc(50% - 138px - 5.5px);
  }

  .dot-ne {
    top: calc(50% - 138px - 5.5px);
    left: calc(50% + 138px - 5.5px);
  }

  .dot-sw {
    top: calc(50% + 138px - 5.5px);
    left: calc(50% - 138px - 5.5px);
  }

  .dot-se {
    top: calc(50% + 138px - 5.5px);
    left: calc(50% + 138px - 5.5px);
  }

  .orb-feat h4 {
    font-size: 0.8rem;
  }
}

/* Card anchor offset — so fixed navbar doesn't cover them */
[id^="sp-"],
[id^="doc-"],
[id^="fac-"] {
  scroll-margin-top: 110px;
}

/* Brief highlight when navigated to */
[id^="sp-"]:target,
[id^="doc-"]:target,
[id^="fac-"]:target {
  animation: cardHighlight 1.5s ease;
}

@keyframes cardHighlight {
  0% {
    box-shadow: 0 0 0 3px var(--pink-300);
  }

  100% {
    box-shadow: var(--shadow-xs);
  }
}

/* =====================================================
   SUBTLE WHATSAPP BOOKING HEADER
   ===================================================== */
.wa-booking-header-subtle {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.85rem;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 50px;
  margin-bottom: 1.25rem;
  width: fit-content;
}

.wa-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  flex-shrink: 0;
  box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.25);
  animation: waPulse 2s ease infinite;
}

@keyframes waPulse {

  0%,
  100% {
    box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.25);
  }

  50% {
    box-shadow: 0 0 0 5px rgba(34, 197, 94, 0.1);
  }
}

.wa-booking-header-subtle .wa-booking-title {
  font-size: 0.82rem;
  font-weight: 600;
  color: #166534;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.wa-booking-header-subtle .wa-booking-sub {
  font-size: 0.78rem;
  color: #4ade80;
  font-weight: 400;
}

/* SVG icons in spec cards */
.spec-icon-svg {
  background: var(--pink-50);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* =====================================================
   RESPONSIVE — DOCTOR GRID & MOBILE POLISH
   ===================================================== */
@media (max-width: 1100px) {
  .doc-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .doc-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .doc-avatar {
    font-size: 3.5rem;
  }

  .doc-img-wrap {
    height: 130px;
  }

  .modal-box {
    width: 95vw;
    max-height: 90vh;
    overflow-y: auto;
    padding: 1.25rem;
  }

  .form-row {
    flex-direction: column;
    gap: 0.85rem;
  }

  .spec-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .wa-booking-header-subtle {
    flex-wrap: wrap;
  }
}

@media (max-width: 480px) {
  .doc-grid {
    grid-template-columns: 1fr;
  }

  .spec-grid {
    grid-template-columns: 1fr !important;
  }

  .modal-box {
    padding: 1rem;
  }

  .stats-bar-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* =====================================================
   MOBILE NAVBAR FIX — PREVENT DISTORTION ON ANDROID
   ===================================================== */
@media (max-width: 768px) {
  .navbar-inner {
    gap: 0.5rem;
    padding: 0 12px;
  }

  .logo {
    flex-shrink: 1;
    min-width: 0;
    gap: 8px;
  }

  .logo-img {
    height: 48px;
    flex-shrink: 0;
  }

  .logo-text {
    min-width: 0;
    padding-left: 8px;
  }

  .logo-title {
    font-size: 0.85rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .logo-sub {
    font-size: 0.6rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .nav-right {
    flex-shrink: 0;
    gap: 0.4rem;
  }

  .lang-toggle {
    padding: 0.25rem 0.55rem;
    font-size: 0.72rem;
  }

  .hamburger {
    padding: 4px;
    z-index: 1001;
  }

  .doc-img-wrap {
    height: 200px;
  }
}

@media (max-width: 480px) {
  .navbar {
    padding: 0.3rem 0;
  }

  .navbar-inner {
    gap: 0.35rem;
    padding: 0 8px;
  }

  .logo {
    gap: 6px;
  }

  .logo-img {
    height: 40px;
  }

  .logo-text {
    padding-left: 6px;
  }

  .logo-title {
    font-size: 0.78rem;
  }

  .logo-sub {
    font-size: 0.55rem;
  }

  .lang-toggle {
    padding: 0.2rem 0.45rem;
    font-size: 0.68rem;
  }

  .doc-img-wrap {
    height: 180px;
  }

  .doc-info {
    padding: 1rem;
    gap: 0.4rem;
  }

  .doc-info h3 {
    font-size: 0.95rem;
  }
}

/* Ultra-small phones (e.g. Galaxy S series, older Androids) */
@media (max-width: 360px) {
  .navbar-inner {
    gap: 0.25rem;
    padding: 0 6px;
  }

  .logo-img {
    height: 36px;
  }

  .logo-title {
    font-size: 0.72rem;
  }

  .logo-sub {
    display: none;
  }

  .lang-toggle {
    padding: 0.18rem 0.35rem;
    font-size: 0.65rem;
  }

  .hamburger span {
    width: 18px;
  }

  .doc-img-wrap {
    height: 160px;
  }
}

/* =====================================================
   RESPONSIVE ENHANCEMENTS v3 — tablet hero, fluid media,
   text overflow safety, reduced motion
   ===================================================== */

/* Tablet (769–1024px): stack the hero so the orbital visual
   never overflows/clips the two-column grid. */
@media (min-width: 769px) and (max-width: 1024px) {
  .hero {
    padding-top: 90px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
    padding-bottom: 3.5rem;
  }

  .hero-left {
    align-items: center;
  }

  .hero-sub {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-badge,
  .hero-stats {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-right {
    margin-top: 0.5rem;
  }

  /* Scale the orbital to fit its column comfortably */
  .orbital-wrap {
    transform: scale(0.8);
    transform-origin: top center;
    margin-bottom: -70px;
  }
}

/* Prevent long words / Hindi strings from overflowing cards */
.spec-card h3,
.spec-card p,
.fac-card h4,
.fac-card p,
.doc-info h3,
.news-card h4,
.blog-card h4,
.story-condition {
  overflow-wrap: break-word;
  word-break: break-word;
}

/* Keep all embedded media fluid on every screen */
iframe,
video,
img {
  max-width: 100%;
}

.contact-map-wrap iframe {
  width: 100%;
}

/* Landscape phones: cap the 100vh hero so content isn't cut off */
@media (max-height: 560px) and (orientation: landscape) {
  .hero {
    min-height: auto;
    padding-top: 96px;
    padding-bottom: 2.5rem;
  }
}

/* Respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }

  .ticker-track,
  .blob,
  .orb-ring,
  .hv-ring {
    animation: none !important;
  }

  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* =====================================================
   MOBILE HERO FIX (must stay last)
   Keep the doctor's video on phones, but scale the orbital
   widget down so it fits the screen, hide the floating corner
   labels that would overflow, and lock the CTA buttons to
   full width / centered.
   ===================================================== */
@media (max-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr !important;
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero-left {
    align-items: stretch;
    min-width: 0;
  }

  .hero-sub {
    max-width: 100%;
  }

  .hero-btns {
    flex-direction: column;
    width: 100%;
  }

  .hero-btns > .btn-primary,
  .hero-btns > .btn-ghost {
    width: 100%;
    justify-content: center;
  }

  .hero-stats {
    width: 100%;
  }

  /* Keep the video — just size it to fit the phone */
  .hero-right {
    display: flex !important;
    justify-content: center;
    margin-top: 0.75rem;
    width: 100%;
  }

  .orbital-wrap {
    display: block !important;
    width: 290px !important;
    height: 290px !important;
    margin: 0 auto !important;
  }

  .orbital-center {
    width: 250px !important;
    height: 250px !important;
    border-width: 4px !important;
  }

  .orbital-video-wrap iframe {
    width: 250px !important;
    height: 400px !important;
    min-height: 400px !important;
  }

  .orb-ring {
    width: 286px !important;
    height: 286px !important;
  }

  /* Hide the floating corner labels + dots — they overflow on phones */
  .orb-feat,
  .orb-dot {
    display: none !important;
  }
}

/* Belt-and-suspenders: never allow sideways scroll on the page */
html {
  overflow-x: hidden;
}

/* =====================================================
   MOBILE NAV DRAWER POLISH (must stay last)
   Cleaner slide-in menu: a "Menu" heading, divided links,
   tidy accordion dropdowns.
   ===================================================== */
@media (max-width: 1024px) {
  /* The navbar's backdrop-filter turns it into the containing block for the
     fixed drawer, which collapsed the drawer to the navbar's height.
     Remove it on mobile so the drawer measures against the full viewport. */
  .navbar {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  .nav-links {
    width: 86% !important;
    max-width: 320px !important;
    top: 0 !important;
    bottom: 0 !important;
    height: 100vh !important;
    height: 100dvh !important;
    padding: 4.25rem 1.1rem 1.75rem !important;
    gap: 0 !important;
    box-shadow: -14px 0 46px rgba(27, 15, 40, 0.22) !important;
    overflow-y: auto;
  }

  /* Small "Menu" heading so the top doesn't look empty */
  .nav-links::before {
    content: 'Menu';
    display: block;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--plum);
    padding: 0 0.4rem 0.65rem;
    margin-bottom: 0.5rem;
    border-bottom: 2px solid var(--pink-100);
  }

  .nav-link {
    font-size: 0.97rem !important;
    font-weight: 600 !important;
    color: var(--navy) !important;
    padding: 0.85rem 0.45rem !important;
    border-bottom: 1px solid var(--border-soft) !important;
    border-radius: 0 !important;
    justify-content: space-between !important;
  }

  /* kill the desktop underline animation inside the drawer */
  .nav-link::after {
    display: none !important;
  }

  .drop-chev {
    width: 15px;
    height: 15px;
    opacity: 0.65;
  }

  .nav-dropdown {
    background: var(--pink-50) !important;
    border-radius: 12px !important;
    margin: 0.15rem 0 0.5rem !important;
  }

  .has-drop.drop-open .nav-dropdown {
    padding: 0.35rem !important;
  }

  .drop-item {
    font-size: 0.85rem !important;
    padding: 0.58rem 0.7rem !important;
    color: var(--text-mid) !important;
    white-space: normal !important;
    line-height: 1.35;
  }

  .drop-ico {
    width: 18px;
    height: 18px;
  }
}