/* ====================================
   DR. KHUSHI PARIKH — STYLE SYSTEM
   Premium Physiotherapy Website CSS
   ==================================== */

/* ========== CSS VARIABLES ========== */
:root {
  --teal: #0a7c6e;
  --teal-light: #13a696;
  --teal-xlight: #e8f5f3;
  --teal-glow: rgba(10, 124, 110, 0.15);
  --teal-border: rgba(10, 124, 110, 0.2);
  --white: #ffffff;
  --off-white: #f8fdfC;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Outfit', 'Inter', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08), 0 2px 6px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.1), 0 4px 12px rgba(0, 0, 0, 0.06);
  --shadow-teal: 0 8px 30px rgba(10, 124, 110, 0.2);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 999px;
  --nav-height: 72px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--white);
  color: var(--gray-800);
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font: inherit;
}

input,
select,
textarea {
  font: inherit;
}

/* ========== CUSTOM SCROLLBAR ========== */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--gray-50);
}

::-webkit-scrollbar-thumb {
  background: var(--teal);
  border-radius: 99px;
}

/* ========== CUSTOM CURSOR ========== */
.cursor {
  width: 10px;
  height: 10px;
  background: var(--teal);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, background 0.2s;
}

.cursor-follower {
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--teal);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.08s linear, width 0.3s, height 0.3s, border-color 0.3s;
  opacity: 0.7;
}

body:has(a:hover) .cursor,
body:has(button:hover) .cursor {
  width: 16px;
  height: 16px;
  background: var(--teal-light);
}

/* ========== PARTICLES CANVAS ========== */
#particles-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
}

/* ========== CONTAINER ========== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ========== SECTION BASE ========== */
.section {
  padding: 110px 0;
  position: relative;
}

.section-label {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--teal);
  border-radius: 99px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--gray-900);
  line-height: 1.2;
  margin-bottom: 20px;
}

.section-title em {
  font-style: italic;
  color: var(--teal);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-500);
  max-width: 560px;
  line-height: 1.75;
}

.section-header {
  text-align: center;
  margin-bottom: 70px;
}

.section-header .section-label {
  justify-content: center;
}

.section-header .section-label::before {
  display: none;
}

.section-header .section-subtitle {
  margin: 0 auto;
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  transition: all var(--transition);
  cursor: none;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.1);
  opacity: 0;
  transition: opacity var(--transition);
}

.btn:hover::before {
  opacity: 1;
}

.btn-primary {
  background: var(--teal);
  color: var(--white);
  box-shadow: var(--shadow-teal);
}

.btn-primary:hover {
  background: var(--teal-light);
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(10, 124, 110, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--teal);
  border: 1.5px solid var(--teal-border);
}

.btn-secondary:hover {
  background: var(--teal-xlight);
  border-color: var(--teal);
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* ========== NAVIGATION ========== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  z-index: 1000;
  transition: all var(--transition);
  background: transparent;
}

.navbar.scrolled,
.navbar.menu-open {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 30px rgba(0, 0, 0, 0.08);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: baseline;
  gap: 4px;
  cursor: none;
}

.logo-dr {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--teal);
  font-style: italic;
}

.logo-name {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gray-900);
}

.logo-tag {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--teal);
  background: var(--teal-xlight);
  padding: 2px 8px;
  border-radius: 99px;
  letter-spacing: 1px;
  margin-left: 4px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-700);
  transition: color var(--transition);
  position: relative;
  cursor: none;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--teal);
  border-radius: 99px;
  transition: width var(--transition);
}

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

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

.nav-btn {
  background: var(--teal);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: var(--radius-full);
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 600;
  transition: all var(--transition);
  cursor: none;
}

.nav-btn:hover {
  background: var(--teal-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-teal);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gray-800);
  border-radius: 99px;
  transition: all var(--transition);
}

/* ========== HERO SECTION ========== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--white);
  padding-top: var(--nav-height);
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(10, 124, 110, 0.06) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(10, 124, 110, 0.04) 0%, transparent 60%);
  pointer-events: none;
}

.hero-particles-overlay {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 20%, rgba(10, 124, 110, 0.07) 1px, transparent 1px),
    radial-gradient(circle at 85% 80%, rgba(10, 124, 110, 0.05) 1px, transparent 1px),
    radial-gradient(circle at 50% 10%, rgba(10, 124, 110, 0.04) 1px, transparent 1px);
  background-size: 80px 80px, 100px 100px, 60px 60px;
  pointer-events: none;
  animation: particlesDrift 20s ease-in-out infinite;
}

@keyframes particlesDrift {

  0%,
  100% {
    transform: translate(0, 0);
  }

  33% {
    transform: translate(5px, -8px);
  }

  66% {
    transform: translate(-3px, 5px);
  }
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
}

/* Hero Text */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--teal-xlight);
  border: 1px solid var(--teal-border);
  color: var(--teal);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  font-family: var(--font-sans);
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}

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

