/* ==========================================================================
   DR. REVATHI M. - PEDIATRIC DENTISTRY DESIGN SYSTEM
   Theme: Bright, Premium, Friendly, Reassuring, Modern, Pediatric-Focused
   Palette: Lavender (#9E8CFF), Soft Pink (#FFB4D8), Pastel Peach (#FFC5A8),
            Mint Green (#A8E6CF), Baby Blue (#A9D8FF), Soft Yellow (#FFE59D)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400;1,600&family=Caveat:wght@600;700&display=swap');

:root {
  /* Exact Specified Pastel Color Palette */
  --primary-lavender: #9E8CFF;
  --primary-lavender-light: #EEE9FF;
  --primary-lavender-dark: #7A64E8;
  --primary-lavender-tint: rgba(158, 140, 255, 0.12);

  --soft-pink: #FFB4D8;
  --soft-pink-light: #FFF0F7;
  --soft-pink-dark: #E672A7;
  --soft-pink-tint: rgba(255, 180, 216, 0.15);

  --pastel-peach: #FFC5A8;
  --pastel-peach-light: #FFF3E9;
  --pastel-peach-dark: #E8895E;
  --pastel-peach-tint: rgba(255, 197, 168, 0.15);

  --mint-green: #A8E6CF;
  --mint-green-light: #EDFAF4;
  --mint-green-dark: #4DB896;
  --mint-green-tint: rgba(168, 230, 207, 0.2);

  --baby-blue: #A9D8FF;
  --baby-blue-light: #EDF7FF;
  --baby-blue-dark: #529FE8;
  --baby-blue-tint: rgba(169, 216, 255, 0.18);

  --soft-yellow: #FFE59D;
  --soft-yellow-light: #FFFBEB;
  --soft-yellow-dark: #C99A1E;

  /* Typography Colors */
  --text-dark: #23233A;
  --text-secondary: #66667A;
  --text-muted: #8E8EA0;
  --text-light: #FFFFFF;

  /* Background Palette */
  --bg-main: #FFF9FC;
  --bg-alt-purple: #F7F5FF;
  --bg-alt-blue: #F3FBFF;
  --bg-card: rgba(255, 255, 255, 0.72);
  --bg-card-hover: rgba(255, 255, 255, 0.88);
  --bg-card-solid: #FFFFFF;

  /* Glassmorphism Specs */
  --glass-bg: rgba(255, 255, 255, 0.7);
  --glass-bg-elevated: rgba(255, 255, 255, 0.85);
  --glass-blur: blur(20px);
  --glass-border: 1px solid rgba(255, 255, 255, 0.65);
  --glass-border-subtle: 1px solid rgba(158, 140, 255, 0.18);

  /* Shadows */
  --shadow-sm: 0 4px 12px rgba(35, 35, 58, 0.04);
  --shadow-md: 0 12px 28px -6px rgba(158, 140, 255, 0.12), 0 6px 12px -4px rgba(35, 35, 58, 0.04);
  --shadow-lg: 0 20px 40px -12px rgba(158, 140, 255, 0.18), 0 8px 16px -6px rgba(35, 35, 58, 0.06);
  --shadow-hover: 0 24px 48px -10px rgba(158, 140, 255, 0.25), 0 10px 20px -5px rgba(255, 180, 216, 0.15);
  --shadow-glow-lavender: 0 8px 24px rgba(158, 140, 255, 0.35);

  /* Radii (24-32px for cards) */
  --radius-sm: 14px;
  --radius-md: 20px;
  --radius-card: 28px;
  --radius-pill: 9999px;

  /* Typography */
  --font-heading: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-signature: 'Caveat', cursive, sans-serif;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

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

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--bg-main);
  line-height: 1.75;
  overflow-x: hidden;
  position: relative;
  font-size: 1.0625rem; /* ~17px */
}

/* Custom Selection */
::selection {
  background: var(--soft-pink);
  color: var(--text-dark);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--primary-lavender-light);
}
::-webkit-scrollbar-thumb {
  background: var(--primary-lavender);
  border-radius: 5px;
  border: 2px solid var(--primary-lavender-light);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary-lavender-dark);
}

/* ==========================================================================
   BACKGROUND FLOATING PASTEL ORBS & CANVAS GLOW
   ========================================================================== */
.ambient-bg-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.ambient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
  animation: floatOrb 22s infinite alternate ease-in-out;
}

.orb-1 {
  width: 550px;
  height: 550px;
  background: var(--primary-lavender);
  top: -150px;
  right: -100px;
  animation-duration: 25s;
}

