/* ==========================================================================
   Dr. Moh Afzal Hashmi (OT) - Premium Medical Portfolio Design System
   Modern Healthcare & Personal Brand Styling with Smooth Micro-Animations
   ========================================================================== */

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

:root {
  /* Color Palette */
  --primary-900: #071527;
  --primary-800: #0b223d;
  --primary-700: #0f3057;
  --primary-600: #1d4ed8;
  --primary-500: #2563eb;
  
  --accent-teal-700: #0f766e;
  --accent-teal-600: #0d9488;
  --accent-teal-500: #14b8a6;
  --accent-teal-400: #2dd4bf;
  --accent-teal-100: #ccfbf1;
  --accent-teal-50:  #f0fdfa;

  --navy-dark: #0a192f;
  --navy-surface: #102a45;
  --navy-light: #1e3a8a;

  --bg-main: #f8fafc;
  --bg-card: #ffffff;
  --bg-subtle: #f1f5f9;
  
  --text-dark: #0f172a;
  --text-body: #334155;
  --text-muted: #64748b;
  --text-light: #94a3b8;

  --border-light: rgba(226, 232, 240, 0.85);
  --border-focus: rgba(20, 184, 166, 0.5);

  --shadow-sm: 0 2px 8px -2px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 10px 25px -5px rgba(15, 23, 42, 0.07), 0 8px 10px -6px rgba(15, 23, 42, 0.04);
  --shadow-lg: 0 20px 35px -5px rgba(15, 35, 60, 0.1), 0 10px 15px -5px rgba(15, 35, 60, 0.05);
  --shadow-glow: 0 15px 35px -5px rgba(13, 148, 136, 0.3);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-main);
  color: var(--text-body);
  line-height: 1.65;
  overflow-x: hidden;
  position: relative;
}

/* Fluid Animated Ambient Background Lighting */
body::before {
  content: '';
  position: fixed;
  top: -10vw;
  right: -5vw;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.09) 0%, rgba(248, 250, 252, 0) 70%);
  pointer-events: none;
  z-index: 0;
  animation: ambientBlobFloat 22s ease-in-out infinite alternate;
}

body::after {
  content: '';
  position: fixed;
  bottom: 5vh;
  left: -10vw;
  width: 45vw;
  height: 45vw;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.07) 0%, rgba(248, 250, 252, 0) 70%);
  pointer-events: none;
  z-index: 0;
  animation: ambientBlobFloat 26s ease-in-out infinite alternate-reverse;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  line-height: 1.25;
  font-weight: 700;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  position: relative;
  z-index: 1;
}

section {
  padding: 5.5rem 0;
  position: relative;
}

/* ==========================================================================
   ANIMATION LIBRARY & SCROLL REVEAL SYSTEM
   ========================================================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(32px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-35px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(35px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.92);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes pulseGlow {
  0%, 100% {
    opacity: 0.65;
    transform: scale(0.98);
    filter: blur(22px);
  }
  50% {
    opacity: 1;
    transform: scale(1.06);
    filter: blur(28px);
  }
}

@keyframes floatPortrait {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes floatBadge1 {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(-4px, -12px) rotate(-1.5deg);
  }
}

@keyframes floatBadge2 {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(5px, -14px) rotate(2deg);
  }
}

@keyframes floatBadge3 {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(3px, -10px) rotate(-1deg);
  }
}

@keyframes shimmerSweep {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

@keyframes pulseRing {
  0% {
    box-shadow: 0 0 0 0 rgba(20, 184, 166, 0.45);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(20, 184, 166, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(20, 184, 166, 0);
  }
}

@keyframes pulseDot {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.35);
    opacity: 0.75;
  }
}

@keyframes pulseHeartbeat {
  0%, 100% {
    transform: scale(1);
  }
  14% {
    transform: scale(1.08);
  }
  28% {
    transform: scale(1);
  }
  42% {
    transform: scale(1.05);
  }
  70% {
    transform: scale(1);
  }
}

@keyframes checkmarkPop {
  0% {
    transform: scale(0) rotate(-45deg);
    opacity: 0;
  }
  70% {
    transform: scale(1.2) rotate(5deg);
    opacity: 1;
  }
  100% {
    transform: scale(1) rotate(0);
    opacity: 1;
  }
}

/* Scroll Reveal Utility Classes */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-scale.active {
  opacity: 1;
  transform: scale(1);
}

