/* ============================================================
   HARIPRIYA PREMIUM REDESIGN - style.css
   Glassmorphism, Fluid Typography, Soft UI
   ============================================================ */

/* ---- CUSTOM PROPERTIES ---- */
:root {
  /* Rich, deep palette */
  --gold:       #C48B22;
  --gold-glow:  rgba(196,139,34,0.4);
  --teal:       #2A8084;
  --teal-glow:  rgba(42,128,132,0.4);
  
  /* Ultra-Premium Neutrals */
  --ivory:      #FCFBF9;
  --cream:      #F4F1EB;
  --white:      #FFFFFF;
  --glass-bg:   rgba(255, 255, 255, 0.7);
  --glass-border: rgba(255, 255, 255, 0.5);
  
  --ink:        #111315;
  --muted:      #5B6266;
  --border:     #E5DFD3;
  
  /* Modern soft shadows */
  --shadow-sm:  0 4px 12px rgba(17,19,21,0.04);
  --shadow-md:  0 12px 32px rgba(17,19,21,0.06);
  --shadow-lg:  0 24px 64px rgba(17,19,21,0.08);
  
  /* Radii */
  --r-sm:  12px;
  --r-md:  20px;
  --r-lg:  32px;
  
  /* Transitions */
  --ease-spring: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  --ease-smooth: cubic-bezier(0.25, 1, 0.5, 1);
  --t-fast: 0.3s;
  --t-slow: 0.6s;
}

/* ---- RESET & BASE ---- */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }

/* Decorative art renders: no pointer events (already in overflow:hidden container) */
.hero-floating-art, .hero-glow-blob { pointer-events: none; }
html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--ivory);
  overflow-x: hidden;
  width: 100%;
}
body {
  font-family: 'Outfit', sans-serif;
  background-color: var(--ivory);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  -webkit-font-smoothing: antialiased;
}
img { 
  max-width: 100%; 
  display: block; 
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-select: none;
  -webkit-user-select: none;
}
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4, .serif {
  font-family: 'Playfair Display', serif;
  color: var(--ink);
  letter-spacing: -0.02em;
}
em {
  font-style: italic;
  color: var(--gold);
}
.t { color: var(--teal); }

.sec-title {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 16px;
}
.sec-sub {
  font-size: clamp(16px, 1.5vw, 18px);
  color: var(--muted);
  max-width: 600px;
  margin-bottom: 48px;
}
.align-center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.sec-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.sec-eyebrow .line {
  width: 40px; height: 1px;
  background: var(--gold);
  opacity: 0.5;
}

/* ---- PREMIUM UTILITIES ---- */
.glass-panel {
  background: var(--glass-bg);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-md);
}

.btn-premium {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  background: linear-gradient(135deg, var(--gold), #d49c36);
  color: var(--white);
  border-radius: 40px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  overflow: hidden;
  transition: transform var(--t-fast) var(--ease-spring), box-shadow var(--t-fast);
  box-shadow: 0 8px 24px var(--gold-glow);
  z-index: 1;
}
.btn-premium::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #d49c36, var(--gold));
  opacity: 0; transition: opacity var(--t-fast);
  z-index: -1;
}
.btn-premium:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px var(--gold-glow);
}
.btn-premium:hover::before { opacity: 1; }
.btn-premium.lg { padding: 18px 36px; font-size: 16px; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  border: 2px solid var(--border);
  color: var(--ink);
  border-radius: 40px;
  font-size: 16px;
  font-weight: 500;
  transition: all var(--t-fast);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(196,139,34,0.05);
}

.premium-pad { padding: 120px 5%; }
.sec-container { max-width: 1280px; margin: 0 auto; width: 100%; }

/* ---- NAV ---- */
.glass-nav {
  position: fixed;
  top: 16px; left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 32px);
  max-width: 1400px;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 1);
  border-radius: 24px;
  padding: 12px 24px;
  box-shadow: var(--shadow-md);
  transition: width 0.4s ease, top 0.4s ease;
}
.glass-nav.scrolled {
  top: 0; width: 100%; border-radius: 0;
  border-top: none; border-left: none; border-right: none;
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo img { height: 44px; object-fit: contain; }
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--muted);
  position: relative; transition: color var(--t-fast);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--gold); border-radius: 2px;
  transition: width var(--t-fast) var(--ease-smooth);
}
.nav-links a:hover::after { width: 100%; }
.nav-right { display: flex; gap: 16px; align-items: center; }
.lang-toggle-wrap {
  display: flex; gap: 4px; padding: 4px;
  background: rgba(255,255,255,0.6);
  border: 1px solid var(--border);
  border-radius: 20px;
}
.lb {
  padding: 6px 14px;
  border-radius: 16px;
  font-size: 12px; font-weight: 600; color: var(--muted);
  transition: all var(--t-fast);
}
.lb.active { background: var(--white); color: var(--gold); box-shadow: var(--shadow-sm); }
.nav-hamburger { display: none; }