.orb-2 {
  width: 600px;
  height: 600px;
  background: var(--soft-pink);
  bottom: 10%;
  left: -200px;
  animation-duration: 30s;
  animation-delay: -5s;
}

.orb-3 {
  width: 450px;
  height: 450px;
  background: var(--mint-green);
  top: 45%;
  right: 5%;
  animation-duration: 28s;
  animation-delay: -10s;
}

.orb-4 {
  width: 400px;
  height: 400px;
  background: var(--pastel-peach);
  top: 70%;
  left: 20%;
  animation-duration: 22s;
  animation-delay: -15s;
}

@keyframes floatOrb {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, 30px) scale(1.08); }
  100% { transform: translate(-30px, 50px) scale(0.95); }
}

/* Subtle Cursor Glow (Desktop Only) */
.cursor-glow {
  position: fixed;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(158, 140, 255, 0.15) 0%, rgba(255, 180, 216, 0.08) 45%, transparent 70%);
  pointer-events: none;
  z-index: 1;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease, transform 0.1s ease-out;
  opacity: 0;
}

body:hover .cursor-glow {
  opacity: 1;
}

/* ==========================================================================
   CONTAINER & LAYOUT HELPERS
   ========================================================================== */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 2;
}

.section {
  padding: 6.5rem 0;
  position: relative;
}

.section-alt-purple {
  background-color: var(--bg-alt-purple);
}

.section-alt-blue {
  background-color: var(--bg-alt-blue);
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 4rem auto;
}

.section-pill-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1.15rem;
  background: var(--primary-lavender-light);
  color: var(--primary-lavender-dark);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: var(--radius-pill);
  margin-bottom: 1.15rem;
  border: 1px solid rgba(158, 140, 255, 0.25);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 3.8vw, 3rem); /* 42-48px */
  font-weight: 800;
  line-height: 1.25;
  color: var(--text-dark);
  margin-bottom: 1.15rem;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Marker-style highlight */
.marker-lavender {
  background: linear-gradient(120deg, rgba(158, 140, 255, 0.28) 0%, rgba(158, 140, 255, 0.15) 100%);
  padding: 0.1em 0.4em;
  border-radius: 6px;
  font-weight: 700;
  color: var(--text-dark);
}

.marker-pink {
  background: linear-gradient(120deg, rgba(255, 180, 216, 0.35) 0%, rgba(255, 180, 216, 0.18) 100%);
  padding: 0.1em 0.4em;
  border-radius: 6px;
  font-weight: 700;
  color: var(--text-dark);
}

.marker-mint {
  background: linear-gradient(120deg, rgba(168, 230, 207, 0.4) 0%, rgba(168, 230, 207, 0.2) 100%);
  padding: 0.1em 0.4em;
  border-radius: 6px;
  font-weight: 700;
  color: var(--text-dark);
}

/* Gradient Text */
.gradient-text-pink-lavender {
  background: linear-gradient(135deg, #E672A7 0%, #9E8CFF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline;
}

/* ==========================================================================
   BUTTONS, ICONS & CTAS
   ========================================================================== */
.svg-icon {
  width: 20px;
  height: 20px;
  stroke-width: 2;
  stroke: currentColor;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}

.svg-icon,
img.svg-icon {
  width: 22px;
  height: 22px;
  display: inline-block;
  vertical-align: middle;
  object-fit: contain;
  flex-shrink: 0;
}

.svg-icon-sm,
img.svg-icon-sm {
  width: 18px;
  height: 18px;
  display: inline-block;
  vertical-align: middle;
  object-fit: contain;
  flex-shrink: 0;
}

.svg-icon-md,
img.svg-icon-md {
  width: 26px;
  height: 26px;
  display: inline-block;
  vertical-align: middle;
  object-fit: contain;
  flex-shrink: 0;
}

.svg-icon-lg,
img.svg-icon-lg {
  width: 32px;
  height: 32px;
  display: inline-block;
  vertical-align: middle;
  object-fit: contain;
  flex-shrink: 0;
}

.svg-icon-xl,
img.svg-icon-xl {
  width: 42px;
  height: 42px;
  display: inline-block;
  vertical-align: middle;
  object-fit: contain;
  flex-shrink: 0;
}

.btn-icon,
img.btn-icon {
  width: 18px;
  height: 18px;
  display: inline-block;
  vertical-align: middle;
  object-fit: contain;
  flex-shrink: 0;
}

.btn-primary img.btn-icon,
.btn-primary img.svg-icon {
  filter: brightness(0) invert(1);
}

.lang-code-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--primary-lavender-light);
  color: var(--primary-lavender-dark);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  padding: 0.85rem 1.85rem;
  border-radius: var(--radius-pill);
  text-decoration: none;
  cursor: pointer;
  border: none;
  outline: none;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-lavender) 0%, #856EFF 100%);
  color: #FFFFFF;
  box-shadow: var(--shadow-glow-lavender);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(158, 140, 255, 0.45);
}

