/* =============================================
   PROCTOCARE CLINIC — style.css
   Luxury Medical Dark Theme
   ============================================= */

/* ---------- VARIABLES & RESET ---------- */
:root {
  --bg: #0c0d10;
  --bg2: #111318;
  --bg3: #16181f;
  --surface: #1a1d26;
  --surface2: #20232e;
  --border: rgba(201,169,110,0.15);
  --border2: rgba(201,169,110,0.08);
  --gold: #c9a96e;
  --gold-light: #e0c48c;
  --gold-dim: rgba(201,169,110,0.35);
  --gold-glow: rgba(201,169,110,0.12);
  --text: #f0ece3;
  --text-muted: #8a8793;
  --text-dim: #5a5764;
  --accent: #4f8ef7;
  --ff-display: 'Cormorant Garamond', Georgia, serif;
  --ff-heading: 'Cinzel', 'Cormorant Garamond', serif;
  --ff-body: 'DM Sans', -apple-system, sans-serif;
  --radius: 16px;
  --radius-sm: 10px;
  --transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow: 0 24px 64px rgba(0,0,0,0.5);
  --gold-shadow: 0 0 40px rgba(201,169,110,0.1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--ff-body);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  cursor: none;
  line-height: 1.6;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---------- CUSTOM CURSOR ---------- */
.cursor {
  width: 10px; height: 10px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease, opacity 0.3s;
  mix-blend-mode: screen;
}
.cursor-follower {
  width: 36px; height: 36px;
  border: 1.5px solid var(--gold-dim);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.18s ease, opacity 0.3s;
}
body:hover .cursor, body:hover .cursor-follower { opacity: 1; }

/* ---------- SCROLLBAR ---------- */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--gold-dim); border-radius: 10px; }

/* ---------- SELECTION ---------- */
::selection { background: var(--gold-dim); color: var(--text); }

/* ---------- UTILITIES ---------- */
.section { padding: 120px 6vw; }
.section-label {
  display: inline-block;
  font-family: var(--ff-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  background: var(--gold-glow);
  border: 1px solid var(--border);
  padding: 6px 16px;
  border-radius: 100px;
}
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 72px;
}
.section-header h2 {
  font-family: var(--ff-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 16px;
}
.section-header h2 em {
  font-style: italic;
  color: var(--gold);
}
.section-header p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ---------- BUTTONS ---------- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  background: linear-gradient(135deg, var(--gold), #a07840);
  color: #0c0d10;
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  border-radius: 100px;
  border: none;
  cursor: none;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  opacity: 0;
  transition: opacity var(--transition);
}
.btn-primary:hover::before { opacity: 1; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(201,169,110,0.35); }
.btn-primary svg { width: 16px; height: 16px; position: relative; z-index: 1; transition: transform 0.3s; }
.btn-primary:hover svg { transform: translateX(4px); }
.btn-primary span { position: relative; z-index: 1; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: transparent;
  color: var(--text);
  font-family: var(--ff-body);
  font-weight: 500;
  font-size: 0.9rem;
  border-radius: 100px;
  border: 1px solid var(--border);
  cursor: none;
  transition: all var(--transition);
}
.btn-ghost:hover {
  border-color: var(--gold-dim);
  color: var(--gold);
  background: var(--gold-glow);
  transform: translateY(-2px);
}

/* ---------- REVEAL ANIMATIONS ---------- */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.75s cubic-bezier(0.16,1,0.3,1), transform 0.75s cubic-bezier(0.16,1,0.3,1);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.85s cubic-bezier(0.16,1,0.3,1), transform 0.85s cubic-bezier(0.16,1,0.3,1);
}
.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.85s cubic-bezier(0.16,1,0.3,1), transform 0.85s cubic-bezier(0.16,1,0.3,1);
}
.revealed {
  opacity: 1 !important;
  transform: none !important;
}

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 6vw;
  display: flex;
  align-items: center;
  gap: 40px;
  transition: all 0.4s ease;
}
.navbar.scrolled {
  background: rgba(12,13,16,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 14px 6vw;
  border-bottom: 1px solid var(--border2);
  box-shadow: 0 4px 40px rgba(0,0,0,0.4);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-heading);
}
.logo-icon {
  font-size: 1.4rem;
  color: var(--gold);
  line-height: 1;
  animation: rotateStar 8s linear infinite;
}
@keyframes rotateStar { to { transform: rotate(360deg); } }
.logo-name {
  font-family: var(--ff-heading);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--text);
  display: block;
}
.logo-tag {
  font-family: var(--ff-body);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  color: var(--gold);
  text-transform: uppercase;
  display: block;
  line-height: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  margin-left: auto;
}
.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  padding: 10px 22px;
  background: linear-gradient(135deg, var(--gold), #a07840);
  color: #0c0d10;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  border-radius: 100px;
  transition: all var(--transition);
  white-space: nowrap;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,169,110,0.3); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: none;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--text);
  transition: all 0.3s;
  transform-origin: center;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* =============================================
   HERO
   ============================================= */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  padding: 140px 6vw 80px;
  position: relative;
  overflow: hidden;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,169,110,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,169,110,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 0;
  mask-image: radial-gradient(ellipse at center, rgba(0,0,0,1) 30%, transparent 70%);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}