/* Stagger Delays */
.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }
.delay-400 { transition-delay: 400ms; }
.delay-500 { transition-delay: 500ms; }
.delay-600 { transition-delay: 600ms; }

/* ==========================================================================
   BUTTONS & CTAs WITH SHIMMER AND HOVER GLOWS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.75rem;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: all var(--transition-normal);
  text-align: center;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

/* Shimmer Light Reflection effect */
.btn::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 40%;
  height: 200%;
  background: linear-gradient(
    60deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.25) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: rotate(25deg);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
}

.btn:hover::after {
  opacity: 1;
  animation: shimmerSweep 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-700) 0%, var(--primary-800) 100%);
  color: #ffffff;
  box-shadow: 0 6px 18px rgba(11, 34, 61, 0.22);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--accent-teal-600) 0%, var(--primary-700) 100%);
  box-shadow: 0 10px 25px rgba(13, 148, 136, 0.35);
  transform: translateY(-3px);
  color: #ffffff;
}

.btn-teal {
  background: linear-gradient(135deg, var(--accent-teal-600) 0%, var(--accent-teal-700) 100%);
  color: #ffffff;
  box-shadow: 0 6px 18px rgba(13, 148, 136, 0.3);
}

.btn-teal:hover {
  background: linear-gradient(135deg, var(--accent-teal-500) 0%, var(--accent-teal-600) 100%);
  box-shadow: var(--shadow-glow);
  transform: translateY(-3px);
  color: #ffffff;
}

.btn-secondary {
  background: #ffffff;
  color: var(--primary-800);
  border: 1.5px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  border-color: var(--accent-teal-600);
  color: var(--accent-teal-700);
  background: var(--accent-teal-50);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.btn-whatsapp {
  background: #25d366;
  color: #ffffff;
  font-weight: 600;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
  animation: pulseHeartbeat 3s ease-in-out infinite;
}

.btn-whatsapp:hover {
  background: #20bd5a;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.45);
  color: #ffffff;
}

/* ==========================================================================
   SECTION HEADERS
   ========================================================================== */
.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3.5rem auto;
}

.section-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1.15rem;
  background: var(--accent-teal-50);
  border: 1px solid rgba(20, 184, 166, 0.3);
  color: var(--accent-teal-700);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
  transition: all var(--transition-fast);
}

.section-pill:hover {
  background: rgba(20, 184, 166, 0.12);
  transform: translateY(-2px);
}

.section-pill svg {
  width: 16px;
  height: 16px;
  color: var(--accent-teal-600);
}

.section-title {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  color: var(--primary-900);
  margin-bottom: 0.9rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto;
}

/* ==========================================================================
   1. STICKY NAVBAR
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.7);
  transition: all var(--transition-normal);
}

.site-header.scrolled {
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.98);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  transition: transform var(--transition-fast);
}

.nav-brand:hover {
  transform: scale(1.02);
}

.brand-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary-800) 0%, var(--accent-teal-600) 100%);
  color: #ffffff;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.03em;
  box-shadow: 0 4px 12px rgba(13, 148, 136, 0.25);
  transition: transform var(--transition-normal);
}

.nav-brand:hover .brand-icon {
  transform: rotate(6deg) scale(1.05);
}

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

.brand-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary-900);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.brand-reg {
  font-size: 0.72rem;
  color: var(--accent-teal-700);
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

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

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-body);
  position: relative;
  padding: 0.35rem 0;
  transition: color var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--accent-teal-600);
  border-radius: 2px;
  transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent-teal-700);
}

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

.nav-cta-btn {
  padding: 0.65rem 1.4rem;
  font-size: 0.92rem;
  animation: pulseRing 3.5s infinite;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--primary-900);
  transition: transform 0.2s;
}

.mobile-toggle:hover {
  transform: scale(1.1);
}

/* Mobile Drawer */
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: #ffffff;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
  z-index: 1050;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  transition: right var(--transition-smooth);
}

.mobile-nav-drawer.open {
  right: 0;
}

.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(15, 23, 42, 0.4);
  backdrop-filter: blur(4px);
  z-index: 1040;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
}

.drawer-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2.5rem;
}

.drawer-close {
  background: none;
  border: none;
  font-size: 1.75rem;
  color: var(--text-dark);
  cursor: pointer;
  line-height: 1;
  transition: transform 0.2s;
}

.drawer-close:hover {
  transform: rotate(90deg);
}