.btn-glass {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: var(--glass-border);
  color: var(--text-dark);
  box-shadow: var(--shadow-sm);
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.95);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  color: var(--primary-lavender-dark);
}

.btn-glass .arrow-icon {
  transition: transform var(--transition-fast);
}

.btn-glass:hover .arrow-icon {
  transform: translateX(4px);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary-lavender);
  color: var(--primary-lavender-dark);
}

.btn-outline:hover {
  background: var(--primary-lavender-light);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.6rem 1.35rem;
  font-size: 0.9rem;
}

.btn-lg {
  padding: 1.05rem 2.25rem;
  font-size: 1.08rem;
}

/* ==========================================================================
   01 - FLOATING GLASS NAVBAR
   ========================================================================== */
.floating-navbar-container {
  position: fixed;
  top: 20px;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all var(--transition-normal);
}

.navbar-glass {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: var(--radius-pill);
  padding: 0.75rem 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
}

.floating-navbar-container.scrolled .navbar-glass {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  padding: 0.55rem 1.5rem;
  box-shadow: var(--shadow-lg);
  border-color: rgba(158, 140, 255, 0.25);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
}

.brand-icon-box {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary-lavender-light) 0%, var(--soft-pink-light) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  border: 1px solid rgba(158, 140, 255, 0.3);
  box-shadow: var(--shadow-sm);
}

.brand-text-col {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.15;
}

.brand-subtitle {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary-lavender-dark);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color var(--transition-fast);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primary-lavender);
  transition: all var(--transition-normal);
  transform: translateX(-50%);
  border-radius: 2px;
}

.nav-link:hover, .nav-link.active {
  color: var(--primary-lavender-dark);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.mobile-toggle {
  display: none;
  background: var(--primary-lavender-light);
  border: 1px solid rgba(158, 140, 255, 0.3);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--primary-lavender-dark);
  padding: 0.45rem 0.95rem;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.mobile-toggle:hover {
  background: var(--primary-lavender);
  color: #FFFFFF;
}

/* ==========================================
   02 - HERO SECTION
   ========================================== */
.hero-section {
  padding-top: 8.5rem;
  padding-bottom: 5.5rem;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #EEE9FF 0%, #FFF0F7 50%, #FFF3E9 100%);
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.95fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 1.15rem;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(158, 140, 255, 0.3);
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary-lavender-dark);
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.pulsing-dot {
  width: 8px;
  height: 8px;
  background: var(--mint-green-dark);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(77, 184, 150, 0.7);
  animation: pulseGreen 2s infinite;
}

@keyframes pulseGreen {
  0% { box-shadow: 0 0 0 0 rgba(77, 184, 150, 0.7); }
  70% { box-shadow: 0 0 0 8px rgba(77, 184, 150, 0); }
  100% { box-shadow: 0 0 0 0 rgba(77, 184, 150, 0); }
}

.hero-heading {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 4.8vw, 4.2rem); /* 56-68px */
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--text-dark);
  margin-bottom: 1.25rem;
}

.hero-lead-text {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 1.25rem;
  max-width: 580px;
}

.hero-credentials-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-dark);
  background: rgba(255, 255, 255, 0.65);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
}

.hero-cta-group {
  display: flex;
  gap: 1.15rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

/* 3 Floating Trust Indicators */
.hero-trust-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.trust-card {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 20px;
  padding: 1.15rem 1rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.trust-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  background: rgba(255, 255, 255, 0.9);
}

.trust-card-num {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--primary-lavender-dark);
  line-height: 1.1;
  margin-bottom: 0.25rem;
}

.trust-card-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* Hero Right Visual Column */
.hero-visual-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-backdrop-glow {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.glow-orb-lavender {
  position: absolute;
  top: 5%;
  right: -5%;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: var(--primary-lavender);
  opacity: 0.45;
  filter: blur(60px);
}

.glow-orb-pink {
  position: absolute;
  bottom: 0%;
  left: -5%;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: var(--soft-pink);
  opacity: 0.45;
  filter: blur(55px);
}

.glow-orb-mint {
  position: absolute;
  top: 40%;
  left: -10%;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: var(--mint-green);
  opacity: 0.4;
  filter: blur(45px);
}

.hero-portrait-frame {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 420px;
  border-radius: 40px 40px 60px 40px;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(20px);
  padding: 14px;
  border: 2px solid rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-lg);
}