.orb1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201,169,110,0.09) 0%, transparent 70%);
  top: -100px; left: -100px;
  animation: float 8s ease-in-out infinite;
}
.orb2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(79,142,247,0.06) 0%, transparent 70%);
  bottom: -80px; right: 100px;
  animation: float 10s ease-in-out infinite reverse;
}
.orb3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(201,169,110,0.07) 0%, transparent 70%);
  top: 50%; right: 10%;
  animation: float 7s ease-in-out infinite 2s;
}
@keyframes float {
  0%, 100% { transform: translateY(0) translateX(0); }
  33% { transform: translateY(-20px) translateX(10px); }
  66% { transform: translateY(10px) translateX(-10px); }
}

.hero-content { position: relative; z-index: 1; }
.hero-visual { position: relative; z-index: 1; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--gold);
  background: rgba(201,169,110,0.08);
  border: 1px solid var(--border);
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 28px;
  text-transform: uppercase;
}
.badge-dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

.hero-title {
  font-family: var(--ff-display);
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
  display: block;
}

.hero-subtitle {
  font-size: clamp(0.95rem, 1.5vw, 1.08rem);
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 24px 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  max-width: fit-content;
  gap: 0;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 28px;
  position: relative;
}
.stat-num {
  font-family: var(--ff-display);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}
.stat-plus {
  font-family: var(--ff-display);
  font-size: 1.6rem;
  color: var(--gold);
  vertical-align: top;
  line-height: 1.3;
}
.stat-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
  white-space: nowrap;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* Hero Visual */
.hero-card-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-glow-ring {
  position: absolute;
  width: 360px; height: 360px;
  border: 1px solid var(--border);
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  animation: ringPulse 4s ease-in-out infinite;
}
.hero-glow-ring::after {
  content: '';
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(201,169,110,0.08);
  border-radius: 50%;
}
@keyframes ringPulse {
  0%, 100% { transform: translate(-50%,-50%) scale(1); opacity: 1; }
  50% { transform: translate(-50%,-50%) scale(1.03); opacity: 0.7; }
}

.hero-img-card {
  width: 300px; height: 380px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: visible;
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,0.04);
  backdrop-filter: blur(10px);
}
.hero-img-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 60%;
  background: linear-gradient(180deg, rgba(201,169,110,0.06) 0%, transparent 100%);
  border-radius: 24px 24px 0 0;
  pointer-events: none;
}

.doctor-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 24px;
}
.dp-icon svg { width: 80px; height: 80px; }
.dp-name {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  text-align: center;
}
.dp-deg {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.5;
}

.floating-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  backdrop-filter: blur(10px);
  white-space: nowrap;
}
.floating-badge div { display: flex; flex-direction: column; }
.floating-badge b { font-size: 0.82rem; color: var(--text); font-weight: 600; }
.floating-badge span { font-size: 0.68rem; color: var(--text-muted); }
.fb-icon { font-size: 1.2rem; }

.fb1 { bottom: 30px; left: -70px; animation: floatBadge 5s ease-in-out infinite; }
.fb2 { top: 30px; right: -70px; animation: floatBadge 5s ease-in-out infinite 1.5s; }
@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 6vw;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 1;
}
.scroll-hint span {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--text-dim);
  text-transform: uppercase;
  writing-mode: vertical-rl;
}
.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; height: 60px; }
  50% { opacity: 0.3; height: 40px; }
}

/* =============================================
   SERVICES
   ============================================= */
.services { background: var(--bg); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
  cursor: default;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}
