/* ============================================
   ADVAIT HOMOEOPATHIC CLINIC - PREMIUM STYLESHEET
   Apple-Inspired | Glassmorphism | Dark Sections
   ============================================ */

/* ── VARIABLES ── */
:root {
  --teal: #007B7F;
  --teal-light: #009da3;
  --teal-dark: #005c60;
  --green: #2ecc71;
  --green-light: #4dde89;
  --gold: #C9A84C;
  --gold-light: #f0c97a;
  --white: #ffffff;
  --off-white: #F8FAF9;
  --light-gray: #f0f4f3;
  --text-dark: #1a2530;
  --text-mid: #3d5260;
  --text-light: #6b8896;
  --border: rgba(0, 123, 127, 0.12);
  --dark-bg: #0a1a1c;
  --dark-card: rgba(255,255,255,0.06);
  --gradient: linear-gradient(135deg, var(--teal) 0%, var(--green) 100%);
  --gradient-gold: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  --shadow: 0 4px 24px rgba(0, 123, 127, 0.10);
  --shadow-lg: 0 16px 56px rgba(0, 123, 127, 0.16);
  --radius: 20px;
  --radius-lg: 28px;
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; }
html.lenis, html.lenis body {
  height: auto;
  width: 100%;
}
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }
.lenis.lenis-smooth iframe { pointer-events: none; } /* Prevents iframe from hi-jacking the scroll */
body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 120px 0; }
.section-dark { padding: 120px 0; background: var(--dark-bg); }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* ── CUSTOM CURSOR ── */
.cursor-dot, .cursor-ring {
  position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9999;
  border-radius: 50%; transform: translate(-50%,-50%);
}
.cursor-dot { width: 6px; height: 6px; background: var(--teal); }
.cursor-ring {
  width: 36px; height: 36px;
  border: 1.5px solid rgba(0,123,127,0.4);
  transition: width 0.3s, height 0.3s, border-color 0.3s;
}
.cursor-ring.hover { width: 56px; height: 56px; border-color: var(--teal); }

/* ── PAGE LOADER ── */
.page-loader {
  position: fixed; inset: 0; z-index: 10000;
  background: var(--dark-bg);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.page-loader.hidden { opacity: 0; visibility: hidden; }
.loader-inner { text-align: center; }
.loader-logo-img { height: 72px; margin: 0 auto 32px; filter: drop-shadow(0 2px 8px rgba(0,0,0,0.2)); max-width: 200px; object-fit: contain; }
.loader-bar {
  width: 200px; height: 3px; background: rgba(255,255,255,0.1);
  border-radius: 4px; overflow: hidden; margin: 0 auto 20px;
}
.loader-progress {
  height: 100%; width: 0%; background: var(--gradient);
  border-radius: 4px; transition: width 0.3s;
}
.loader-text {
  color: rgba(255,255,255,0.4); font-size: 0.82rem;
  letter-spacing: 3px; text-transform: uppercase;
}

/* ── PARTICLES ── */
.particles { position: fixed; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }
.particle {
  position: absolute; border-radius: 50%;
  background: rgba(0, 157, 163, 0.3);
  animation: floatParticle linear infinite;
}
@keyframes floatParticle {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 0.6; }
  100% { transform: translateY(-10vh) scale(1.5); opacity: 0; }
}

/* ── GLASS CARDS ── */
.glass-card {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: var(--radius-lg);
  position: relative; overflow: hidden;
}
.glass-card-subtle {
  background: rgba(255,255,255,0.5);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(0,123,127,0.08);
  border-radius: var(--radius);
  padding: 16px;
}
.glass-card-dark {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
}
.card-shine {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.4) 45%, rgba(255,255,255,0.1) 50%, transparent 55%);
  transform: translateX(-100%);
  transition: transform 0.8s cubic-bezier(0.16,1,0.3,1);
}
.service-card:hover .card-shine { transform: translateX(100%); }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 36px; background: var(--gradient); color: var(--white);
  border: none; border-radius: 50px;
  font-family: 'Inter', sans-serif; font-size: 0.95rem; font-weight: 600;
  cursor: pointer; transition: var(--transition);
  box-shadow: 0 4px 24px rgba(0,123,127,0.3); letter-spacing: 0.3px;
  position: relative; overflow: hidden;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(0,123,127,0.4); }