.hero-doctor-photo {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: top center;
  border-radius: 30px 30px 50px 30px;
  display: block;
}

/* Floating Sparkle/Bubble Badges */
.floating-happier-bubble {
  position: absolute;
  top: -20px;
  right: -15px;
  z-index: 3;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  padding: 0.7rem 1.25rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-dark);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255, 255, 255, 0.9);
  animation: floatSlow 4s infinite alternate ease-in-out;
}

.floating-credential-bubble {
  position: absolute;
  bottom: 25px;
  left: -25px;
  z-index: 3;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  padding: 0.85rem 1.35rem;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(158, 140, 255, 0.3);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  animation: floatSlow 5s infinite alternate-reverse ease-in-out;
}

.bubble-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--primary-lavender-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.bubble-title {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--text-dark);
}

.bubble-desc {
  font-size: 0.78rem;
  color: var(--text-secondary);
}

@keyframes floatSlow {
  0% { transform: translateY(0); }
  100% { transform: translateY(-10px); }
}

/* ==========================================
   03 - ABOUT SECTION
   ========================================== */
.about-section {
  background-color: var(--bg-main);
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.15fr;
  gap: 4rem;
  align-items: center;
}

.about-image-column {
  position: relative;
}

.about-image-card {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: rgba(255, 255, 255, 0.6);
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.about-photo {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 20px;
  display: block;
}

.about-floating-card {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(158, 140, 255, 0.3);
  border-radius: 20px;
  padding: 1.15rem 1.4rem;
  box-shadow: var(--shadow-lg);
  max-width: 260px;
}

.about-content-col h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.2vw, 2.75rem);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.25;
  margin-bottom: 1.5rem;
}

.about-paragraphs {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-bottom: 2rem;
  text-align: justify;
  text-justify: inter-word;
}

.about-signature-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(158, 140, 255, 0.2);
}

.signature-name {
  font-family: var(--font-signature);
  font-size: 2.3rem;
  color: var(--primary-lavender-dark);
  line-height: 1;
}

.signature-title {
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* ==========================================
   04 - CHILD-FRIENDLY PHILOSOPHY SECTION
   ========================================== */
.philosophy-section {
  background: linear-gradient(180deg, var(--bg-alt-purple) 0%, #FFFFFF 100%);
  position: relative;
}

.philosophy-banner-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: var(--glass-border);
  border-radius: 36px;
  padding: 3.5rem 3rem;
  box-shadow: var(--shadow-lg);
  text-align: center;
  margin-bottom: 3.5rem;
  position: relative;
  overflow: hidden;
}

.philosophy-banner-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--primary-lavender), var(--soft-pink), var(--pastel-peach), var(--mint-green));
}

.philosophy-heading {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 1.25rem;
}

.philosophy-desc {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 820px;
  margin: 0 auto;
  line-height: 1.8;
}

.philosophy-3cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.philosophy-card {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: var(--glass-border);
  border-radius: var(--radius-card);
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
  position: relative;
}

.philosophy-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  background: rgba(255, 255, 255, 0.95);
}

.philosophy-icon-wrap {
  width: 76px;
  height: 76px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  margin: 0 auto 1.5rem auto;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-bounce);
}

.philosophy-card:hover .philosophy-icon-wrap {
  transform: scale(1.1) rotate(5deg);
}

.icon-bg-lavender {
  background: var(--primary-lavender-light);
  color: var(--primary-lavender-dark);
}

.icon-bg-pink {
  background: var(--soft-pink-light);
  color: var(--soft-pink-dark);
}

.icon-bg-mint {
  background: var(--mint-green-light);
  color: var(--mint-green-dark);
}

.icon-bg-peach {
  background: var(--pastel-peach-light);
  color: var(--pastel-peach-dark);
}

.icon-bg-blue {
  background: var(--baby-blue-light);
  color: var(--baby-blue-dark);
}

.icon-bg-yellow {
  background: var(--soft-yellow-light);
  color: var(--soft-yellow-dark);
}

.philosophy-card-title {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.philosophy-card-text {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ==========================================
   05 - TREATMENT SECTION (BENTO GRID)
   ========================================== */
.treatments-section {
  background-color: var(--bg-main);
  position: relative;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.bento-card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: var(--glass-border);
  border-radius: var(--radius-card);
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.bento-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-card);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, transparent 100%);
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.bento-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  background: var(--bg-card-hover);
  border-color: rgba(158, 140, 255, 0.4);
}

.bento-card:hover::before {
  opacity: 1;
}

/* Large Featured Bento Card (Spans 2 columns) */
.bento-card-featured {
  grid-column: span 2;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(238, 233, 255, 0.65) 100%);
  border: 1px solid rgba(158, 140, 255, 0.35);
}