.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(201,169,110,0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
}
.service-card:hover {
  border-color: var(--border);
  transform: translateY(-6px);
  box-shadow: var(--shadow), var(--gold-shadow);
}
.service-card:hover::before, .service-card:hover::after { opacity: 1; }

.sc-icon {
  width: 56px; height: 56px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.sc-icon svg { width: 100%; height: 100%; }

.service-card h3 {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}
.service-card h3 span {
  color: var(--gold);
}
.service-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.service-card ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  z-index: 1;
}
.service-card ul li {
  font-size: 0.82rem;
  color: var(--text-muted);
  padding-left: 16px;
  position: relative;
}
.service-card ul li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.6rem;
  top: 3px;
}

.sc-tag {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-glow);
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: 100px;
}

/* =============================================
   DOCTOR
   ============================================= */
.doctor {
  background: var(--bg2);
  border-top: 1px solid var(--border2);
  border-bottom: 1px solid var(--border2);
}
.doctor-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.doctor-img-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}
.doctor-img-bg {
  position: absolute;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(201,169,110,0.1) 0%, transparent 70%);
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  filter: blur(30px);
}
.doctor-img-box {
  width: 280px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 24px 0;
}
.doc-avatar svg { width: 120px; height: 140px; }
.doc-name-card {
  width: 100%;
  background: linear-gradient(135deg, var(--gold), #a07840);
  padding: 16px 20px;
  margin-top: 20px;
}
.dnc-name {
  font-family: var(--ff-display);
  font-size: 1rem;
  font-weight: 600;
  color: #0c0d10;
}
.dnc-deg {
  font-size: 0.68rem;
  color: rgba(12,13,16,0.7);
  margin-top: 3px;
}

.doc-badge {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.doc-badge b {
  font-family: var(--ff-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}
.doc-badge span {
  font-size: 0.68rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.db1 { top: 20px; right: -20px; animation: floatBadge 4s ease-in-out infinite; }
.db2 { bottom: 80px; left: -20px; animation: floatBadge 4s ease-in-out infinite 1s; }

.doctor-right h2 {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 24px;
}
.doctor-right h2 em { font-style: italic; color: var(--gold); }

.doctor-bio {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}
.doctor-bio strong { color: var(--text); font-weight: 600; }

.credentials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 32px 0;
}
.cred {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: var(--radius-sm);
  padding: 16px;
  transition: border-color var(--transition);
}
.cred:hover { border-color: var(--border); }
.cred-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }
.cred div { display: flex; flex-direction: column; gap: 4px; }
.cred b { font-size: 0.85rem; font-weight: 600; color: var(--text); }
.cred span, .cred p { font-size: 0.76rem; color: var(--text-muted); line-height: 1.4; }

.insta-btn { margin-top: 8px; }

/* =============================================
   WHY US
   ============================================= */
.why { background: var(--bg); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.why-card {
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  padding: 36px 28px;
  position: relative;
  transition: all var(--transition);
  overflow: hidden;
}
.why-card:hover {
  border-color: var(--border);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}
.why-card:hover .wc-num { opacity: 0.2; }

.wc-num {
  position: absolute;
  top: 20px; right: 20px;
  font-family: var(--ff-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.08;
  line-height: 1;
  transition: opacity var(--transition);
}
.wc-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  display: block;
}
.why-card h4 {
  font-family: var(--ff-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
}
.why-card p {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* =============================================
   PROCESS
   ============================================= */
.process {
  background: var(--bg2);
  border-top: 1px solid var(--border2);
}
.process-steps {
  display: flex;
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}
.ps-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 20px;
  position: relative;
}
.ps-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  transition: all var(--transition);
  flex-shrink: 0;
}
.ps-step:hover .ps-num {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
  box-shadow: 0 0 24px rgba(201,169,110,0.4);
}
.ps-line {
  position: absolute;
  top: 28px;
  left: calc(50% + 28px);
  right: calc(-50% + 28px);
  height: 1px;
  background: linear-gradient(90deg, var(--border), var(--border2));
  z-index: 0;
}
.ps-line.last { display: none; }

.ps-step h4 {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
}
.ps-step p {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* =============================================
   CONTACT
   ============================================= */
.contact {
  background: var(--bg);
  border-top: 1px solid var(--border2);
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}
.contact-info h2 {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 16px;
}
.contact-info h2 em { font-style: italic; color: var(--gold); }
.contact-sub {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 36px;
}

.contact-details { display: flex; flex-direction: column; gap: 20px; margin-bottom: 36px; }
.cd-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: var(--radius-sm);
  transition: border-color var(--transition);
}
.cd-item:hover { border-color: var(--border); }
.cd-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }
.cd-item > div { display: flex; flex-direction: column; gap: 4px; }
.cd-item span { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-dim); }
.cd-item a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--gold);
  transition: color 0.3s;
}
.cd-item a:hover { color: var(--gold-light); }
.cd-item p { font-size: 0.87rem; color: var(--text-muted); line-height: 1.5; }