/* ---- HERO SECTION ---- */
.hero-premium {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: flex-end;
  padding: 140px 5% 120px; /* Added heavy bottom padding to clear the stats bar */
}
/* 3D Generated Assets Layer */
.hero-bg-layer {
  position: absolute; inset: 0;
  pointer-events: none; z-index: 0;
  overflow: hidden; /* Constrain the massive floating heart & eye from causing horizontal scroll */
}
.hero-floating-art {
  position: absolute;
  object-fit: contain;
  opacity: 0.8;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.1));
}
.art-heart {
  width: 900px;
  left: -200px; top: -50px;
  animation: floatHeart 18s ease-in-out infinite alternate;
}
.art-eye {
  width: 600px;
  right: -50px; bottom: 100px;
  opacity: 0.6;
  animation: floatEye 22s ease-in-out infinite alternate-reverse;
}
@keyframes floatHeart { 0% { transform: translate(0, 0) rotate(0deg); } 100% { transform: translate(-30px, 40px) rotate(3deg); } }
@keyframes floatEye { 0% { transform: translate(0, 0) scale(1); } 100% { transform: translate(40px, -20px) scale(1.05); } }

/* Light Blobs */
.hero-glow-blob {
  position: absolute; border-radius: 50%; filter: blur(120px); opacity: 0.4;
}
.blob-gold { background: var(--gold); width: 600px; height: 600px; left: -100px; top: -100px; }
.blob-teal { background: var(--teal); width: 500px; height: 500px; right: -100px; bottom: 0; }

.hero-container-symmetric {
  position: relative; z-index: 2;
  max-width: 1400px; margin: 0 auto; width: 100%;
  padding-bottom: 60px; min-height: 80vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.hero-content {
  text-align: center;
  z-index: 5;
  position: relative;
}
.glass-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--glass-bg); backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  padding: 8px 18px; border-radius: 30px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--ink);
  margin-bottom: 32px; width: fit-content;
}
.glow-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 10px var(--gold); }
.opd-dot { width: 8px; height: 8px; border-radius: 50%; background: #22c55e; box-shadow: 0 0 8px rgba(34,197,94,0.6); flex-shrink: 0; animation: opdPulse 2s ease-in-out infinite; }
@keyframes opdPulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.6; transform: scale(1.3); } }
.hero-title {
  font-size: clamp(48px, 6vw, 82px);
  font-weight: 500; line-height: 1.05;
  margin-bottom: 24px;
}
.hero-subtitle {
  font-size: clamp(16px, 1.5vw, 18px);
  color: var(--muted);
  max-width: 480px; margin-bottom: 40px;
  line-height: 1.8;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* Floating Doctors Hero Symmetric Layout */
.hero-dr-left { position: absolute; left: 0; bottom: 0; width: clamp(280px, 30vw, 400px); z-index: 10; padding-bottom: 0px; }
.hero-dr-right { position: absolute; right: 0; bottom: 0; width: clamp(280px, 30vw, 400px); z-index: 10; padding-bottom: 0px; }

.float-prof {
  position: relative; z-index: 10; display: block;
  transition: transform var(--t-slow) var(--ease-spring);
}
.float-prof:hover {
  z-index: 12; transform: scale(1.02);
}
.float-prof img {
  height: clamp(320px, 45vh, 550px); width: 100%; object-fit: contain; object-position: bottom center;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.2));
}
.float-tag {
  position: absolute; bottom: 80px; left: -20px;
  background: rgba(255, 255, 255, 0.9); backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px); pointer-events: none;
  border: 1px solid var(--white); border-radius: 40px;
  padding: 8px 16px; display: flex; flex-direction: column; gap: 2px;
  box-shadow: var(--shadow-lg); opacity: 0; transform: translateY(10px);
  transition: opacity var(--t-fast), transform var(--t-fast);
}
.float-prof:hover .float-tag { opacity: 1; transform: translateY(0); }
.float-tag.bg-gold { border-color: rgba(196,139,34,0.3); }
.float-tag.bg-teal { border-color: rgba(42,128,132,0.3); }
.float-tag .spec { font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold); }
.float-tag.bg-teal .spec { color: var(--teal); }
.float-tag .name { font-family: 'Playfair Display', serif; font-size: 14px; font-weight: 600; color: var(--ink); white-space: nowrap; }

/* Hero Stats Bar */
.hero-stats-glass {
  position: absolute; bottom: 0; left: 5%; right: 5%;
  max-width: 1000px; margin: 0 auto;
  transform: translateY(50%);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(24px);
  border: 1px solid var(--white);
  border-radius: 24px;
  display: flex; align-items: center; justify-content: space-around;
  padding: 24px 40px;
  box-shadow: var(--shadow-md);
  z-index: 10;
}
.hs-item { text-align: center; }
.hs-num { font-family: 'Playfair Display', serif; font-size: 40px; font-weight: 500; color: var(--gold); line-height: 1; display: block; margin-bottom: 4px; }
.hs-lbl { font-size: 12px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); }
.hs-div { width: 1px; height: 40px; background: var(--border); }