.bento-card-featured .bento-title {
  font-size: 1.75rem;
}

.bento-icon-badge {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1.25rem;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-bounce);
}

.bento-card:hover .bento-icon-badge {
  transform: scale(1.1) rotate(4deg);
}

.bento-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-pill);
  margin-bottom: 0.75rem;
}

.tag-lavender { background: var(--primary-lavender-light); color: var(--primary-lavender-dark); }
.tag-pink { background: var(--soft-pink-light); color: var(--soft-pink-dark); }
.tag-peach { background: var(--pastel-peach-light); color: var(--pastel-peach-dark); }
.tag-mint { background: var(--mint-green-light); color: var(--mint-green-dark); }
.tag-blue { background: var(--baby-blue-light); color: var(--baby-blue-dark); }
.tag-yellow { background: var(--soft-yellow-light); color: var(--soft-yellow-dark); }

.bento-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.65rem;
  line-height: 1.3;
}

.bento-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 1.5rem;
  text-align: justify;
  text-justify: inter-word;
}

.bento-learn-more {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--primary-lavender-dark);
  transition: transform var(--transition-fast);
}

.bento-card:hover .bento-learn-more {
  transform: translateX(4px);
}

/* ==========================================
   06 - INTERACTIVE TOOTH / TREATMENT VISUAL
   ========================================== */
.tooth-orbit-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--bg-alt-purple) 0%, var(--bg-alt-blue) 100%);
  position: relative;
  overflow: hidden;
}

.tooth-orbit-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 580px;
}

.orbit-center-tooth {
  width: 160px;
  height: 160px;
  background: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 40px rgba(158, 140, 255, 0.35);
  border: 4px solid #FFFFFF;
  outline: 3px solid var(--primary-lavender);
  z-index: 5;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.orbit-center-tooth:hover {
  transform: scale(1.08);
  box-shadow: 0 20px 48px rgba(158, 140, 255, 0.45);
}

.orbit-center-kid-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
  display: block;
}

.orbit-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px dashed rgba(158, 140, 255, 0.3);
  pointer-events: none;
}

.orbit-ring-1 {
  width: 380px;
  height: 380px;
  animation: spinSlow 60s linear infinite;
}

.orbit-ring-2 {
  width: 580px;
  height: 580px;
  animation: spinSlowReverse 80s linear infinite;
}

@keyframes spinSlow {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes spinSlowReverse {
  0% { transform: rotate(360deg); }
  100% { transform: rotate(0deg); }
}

.orbiting-label {
  position: absolute;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: var(--radius-pill);
  padding: 0.6rem 1.25rem;
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-dark);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all var(--transition-normal);
  z-index: 6;
  cursor: default;
  white-space: nowrap;
}

.orbiting-label:hover {
  transform: scale(1.08);
  box-shadow: var(--shadow-lg);
  background: #FFFFFF;
  color: var(--primary-lavender-dark);
}

.pos-1  { top: 6%;  left: 28%; }
.pos-2  { top: 8%;  right: 22%; }
.pos-3  { top: 28%; right: 7%; }
.pos-4  { top: 52%; right: 5%; }
.pos-5  { bottom: 18%; right: 10%; }
.pos-6  { bottom: 6%;  right: 26%; }
.pos-7  { bottom: 6%;  left: 26%; }
.pos-8  { bottom: 18%; left: 10%; }
.pos-9  { top: 52%; left: 5%; }
.pos-10 { top: 28%; left: 7%; }

/* ==========================================
   07 - EXPERIENCE & TIMELINE SECTION
   ========================================== */
.experience-section {
  background-color: var(--bg-main);
  position: relative;
}

.timeline-container {
  max-width: 860px;
  margin: 0 auto 4.5rem auto;
  position: relative;
  padding-left: 2.5rem;
}

.timeline-line {
  position: absolute;
  top: 0;
  left: 14px;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--primary-lavender) 0%, var(--soft-pink) 50%, var(--mint-green) 100%);
  border-radius: 2px;
}

.timeline-item {
  position: relative;
  margin-bottom: 2.75rem;
}

.timeline-dot {
  position: absolute;
  left: -2.5rem;
  top: 1.5rem;
  width: 28px;
  height: 28px;
  background: #FFFFFF;
  border: 4px solid var(--primary-lavender);
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  transform: translateX(-2px);
  z-index: 2;
}

.timeline-item:hover .timeline-dot {
  background: var(--primary-lavender);
  transform: translateX(-2px) scale(1.25);
  box-shadow: var(--shadow-glow-lavender);
}