.drawer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.drawer-link {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--primary-900);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: transform 0.2s, color 0.2s;
}

.drawer-link:hover {
  transform: translateX(6px);
  color: var(--accent-teal-700);
}

/* ==========================================================================
   2. HERO SECTION WITH STAGGERED ENTRANCES
   ========================================================================== */
.hero-section {
  padding: 5rem 0 6rem 0;
  position: relative;
  overflow: hidden;
}

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

.hero-content {
  position: relative;
  z-index: 2;
}

/* Staggered Hero Entrance Animations on Page Load */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1.1rem;
  background: rgba(13, 148, 136, 0.1);
  border: 1px solid rgba(13, 148, 136, 0.25);
  border-radius: var(--radius-full);
  color: var(--accent-teal-700);
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  backdrop-filter: blur(8px);
  animation: fadeInUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) both 0.1s;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--accent-teal-500);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent-teal-500);
  animation: pulseDot 2s infinite ease-in-out;
}

.hero-title {
  font-size: clamp(2.4rem, 4.2vw, 3.75rem);
  font-weight: 800;
  color: var(--primary-900);
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 0.5rem;
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both 0.2s;
}

.hero-title .title-highlight {
  background: linear-gradient(135deg, var(--primary-700) 0%, var(--accent-teal-600) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-designation {
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 600;
  color: var(--accent-teal-700);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both 0.3s;
}

.hero-reg-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #ffffff;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  padding: 0.3rem 0.85rem;
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-800);
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both 0.35s;
  transition: transform 0.2s, box-shadow 0.2s;
}

.hero-reg-tag:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.hero-reg-tag svg {
  color: var(--accent-teal-600);
  width: 16px;
  height: 16px;
}

.hero-statement {
  font-size: 1.12rem;
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: 2rem;
  padding-left: 1.25rem;
  border-left: 3.5px solid var(--accent-teal-500);
  background: linear-gradient(to right, rgba(240, 253, 250, 0.6), transparent);
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both 0.4s;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both 0.5s;
}

.hero-contact-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(226, 232, 240, 0.9);
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both 0.6s;
}

.hero-contact-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: transform var(--transition-fast);
}

.hero-contact-item:hover {
  transform: translateY(-2px);
}

.hero-contact-item a {
  color: var(--primary-900);
  font-weight: 600;
}

.hero-contact-item a:hover {
  color: var(--accent-teal-600);
}

.hero-contact-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--accent-teal-50);
  color: var(--accent-teal-700);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(20, 184, 166, 0.2);
  transition: all 0.2s;
}

.hero-contact-item:hover .hero-contact-icon {
  background: var(--accent-teal-600);
  color: #ffffff;
  transform: scale(1.1);
}

/* Hero Portrait Frame & Floating Cards */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: zoomIn 1s cubic-bezier(0.16, 1, 0.3, 1) both 0.3s;
}

.portrait-container {
  position: relative;
  width: 100%;
  max-width: 440px;
  z-index: 2;
}

.portrait-backdrop-glow {
  position: absolute;
  inset: -15px;
  background: linear-gradient(135deg, rgba(13, 148, 136, 0.25) 0%, rgba(37, 99, 235, 0.2) 100%);
  border-radius: 36px;
  filter: blur(25px);
  z-index: 1;
  animation: pulseGlow 6s ease-in-out infinite;
}

.portrait-frame {
  position: relative;
  z-index: 2;
  border-radius: 32px;
  overflow: hidden;
  background: #ffffff;
  padding: 10px;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255, 255, 255, 0.85);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  animation: floatPortrait 7s ease-in-out infinite;
}

.portrait-frame:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 25px 50px -10px rgba(15, 35, 60, 0.18);
}