@keyframes pulseDot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}

.hero-title {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}

.hero-greeting {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 400;
  color: var(--gray-500);
  letter-spacing: 1px;
}

.hero-name {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.05;
  letter-spacing: -1px;
}

.hero-credentials {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--teal);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 6px;
}

.hero-tagline {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  font-style: italic;
  color: var(--gray-700);
  margin-bottom: 20px;
  min-height: 2.2rem;
  display: flex;
  align-items: center;
  gap: 4px;
}

.typewriter-cursor {
  animation: blink 1s step-end infinite;
  color: var(--teal);
  font-weight: 300;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

.hero-subtitle {
  font-size: 1rem;
  color: var(--gray-500);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px 0;
  border-top: 1px solid var(--gray-200);
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.stat-num {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--teal);
  line-height: 1;
}

.stat-plus {
  font-family: var(--font-sans);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--teal);
}

.stat-label {
  font-size: 0.75rem;
  color: var(--gray-400);
  font-weight: 500;
  letter-spacing: 0.5px;
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--gray-200);
}

/* Hero Image */
.hero-image-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  margin-top: 60px;
}

.hero-image-wrap::before {
  content: '';
  position: absolute;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(10, 124, 110, 0.13) 0%, rgba(10, 124, 110, 0.05) 50%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

/* ---- Orbiting Info Boxes (Ellipse Path) ---- */
.orbit-wrapper {
  position: absolute;
  /* Shift down so ellipse orbit centres around mid-body / coat area */
  top: calc(50% + 60px);
  left: 50%;
  width: 0;
  height: 0;
  z-index: 5;
  pointer-events: none;
}

.orbit-box {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.96);
  border: 1.5px solid rgba(10, 124, 110, 0.22);
  border-radius: 50px;
  padding: 10px 18px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-700);
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(10, 124, 110, 0.13), 0 1px 6px rgba(0, 0, 0, 0.07);
  pointer-events: auto;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  /* Centre the box on its orbit point */
  transform-origin: center center;
}

/*
  Ellipse: rx=200px (wide sides), ry=90px (shallow top/bottom)
  Boxes travel left/right but barely up/down → stays around coat, never the face
*/
.orbit-box-1 {
  offset-path: path('M 200,0 A 200,90 0 1,0 -200,0 A 200,90 0 1,0 200,0');
  offset-rotate: 0deg;
  animation: orbitEllipse 12s linear infinite;
  offset-distance: 0%;
}

.orbit-box-2 {
  offset-path: path('M 200,0 A 200,90 0 1,0 -200,0 A 200,90 0 1,0 200,0');
  offset-rotate: 0deg;
  animation: orbitEllipse 12s linear infinite;
  offset-distance: 50%;
}

@keyframes orbitEllipse {
  from {
    offset-distance: 0%;
  }

  to {
    offset-distance: 100%;
  }
}

.hero-image-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--teal-border);
  animation: ringPulse 3s ease-in-out infinite;
}

/* Three concentric rings — restored for premium look */
.ring-1 {
  width: 360px;
  height: 360px;
  animation-delay: 0s;
  opacity: 0.7;
}

.ring-2 {
  width: 460px;
  height: 460px;
  animation-delay: 0.6s;
  opacity: 0.45;
}

.ring-3 {
  width: 560px;
  height: 560px;
  animation-delay: 1.2s;
  opacity: 0.22;
}

@keyframes ringPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.6;
  }

  50% {
    transform: scale(1.03);
    opacity: 0.3;
  }
}

.hero-image-placeholder {
  width: 340px;
  height: 340px;
  border-radius: 0;
  background: transparent;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  border: none;
  position: relative;
  z-index: 2;
  overflow: visible;
  transition: all 0.5s ease;
  animation: floatUpDown 6s ease-in-out infinite;
}

@keyframes floatUpDown {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-12px);
  }
}