.timeline-card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: var(--glass-border);
  border-radius: var(--radius-card);
  padding: 2rem 2.25rem;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
}

.timeline-card:hover {
  background: rgba(255, 255, 255, 0.95);
  transform: translateX(6px);
  box-shadow: var(--shadow-lg);
}

.timeline-year-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--primary-lavender-dark);
  background: var(--primary-lavender-light);
  padding: 0.3rem 0.85rem;
  border-radius: var(--radius-pill);
  margin-bottom: 0.65rem;
}

.timeline-role-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.35rem;
}

.timeline-institution {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary-lavender-dark);
  margin-bottom: 0.75rem;
}

.timeline-body-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.65;
  text-align: justify;
  text-justify: inter-word;
}

/* Institutional Partners Glass Panel */
.partners-panel {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  border: var(--glass-border);
  border-radius: 32px;
  padding: 2.75rem 2.5rem;
  box-shadow: var(--shadow-md);
  text-align: center;
}

.partners-heading {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 2rem;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.partner-card {
  background: #FFFFFF;
  border: 1px solid rgba(158, 140, 255, 0.15);
  border-radius: 20px;
  padding: 1.25rem 1rem;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-dark);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  transition: all var(--transition-normal);
}

.partner-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-lavender);
  color: var(--primary-lavender-dark);
}

.partner-role {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
}

/* ==========================================
   08 - ADVANCED EXPERTISE SECTION
   ========================================== */
.expertise-section {
  background-color: var(--bg-alt-purple);
  position: relative;
}

.expertise-4grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.expertise-large-card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: var(--glass-border);
  border-radius: var(--radius-card);
  padding: 2.75rem 2.5rem;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
  display: flex;
  gap: 1.5rem;
}

.expertise-large-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(158, 140, 255, 0.35);
}

.expertise-icon-box {
  width: 64px;
  height: 64px;
  min-width: 64px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-fast);
}

.expertise-large-card:hover .expertise-icon-box {
  transform: scale(1.08) rotate(3deg);
}

.expertise-large-card .icon-bg-lavender {
  background: linear-gradient(135deg, #9E8CFF, #8470FF);
}

.expertise-large-card .icon-bg-pink {
  background: linear-gradient(135deg, #FF75A0, #FF527B);
}

.expertise-large-card .icon-bg-mint {
  background: linear-gradient(135deg, #2EC4B6, #10B981);
}

.expertise-large-card .icon-bg-peach {
  background: linear-gradient(135deg, #FFB067, #FF9233);
}

.expertise-tooth-icon {
  width: 32px;
  height: 32px;
  fill: #FFFFFF;
  display: block;
}

.expertise-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.65rem;
}

.expertise-text {
  font-size: 0.98rem;
  color: var(--text-secondary);
  line-height: 1.7;
  text-align: justify;
  text-justify: inter-word;
}

/* ==========================================
   09 - QUALIFICATIONS HIGHLIGHT (CENTRAL GLASS CARD)
   ========================================== */
.qualifications-section {
  background-color: var(--bg-main);
  padding: 5rem 0;
  position: relative;
}

.qualification-central-card {
  max-width: 860px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92) 0%, rgba(238, 233, 255, 0.75) 100%);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 36px;
  padding: 3.5rem 3rem;
  box-shadow: var(--shadow-lg);
  text-align: center;
  position: relative;
}

.qual-avatar-frame {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  margin: 0 auto 1.5rem auto;
  padding: 4px;
  background: linear-gradient(135deg, var(--primary-lavender), var(--pastel-pink));
  box-shadow: 0 8px 24px rgba(158, 140, 255, 0.35);
  animation: gentlePulse 3s infinite;
  overflow: hidden;
}

.qual-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: 50%;
  display: block;
}

@keyframes gentlePulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.qual-doctor-name {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.qual-degrees-row {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin: 1.5rem 0 2rem 0;
  flex-wrap: wrap;
}

.degree-badge-pill {
  background: #FFFFFF;
  border: 1px solid rgba(158, 140, 255, 0.3);
  padding: 0.75rem 1.5rem;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  text-align: left;
}

.degree-abbr {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--primary-lavender-dark);
}

.degree-name {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.qual-institutions-text {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 680px;
  margin: 0 auto;
}

/* ==========================================
   10 - RESEARCH & PUBLICATIONS SECTION
   ========================================== */
.research-section {
  background: linear-gradient(180deg, #F3EEFF 0%, #FAF8FF 100%);
  position: relative;
}

.research-counter-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(158, 140, 255, 0.3);
  border-radius: 24px;
  padding: 1.25rem 2.25rem;
  max-width: 480px;
  margin: 0 auto 3.5rem auto;
  box-shadow: var(--shadow-md);
}

.counter-num-big {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-lavender-dark);
  line-height: 1;
}