.contact-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* Map Card */
.map-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.map-placeholder {
  height: 280px;
  background: var(--bg3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  position: relative;
  overflow: hidden;
}
.map-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,169,110,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,169,110,0.05) 1px, transparent 1px);
  background-size: 40px 40px;
}
.map-pin-wrap { position: relative; z-index: 1; }
.map-pin-pulse {
  position: absolute;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: rgba(201,169,110,0.15);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  animation: mapPulse 2s ease-in-out infinite;
}
@keyframes mapPulse {
  0%, 100% { transform: translate(-50%,-50%) scale(1); opacity: 1; }
  50% { transform: translate(-50%,-50%) scale(1.6); opacity: 0; }
}
.map-pin {
  width: 40px; height: 40px;
  background: var(--gold);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(201,169,110,0.4);
}
.map-pin svg { width: 20px; height: 20px; fill: #0c0d10; transform: rotate(45deg); }

.map-info { position: relative; z-index: 1; text-align: center; }
.map-info h4 {
  font-family: var(--ff-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text);
}
.map-info p { font-size: 0.82rem; color: var(--text-muted); margin: 4px 0 8px; }
.map-link {
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 500;
  transition: color 0.3s;
}
.map-link:hover { color: var(--gold-light); }

.timing-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 24px;
  border-top: 1px solid var(--border2);
  flex-wrap: wrap;
}
.timing-card > div { display: flex; flex-direction: column; }
.timing-card b { font-size: 0.82rem; color: var(--text); font-weight: 600; }
.timing-card span { font-size: 0.75rem; color: var(--text-muted); }
.tc-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.tc-dot.morning { background: #f5c842; box-shadow: 0 0 8px rgba(245,200,66,0.5); }
.tc-dot.evening { background: #7c6ef0; box-shadow: 0 0 8px rgba(124,110,240,0.5); }

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--bg2);
  border-top: 1px solid var(--border2);
  padding: 60px 6vw 40px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}
.footer-brand { display: flex; align-items: center; gap: 10px; }
.footer-tagline {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--gold);
}
.footer-links {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-links a {
  font-size: 0.82rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--gold); }
.footer-copy {
  font-size: 0.75rem;
  color: var(--text-dim);
  letter-spacing: 0.05em;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { flex-wrap: wrap; gap: 40px; }
  .ps-step { flex: calc(50% - 20px); }
  .ps-line { display: none; }
}

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; text-align: center; padding-top: 120px; }
  .hero-visual { display: none; }
  .hero-subtitle { margin: 0 auto 40px; }
  .hero-actions { justify-content: center; }
  .hero-stats { margin: 0 auto; }
  .doctor-inner { grid-template-columns: 1fr; gap: 60px; }
  .doctor-left { display: none; }
  .contact-inner { grid-template-columns: 1fr; gap: 60px; }
  .credentials-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 80px 5vw; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  .navbar { padding: 18px 5vw; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    top: 0;
    background: rgba(12,13,16,0.98);
    backdrop-filter: blur(20px);
    justify-content: center;
    align-items: center;
    gap: 40px;
    z-index: 999;
  }
  .nav-links.open a { font-size: 1.4rem; color: var(--text); }

  .why-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 16px; padding: 20px; }
  .stat-divider { width: 60px; height: 1px; }
  .fb1, .fb2 { display: none; }
  .process-steps { flex-direction: column; align-items: center; }
  .ps-step { width: 100%; max-width: 320px; }
  .timing-card { gap: 8px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.4rem; }
  .hero-stats { width: 100%; }
  .stat { padding: 0 16px; }
}

/* Cursor on touch devices */
@media (hover: none) {
  body { cursor: auto; }
  .cursor, .cursor-follower { display: none; }
  .btn-primary, .btn-ghost, .nav-cta { cursor: pointer; }
}