.btn-glow::after {
  content: ''; position: absolute; inset: -2px; border-radius: 50px;
  background: var(--gradient); z-index: -1; filter: blur(16px); opacity: 0.4;
  transition: opacity 0.4s;
}
.btn-glow:hover::after { opacity: 0.7; }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 36px; background: rgba(255,255,255,0.12); color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.4); border-radius: 50px;
  font-family: 'Inter', sans-serif; font-size: 0.95rem; font-weight: 600;
  cursor: pointer; transition: var(--transition); backdrop-filter: blur(8px);
}
.btn-secondary:hover { background: rgba(255,255,255,0.22); border-color: var(--white); transform: translateY(-3px); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 36px; background: transparent; color: var(--teal);
  border: 2px solid var(--teal); border-radius: 50px;
  font-family: 'Inter', sans-serif; font-size: 0.95rem; font-weight: 600;
  cursor: pointer; transition: var(--transition);
}
.btn-outline:hover { background: var(--teal); color: var(--white); transform: translateY(-3px); }

/* ── TYPOGRAPHY ── */
.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.section-label {
  display: inline-block; font-size: 0.78rem; font-weight: 700;
  letter-spacing: 4px; text-transform: uppercase; color: var(--teal);
  background: rgba(0,123,127,0.08); padding: 8px 20px;
  border-radius: 50px; margin-bottom: 20px;
}
.section-label-light { color: var(--teal-light); background: rgba(0,157,163,0.12); }
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 800; color: var(--text-dark); line-height: 1.15; margin-bottom: 20px;
}
.section-title-light { color: var(--white); }
.section-subtitle { font-size: 1.05rem; color: var(--text-light); max-width: 600px; line-height: 1.8; }
.section-subtitle-light { color: rgba(255,255,255,0.5); }
.section-header { text-align: center; margin-bottom: 72px; display: flex; flex-direction: column; align-items: center; }

/* ── ANIMATIONS ── */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-text { opacity: 0; transform: translateY(24px); }