.hero-real-photo {
  width: 100%;
  height: 440px;
  object-fit: cover;
  object-position: bottom center;
  border-radius: 0 0 170px 170px;
  display: block;
  filter: drop-shadow(0 24px 48px rgba(10, 124, 110, 0.18)) drop-shadow(0 8px 16px rgba(0, 0, 0, 0.07));
  transition: filter 0.4s ease;
}

.hero-real-photo:hover {
  filter: drop-shadow(0 30px 60px rgba(10, 124, 110, 0.25)) drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
}

@keyframes blobMorph {

  0%,
  100% {
    border-radius: 40% 60% 55% 45% / 45% 40% 60% 55%;
  }

  25% {
    border-radius: 55% 45% 40% 60% / 60% 55% 45% 40%;
  }

  50% {
    border-radius: 45% 55% 60% 40% / 40% 60% 55% 45%;
  }

  75% {
    border-radius: 60% 40% 45% 55% / 55% 45% 40% 60%;
  }
}

.photo-placeholder-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  padding: 20px;
}

.placeholder-label {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--teal);
}

.placeholder-sub {
  font-size: 0.72rem;
  color: var(--gray-400);
  max-width: 140px;
}

/* Hero float badges */
.hero-float-badge {
  position: absolute;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-700);
  box-shadow: var(--shadow-md);
  z-index: 3;
  animation: floatBadge 4s ease-in-out infinite;
}

.badge-top {
  top: 20px;
  right: -10px;
  animation-delay: 0s;
}

.badge-bottom {
  bottom: 30px;
  left: -10px;
  animation-delay: 2s;
}

@keyframes floatBadge {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-8px);
  }
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 2;
  animation: fadeInUp 1s ease 2s both;
}

.scroll-indicator span {
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray-400);
  font-weight: 500;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--teal), transparent);
  border-radius: 99px;
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }

  50% {
    transform: scaleY(1);
    transform-origin: top;
  }

  51% {
    transform: scaleY(1);
    transform-origin: bottom;
  }

  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

/* ========== ABOUT SECTION ========== */
.about {
  background: var(--white);
}

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

/* About Visual */
.about-visual {
  position: relative;
  height: 480px;
}

.about-card-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 280px;
  height: 360px;
  background: var(--teal-xlight);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--teal-border);
  display: flex;
  flex-direction: column;
}

.about-img-placeholder {
  flex: 1;
  display: flex;
  align-items: stretch;
  justify-content: center;
  background: linear-gradient(145deg, var(--teal-xlight), rgba(10, 124, 110, 0.08));
  overflow: hidden;
}

.about-real-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.about-photo-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-card-tag {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 14px 18px;
  background: var(--white);
  border-top: 1px solid var(--teal-border);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--teal);
}

.about-card-accent {
  position: absolute;
  bottom: 60px;
  right: 0;
  width: 170px;
  background: var(--teal);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 22px 20px;
  box-shadow: var(--shadow-teal);
}

.accent-icon {
  margin-bottom: 10px;
}

.accent-title {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.accent-sub {
  font-size: 0.75rem;
  opacity: 0.8;
}

.about-card-accent2 {
  position: absolute;
  top: 40px;
  right: 20px;
  width: 165px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-md);
}

.accent2-icon {
  margin-bottom: 10px;
}

.accent2-title {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 4px;
}

.accent2-sub {
  font-size: 0.72rem;
  color: var(--gray-500);
}

/* About Content */
.about-bio p {
  color: var(--gray-600, #4b5563);
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 1rem;
}

.about-bio p em {
  color: var(--teal);
  font-style: italic;
}

.about-bio p strong {
  color: var(--gray-900);
  font-weight: 600;
}

.about-credentials {
  margin: 28px 0 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.credential-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 18px;
  background: var(--gray-50);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
}

.credential-item:hover {
  border-color: var(--teal-border);
  background: var(--teal-xlight);
  transform: translateX(4px);
}

.cred-icon {
  width: 40px;
  height: 40px;
  background: var(--white);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid var(--teal-border);
}

.cred-title {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--gray-900);
  margin-bottom: 2px;
}

.cred-sub {
  font-size: 0.78rem;
  color: var(--gray-500);
}

/* ========== SERVICES SECTION ========== */
.services {
  background: var(--gray-50);
  overflow: hidden;
}

.services-bg-shape {
  position: absolute;
  top: -100px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(10, 124, 110, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  cursor: none;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--teal-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-slow);
}

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