.counter-label-text {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  text-align: left;
  line-height: 1.3;
}

.publications-horizontal-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 960px;
  margin: 0 auto;
}

.pub-horizontal-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  border: var(--glass-border);
  border-radius: 24px;
  padding: 1.75rem 2rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  transition: all var(--transition-normal);
  cursor: pointer;
}

.pub-horizontal-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  background: #FFFFFF;
  border-color: var(--primary-lavender);
}

.pub-main-info {
  flex: 1;
}

.pub-meta-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.pub-year-badge {
  font-size: 0.8rem;
  font-weight: 800;
  padding: 0.2rem 0.65rem;
  border-radius: var(--radius-pill);
  background: var(--primary-lavender-light);
  color: var(--primary-lavender-dark);
}

.pub-journal-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}

.pub-paper-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.4;
  margin-bottom: 0.35rem;
}

.pub-citation-text {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-style: italic;
}

.pub-arrow-btn {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 50%;
  background: var(--primary-lavender);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 4px 12px rgba(158, 140, 255, 0.35);
  transition: all var(--transition-fast);
}

.pub-horizontal-card:hover .pub-arrow-btn {
  background: var(--primary-lavender-dark);
  color: #FFFFFF;
  transform: translateX(4px) scale(1.06);
  box-shadow: 0 6px 16px rgba(123, 102, 235, 0.45);
}

/* ==========================================
   11 - CONFERENCES & ACADEMIC SECTION
   ========================================== */
.conferences-section {
  background-color: var(--bg-main);
  position: relative;
}

.conferences-cards-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.conference-glass-card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: var(--glass-border);
  border-radius: var(--radius-card);
  padding: 2.25rem 2rem;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.conference-glass-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(158, 140, 255, 0.35);
}

.conf-city-pill {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--primary-lavender-dark);
  background: var(--primary-lavender-light);
  padding: 0.35rem 1rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1rem;
  width: fit-content;
}

.conf-title-text {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.4;
  margin-bottom: 0.75rem;
}

.conf-event-info {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.membership-pill-card {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(158, 140, 255, 0.25);
  border-radius: 24px;
  padding: 1.5rem 2.5rem;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  box-shadow: var(--shadow-sm);
}

.membership-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--primary-lavender-dark);
  margin-bottom: 0.25rem;
}

/* ==========================================
   12 - LANGUAGES SECTION (FLOATING PILLS)
   ========================================== */
.languages-section {
  padding: 4.5rem 0;
  background-color: var(--bg-alt-blue);
  text-align: center;
  position: relative;
}

.lang-pills-container {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.lang-interactive-pill {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-pill);
  padding: 0.85rem 2rem;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-bounce);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.lang-interactive-pill:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: var(--shadow-md);
  background: #FFFFFF;
  border-color: var(--primary-lavender);
  color: var(--primary-lavender-dark);
}

/* ==========================================
   13 - FINAL CTA SECTION
   ========================================== */
.final-cta-section {
  padding: 6rem 0;
  background-color: var(--bg-main);
  position: relative;
}

.final-cta-box {
  background: linear-gradient(135deg, #EEE9FF 0%, #FFF0F7 50%, #FFF3E9 100%);
  border-radius: 40px;
  padding: 4.5rem 3.5rem;
  box-shadow: var(--shadow-lg);
  border: 2px solid rgba(255, 255, 255, 0.85);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta-heading {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 3.8vw, 3.2rem);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.final-cta-desc {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 720px;
  margin: 0 auto 2.5rem auto;
  line-height: 1.75;
}

.final-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.final-cta-location-tag {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ==========================================
   14 - APPOINTMENT / CONTACT FORM
   ========================================== */
.appointment-section {
  padding: 6.5rem 0;
  background-color: var(--bg-alt-purple);
  position: relative;
}

.appointment-wrapper {
  max-width: 840px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: var(--glass-border);
  border-radius: 36px;
  padding: 3.5rem 3rem;
  box-shadow: var(--shadow-lg);
}

.form-grid-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-field-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5rem;
}

.form-label-custom {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.form-input-custom, .form-select-custom, .form-textarea-custom {
  width: 100%;
  padding: 0.95rem 1.25rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-dark);
  background: #FFFFFF;
  border: 1.5px solid rgba(158, 140, 255, 0.22);
  border-radius: 16px;
  outline: none;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-sm);
}

.form-input-custom:focus, .form-select-custom:focus, .form-textarea-custom:focus {
  border-color: var(--primary-lavender);
  box-shadow: 0 0 0 4px rgba(158, 140, 255, 0.2);
}

.form-textarea-custom {
  resize: vertical;
  min-height: 110px;
}

.consent-checkbox-wrap {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 2rem;
  font-size: 0.92rem;
  color: var(--text-secondary);
}

.consent-checkbox-wrap input[type="checkbox"] {
  margin-top: 0.25rem;
  width: 18px;
  height: 18px;
  accent-color: var(--primary-lavender);
}

/* Honeypot anti-spam field */
.hp-field {
  position: absolute;
  opacity: 0;
  top: -5000px;
  left: -5000px;
  height: 0;
  width: 0;
  z-index: -1;
  pointer-events: none;
}

/* ==========================================
   15 - FOOTER
   ========================================== */
.glass-footer {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(158, 140, 255, 0.2);
  padding: 4rem 0 2rem 0;
  position: relative;
  z-index: 10;
}

.footer-main-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-brand-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

.footer-brand-subtitle {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-lavender-dark);
  margin-bottom: 1rem;
}