.portrait-img {
  width: 100%;
  height: 530px;
  object-fit: cover;
  object-position: center 15%;
  border-radius: 24px;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.portrait-frame:hover .portrait-img {
  transform: scale(1.02);
}

/* Floating Badges Around Portrait */
.floating-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(226, 232, 240, 0.9);
  padding: 0.75rem 1.15rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 14px 28px -4px rgba(15, 23, 42, 0.12);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 5;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.floating-badge:hover {
  box-shadow: 0 20px 35px -4px rgba(13, 148, 136, 0.25);
}

.floating-badge-1 {
  top: 12%;
  left: -35px;
  animation: floatBadge1 6s ease-in-out infinite alternate;
}

.floating-badge-2 {
  bottom: 22%;
  right: -25px;
  animation: floatBadge2 6.5s ease-in-out infinite alternate;
}

.floating-badge-3 {
  bottom: -15px;
  left: 10%;
  animation: floatBadge3 5.5s ease-in-out infinite alternate;
}

.badge-icon-box {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: transform var(--transition-normal);
}

.floating-badge:hover .badge-icon-box {
  transform: scale(1.15) rotate(8deg);
}

.badge-icon-teal {
  background: linear-gradient(135deg, var(--accent-teal-500), var(--accent-teal-700));
}

.badge-icon-blue {
  background: linear-gradient(135deg, var(--primary-500), var(--primary-800));
}

.badge-icon-navy {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.floating-badge-title {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--primary-900);
  line-height: 1.15;
}

.floating-badge-sub {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ==========================================================================
   3. ABOUT / OBJECTIVE SECTION
   ========================================================================== */
.about-section {
  background: #ffffff;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.about-left {
  position: relative;
}

.about-quote-box {
  background: linear-gradient(145deg, #f8fafc 0%, #f0fdfa 100%);
  border: 1px solid rgba(20, 184, 166, 0.25);
  border-radius: var(--radius-xl);
  padding: 3rem 2.5rem;
  position: relative;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.about-quote-box:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.about-quote-icon {
  position: absolute;
  top: -18px;
  left: 35px;
  width: 44px;
  height: 44px;
  background: var(--accent-teal-600);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(13, 148, 136, 0.4);
  transition: transform var(--transition-normal);
}

.about-quote-box:hover .about-quote-icon {
  transform: scale(1.12) rotate(10deg);
}

.about-large-statement {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.3vw, 2.1rem);
  font-weight: 700;
  color: var(--primary-900);
  line-height: 1.35;
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
}

.about-credential-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(20, 184, 166, 0.2);
}

.about-stamp {
  padding: 0.5rem 1rem;
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-800);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: all var(--transition-fast);
}

.about-stamp:hover {
  transform: translateY(-2px);
  border-color: var(--accent-teal-500);
  color: var(--accent-teal-700);
}

.about-right {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.about-objective-text {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--text-body);
}

.about-highlight-card {
  background: var(--primary-900);
  color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 1.75rem 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.about-highlight-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -10px rgba(7, 21, 39, 0.4);
}

.about-highlight-card::after {
  content: '';
  position: absolute;
  right: -30px;
  bottom: -30px;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.35) 0%, transparent 70%);
  pointer-events: none;
  transition: transform 0.6s ease;
}

.about-highlight-card:hover::after {
  transform: scale(1.3);
}

.highlight-card-icon {
  width: 52px;
  height: 52px;
  background: rgba(20, 184, 166, 0.2);
  border: 1px solid rgba(20, 184, 166, 0.4);
  border-radius: var(--radius-md);
  color: var(--accent-teal-400);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform var(--transition-normal);
}

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

.highlight-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.25rem;
}

.highlight-card-desc {
  font-size: 0.92rem;
  color: #94a3b8;
  line-height: 1.5;
}

/* ==========================================================================
   4. AREAS OF CLINICAL EXPERIENCE (3 CARDS)
   ========================================================================== */
.cases-section {
  background: var(--bg-main);
}

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

.case-card {
  background: #ffffff;
  border-radius: var(--radius-xl);
  padding: 1.75rem 1.75rem 2.25rem 1.75rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.case-img-wrap {
  width: 100%;
  height: 200px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 1.5rem;
  position: relative;
  background: var(--bg-subtle);
  border: 1px solid rgba(226, 232, 240, 0.8);
}

.case-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.case-card:hover .case-img {
  transform: scale(1.08);
}

.case-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.case-card-header .case-icon-wrapper {
  margin-bottom: 0;
  width: 48px;
  height: 48px;
}

.case-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-700), var(--accent-teal-500));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.case-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px -10px rgba(13, 148, 136, 0.22);
  border-color: rgba(20, 184, 166, 0.5);
}

.case-card:hover::before {
  transform: scaleX(1);
}

.case-icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.case-card:hover .case-icon-wrapper {
  transform: scale(1.15) rotate(6deg);
}

.case-card-1 .case-icon-wrapper {
  background: #eff6ff;
  color: #2563eb;
  border: 1px solid #bfdbfe;
}