/* ---- DOCTORS SECTION ---- */
.premium-doc-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 56px;
}
.pd-card {
  display: flex; gap: 32px; padding: 32px; align-items: center;
  transition: transform var(--t-slow) var(--ease-spring);
  position: relative; cursor: pointer;
}
.pd-card:hover { transform: translateY(-8px); }
/* Stretched link — makes the whole card clickable */
.pd-link::after {
  content: ''; position: absolute; inset: 0; z-index: 1;
}
.pd-img-area {
  position: relative; width: 180px; flex-shrink: 0;
  aspect-ratio: 1; border-radius: 50%;
}
.pd-blob {
  position: absolute; inset: -10px; border-radius: 50%; filter: blur(20px); opacity: 0.4; z-index: 0;
}
.pd-blob.g { background: var(--gold); }
.pd-blob.t { background: var(--teal); }
.pd-avatar {
  position: relative; z-index: 1;
  width: 100%; height: 100%; object-fit: cover; border-radius: 50%;
  border: 4px solid var(--white); box-shadow: var(--shadow-sm);
}
.pd-content { flex: 1; }
.pd-chip {
  display: inline-block; padding: 4px 12px; border-radius: 20px;
  font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 12px;
}
.gold-chip { background: rgba(196,139,34,0.1); color: var(--gold); border: 1px solid rgba(196,139,34,0.2); }
.teal-chip { background: rgba(42,128,132,0.1); color: var(--teal); border: 1px solid rgba(42,128,132,0.2); }
.pd-name { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 500; margin-bottom: 8px; }
.pd-quals { font-size: 14px; color: var(--muted); margin-bottom: 24px; line-height: 1.6; }
.pd-time-box {
  background: var(--ivory); border-radius: 12px; padding: 12px 16px; border: 1px solid var(--border);
  margin-bottom: 20px;
}
.ptb-row { display: flex; justify-content: space-between; font-size: 13px; }
.ptb-lbl { color: var(--muted); }
.ptb-val { font-weight: 600; color: var(--ink); }
.pd-link { font-size: 14px; font-weight: 600; color: var(--teal); transition: opacity 0.2s; }
.pd-link:hover { opacity: 0.7; }

/* ---- PROCEDURES (Dark Glass Mode for contrast) ---- */
.dark-mode {
  background-color: var(--ink);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.dark-mode::before {
  content: ''; position: absolute; top: -20%; left: -10%; right: -10%; bottom: -20%;
  background: radial-gradient(circle at 80% 20%, rgba(42,128,132,0.15), transparent 40%),
              radial-gradient(circle at 20% 80%, rgba(196,139,34,0.15), transparent 40%);
  z-index: 0; pointer-events: none;
}
.dark-mode .sec-title, .dark-mode .sec-eyebrow, .dark-mode .sec-sub { position: relative; z-index: 1; color: var(--white); }
.dark-mode .sec-sub { color: rgba(255,255,255,0.6); }

.proc-glass-layout {
  position: relative; z-index: 1; margin-top: 48px;
  display: grid; grid-template-columns: 240px 1fr; gap: 40px;
}
.proc-nav-glass {
  display: flex; flex-direction: column; gap: 8px;
}
.pg-tab {
  text-align: left; padding: 16px 20px; border-radius: 16px;
  font-size: 15px; font-weight: 500; color: rgba(255,255,255,0.5);
  border: 1px solid transparent; transition: all var(--t-fast);
}
.pg-tab:hover { background: rgba(255,255,255,0.05); color: var(--white); }
.pg-tab.active {
  background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.2);
  color: var(--gold); box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}
.proc-body-glass {
  background: rgba(255,255,255,0.03); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1); border-radius: 24px; padding: 48px;
}
.pg-panel { display: none; animation: fadeUp 0.4s var(--ease-smooth); }
.pg-panel.active { display: block; }
@keyframes fadeUp { from{ opacity:0; transform: translateY(16px); } to { opacity:1; transform:none; } }

.pg-panel h3 { font-size: 32px; font-weight: 500; margin-bottom: 16px; color: var(--white); }
.pg-desc { font-size: 16px; color: rgba(255,255,255,0.7); line-height: 1.8; margin-bottom: 32px; }
.pg-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pg-step { background: rgba(0,0,0,0.2); padding: 24px; border-radius: 16px; border: 1px solid rgba(255,255,255,0.05); }
.pg-num { font-family: 'Playfair Display', serif; font-size: 48px; color: var(--gold); opacity: 0.5; margin-bottom: 8px; line-height: 1; }
.pg-num.t { color: var(--teal); }
.pg-step span { font-size: 14px; color: rgba(255,255,255,0.8); }