.service-card:hover {
  border-color: var(--teal-border);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.service-card-wide {
  grid-column: span 1;
}

.service-icon-wrap {
  width: 64px;
  height: 64px;
  background: var(--teal-xlight);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all var(--transition);
  border: 1px solid var(--teal-border);
}

.service-card:hover .service-icon-wrap {
  background: var(--teal);
}

.service-card:hover .service-icon-wrap svg {
  stroke: var(--white);
}

.service-title {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 10px;
  line-height: 1.3;
}

.service-desc {
  font-size: 0.88rem;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 16px;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}

.service-tags span {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--teal);
  background: var(--teal-xlight);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  letter-spacing: 0.3px;
}

.service-arrow {
  position: absolute;
  bottom: 24px;
  right: 24px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--teal-xlight);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  opacity: 0;
  transform: translateX(-10px);
}

.service-card:hover .service-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* Last card full-width-ish */
.services-grid .service-card:last-child {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-rows: auto auto auto;
  gap: 0 24px;
  align-items: start;
}

.services-grid .service-card:last-child .service-icon-wrap {
  grid-row: 1 / 3;
  grid-column: 1;
  align-self: center;
  margin-bottom: 0;
}

.services-grid .service-card:last-child .service-title {
  grid-column: 2;
  grid-row: 1;
  align-self: end;
  margin-bottom: 6px;
}

.services-grid .service-card:last-child .service-desc {
  grid-column: 2;
  grid-row: 2;
  margin-bottom: 0;
}

.services-grid .service-card:last-child .service-tags {
  grid-column: 1 / -1;
  grid-row: 3;
  margin-top: 16px;
  margin-bottom: 0;
}

.services-grid .service-card:last-child .service-arrow {
  grid-column: 3;
  grid-row: 1;
}

/* ========== APPROACH SECTION ========== */
.approach {
  background: var(--white);
}

.approach-timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 800px;
  margin: 0 auto;
}

.timeline-line {
  position: absolute;
  left: 40px;
  top: 60px;
  bottom: 60px;
  width: 2px;
  background: linear-gradient(to bottom, var(--teal), rgba(10, 124, 110, 0.1));
  border-radius: 99px;
}

.approach-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  align-items: flex-start;
  padding: 32px 0;
  position: relative;
}

.step-number {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gray-200);
  line-height: 1;
  text-align: center;
  padding-top: 8px;
  transition: color var(--transition);
}

.approach-step:hover .step-number {
  color: var(--teal-xlight);
}

.step-content {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 28px 32px;
  transition: all var(--transition);
  position: relative;
}

.step-content::before {
  content: '';
  position: absolute;
  left: -24px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--teal);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--teal);
  transition: all var(--transition);
}

.approach-step:hover .step-content {
  border-color: var(--teal-border);
  box-shadow: var(--shadow-lg);
  transform: translateX(8px);
}

.step-icon {
  width: 48px;
  height: 48px;
  background: var(--teal);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.step-title {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 10px;
}

.step-desc {
  font-size: 0.92rem;
  color: var(--gray-500);
  line-height: 1.75;
}

/* ========== WHY CHOOSE ME ========== */
.why-section {
  background: var(--gray-50);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 28px;
}

.why-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
}

.why-feature:hover {
  border-color: var(--teal-border);
  transform: translateX(8px);
  box-shadow: var(--shadow-md);
}

.why-icon {
  width: 44px;
  height: 44px;
  background: var(--teal-xlight);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid var(--teal-border);
}

.why-feature h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 4px;
}

.why-feature p {
  font-size: 0.85rem;
  color: var(--gray-500);
  line-height: 1.6;
}

.why-big-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-lg);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.why-big-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--teal-light));
}

.why-card-icon {
  margin: 0 auto 24px;
  width: 80px;
  height: 80px;
  background: var(--teal-xlight);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--teal-border);
}

.why-card-title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.3;
  margin-bottom: 16px;
}

.why-card-sub {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 24px;
}

.why-card-divider {
  height: 1px;
  background: var(--gray-200);
  margin-bottom: 24px;
}

.why-card-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.badge {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--teal);
  background: var(--teal-xlight);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  border: 1px solid var(--teal-border);
}

/* ========== CONTACT SECTION ========== */
.contact {
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
  align-items: flex-start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 10px;
}

.contact-info-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px 20px;
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
}