.case-card-2 .case-icon-wrapper {
  background: #f0fdf4;
  color: #16a34a;
  border: 1px solid #bbf7d0;
}

.case-card-3 .case-icon-wrapper {
  background: #fdf2f8;
  color: #db2777;
  border: 1px solid #fbcfe8;
}

.case-category {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary-900);
  margin-bottom: 0.6rem;
}

.case-description {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.75rem;
}

.case-items-title {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
  color: var(--accent-teal-700);
  margin-bottom: 0.9rem;
}

.case-tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  margin-top: auto;
}

.case-tag {
  background: var(--bg-subtle);
  color: var(--primary-900);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(226, 232, 240, 0.9);
  transition: all var(--transition-fast);
}

.case-card:hover .case-tag {
  background: #ffffff;
  border-color: rgba(20, 184, 166, 0.35);
  transform: translateY(-2px);
}

/* ==========================================================================
   5. EXPERIENCE TIMELINE
   ========================================================================== */
.experience-section {
  background: #ffffff;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.experience-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

/* Highlighted Director Role */
.director-feature-card {
  background: linear-gradient(135deg, #071527 0%, #0f3057 100%);
  color: #ffffff;
  border-radius: var(--radius-xl);
  padding: 2.75rem 2.5rem;
  box-shadow: 0 20px 40px -10px rgba(7, 21, 39, 0.3);
  position: relative;
  overflow: hidden;
  margin-bottom: 3.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.director-feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 50px -10px rgba(7, 21, 39, 0.45);
}

.director-feature-card::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.3) 0%, transparent 70%);
  pointer-events: none;
  animation: ambientBlobFloat 18s infinite alternate;
}

.director-feature-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.director-img-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.15);
  height: 220px;
}

.director-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.director-feature-card:hover .director-img {
  transform: scale(1.06);
}

.director-img-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 0.5rem 1rem;
  background: linear-gradient(to top, rgba(7, 21, 39, 0.9) 0%, transparent 100%);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

@media (max-width: 768px) {
  .director-feature-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.director-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.director-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(20, 184, 166, 0.2);
  border: 1px solid rgba(20, 184, 166, 0.4);
  color: var(--accent-teal-400);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.director-badge-pulse {
  width: 7px;
  height: 7px;
  background: var(--accent-teal-400);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--accent-teal-400);
  animation: pulseDot 1.8s infinite;
}

.director-role {
  font-size: 2.2rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.director-org {
  font-size: 1.35rem;
  color: var(--accent-teal-400);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.director-location {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #94a3b8;
  font-size: 1rem;
  font-weight: 500;
}

.director-location svg {
  color: var(--accent-teal-400);
}

/* Worked With Section */
.affiliations-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary-900);
  margin-bottom: 1.75rem;
  text-align: center;
}

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

.affiliation-card {
  background: var(--bg-main);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.75rem;
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  transition: all var(--transition-normal);
}

.affiliation-card:hover {
  background: #ffffff;
  border-color: rgba(20, 184, 166, 0.45);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.affiliation-icon {
  width: 44px;
  height: 44px;
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  color: var(--accent-teal-600);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.affiliation-card:hover .affiliation-icon {
  background: var(--accent-teal-600);
  color: #ffffff;
  transform: scale(1.1) rotate(6deg);
}

.affiliation-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-900);
  margin-bottom: 0.25rem;
}

.affiliation-detail {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* ==========================================================================
   6. EDUCATION SECTION
   ========================================================================== */
.education-section {
  background: var(--bg-main);
}

.education-timeline {
  max-width: 820px;
  margin: 0 auto;
  position: relative;
}

.education-timeline::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 15px;
  bottom: 25px;
  width: 3px;
  background: linear-gradient(180deg, var(--accent-teal-500) 0%, rgba(20, 184, 166, 0.2) 100%);
}

.edu-item {
  display: flex;
  gap: 2rem;
  margin-bottom: 2.25rem;
  position: relative;
}

.edu-bullet {
  width: 58px;
  height: 58px;
  background: #ffffff;
  border: 3px solid var(--accent-teal-600);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-teal-700);
  font-weight: 800;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(20, 184, 166, 0.2);
  position: relative;
  z-index: 2;
  transition: all var(--transition-normal);
}

.edu-item:hover .edu-bullet {
  background: var(--accent-teal-600);
  color: #ffffff;
  transform: scale(1.12);
  box-shadow: 0 0 20px rgba(20, 184, 166, 0.4);
}