/* ---- SERVICES GRID & RESTORED SECTIONS ---- */
.style-white { background: var(--ivory); }
.srv-tabs { display: flex; gap: 8px; justify-content: center; margin-bottom: 40px; }
.srv-tab { padding: 12px 24px; border-radius: 40px; border: 1px solid var(--border); font-size: 15px; font-weight: 500; transition: all var(--t-fast); color: var(--muted); background: var(--white); }
.srv-tab.active { background: var(--gold); color: var(--white); border-color: var(--gold); box-shadow: var(--shadow-sm); }

.srv-panel { display: none; position: relative; z-index: 2; animation: fadeUp 0.4s var(--ease-smooth); }
.srv-panel.active { display: block; }
.srv-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.srv-item { padding: 24px; transition: transform var(--t-fast) var(--ease-spring); }
.srv-item:hover { transform: translateY(-4px); border-color: var(--gold); }
.srv-ico { font-size: 32px; margin-bottom: 16px; display: block; }
.srv-name { font-size: 18px; font-weight: 500; margin-bottom: 8px; }
.srv-desc { font-size: 14px; color: var(--muted); }
.srv-bg-art {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 500px;
  opacity: 0.15;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.2));
  z-index: -1;
  pointer-events: none;
}
.float-left { left: -100px; }
.float-right { right: -100px; }