/* ── NAVBAR ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 18px 0; transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(255,255,255,0.92); backdrop-filter: blur(24px);
  box-shadow: 0 1px 32px rgba(0,123,127,0.08); padding: 10px 0;
}
.nav-container {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.logo-img { height: 56px; width: auto; filter: drop-shadow(0 2px 8px rgba(0,0,0,0.1)); transition: var(--transition); }
.navbar.scrolled .logo-img { height: 44px; }
.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-link {
  padding: 8px 14px; font-size: 0.86rem; font-weight: 500;
  color: rgba(255,255,255,0.9); border-radius: 10px; transition: var(--transition);
}
.navbar.scrolled .nav-link { color: var(--text-mid); }
.nav-link:hover { color: var(--teal); background: rgba(0,123,127,0.06); }
.nav-link.active { color: var(--teal); }
.nav-btn { margin-left: 8px; padding: 10px 22px; font-size: 0.85rem; }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 4px;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); }
.navbar.scrolled .hamburger span { background: var(--text-dark); }

/* ── HERO ── */
.hero { min-height: 100vh; position: relative; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg-img { width: 100%; height: 100%; object-fit: cover; will-change: transform; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,40,43,0.92) 0%, rgba(0,70,75,0.8) 50%, rgba(0,50,65,0.75) 100%);
}
.hero-content {
  position: relative; z-index: 1; max-width: 820px;
  padding: 140px 48px 100px; color: var(--white);
}
.hero-badge {
  display: inline-block; font-size: 0.78rem; letter-spacing: 4px;
  text-transform: uppercase; color: var(--gold-light);
  background: rgba(201,168,76,0.12); border: 1px solid rgba(201,168,76,0.3);
  padding: 10px 24px; border-radius: 50px; margin-bottom: 28px;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 6.5vw, 5.2rem); font-weight: 900;
  line-height: 1.05; margin-bottom: 28px; color: var(--white);
}
.title-line { display: block; overflow: hidden; }
.title-word { display: inline-block; }
.gradient-text-hero {
  background: linear-gradient(135deg, var(--gold-light), var(--green-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-desc {
  font-size: 1.15rem; color: rgba(255,255,255,0.75); max-width: 600px;
  margin-bottom: 44px; line-height: 1.9; font-weight: 300;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 64px; }
.hero-stats { display: flex; gap: 0; flex-wrap: wrap; }
.stat { display: flex; gap: 0; flex-wrap: wrap; }
.stat-item { display: flex; flex-direction: column; padding: 0 32px; }
.stat-item:first-child { padding-left: 0; }
.stat-num {
  font-family: 'Playfair Display', serif; font-size: 2.8rem;
  font-weight: 800; color: var(--white); line-height: 1;
}
.stat-suffix { font-size: 1.2rem; font-weight: 700; color: var(--gold-light); }
.stat-label { font-size: 0.76rem; color: rgba(255,255,255,0.5); letter-spacing: 1.5px; margin-top: 6px; text-transform: uppercase; }
.stat-divider { width: 1px; background: rgba(255,255,255,0.15); margin: 4px 0; }
.hero-scroll-indicator {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  z-index: 1; display: flex; flex-direction: column; align-items: center;
  gap: 8px; color: rgba(255,255,255,0.4); font-size: 0.72rem; letter-spacing: 3px;
}
.scroll-mouse { width: 24px; height: 38px; border: 2px solid rgba(255,255,255,0.25); border-radius: 14px; display: flex; justify-content: center; padding-top: 6px; }
.scroll-wheel { width: 3px; height: 8px; background: rgba(255,255,255,0.4); border-radius: 2px; animation: scrollWheel 2s ease infinite; }
@keyframes scrollWheel {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(8px); opacity: 0.2; }
}

/* ── MARQUEE STRIP ── */
.marquee-strip { background: var(--gradient); padding: 16px 0; overflow: hidden; white-space: nowrap; }
.marquee-track { display: inline-flex; gap: 28px; animation: marquee 35s linear infinite; }
.marquee-track span { font-size: 0.85rem; font-weight: 600; color: rgba(255,255,255,0.9); letter-spacing: 0.5px; }
.marquee-dot { opacity: 0.4; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ── BIG TEXT REVEAL ── */
.big-text-section { padding: 160px 0; background: var(--white); }
.big-reveal-text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4.5vw, 3.8rem); font-weight: 700;
  line-height: 1.35; color: var(--text-dark); text-align: center;
  max-width: 900px; margin: 0 auto;
}
.big-reveal-text em { font-style: italic; color: var(--teal); }

/* ── ABOUT ── */
.about { background: var(--off-white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; justify-content: start; }
.about-visual { position: relative; width: 100%; height: 100%; display: flex; align-items: center; }
.about-image-wrap { width: 100%; border-radius: 32px; overflow: hidden; position: relative; aspect-ratio: 1/1; box-shadow: var(--shadow-xl); transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.about-img { width: 100%; height: 100%; object-fit: cover; }
.about-visual:hover .about-image-wrap { transform: scale(1.02); }
.about-image-wrap:hover .about-img { transform: scale(1.04); }
.about-badge-card {
  position: absolute; bottom: 24px; right: -20px;
  padding: 18px 22px; display: flex; align-items: center; gap: 14px;
  box-shadow: var(--shadow-lg); z-index: 2;
}
.badge-icon { font-size: 2.2rem; }
.about-badge-card strong { display: block; font-size: 1rem; color: var(--teal); font-weight: 700; }
.about-badge-card small { color: var(--text-light); font-size: 0.78rem; }
.about-float-circle {
  position: absolute; top: -30px; left: -30px;
  width: 140px; height: 140px; background: var(--gradient);
  border-radius: 50%; opacity: 0.1; z-index: 0;
  animation: floatCircle 6s ease-in-out infinite;
}
.about-float-circle-2 {
  position: absolute; bottom: -20px; right: 40px;
  width: 80px; height: 80px; background: var(--gradient-gold);
  border-radius: 50%; opacity: 0.12; z-index: 0;
  animation: floatCircle 8s ease-in-out infinite reverse;
}
@keyframes floatCircle { 0%,100% { transform: translate(0,0); } 50% { transform: translate(10px,-15px); } }
.about-desc { color: var(--text-mid); line-height: 1.85; margin-bottom: 18px; font-size: 1rem; }
.about-pillars { display: flex; flex-direction: column; gap: 16px; margin: 36px 0 44px; }
.pillar { display: flex; gap: 16px; align-items: flex-start; padding: 16px; transition: var(--transition); }
.pillar:hover { transform: translateX(4px); }
.pillar-icon {
  font-size: 1.6rem; flex-shrink: 0; width: 52px; height: 52px;
  background: rgba(0,123,127,0.08); border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
}
.pillar strong { display: block; font-size: 1rem; color: var(--text-dark); margin-bottom: 4px; }
.pillar p { font-size: 0.88rem; color: var(--text-light); line-height: 1.5; }

/* ── SERVICES ── */
.services { background: var(--white); }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.service-card {
  padding: 36px 28px; cursor: default;
  transition: transform 0.6s cubic-bezier(0.16,1,0.3,1), box-shadow 0.6s cubic-bezier(0.16,1,0.3,1);
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.service-card > * { position: relative; z-index: 1; }
.service-icon-wrap { margin-bottom: 24px; }
.service-icon {
  font-size: 2.4rem; width: 68px; height: 68px;
  background: rgba(0,123,127,0.06); border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.service-card:hover .service-icon { background: var(--teal); color: var(--white); transform: scale(1.05); }
.service-card h3 {
  font-family: 'Playfair Display', serif; font-size: 1.25rem;
  color: var(--text-dark); margin-bottom: 12px; transition: var(--transition);
}
.service-card p { font-size: 0.9rem; color: var(--text-light); line-height: 1.65; transition: var(--transition); }
.service-tag {
  display: inline-block; margin-top: 16px; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase; color: var(--teal);
  background: rgba(0,123,127,0.08); padding: 6px 14px; border-radius: 50px;
}

/* ── PROCESS TIMELINE ── */
.process-section { color: var(--white); overflow: hidden; }
.process-timeline {
  max-width: 900px; margin: 0 auto;
  position: relative; padding: 40px 0;
}
.process-line {
  position: absolute; left: 50%; top: 0; bottom: 0; width: 2px;
  background: rgba(255,255,255,0.1); transform: translateX(-50%);
}
.process-step { display: flex; justify-content: space-between; align-items: center; margin-bottom: 80px; position: relative; z-index: 1; }
.process-step:nth-child(even) { flex-direction: row-reverse; }
.process-step:last-child { margin-bottom: 0; }
.process-dot {
  width: 20px; height: 20px; border-radius: 50%; background: var(--teal-light);
  position: absolute; left: 50%; transform: translateX(-50%);
  box-shadow: 0 0 0 6px rgba(0,157,163,0.2);
}
.process-content { width: calc(50% - 60px); padding: 40px; position: relative; }
.process-number {
  font-family: 'Playfair Display', serif; font-size: 4.5rem; font-weight: 800;
  position: absolute; top: -30px; right: -20px; color: rgba(255,255,255,0.05); line-height: 1;
  pointer-events: none; z-index: -1;
}
.process-step:nth-child(even) .process-number { left: -20px; right: auto; }
.process-content h3 { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--white); margin-bottom: 12px; }
.process-content p { color: rgba(255,255,255,0.6); font-size: 0.95rem; line-height: 1.7; }

/* ── WHY US ── */
.why-us { background: var(--off-white); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.why-card { padding: 44px 36px; border: 1px solid var(--border); transition: transform 0.6s ease, box-shadow 0.6s ease; }
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.why-number {
  font-family: 'Playfair Display', serif; font-size: 3.8rem; font-weight: 800;
  background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  line-height: 1; margin-bottom: 20px;
}
.why-card h3 { font-size: 1.15rem; color: var(--text-dark); margin-bottom: 12px; font-weight: 700; }
.why-card p { font-size: 0.92rem; color: var(--text-light); line-height: 1.75; }

/* ── CELEBRITY QUOTES ── */
.quotes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.quote-card { padding: 36px 32px; position: relative; overflow: visible; }
.quote-mark { font-family: 'Playfair Display', serif; font-size: 5rem; line-height: 1; color: rgba(255,255,255,0.1); margin-bottom: -16px; margin-top: -10px; }
.quote-text { font-family: 'Lora', serif; font-size: 0.98rem; font-style: italic; color: rgba(255,255,255,0.7); line-height: 1.8; margin-bottom: 28px; }
.quote-author { display: flex; align-items: center; gap: 16px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.1); }
.quote-avatar {
  width: 52px; height: 52px; border-radius: 50%; color: var(--white); font-weight: 800;
  font-size: 0.9rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; letter-spacing: 1px;
}
.quote-avatar.modi { background: linear-gradient(135deg, #ff9933, #e67300); }
.quote-avatar.srk { background: linear-gradient(135deg, #1a1a2e, #16213e); }
.quote-avatar.gandhi { background: linear-gradient(135deg, #8d6e63, #5d4037); }
.quote-avatar.ab { background: linear-gradient(135deg, #7b1fa2, #4a148c); }
.quote-avatar.msd { background: linear-gradient(135deg, #1565c0, #0d47a1); }
.quote-avatar.tagore { background: linear-gradient(135deg, #c9a84c, #8d6e27); }
.quote-author strong { display: block; font-size: 0.95rem; color: var(--white); }
.quote-author small { font-size: 0.8rem; color: rgba(255,255,255,0.4); }

/* ── DOCTORS ── */
.doctors { background: var(--white); }
.doctors-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 48px; max-width: 900px; margin: 0 auto; }
.doctors-grid.doctors-single { grid-template-columns: 1fr; max-width: 520px; }
.doctor-card { overflow: hidden; padding: 0; }
.doctor-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.doctor-img-wrap { position: relative; height: 420px; overflow: hidden; }
.doctor-img { width: 100%; height: 100%; object-fit: cover; object-position: center top; transition: transform 0.8s ease; }
.doctor-card:hover .doctor-img { transform: scale(1.06); }

.animated-doctor {
  animation: subtleBreathe 10s ease-in-out infinite alternate;
  transform-origin: center center;
}
@keyframes subtleBreathe {
  0% { transform: scale(1) translateY(0); }
  100% { transform: scale(1.04) translateY(-4px); }
}

.doctor-overlay {
  position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,40,43,0.9) 0%, transparent 60%);
  display: flex; align-items: flex-end; justify-content: center; padding: 32px; opacity: 0; transition: var(--transition);
}
.doctor-card:hover .doctor-overlay { opacity: 1; }
.doctor-contact-btns { display: flex; gap: 16px; transform: translateY(20px); transition: transform 0.4s ease; }
.doctor-card:hover .doctor-contact-btns { transform: translateY(0); }
.doc-btn {
  padding: 12px 24px; background: rgba(255,255,255,0.2); backdrop-filter: blur(10px);
  color: var(--white); border: 1px solid rgba(255,255,255,0.4); border-radius: 50px;
  font-size: 0.85rem; font-weight: 600; transition: var(--transition);
}
.doc-btn:hover { background: var(--white); color: var(--teal); }
.doctor-info { padding: 36px; }
.doctor-info h3 { font-family: 'Playfair Display', serif; font-size: 1.6rem; color: var(--text-dark); margin-bottom: 8px; }
.doctor-qual { font-size: 0.92rem; color: var(--teal); font-weight: 700; margin-bottom: 6px; }
.doctor-branch { font-size: 0.88rem; color: var(--text-light); margin-bottom: 20px; }
.doctor-specialties { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 20px; }
.doctor-specialties span { font-size: 0.76rem; font-weight: 700; letter-spacing: 0.5px; color: var(--teal); background: rgba(0,123,127,0.08); padding: 6px 14px; border-radius: 50px; text-transform: uppercase; }
.doctor-rating { font-size: 0.9rem; color: var(--text-mid); font-weight: 500; }

/* ── CONSULT CTA ── */
.consult-cta { background: var(--gradient); padding: 80px 0; position: relative; overflow: hidden; }
.consult-cta::before {
  content: ''; position: absolute; top: -50%; right: -10%;
  width: 500px; height: 500px; background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none;
}
.cta-content { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; position: relative; z-index: 1; }
.cta-text h2 { font-family: 'Playfair Display', serif; font-size: 2.2rem; gap: 8px; color: var(--white); margin-bottom: 12px; }
.cta-text p { color: rgba(255,255,255,0.85); font-size: 1.05rem; }
.cta-actions { display: flex; gap: 16px; align-items: center; }

/* ── TESTIMONIALS ── */
.testimonials { background: var(--off-white); }
.testimonials-slider { position: relative; max-width: 860px; margin: 0 auto; }
.testimonials-track { position: relative; min-height: 320px; }
.testimonial-card { display: none; padding: 48px; border: 1px solid var(--border); }
.testimonial-card.active { display: block; animation: slideInFade 0.6s ease; }
@keyframes slideInFade { from { opacity: 0; transform: translateX(30px) scale(0.98); } to { opacity: 1; transform: translateX(0) scale(1); } }
.testimonial-stars { font-size: 1.3rem; margin-bottom: 24px; letter-spacing: 4px; }
.testimonial-text { font-family: 'Lora', serif; font-size: 1.15rem; font-style: italic; color: var(--text-mid); line-height: 1.85; margin-bottom: 32px; }
.testimonial-author { display: flex; align-items: center; gap: 16px; }
.author-avatar { width: 56px; height: 56px; border-radius: 50%; background: var(--gradient); color: var(--white); font-weight: 700; font-size: 0.95rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.testimonial-author strong { display: block; font-size: 1rem; color: var(--text-dark); margin-bottom: 2px; }
.testimonial-author small { font-size: 0.85rem; color: var(--text-light); }
.slider-controls { display: flex; align-items: center; justify-content: center; gap: 24px; margin-top: 40px; }
.slider-btn { width: 48px; height: 48px; border-radius: 50%; border: 2px solid var(--teal); background: transparent; color: var(--teal); font-size: 1.5rem; cursor: pointer; font-weight: 300; transition: var(--transition); display: flex; align-items: center; justify-content: center; line-height: 1; }
.slider-btn:hover { background: var(--teal); color: var(--white); transform: scale(1.1); }
.slider-dots { display: flex; gap: 10px; }
.slider-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(0,123,127,0.2); cursor: pointer; transition: var(--transition); border: none; }
.slider-dot.active { background: var(--teal); transform: scale(1.4); }

/* ── INSTAGRAM EMBEDS / NATIVE REELS ── */
.instagram-section { background: var(--dark-bg); }
.instagram-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; max-width: 1100px; margin: 0 auto 56px; }
.insta-embed-card { border-radius: 20px; overflow: hidden; background: #000; transition: transform 0.4s ease; position: relative; }
.insta-embed-card:hover { transform: translateY(-10px) scale(1.02); box-shadow: 0 20px 60px rgba(0,0,0,0.5); z-index: 10; }
.insta-video-wrap { width: 100%; aspect-ratio: 9/16; position: relative; }
.insta-video-wrap video { width: 100%; height: 100%; display: block; object-fit: cover; filter: brightness(0.8); transition: filter 0.5s ease; }
.insta-embed-card:hover .insta-video-wrap video { filter: brightness(0.6); }

/* Reel Overlay Elements */
.reel-overlay { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: space-between; padding: 24px; z-index: 2; pointer-events: none; }
.btn-reel-play { 
  align-self: flex-end; width: 48px; height: 48px; border-radius: 50%; 
  background: rgba(255,255,255,0.2); backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,0.4);
  display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 1.2rem; pointer-events: auto;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1); cursor: pointer; text-decoration: none;
}
.btn-reel-play:hover { background: var(--white); color: var(--teal); transform: scale(1.15); }
.reel-info { color: var(--white); pointer-events: auto; text-shadow: 0 2px 12px rgba(0,0,0,0.4); }
.reel-info strong { display: block; font-size: 1.05rem; margin-bottom: 4px; font-weight: 700; }
.reel-info p { font-size: 0.9rem; color: rgba(255,255,255,0.85); line-height: 1.4; }

.instagram-cta { text-align: center; }
.btn-instagram {
  display: inline-flex; align-items: center; gap: 12px; padding: 16px 40px;
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: var(--white); font-weight: 600; font-size: 1.05rem; border-radius: 50px;
  transition: var(--transition); box-shadow: 0 8px 24px rgba(188, 24, 136, 0.3);
}
.btn-instagram:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(188, 24, 136, 0.4); }

/* ── BRANCHES ── */
.branches { background: var(--white); }
.branches-grid.branches-single { grid-template-columns: 1fr; max-width: 720px; margin: 0 auto; }
.branch-card { padding: 48px; border: 1px solid var(--border); transition: var(--transition); }
.branch-card:hover { border-color: var(--teal-light); }
.branch-header { display: flex; align-items: center; gap: 20px; margin-bottom: 36px; }
.branch-icon { font-size: 2.2rem; width: 64px; height: 64px; background: var(--gradient); border-radius: 16px; display: flex; align-items: center; justify-content: center; }
.branch-header h3 { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--text-dark); margin-bottom: 6px; }
.branch-sub { font-size: 0.9rem; color: var(--text-light); }
.branch-details { display: flex; flex-direction: column; gap: 18px; margin-bottom: 36px; }
.branch-detail { display: flex; gap: 16px; align-items: flex-start; font-size: 0.95rem; color: var(--text-mid); line-height: 1.6; }
.detail-icon { flex-shrink: 0; font-size: 1.1rem; margin-top: 2px; }
.branch-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ── CONTACT ── */
.contact { background: var(--off-white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 72px; align-items: flex-start; }
.contact-info { display: flex; flex-direction: column; gap: 24px; position: sticky; top: 120px; }
.contact-item { display: flex; gap: 18px; align-items: flex-start; }
.contact-icon { font-size: 1.6rem; width: 52px; height: 52px; background: rgba(0,123,127,0.06); border-radius: 14px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-item strong { display: block; font-size: 0.85rem; color: var(--text-light); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 1.5px; }
.contact-item a { color: var(--text-dark); font-weight: 600; font-size: 1.05rem; transition: var(--transition); }
.contact-item a:hover { color: var(--teal); }
.social-links { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 16px; }
.social-btn { display: inline-flex; align-items: center; gap: 10px; padding: 12px 24px; border-radius: 50px; font-size: 0.9rem; font-weight: 600; transition: var(--transition); }
.social-btn.instagram { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); color: var(--white); }
.social-btn.facebook { background: #1877F2; color: var(--white); }
.social-btn:hover { transform: translateY(-3px); box-shadow: var(--shadow); }

/* ── FORMS ── */
.contact-form, .modal-form { display: flex; flex-direction: column; gap: 24px; padding: 48px; border: 1px solid var(--border); }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: 0.88rem; font-weight: 600; color: var(--text-mid); }
.form-group input, .form-group select, .form-group textarea {
  padding: 16px 20px; border: 1.5px solid rgba(0,123,127,0.15); border-radius: 12px;
  font-family: 'Inter', sans-serif; font-size: 1rem; color: var(--text-dark);
  background: var(--white); transition: var(--transition); outline: none; width: 100%;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--teal); box-shadow: 0 0 0 4px rgba(0,123,127,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.whatsapp-note { font-size: 0.85rem; color: var(--text-light); text-align: center; margin-top: 8px; }
.form-success {
  display: none; color: var(--teal-dark); background: rgba(0,157,163,0.1);
  border: 1px solid rgba(0,123,127,0.2); border-radius: 12px;
  padding: 16px 24px; font-size: 0.95rem; font-weight: 500; text-align: center;
}
.form-success.show { display: block; animation: slideInFade 0.4s ease; }

/* ── FOOTER ── */
.footer { background: var(--dark-bg); padding: 80px 0 32px; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 56px; margin-bottom: 64px; }
.footer-logo { height: 64px; margin-bottom: 24px; filter: brightness(0) invert(1); }
.footer-brand p { color: rgba(255,255,255,0.5); font-size: 0.95rem; line-height: 1.8; margin-bottom: 16px; }
.footer-tagline { font-size: 0.8rem !important; letter-spacing: 3px; color: var(--teal-light) !important; text-transform: uppercase; }
.footer-col h4 { color: var(--white); font-size: 0.95rem; font-weight: 700; margin-bottom: 24px; letter-spacing: 1.5px; text-transform: uppercase; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.footer-col ul li a { color: rgba(255,255,255,0.4); font-size: 0.95rem; transition: var(--transition); }
.footer-col ul li a:hover { color: var(--teal-light); padding-left: 6px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 32px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer-bottom p { color: rgba(255,255,255,0.3); font-size: 0.85rem; }

/* ── MODAL ── */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(0,20,22,0.85); z-index: 2000;
  display: flex; align-items: center; justify-content: center; padding: 24px;
  opacity: 0; visibility: hidden; transition: all 0.4s ease; backdrop-filter: blur(12px);
}
.modal-overlay.open { opacity: 1; visibility: visible; }
.modal {
  padding: 56px; max-width: 720px; width: 100%; max-height: 90vh; overflow-y: auto;
  position: relative; transform: translateY(40px) scale(0.95); transition: transform 0.5s cubic-bezier(0.16,1,0.3,1); box-shadow: 0 40px 100px rgba(0,0,0,0.4);
}
.modal-overlay.open .modal { transform: translateY(0) scale(1); }
.modal-close { position: absolute; top: 24px; right: 24px; width: 44px; height: 44px; border-radius: 50%; border: none; background: rgba(0,123,127,0.06); font-size: 1.4rem; cursor: pointer; transition: var(--transition); color: var(--text-mid); display: flex; align-items: center; justify-content: center; }
.modal-close:hover { background: var(--teal); color: var(--white); transform: rotate(90deg); }
.modal-header { text-align: center; margin-bottom: 40px; }
.modal-logo { height: 72px; margin: 0 auto 20px; }
.modal-header h2 { font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--text-dark); margin-bottom: 8px; }
.modal-header p { color: var(--text-light); font-size: 0.95rem; }

/* ── SCROLL TO TOP & WHATSAPP ── */
.scroll-top { position: fixed; bottom: 110px; right: 32px; z-index: 999; width: 56px; height: 56px; border-radius: 50%; background: var(--gradient); color: var(--white); border: none; font-size: 1.4rem; cursor: pointer; box-shadow: var(--shadow); opacity: 0; visibility: hidden; transition: var(--transition); display: flex; align-items: center; justify-content: center; }
.scroll-top.visible { opacity: 1; visibility: visible; }
.scroll-top:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.whatsapp-float {
  position: fixed; bottom: 40px; right: 32px; z-index: 999; width: 64px; height: 64px;
  border-radius: 50%; background: #25D366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.4); transition: var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1) translateY(-4px); box-shadow: 0 12px 40px rgba(37, 211, 102, 0.5); }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .quotes-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 56px; }
  .about-badge-card { right: 16px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .instagram-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .process-timeline::before { left: 40px; }
  .process-line { left: 40px; }
  .process-step, .process-step:nth-child(even) { flex-direction: row; justify-content: flex-end; }
  .process-dot { left: 40px; }
  .process-content { width: calc(100% - 80px); }
  .process-step:nth-child(even) .process-number, .process-number { left: auto; right: 0; }
  .cursor-dot, .cursor-ring { display: none !important; }
}
@media (max-width: 768px) {
  .section, .section-dark { padding: 80px 0; }
  .hero-content { padding: 140px 24px 80px; }
  .hero-actions { flex-direction: column; }
  .big-text-section { padding: 100px 0; }
  .nav-links {
    position: fixed; top: 0; right: -100%; bottom: 0; width: 80%; max-width: 320px;
    background: rgba(255,255,255,0.98); backdrop-filter: blur(20px);
    flex-direction: column; align-items: flex-start; padding: 100px 32px 32px;
    box-shadow: -8px 0 40px rgba(0,0,0,0.15); transition: right 0.4s ease; gap: 8px; z-index: 999;
  }
  .nav-links.open { right: 0; }
  .nav-link { color: var(--text-dark) !important; font-size: 1.1rem; width: 100%; padding: 12px 0; border-bottom: 1px solid rgba(0,0,0,0.05); }
  .nav-btn { margin-left: 0; margin-top: 24px; width: 100%; justify-content: center; }
  .hamburger { display: flex; z-index: 1001; }
  .hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); background: var(--text-dark); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); background: var(--text-dark); }
  .doctors-grid { grid-template-columns: 1fr; max-width: 440px; }
  .form-row { grid-template-columns: 1fr; }
  .hero-stats { gap: 32px; flex-direction: column; }
  .stat-item { padding: 0; }
  .stat-divider { width: 80px; height: 1px; margin: 16px 0; }
  .cta-content { flex-direction: column; text-align: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .why-grid { grid-template-columns: 1fr; }
  .quotes-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .instagram-grid { grid-template-columns: 1fr; }
  .modal { padding: 32px 24px; }
  .contact-form { padding: 32px 24px; }
}
@media (max-width: 480px) {
  .hero-title { font-size: 2.6rem; }
  .section-title { font-size: 2rem; }
  .big-reveal-text { font-size: 1.8rem; }
  .branch-card { padding: 32px 24px; }
  .branch-actions { flex-direction: column; }
  .testimonial-card { padding: 32px 24px; }
  .about-badge-card { position: static; margin-top: 24px; }
}
\n
/* ── FULL SCREEN INFO PAGE ── */
.info-page-overlay {
  position: fixed; top: 100vh; left: 0; width: 100%; height: 100%;
  background: rgba(10,26,28,0.95); backdrop-filter: blur(30px); -webkit-backdrop-filter: blur(30px);
  z-index: 9999; display: flex; flex-direction: column; overflow-y: auto; overflow-x: hidden;
  transition: top 0.7s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease;
  opacity: 0; padding: 0;
}
.info-page-overlay.open {
  top: 0; opacity: 1;
}
.info-close {
  position: fixed; top: 32px; right: 40px; width: 56px; height: 56px; border-radius: 50%;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center; color: #fff; cursor: pointer;
  z-index: 10000; transition: transform 0.4s ease, background 0.4s ease;
}
.info-close:hover {
  background: #007B7F; transform: scale(1.1) rotate(90deg);
}
.info-page-content {
  width: 100%; max-width: 1200px; margin: 0 auto; padding: 100px 24px; color: #fff;
}

/* ── INFOGRAPHIC STYLES ── */
.info-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start;
}
.info-panel {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  padding: 48px; border-radius: 32px; position: relative; overflow: hidden;
}
.info-badge {
  display: inline-block; background: linear-gradient(135deg, #007B7F, #4dde89);
  padding: 8px 16px; border-radius: 50px; font-size: 0.8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px; margin-bottom: 24px;
}
.info-panel h2 {
  font-family: 'Playfair Display', serif; font-size: 3.5rem; line-height: 1.1;
  margin-bottom: 24px;
}
.info-desc {
  font-size: 1.1rem; color: rgba(255,255,255,0.8); line-height: 1.8; margin-bottom: 32px;
}
.info-stat-ring {
  position: relative; width: 160px; height: 160px;
}
.info-stat-ring svg {
  transform: rotate(-90deg); width: 100%; height: 100%;
}
.info-stat-ring .circle-bg {
  fill: none; stroke: rgba(255,255,255,0.1); stroke-width: 3;
}
.info-stat-ring .circle-progress {
  fill: none; stroke: #4dde89; stroke-width: 3; stroke-dasharray: 100; stroke-dashoffset: 8;
  transition: stroke-dashoffset 1.5s ease-out;
}
.stat-inner {
  position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.stat-inner h3 { font-size: 2rem; font-weight: 800; line-height: 1; }
.stat-inner p { font-size: 0.8rem; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 1px; }

.info-timeline {
  list-style: none; margin-top: 24px; position: relative; padding-left: 20px;
}
.info-timeline::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 2px;
  background: linear-gradient(to bottom, #007B7F, transparent);
}
.info-timeline li {
  position: relative; padding-bottom: 32px; font-size: 1rem; color: rgba(255,255,255,0.7); line-height: 1.6;
}
.info-timeline li::before {
  content: ''; position: absolute; left: -25px; top: 6px; width: 12px; height: 12px;
  border-radius: 50%; background: #007B7F; border: 3px solid #0a1a1c;
}
.info-timeline li strong {
  color: #fff; display: block; font-size: 1.1rem; margin-bottom: 4px;
}
.info-action {
  margin-top: 40px; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 32px;
}

@media (max-width: 900px) {
  .info-layout { grid-template-columns: 1fr; }
  .info-panel h2 { font-size: 2.5rem; }
}

/* 3D TILT CARDS INHERITANCE */
.glass-card {
  will-change: transform; transition: transform 0.2s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.2s;
  cursor: pointer;
}
\n