.edu-content-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.75rem 2rem;
  box-shadow: var(--shadow-sm);
  flex-grow: 1;
  transition: all var(--transition-normal);
}

.edu-content-card:hover {
  transform: translateX(8px);
  border-color: rgba(20, 184, 166, 0.45);
  box-shadow: var(--shadow-md);
}

.edu-year-badge {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--accent-teal-700);
  background: var(--accent-teal-50);
  border: 1px solid rgba(20, 184, 166, 0.25);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.6rem;
}

.edu-degree {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-900);
  margin-bottom: 0.35rem;
}

.edu-institution {
  font-size: 0.98rem;
  color: var(--text-body);
  font-weight: 500;
}

/* ==========================================================================
   7. SKILLS SECTION
   ========================================================================== */
.skills-section {
  background: #ffffff;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

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

.skill-card {
  background: var(--bg-main);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 2.25rem 2rem;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.skill-card:hover {
  background: #ffffff;
  border-color: rgba(20, 184, 166, 0.45);
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.skill-icon-box {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, rgba(20, 184, 166, 0.15) 0%, rgba(37, 99, 235, 0.1) 100%);
  border: 1px solid rgba(20, 184, 166, 0.3);
  border-radius: var(--radius-md);
  color: var(--accent-teal-700);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: all var(--transition-bounce);
}

.skill-card:hover .skill-icon-box {
  transform: scale(1.15) rotate(-6deg);
  background: var(--accent-teal-600);
  color: #ffffff;
}

.skill-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary-900);
  margin-bottom: 0.75rem;
  line-height: 1.35;
}

.skill-desc {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.65;
}

/* ==========================================================================
   8. LANGUAGES SECTION
   ========================================================================== */
.languages-section {
  background: var(--bg-main);
  padding: 4.5rem 0;
}

.languages-box {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 2.5rem 3rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
}

.languages-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary-900);
  margin-bottom: 1.5rem;
}

.languages-pills-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
}

.lang-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.75rem;
  background: var(--bg-main);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--primary-900);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  cursor: default;
}

.lang-pill svg {
  color: var(--accent-teal-600);
  transition: transform var(--transition-normal);
}

.lang-pill:hover {
  border-color: var(--accent-teal-600);
  background: var(--accent-teal-50);
  color: var(--accent-teal-700);
  transform: translateY(-4px) scale(1.04);
  box-shadow: var(--shadow-md);
}

.lang-pill:hover svg {
  transform: rotate(20deg);
}

/* ==========================================================================
   9. APPOINTMENT BOOKING SECTION
   ========================================================================== */
.appointment-section {
  background: linear-gradient(180deg, #ffffff 0%, #f0fdfa 100%);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  position: relative;
}

.booking-wrapper {
  max-width: 820px;
  margin: 0 auto;
}

.booking-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 3.5rem 3rem;
  box-shadow: var(--shadow-lg);
  position: relative;
  transition: transform var(--transition-normal);
}

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

.form-group-full {
  grid-column: span 2;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.form-label {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--primary-900);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.form-label .req {
  color: #e11d48;
}

.form-control {
  width: 100%;
  padding: 0.85rem 1.15rem;
  font-family: var(--font-body);
  font-size: 0.98rem;
  color: var(--text-dark);
  background: #ffffff;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  outline: none;
}

.form-control:focus {
  border-color: var(--accent-teal-600);
  box-shadow: 0 0 0 4px rgba(20, 184, 166, 0.18);
  transform: translateY(-1px);
}

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

.form-submit-btn {
  width: 100%;
  padding: 1.05rem 2rem;
  font-size: 1.1rem;
  margin-top: 0.75rem;
}

/* Success Card */
.booking-success-box {
  display: none;
  text-align: center;
  padding: 2.5rem 1.5rem;
}

.success-icon-wrap {
  width: 76px;
  height: 76px;
  background: var(--accent-teal-50);
  border: 2px solid var(--accent-teal-500);
  border-radius: 50%;
  color: var(--accent-teal-600);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.75rem auto;
  box-shadow: 0 0 25px rgba(20, 184, 166, 0.25);
  animation: checkmarkPop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.booking-success-title {
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--primary-900);
  margin-bottom: 0.75rem;
}

.booking-success-message {
  font-size: 1.05rem;
  color: var(--text-body);
  max-width: 580px;
  margin: 0 auto 2rem auto;
  line-height: 1.65;
}

.booking-success-details {
  background: var(--bg-main);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  max-width: 520px;
  margin: 0 auto 2.25rem auto;
  text-align: left;
}

.detail-row {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px dashed var(--border-light);
  font-size: 0.95rem;
}

.detail-row:last-child {
  border-bottom: none;
}

.detail-label {
  color: var(--text-muted);
}

.detail-val {
  font-weight: 600;
  color: var(--primary-900);
}

.success-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

/* ==========================================================================
   10. CONTACT SECTION
   ========================================================================== */
.contact-section {
  background: #ffffff;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1040px;
  margin: 0 auto;
}

.contact-card {
  background: var(--bg-main);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all var(--transition-normal);
}

.contact-card:hover {
  background: #ffffff;
  border-color: rgba(20, 184, 166, 0.45);
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.contact-card-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-lg);
  background: var(--accent-teal-50);
  border: 1px solid rgba(20, 184, 166, 0.3);
  color: var(--accent-teal-700);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: all var(--transition-bounce);
}