/* ---- TAGLINE & MARQUEE ---- */
.tagline-band { padding: 80px 20px; background: var(--ink); color: var(--white); text-align: center; }
.tb-hi { font-family: 'Tiro Devanagari Hindi', serif; font-size: 36px; color: var(--gold); margin-bottom: 12px; }
.tb-en { font-family: 'Playfair Display', serif; font-style: italic; font-size: 24px; color: rgba(255,255,255,0.6); margin-bottom: 32px; }
.tb-pills { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.tb-pill { padding: 8px 24px; border: 1px solid rgba(255,255,255,0.2); border-radius: 40px; font-size: 12px; letter-spacing: 0.1em; color: rgba(255,255,255,0.8); }

.marquee-sec { background: var(--gold); padding: 16px 0; overflow: hidden; white-space: nowrap; color: var(--white); }
.marquee-track { display: inline-flex; animation: marquee 30s linear infinite; }
.mq-item { display: inline-flex; align-items: center; gap: 24px; padding: 0 40px; font-size: 13px; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; }
.mq-dot { font-size: 16px; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ---- ABOUT ---- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-card-wrap { position: relative; }
.about-card { padding: 48px; border-radius: var(--r-lg); }
.ac-quote-en { font-family: 'Playfair Display', serif; font-style: italic; font-size: 24px; line-height: 1.4; color: var(--gold); margin-bottom: 24px; }
.ac-divider { height: 1px; background: var(--border); margin-bottom: 32px; }
.about-fact { display: flex; gap: 16px; margin-bottom: 24px; }
.af-ico { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; background: var(--ivory); border: 1px solid var(--border); box-shadow: var(--shadow-sm); }
.af-text h5 { font-size: 16px; font-weight: 500; margin-bottom: 4px; }
.af-text p { font-size: 14px; color: var(--muted); }
.ac-float { position: absolute; background: var(--white); border: 1px solid var(--border); border-radius: 16px; padding: 16px 24px; box-shadow: var(--shadow-lg); z-index: 10; }
.acf-1 { bottom: -20px; right: 20px; }
.acf-2 { top: -20px; left: -20px; }
.acf-num { font-family: 'Playfair Display', serif; font-size: 32px; color: var(--teal); line-height: 1; margin-bottom: 4px; }
.acf-lab { font-size: 11px; font-weight: 600; color: var(--muted); letter-spacing: 0.1em; text-transform: uppercase; }
.about-text { margin-bottom: 40px; font-size: 16px; color: var(--muted); }
.about-text p { margin-bottom: 16px; }
.about-pillars { display: flex; flex-direction: column; gap: 16px; }
.pillar { display: flex; align-items: center; gap: 16px; padding: 20px; border-radius: 16px; transition: transform var(--t-fast); }
.pillar:hover { transform: translateX(8px); }
.pillar-ico { font-size: 24px; }
.pillar-text { font-size: 16px; font-weight: 500; }

/* ---- STATS BAND ---- */
.stats-band { background: var(--white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 64px 0; }
.stats-inner { display: grid; grid-template-columns: repeat(4, 1fr); text-align: center; }
.stat-blk { border-right: 1px solid var(--border); }
.stat-blk:last-child { border-right: none; }
.stat-num { font-family: 'Playfair Display', serif; font-size: 56px; font-weight: 500; display: block; margin-bottom: 8px; }
.stat-num.g { color: var(--gold); }
.stat-num.t { color: var(--teal); }
.stat-label { font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }

/* ---- BLOG & CONTACT DETAILS ---- */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.blog-card { overflow: hidden; display: flex; flex-direction: column; transition: transform var(--t-slow) var(--ease-spring); position: relative; cursor: pointer; }
.blog-card:hover { transform: translateY(-8px); }
/* Stretched link — makes the whole blog card clickable */
.blog-read::after {
  content: ''; position: absolute; inset: 0; z-index: 1;
}
.blog-thumb { height: 180px; background: linear-gradient(135deg, #f0ede6, #e6e2d8); display: flex; align-items: center; justify-content: center; font-size: 48px; position: relative; }
.blog-cat { position: absolute; top: 16px; left: 16px; font-size: 10px; font-weight: 700; padding: 6px 12px; border-radius: 20px; background: rgba(255,255,255,0.9); }
.blog-cat.g { color: var(--gold); }
.blog-cat.t { color: var(--teal); }
.blog-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.blog-date { font-size: 12px; color: var(--muted); margin-bottom: 12px; }
.blog-title { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 500; margin-bottom: 12px; line-height: 1.3; }
.blog-exc { font-size: 14px; color: var(--muted); margin-bottom: 24px; flex: 1; }
.blog-read { font-weight: 600; color: var(--teal); font-size: 14px; transition: opacity 0.2s; }
.blog-read:hover { opacity: 0.7; }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
.ci-item { display: flex; align-items: flex-start; gap: 20px; padding: 24px; margin-bottom: 16px; }
.ci-ico { width: 56px; height: 56px; border-radius: 16px; background: var(--ivory); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 24px; flex-shrink: 0; box-shadow: var(--shadow-sm); }
.ci-body h4 { font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; font-family: 'Outfit', sans-serif;}
.ci-body p { font-size: 16px; color: var(--ink); line-height: 1.6; }
.ci-body a { color: var(--teal); font-weight: 500; }

.cf-title { font-size: 36px; margin-bottom: 8px; }
.cf-sub { font-size: 15px; color: var(--muted); margin-bottom: 32px; }
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.cf-group { margin-bottom: 20px; }
.cf-group label { display: block; font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.cf-group input, .cf-group select, .cf-group textarea { width: 100%; padding: 16px; border-radius: 12px; border: 1px solid var(--border); background: var(--ivory); font-family: inherit; font-size: 15px; color: var(--ink); transition: border-color var(--t-fast); }
.cf-group input:focus, .cf-group select:focus, .cf-group textarea:focus { border-color: var(--gold); outline: none; }
.cf-group textarea { min-height: 120px; resize: vertical; }

/* ---- FOOTER ---- */
.contact-cta { background: var(--ivory); }
.glass-contact-card {
  background: linear-gradient(135deg, var(--white), var(--cream));
  border-radius: var(--r-lg); border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  padding: 64px; display: flex; justify-content: space-between; align-items: center; gap: 40px;
}
.gcc-title { font-size: 48px; margin-bottom: 16px; }
.gcc-desc { font-size: 16px; color: var(--muted); margin-bottom: 32px; max-width: 400px; }
.gcci-item { font-size: 15px; margin-bottom: 8px; color: var(--ink); }
.gcci-item a { color: var(--teal); }
.btn-premium.massive { padding: 24px 48px; font-size: 18px; border-radius: 60px; }

/* ---- FOOTER ---- */
footer { background: var(--white); padding: 64px 5%; border-top: 1px solid var(--border); }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 56px; }
.footer-logo { margin-bottom: 20px; }
.footer-logo img { height: 48px; width: auto; }
.f-desc { font-size: 15px; color: var(--muted); line-height: 1.7; max-width: 320px; }
.f-col h4 { font-family: 'Outfit', sans-serif; font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink); margin-bottom: 16px; }
.f-col ul { display: flex; flex-direction: column; gap: 12px; }
.f-col ul li a { font-size: 14px; color: var(--muted); transition: color var(--t-fast); }
.f-col ul li a:hover { color: var(--gold); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; font-size: 13px; flex-wrap: wrap; gap: 8px; margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--border); color: var(--muted); }
.footer-tagline { font-family: 'Playfair Display', serif; font-style: italic; font-size: 14px; color: var(--gold); }


/* ---- WHATSAPP FLOAT ---- */
.wa-float {
  position: fixed; bottom: 32px; right: 32px; z-index: 999;
  width: 64px; height: 64px; border-radius: 50%;
  background: #25D366; display: flex; align-items: center; justify-content: center;
  font-size: 28px; text-decoration: none; color: white;
  box-shadow: 0 0 0 3px white, 0 8px 32px rgba(37,211,102,0.5);
  transition: transform var(--t-fast) var(--ease-spring);
}
.wa-float svg { width: 36px !important; height: 36px !important; margin-top: 2px; }
.wa-float:hover { transform: scale(1.1) rotate(6deg); }

/* ---- ANIMATIONS (Staggered Reveal System) ---- */
.reveal-up, .reveal-scale { opacity: 0; }
.reveal-up { transform: translateY(40px); transition: opacity 0.8s var(--ease-smooth), transform 0.8s var(--ease-smooth); }
.reveal-scale { transform: scale(0.92) translateY(20px); transition: opacity 0.8s var(--ease-spring), transform 0.8s var(--ease-spring); }
.reveal-up.vis, .reveal-scale.vis { opacity: 1; transform: translate(0) scale(1); }

.ds-1 { transition-delay: 0.1s; }
.ds-2 { transition-delay: 0.2s; }
.ds-3 { transition-delay: 0.3s; }
.ds-4 { transition-delay: 0.4s; }
.ds-5 { transition-delay: 0.5s; }
.ds-6 { transition-delay: 0.6s; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .glass-card { flex-direction: column; align-items: center; text-align: center; }
  .grid-2 { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }

  /* Hero: 3-col in-flow grid — [left doctor] [content] [right doctor]
     No absolute positioning = no blank-gap risk on wide phones */
  /* Column direction so stats bar sits below the 3-col grid, not beside it */
  .hero-premium { padding: 100px 4% 40px; flex-direction: column; align-items: stretch; }
  .hero-container-symmetric {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 2fr) minmax(0, 1fr);
    min-height: auto;
    padding-top: 0;
    padding-bottom: 0;
    align-items: end;
    gap: 0;
  }
  .hero-dr-left  { display: block; position: static; width: 100%; }
  .hero-dr-right { display: block; position: static; width: 100%; }
  /* Scale doctor images to fit the narrower side columns */
  .float-prof img { height: clamp(180px, 26vw, 320px); }
  .hero-content { width: auto; order: 0; margin-bottom: 16px; text-align: center; align-self: center; }
  /* Tighten title so it breathes inside the 2fr centre column */
  .hero-title { font-size: clamp(30px, 4.5vw, 56px); }
  .hero-subtitle { font-size: 15px; max-width: 100%; margin-bottom: 32px; }
  .hero-cards-wrap { justify-content: center; }
  .hero-actions { justify-content: center; }
  /* Pull stats bar into normal flow below the grid */
  .hero-stats-glass { position: relative; transform: none; margin-top: 24px; border-radius: 20px; bottom: auto; left: auto; right: auto; }
  /* Scale back 3D art for tablet */
  /* Scale renders down, stop floating animation at tablet and below */
  .art-heart { left: -10%; right: auto; top: -5%; width: 52%; opacity: 0.45; animation: none; }
  .art-eye   { right: -8%; left: auto;  top: 8%;  bottom: auto; width: 42%; opacity: 0.4;  animation: none; }
  .blob-gold { width: 420px; height: 420px; right: -10%; left: auto; }
  .blob-teal { width: 360px; height: 360px; left: -10%; right: auto; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-right .btn-premium { display: none; }
  .nav-hamburger { display: block; width: 30px; height: 24px; position: relative; cursor: pointer; }
  .nav-hamburger span { position: absolute; width: 100%; height: 2px; background: var(--ink); transition: 0.3s; }
  .nav-hamburger span:nth-child(1) { top: 0; }
  .nav-hamburger span:nth-child(2) { top: 50%; transform: translateY(-50%); }
  .nav-hamburger span:nth-child(3) { bottom: 0; }
  .nav-hamburger.active span:nth-child(1) { top: 50%; transform: translateY(-50%) rotate(45deg); }
  .nav-hamburger.active span:nth-child(2) { opacity: 0; }
  .nav-hamburger.active span:nth-child(3) { bottom: 50%; transform: translateY(50%) rotate(-45deg); }
  
  /* Mobile Language Dropdown Override — vertically centred in floating nav */
  .lang-toggle-wrap { display: flex; position: absolute; right: 56px; top: 50%; transform: translateY(-50%); }

  /* hero-stats-glass is handled in the significant fixes block below with grid layout */

  /* Mobile nav dropdown — round bottom corners to match floating nav */
  #navLinks[style*="flex"] { border-radius: 0 0 16px 16px; overflow: hidden; }
  .blog-grid { display: flex; flex-wrap: nowrap; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 24px; gap: 16px; margin-right: -24px; padding-right: 24px; }
  .blog-grid > * { flex: 0 0 85%; scroll-snap-align: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }

  .hero-cards-wrap { flex-direction: column; align-items: center; gap: 40px; margin-top: 40px; }
  .offset-down { margin-bottom: 0; }
  /* Doctors: was horizontal scroll — most users won't discover swipe; stack vertically instead */
  .premium-doc-grid { display: flex; flex-direction: column; overflow-x: visible; gap: 24px; margin-right: 0; padding-right: 0; padding-bottom: 0; }
  .premium-doc-grid > * { flex: none; width: 100%; scroll-snap-align: unset; }
  .pd-card { flex-direction: column; text-align: center; }
  .proc-glass-layout { grid-template-columns: 1fr; }
  .proc-nav-glass { flex-direction: row; flex-wrap: nowrap; justify-content: flex-start; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 12px; }
  .pg-tab { scroll-snap-align: start; flex-shrink: 0; white-space: nowrap; }
  /* 2-col steps reduces vertical scroll vs 1-col */
  .pg-steps { grid-template-columns: repeat(2, 1fr); }
  .glass-contact-card { flex-direction: column; text-align: center; padding: 40px 24px; }
  .footer-bottom { flex-direction: column; gap: 20px; }
  .f-links { margin-top: 10px; }

  /* --- Significant: reduce oversized padding on mobile --- */
  /* premium-pad was 120px top/bottom — way too tall on phones */
  .premium-pad { padding: 64px 5%; }
  /* Hero: stack container + stats bar vertically */
  .hero-premium { padding: 90px 4% 32px; flex-direction: column; align-items: stretch; min-height: auto; }

  /* Hero container → CSS grid: content spans full width on row 1, doctors side-by-side on row 2 */
  .hero-container-symmetric {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    min-height: auto;
    padding-bottom: 0;
    padding-top: 8px;
    align-items: end;
    gap: 0;
  }
  /* Content row: spans both columns */
  .hero-content { grid-column: 1 / -1; grid-row: 1; text-align: center; order: 0; margin-bottom: 8px; align-self: center; }
  /* Title is 48px minimum by default — too large when doctors share the viewport; scale with vw */
  .hero-title { font-size: clamp(32px, 9vw, 48px); }
  .hero-subtitle { font-size: 14px; margin-bottom: 24px; }
  .glass-pill { margin-bottom: 16px; font-size: 10px; }
  .btn-premium.lg, .btn-outline.lg { padding: 14px 24px; font-size: 15px; }
  /* Doctors row: one per column, in-flow (not absolute) on mobile */
  .hero-dr-left  { display: block; position: static; width: 100%; grid-column: 1; grid-row: 2; }
  .hero-dr-right { display: block; position: static; width: 100%; grid-column: 2; grid-row: 2; }
  /* Shrink the cutout image heights to fit the narrow grid cells */
  .float-prof img { height: clamp(140px, 38vw, 210px); }

  /* Scale back 3D art & glow blobs for phones */
  /* Renders: larger decorative backdrop, static (no float animation on small screens) */
  .art-heart { width: 85%; opacity: 0.14; left: -18%; top: -6%; bottom: auto; animation: none; }
  .art-eye   { width: 70%; opacity: 0.13; right: -18%; top: 8%;  bottom: auto; animation: none; }
  .blob-gold { width: 220px; height: 220px; }
  .blob-teal { width: 200px; height: 200px; }
  /* Float-tag tooltip doesn't work on touch — hide on mobile */
  .float-tag { display: none; }

  /* Stats bar: proper 2×2 grid so all 4 items show without crammed dividers */
  .hero-stats-glass { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; padding: 20px 16px; width: 100%; margin-top: 16px; }
  .hero-stats-glass .hs-div { display: none; }
  .hero-stats-glass .hs-item { text-align: center; }
  .hero-stats-glass .hs-num { font-size: 28px; }
  /* proc body had 48px all-round — leaves very little content width on small phones */
  .proc-body-glass { padding: 24px 16px; }

  /* --- Critical: missing mobile breakpoints --- */
  /* About grid — was two columns with 80px gap, never collapsed */
  .about-grid { grid-template-columns: 1fr; gap: 40px; }

  /* Stats band — 4 columns is unreadable on phones, switch to 2×2 */
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-blk:nth-child(2) { border-right: none; }
  .stat-blk:nth-child(3) { border-top: 1px solid var(--border); }
  .stat-blk:nth-child(4) { border-top: 1px solid var(--border); }
  .stat-num { font-size: 40px; }

  /* Contact form row — name + phone side by side is too tight on phones */
  .cf-row { grid-template-columns: 1fr; }
}

/* ---- PROFILE & BLOG PAGE EXTRAS ---- */
.profile-hero { padding: 120px 48px 72px; background: var(--ivory); position: relative; overflow: hidden; }
.profile-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 80% 50%, rgba(196,139,34,.08), transparent 60%); pointer-events: none; }
.profile-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 280px 1fr; gap: 56px; align-items: center; position: relative; z-index: 2; }
.profile-photo-card { background: var(--white); border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow-lg); }
.profile-photo { width: 100%; aspect-ratio: 3/4; background: linear-gradient(160deg,var(--cream),var(--ivory)); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.profile-photo img { width: 100%; height: 100%; object-fit: cover; }
.profile-photo-body { padding: 18px; }
.profile-name-sm { font-family: 'Playfair Display', serif; font-size: 16px; font-weight: 500; margin-bottom: 3px; }
.profile-name-hi-sm { font-family: 'Tiro Devanagari Hindi', serif; font-size: 12px; color: var(--muted); }
.profile-info h1 { font-family: 'Playfair Display', serif; font-size: clamp(26px,4vw,42px); font-weight: 500; margin-bottom: 6px; }
.profile-info-hi { font-family: 'Tiro Devanagari Hindi', serif; font-size: 17px; color: var(--muted); margin-bottom: 20px; }
.profile-qual { font-size: 14px; color: var(--muted); line-height: 1.8; margin-bottom: 28px; }
.profile-qual strong { color: var(--ink); }
.profile-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.profile-tag { padding: 6px 14px; border-radius: 40px; font-size: 11px; font-weight: 600; letter-spacing: .06em; }
.profile-tag.g { background: rgba(196,139,34,0.1); color: var(--gold); border: 1px solid rgba(196,139,34,0.2); }
.profile-tag.t { background: rgba(42,128,132,0.1); color: var(--teal); border: 1px solid rgba(42,128,132,0.2); }
.profile-timing-box { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-md); padding: 18px; max-width: 360px; }
.profile-timing-box h4 { font-family: 'Outfit', sans-serif; font-size: 10px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: 12px; }
.pt-row { display: flex; justify-content: space-between; align-items: center; font-size: 13px; padding: 5px 0; }
.pt-row .pt-label { color: var(--muted); }
.pt-row .pt-val { font-weight: 500; }
.profile-body-sec { padding: 64px 48px; background: var(--ivory); }
.profile-body-inner { max-width: 1100px; margin: 0 auto; }
.profile-section { margin-bottom: 52px; }
.profile-section h2 { font-family: 'Playfair Display', serif; font-size: 26px; font-weight: 500; margin-bottom: 20px; }
.expertise-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.exp-item { padding: 18px; background: var(--cream); border-radius: var(--r-md); border: 1px solid var(--border); transition: all var(--t-fast); }
.exp-item:hover { background: var(--white); box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.exp-item h5 { font-size: 14px; font-weight: 600; margin-bottom: 5px; }
.exp-item p  { font-size: 13px; color: var(--muted); line-height: 1.6; }

.blog-hero { padding: 120px 48px 72px; background: var(--ivory); }
.blog-hero-inner { max-width: 1100px; margin: 0 auto; }
.blog-filters { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 28px; }
.blog-filter { padding: 8px 18px; border-radius: 40px; font-size: 12px; font-weight: 600; border: 1.5px solid var(--border); color: var(--muted); cursor: pointer; transition: all var(--t-fast); background: transparent; }
.blog-filter.active, .blog-filter:hover { border-color: var(--teal); color: var(--teal); background: rgba(42,128,132,0.1); }
.blog-main { padding: 64px 48px; background: var(--cream); }
.blog-main-inner { max-width: 1100px; margin: 0 auto; }
.blog-main-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.blog-article { padding: 120px 48px 64px; max-width: 800px; margin: 0 auto; background: var(--ivory); }

/* ---- SUBPAGE MOBILE RESPONSIVE ---- */
@media (max-width: 900px) {
  .profile-inner { grid-template-columns: 1fr; }
  .expertise-grid { grid-template-columns: 1fr 1fr; }
  .profile-hero { padding-top: 88px !important; padding-bottom: 40px; }
  /* Cutout image creates a large blank block on mobile — hide it, info is enough */
  .profile-model-float { display: none; }
  .profile-body-sec { padding-top: 32px; }
  .blog-hero, .profile-hero, .blog-main, .profile-body-sec { padding-left: 20px; padding-right: 20px; }
  .blog-hero { padding-top: 88px; padding-bottom: 48px; }
  .blog-main-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .expertise-grid, .blog-main-grid { grid-template-columns: 1fr; }
  .blog-hero, .profile-hero, .blog-main, .profile-body-sec { padding-left: 16px; padding-right: 16px; }
  .profile-hero { padding-top: 80px !important; }
  .profile-photo-card { max-width: 100%; }
}

/* ---- NEW PREMIUM ASSETS & LAYOUTS ---- */
.about-3d-art {
  width: 140px; height: auto;
  position: absolute; right: 20px; top: 50%; transform: translateY(-50%);
  filter: drop-shadow(0 20px 30px rgba(0,0,0,0.1));
  animation: floatHeart 12s infinite alternate ease-in-out;
  pointer-events: none;
}
.contact-title-pin {
  width: 120px; height: auto;
  position: absolute; right: 2%; top: -60px;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.15));
  animation: floatEye 8s infinite alternate-reverse ease-in-out;
  pointer-events: none; z-index: 10;
}
.pg-split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: center;
}
.proc-3d-render {
  width: 100%; border-radius: var(--r-md); object-fit: cover;
  box-shadow: var(--shadow-lg); border: 1px solid rgba(255,255,255,0.1);
}
.profile-model-float {
  position: relative; display: flex; justify-content: flex-end; align-items: flex-end;
}
.profile-cutout {
  width: 100%; max-width: 380px; height: auto; object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.15));
}
@media (max-width: 900px) {
  .pg-split { grid-template-columns: 1fr; }
  .about-3d-art { opacity: 0.3; right: -20px; }
  .contact-title-pin { width: 80px; top: -40px; }
  .profile-cutout { max-width: 280px; margin: 0 auto; display: block; }
}