.contact-info-item:hover {
  border-color: var(--teal-border);
  background: var(--teal-xlight);
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  background: var(--white);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid var(--teal-border);
}

.contact-info-label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray-400);
  margin-bottom: 4px;
}

.contact-info-value {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--gray-800);
  line-height: 1.5;
  transition: color var(--transition);
}

a.contact-info-value:hover {
  color: var(--teal);
}

.contact-social {
  padding: 20px;
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
}

.social-label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray-400);
  margin-bottom: 14px;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-link {
  width: 40px;
  height: 40px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-500);
  transition: all var(--transition);
  cursor: none;
}

.social-link:hover {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-teal);
}

/* Contact Form */
.contact-form {
  background: var(--gray-50);
  border-radius: var(--radius-xl);
  padding: 40px;
  border: 1px solid var(--gray-200);
  position: relative;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group.full-width {
  grid-column: 1 / -1;
  margin-bottom: 20px;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-700);
  letter-spacing: 0.3px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  background: var(--white);
  color: var(--gray-900);
  font-size: 0.92rem;
  transition: all var(--transition);
  outline: none;
  resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px var(--teal-glow);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-400);
}

.form-footer {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-disclaimer {
  font-size: 0.78rem;
  color: var(--gray-400);
  line-height: 1.5;
}

.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
  padding: 40px;
  position: absolute;
  inset: 0;
  background: var(--white);
  border-radius: var(--radius-xl);
}

.form-success.show {
  display: flex;
  animation: fadeInUp 0.5s ease;
}

.form-success h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--teal);
}

.form-success p {
  color: var(--gray-500);
  font-size: 0.95rem;
}

/* ========== FOOTER ========== */
.footer {
  background: var(--gray-900);
  color: var(--gray-300);
  padding: 70px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-logo {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 8px;
}

.footer-logo .logo-dr {
  color: var(--teal-light);
}

.footer-logo .logo-name {
  color: var(--white);
}

.footer-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--teal-light);
  margin-bottom: 14px;
}

.footer-desc {
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--gray-400);
}

.footer-links-col h4,
.footer-contact-col h4 {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--white);
  margin-bottom: 18px;
}

.footer-links-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links-col a {
  font-size: 0.88rem;
  color: var(--gray-400);
  transition: color var(--transition);
  cursor: none;
}

.footer-links-col a:hover {
  color: var(--teal-light);
}

.footer-contact-link {
  display: block;
  font-size: 0.85rem;
  color: var(--gray-400);
  margin-bottom: 10px;
  transition: color var(--transition);
  cursor: none;
}

.footer-contact-link:hover {
  color: var(--teal-light);
}

.footer-location {
  font-size: 0.88rem;
  color: var(--gray-500);
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 8px;
}

.footer-social-link {
  width: 36px;
  height: 36px;
  background: var(--gray-800);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  transition: all var(--transition);
  cursor: none;
}

.footer-social-link:hover {
  background: var(--teal);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid var(--gray-800);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--gray-500);
}

.footer-bottom a {
  color: var(--teal-light);
  transition: opacity var(--transition);
}

.footer-bottom a:hover {
  opacity: 0.8;
}

.footer-disclaimer {
  text-align: right;
}