.contact-card:hover .contact-card-icon {
  transform: scale(1.15) rotate(8deg);
  background: var(--accent-teal-600);
  color: #ffffff;
}

.contact-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary-900);
  margin-bottom: 0.4rem;
}

.contact-card-info {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  word-break: break-word;
}

.contact-card-btn {
  margin-top: auto;
  width: 100%;
  padding: 0.75rem 1.25rem;
  font-size: 0.95rem;
}

/* ==========================================================================
   11. FOOTER
   ========================================================================== */
.site-footer {
  background: var(--primary-900);
  color: #94a3b8;
  padding: 4rem 0 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.footer-brand-title {
  font-size: 1.45rem;
  font-weight: 800;
  color: #ffffff;
}

.footer-brand-sub {
  color: var(--accent-teal-400);
  font-size: 0.92rem;
  font-weight: 600;
}

.footer-brand-reg {
  color: #64748b;
  font-size: 0.82rem;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  list-style: none;
}

.footer-nav a {
  color: #94a3b8;
  font-size: 0.92rem;
  transition: color var(--transition-fast), transform var(--transition-fast);
  display: inline-block;
}

.footer-nav a:hover {
  color: var(--accent-teal-400);
  transform: translateY(-2px);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 2rem;
  font-size: 0.85rem;
}

.footer-admin-link {
  color: #64748b;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: color var(--transition-fast);
}

.footer-admin-link:hover {
  color: var(--accent-teal-400);
}

/* ==========================================================================
   STICKY MOBILE CTA BAR
   ========================================================================== */
.sticky-mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--border-light);
  padding: 0.75rem 1.25rem;
  z-index: 990;
  box-shadow: 0 -8px 25px rgba(0, 0, 0, 0.08);
}

.sticky-mobile-cta .btn {
  width: 100%;
}

/* ==========================================================================
   RESPONSIVE DESIGN BREAKPOINTS
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
  
  .cases-grid,
  .skills-grid,
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .floating-badge-1 { left: -10px; }
  .floating-badge-2 { right: -10px; }
}

@media (max-width: 768px) {
  .nav-menu,
  .nav-cta-btn {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }

  .sticky-mobile-cta {
    display: block;
  }

  body {
    padding-bottom: 70px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .hero-content {
    text-align: center;
  }

  .hero-badge,
  .hero-reg-tag {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-designation {
    justify-content: center;
  }

  .hero-statement {
    text-align: left;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-contact-strip {
    justify-content: center;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .cases-grid,
  .skills-grid,
  .affiliations-grid,
  .contact-grid,
  .booking-form-grid {
    grid-template-columns: 1fr;
  }

  .form-group-full {
    grid-column: span 1;
  }

  .booking-card {
    padding: 2.25rem 1.5rem;
  }

  .floating-badge-1 {
    left: 5px;
    top: 5%;
  }

  .floating-badge-2 {
    right: 5px;
    bottom: 15%;
  }

  .floating-badge-3 {
    left: 5px;
    bottom: -10px;
  }

  .education-timeline::before {
    left: 20px;
  }

  .edu-bullet {
    width: 44px;
    height: 44px;
    font-size: 0.85rem;
  }

  .edu-item {
    gap: 1.25rem;
  }

  .footer-top {
    flex-direction: column;
    text-align: center;
  }

  .footer-nav {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}