.footer-brand-desc {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.footer-col-heading {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 1.25rem;
}

.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-nav-link {
  font-size: 0.92rem;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-nav-link:hover {
  color: var(--primary-lavender-dark);
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.92rem;
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-contact-item:hover {
  color: var(--primary-lavender-dark);
}

.footer-icon {
  width: 18px;
  height: 18px;
  min-width: 18px;
  color: var(--primary-lavender-dark);
  stroke: var(--primary-lavender-dark);
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}

.footer-bottom-bar {
  border-top: 1px solid rgba(158, 140, 255, 0.15);
  padding-top: 1.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* ==========================================
   16 - MOBILE STICKY CTA
   ========================================== */
.mobile-sticky-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(158, 140, 255, 0.25);
  padding: 0.75rem 1.25rem;
  z-index: 999;
  box-shadow: 0 -8px 20px rgba(0, 0, 0, 0.06);
  gap: 0.75rem;
  transition: transform var(--transition-normal);
}

.mobile-sticky-cta-bar.hidden {
  transform: translateY(100%);
}

/* ==========================================
   GLASS MODALS (TREATMENTS & SUCCESS)
   ========================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(35, 35, 58, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
  padding: 1.5rem;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-glass-container {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border: 1.5px solid rgba(255, 255, 255, 0.9);
  border-radius: 32px;
  padding: 2.75rem 2.5rem;
  max-width: 600px;
  width: 100%;
  box-shadow: var(--shadow-hover);
  position: relative;
  transform: scale(0.92) translateY(20px);
  transition: all var(--transition-bounce);
  max-height: 90vh;
  overflow-y: auto;
}

.modal-overlay.active .modal-glass-container {
  transform: scale(1) translateY(0);
}

.modal-close-icon-btn {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
  background: var(--primary-lavender-light);
  color: var(--primary-lavender-dark);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  border: 1px solid rgba(158, 140, 255, 0.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.modal-close-icon-btn:hover {
  background: var(--primary-lavender);
  color: #FFFFFF;
}

/* Success Card Inside Modal */
.success-card-content {
  text-align: center;
}

.success-confetti-badge {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  animation: bounceIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes bounceIn {
  0% { transform: scale(0); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

.success-heading {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.success-text {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.success-actions-col {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}


/* Justified typography for modals and long-form content */
#treatmentModalBody,
#treatmentModalBody p,
#treatmentModalBody ul,
#treatmentModalBody li,
#researchModalAbstract,
#researchModalAbstract p,
.membership-pill-card p,
.conference-glass-card p,
.footer-brand-desc,
.dentitia-card-text {
  text-align: justify;
  text-justify: inter-word;
}

/* ==========================================
   DENTITIA SHOWCASE SECTION
   ========================================== */
.dentitia-showcase-section {
  padding: 5.5rem 0;
  background: linear-gradient(135deg, #FFF0F7 0%, #EEE9FF 50%, #E8FBF4 100%);
  position: relative;
  overflow: hidden;
}

.dentitia-glass-card {
  max-width: 920px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 2px solid rgba(255, 255, 255, 0.95);
  border-radius: 36px;
  padding: 4rem 3.5rem;
  box-shadow: var(--shadow-lg);
  text-align: center;
  position: relative;
}

.dentitia-card-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 800;
  color: var(--text-dark);
  margin-top: 1rem;
  margin-bottom: 0.75rem;
  line-height: 1.25;
}

.dentitia-card-subtitle {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary-lavender-dark);
  margin-bottom: 1.5rem;
}

.dentitia-card-text {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 760px;
  margin: 0 auto 2.25rem auto;
}

.dentitia-cta-wrap {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}