/* ========== ANIMATION CLASSES ========== */
.reveal-up,
.reveal-left,
.reveal-right,
.reveal-step {
  opacity: 0;
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-up {
  transform: translateY(40px);
}

.reveal-left {
  transform: translateX(-40px);
}

.reveal-right {
  transform: translateX(40px);
}

.reveal-step {
  transform: translateX(-20px);
}

.reveal-up.visible,
.reveal-left.visible,
.reveal-right.visible,
.reveal-step.visible {
  opacity: 1;
  transform: translate(0);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 3D Tilt */
.tilt-card {
  transform-style: preserve-3d;
  transition: transform 0.2s ease;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .hero-content {
    gap: 48px;
  }

  .about-grid {
    gap: 48px;
  }

  .why-grid {
    gap: 48px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-height: 60px;
  }

  .nav-links {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    gap: 4px;
    padding: 24px 0;
    box-shadow: var(--shadow-lg);
    border-bottom: 1px solid var(--gray-100);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
    z-index: 999;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav-links li {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .nav-link {
    display: block;
    text-align: center;
    padding: 14px 32px;
    width: 100%;
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--gray-800);
    border-radius: 0;
    transition: background 0.2s ease, color 0.2s ease;
  }

  /* Remove desktop underline indicator on mobile menu items */
  .nav-links .nav-link::after {
    display: none;
  }

  .nav-links .nav-link:active,
  .nav-links .nav-link:hover {
    background: var(--teal-xlight);
    color: var(--teal);
  }

  /* Style active page link on mobile menu */
  .nav-links .nav-link.active {
    color: var(--teal);
    font-weight: 600;
    background: var(--teal-xlight);
  }

  .nav-btn {
    display: block;
    margin: 16px 24px 8px;
    width: calc(100% - 48px);
    text-align: center;
    padding: 14px 24px;
    background: var(--teal);
    color: var(--white) !important;
    border-radius: var(--radius-full);
    font-size: 0.95rem;
    font-weight: 600;
    box-shadow: var(--shadow-teal);
    transition: transform 0.2s ease, background-color 0.2s ease;
  }

  .nav-btn:active {
    transform: scale(0.98);
    background: var(--teal-light);
  }

  .hamburger {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    padding: 10px;
    margin-right: -10px;
    -webkit-tap-highlight-color: transparent;
    transition: background-color 0.2s ease;
  }

  .hamburger:active {
    background-color: var(--teal-xlight);
  }

  .hamburger:focus {
    outline: none;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
    padding: 40px 20px 60px;
  }

  .hero-image-wrap {
    order: -1;
    padding: 20px;
    margin-top: 40px;
  }

  .hero-image-placeholder {
    width: 260px;
    height: 260px;
    border-radius: 0;
  }

  .hero-real-photo {
    height: 340px;
    border-radius: 0 0 130px 130px;
  }

  .ring-1 {
    width: 280px;
    height: 280px;
  }

  .ring-2 {
    width: 340px;
    height: 340px;
  }

  .ring-3 {
    width: 400px;
    height: 400px;
  }

  /* Fix hero badges on mobile so they don't detach or look too big */
  .hero-float-badge {
    padding: 8px 12px;
    font-size: 0.75rem;
  }

  .hero-float-badge svg {
    width: 14px;
    height: 14px;
  }

  .badge-top {
    top: 140px;
    right: 2%;
  }

  .badge-bottom {
    bottom: 20px;
    left: 2%;
  }

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

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

  .section-label {
    justify-content: center;
  }

  .section-label::before {
    display: none;
  }

  /* Hide scroll indicator on mobile to prevent overlap with stats */
  .scroll-indicator {
    display: none;
  }

  .about-grid,
  .why-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .why-feature {
    flex-direction: column;
    gap: 12px;
  }

  .about-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    height: auto;
    max-width: 320px;
    margin: 0 auto;
    position: relative;
  }

  .about-card-main {
    grid-column: span 2;
    position: relative;
    width: 100%;
    height: 340px;
  }

  /* Redesign about badges to sit side-by-side below the photo */
  .about-card-accent {
    grid-column: 1;
    position: relative;
    width: 100%;
    height: auto;
    bottom: auto;
    right: auto;
    padding: 16px 14px;
    margin: 0;
    box-shadow: var(--shadow-md);
  }

  .about-card-accent2 {
    grid-column: 2;
    position: relative;
    width: 100%;
    height: auto;
    top: auto;
    right: auto;
    padding: 16px 14px;
    margin: 0;
    box-shadow: var(--shadow-md);
  }

  .accent-title,
  .accent2-title {
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 4px;
  }

  .accent-sub,
  .accent2-sub {
    font-size: 0.68rem;
    line-height: 1.3;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .services-grid .service-card:last-child {
    grid-column: 1;
    display: block;
  }

  .services-grid .service-card:last-child .service-icon-wrap {
    margin-bottom: 20px;
  }

  .services-grid .service-card:last-child .service-title {
    margin-bottom: 10px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .footer-disclaimer {
    text-align: center;
  }

  .approach-timeline {
    padding-left: 0;
  }

  .timeline-line {
    display: none;
  }

  .approach-step {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .step-number {
    font-size: 1.5rem;
    text-align: left;
  }

  .step-content::before {
    display: none;
  }

  body {
    cursor: auto;
  }

  .cursor,
  .cursor-follower {
    display: none;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 70px 0;
  }

  .hero-name {
    font-size: 2.4rem;
  }

  .contact-form {
    padding: 24px;
  }

  .hero-ctas {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }
}