*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, sans-serif;
  color: #1e293b;
  line-height: 1.6;
  overflow-x: hidden;
}

:root {
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --primary-light: #3b82f6;
  --primary-50: #eff6ff;
  --primary-100: #dbeafe;
  --primary-200: #bfdbfe;
  --primary-300: #93c5fd;
  --primary-400: #60a5fa;
  --accent: #0ea5e9;
  --accent-dark: #0284c7;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;
  --white: #ffffff;
  --shadow-sm: 0 1px 2px rgba(0,0,0,.05);
  --shadow: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,.07), 0 2px 4px -1px rgba(0,0,0,.04);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,.08), 0 4px 6px -2px rgba(0,0,0,.04);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,.08), 0 10px 10px -5px rgba(0,0,0,.04);
  --shadow-blue: 0 4px 14px rgba(37,99,235,.25);
}

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

.reveal { opacity: 0; transform: translateY(50px); transition: all .7s cubic-bezier(.22,1,.36,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== NAV ===== */
nav {
  position: fixed; top: 0; width: 100%; z-index: 1000;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(226,232,240,.5);
  transition: all .3s;
}
nav.scrolled { box-shadow: 0 1px 8px rgba(0,0,0,.06); }
nav .container {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.logo {
  font-size: 1.6rem; font-weight: 800;
  background: linear-gradient(135deg, var(--primary-dark), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none; letter-spacing: -.5px;
  display: flex; align-items: center; gap: 10px;
}
.logo svg { flex-shrink: 0; }
.nav-links { display: flex; gap: 8px; list-style: none; align-items: center; }
.nav-links a {
  text-decoration: none; color: var(--gray-600);
  font-weight: 500; font-size: .9rem;
  padding: 8px 16px; border-radius: 8px;
  transition: all .25s; position: relative;
}
.nav-links a:not(.nav-cta):hover { color: var(--primary); background: var(--primary-50); }
.nav-cta {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--white) !important; padding: 10px 24px !important;
  border-radius: 10px !important; font-weight: 600 !important;
  box-shadow: var(--shadow-blue);
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,99,235,.35) !important; background: linear-gradient(135deg, var(--primary-dark), var(--accent-dark)) !important; }
.menu-toggle {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  background: none; border: none; padding: 6px; z-index: 1001;
}
.menu-toggle span {
  width: 26px; height: 2.5px; background: var(--gray-700);
  border-radius: 4px; transition: all .3s;
}
.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Nav overlay (mobile) */
.nav-overlay {
  display: none;
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,.35);
  z-index: 999;
  opacity: 0;
  transition: opacity .35s;
}
.nav-overlay.active { display: block; opacity: 1; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #ecfdf5 0%, #eff6ff 30%, #f0f9ff 60%, #fdf2f8 100%);
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 0% 50%, rgba(37,99,235,.06) 0%, transparent 70%),
    radial-gradient(ellipse 80% 60% at 100% 50%, rgba(14,165,233,.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-particles { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.particle {
  position: absolute; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-200), var(--primary-400));
  opacity: .15; animation: floatParticle 20s infinite ease-in-out;
}
.particle:nth-child(1) { width: 300px; height: 300px; top: -80px; left: -60px; animation-delay: 0s; }
.particle:nth-child(2) { width: 200px; height: 200px; bottom: -40px; right: -30px; animation-delay: -7s; }
.particle:nth-child(3) { width: 150px; height: 150px; top: 40%; right: 10%; animation-delay: -14s; }
@keyframes floatParticle {
  0%, 100% { transform: translate(0,0) scale(1); }
  25% { transform: translate(30px,-30px) scale(1.05); }
  50% { transform: translate(-20px,20px) scale(.95); }
  75% { transform: translate(40px,10px) scale(1.02); }
}

.hero .container {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: center; position: relative; z-index: 1;
  padding-top: 100px; padding-bottom: 20px;
}
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 900; line-height: 1.1;
  color: var(--gray-900); margin-bottom: 20px;
  letter-spacing: -1px;
}
.hero h1 .gradient-text {
  background: linear-gradient(135deg, var(--primary-dark), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero h1 .hero-emoji { display: inline-block; animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }
.hero p {
  font-size: 1.1rem; color: var(--gray-500);
  margin-bottom: 36px; max-width: 520px; line-height: 1.7;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 32px; border-radius: 12px;
  font-weight: 600; font-size: 1rem; cursor: pointer;
  text-decoration: none; border: none; transition: all .3s cubic-bezier(.22,1,.36,1);
  position: relative; overflow: hidden;
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--white); box-shadow: var(--shadow-blue);
}
.btn-primary::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--primary-dark), var(--accent-dark));
  opacity: 0; transition: opacity .3s;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 25px rgba(37,99,235,.4); }
.btn-primary:hover::after { opacity: 1; }
.btn-primary span { position: relative; z-index: 1; }
.btn-outline {
  background: transparent; color: var(--primary);
  border: 2px solid var(--primary-200);
}
.btn-outline:hover { background: var(--primary-50); border-color: var(--primary); transform: translateY(-3px); }
.hero-image-wrapper { position: relative; display: flex; align-items: center; justify-content: center; }
.hero-image-main {
  width: 100%; max-width: 540px; border-radius: 24px;
  box-shadow: var(--shadow-xl);
  animation: floatImage 6s ease-in-out infinite;
  aspect-ratio: 4/3; object-fit: cover;
}
@keyframes floatImage { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-16px); } }
.hero-badge {
  position: absolute; padding: 12px 18px; border-radius: 14px;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 10px;
  font-size: .85rem; font-weight: 600; color: var(--gray-700);
  animation: badgeIn 1s .5s both;
}
.hero-badge-1 { bottom: 30px; left: -10px; }
.hero-badge-2 { top: 30px; right: -10px; }
.hero-badge .badge-icon { width: 38px; height: 38px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
.badge-green { background: #d1fae5; }
.badge-blue { background: #dbeafe; }
.badge-value { font-size: .75rem; color: var(--gray-400); font-weight: 400; }
@keyframes badgeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

/* ===== STATS ===== */
.stats {
  padding: 40px 0;
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.stat-item { text-align: center; }
.stat-number {
  font-size: 2.6rem; font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}
.stat-label { color: var(--gray-500); font-size: .95rem; margin-top: 4px; }

/* ===== SECTION COMMON ===== */
section { padding: 100px 0; position: relative; }
.section-label {
  display: inline-block; font-size: .8rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 2px; color: var(--primary); margin-bottom: 8px;
  background: var(--primary-50); padding: 6px 16px; border-radius: 20px;
}
.section-title {
  text-align: center; font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800; color: var(--gray-900); margin-bottom: 14px;
  letter-spacing: -.5px;
}
.section-subtitle {
  text-align: center; color: var(--gray-500);
  margin-bottom: 56px; font-size: 1.05rem; max-width: 600px;
  margin-left: auto; margin-right: auto;
}

/* ===== SERVICES ===== */
#services { background: var(--gray-50); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  background: var(--white); padding: 36px 28px 32px; border-radius: 20px;
  text-align: center; transition: all .4s cubic-bezier(.22,1,.36,1);
  border: 1px solid var(--gray-200);
  position: relative; overflow: hidden;
  cursor: default;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s cubic-bezier(.22,1,.36,1);
}
.service-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,.08); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon-wrapper {
  width: 64px; height: 64px; border-radius: 18px;
  background: linear-gradient(135deg, var(--primary-50), var(--primary-100));
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px; font-size: 1.8rem;
  transition: all .4s;
}
.service-card:hover .service-icon-wrapper {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  transform: scale(1.1) rotate(-6deg);
}
.service-card:hover .service-icon-wrapper .service-icon { filter: brightness(0) invert(1); }
.service-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; color: var(--gray-800); }
.service-card p { color: var(--gray-500); font-size: .93rem; line-height: 1.7; }
.service-link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 16px; color: var(--primary); font-weight: 600;
  font-size: .9rem; text-decoration: none; opacity: 0;
  transform: translateY(8px); transition: all .3s;
}
.service-card:hover .service-link { opacity: 1; transform: translateY(0); }

/* ===== DOCTORS ===== */
#doctors { background: var(--white); }
.doctors-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.doctor-card {
  background: var(--white); border-radius: 20px;
  border: 1px solid var(--gray-200);
  overflow: hidden; transition: all .4s cubic-bezier(.22,1,.36,1);
}
.doctor-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0,0,0,.08); }
.doctor-img-wrapper { position: relative; overflow: hidden; height: 260px; }
.doctor-img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.doctor-card:hover .doctor-img { transform: scale(1.08); }
.doctor-social {
  position: absolute; bottom: 16px; left: 0; right: 0;
  display: flex; justify-content: center; gap: 8px;
  transform: translateY(60px); transition: transform .4s cubic-bezier(.22,1,.36,1);
}
.doctor-card:hover .doctor-social { transform: translateY(0); }
.doctor-social a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; font-size: 1rem;
  transition: all .25s; box-shadow: var(--shadow);
}
.doctor-social a:hover { transform: scale(1.15); background: var(--primary); color: white; }
.doctor-body { padding: 24px 24px 28px; text-align: center; }
.doctor-body h3 { font-size: 1.15rem; font-weight: 700; color: var(--gray-800); }
.doctor-spec {
  color: var(--primary); font-weight: 600; font-size: .85rem;
  margin: 4px 0 10px; display: inline-block;
  background: var(--primary-50); padding: 3px 14px; border-radius: 20px;
}
.doctor-stars { color: #f59e0b; margin-bottom: 8px; font-size: .95rem; letter-spacing: 2px; }

/* ===== TESTIMONIALS FADE ===== */
#testimonials { background: linear-gradient(160deg, var(--primary-50), var(--white), var(--gray-50)); overflow: hidden; }
.testi-fade { position: relative; max-width: 700px; margin: 0 auto; min-height: 260px; }
.testi-slide {
  position: absolute; inset: 0;
  opacity: 0; visibility: hidden;
  transition: opacity .7s ease, visibility .7s ease;
  padding: 0 8px;
  pointer-events: none;
}
.testi-slide.active {
  opacity: 1; visibility: visible;
  position: relative;
  pointer-events: auto;
}
.testimonial-card {
  background: var(--white); padding: 36px 32px 32px; border-radius: 20px;
  border: 1px solid var(--gray-200); margin: 8px 0;
  position: relative;
  max-width: 640px; margin-left: auto; margin-right: auto;
}
.testimonial-card::before {
  content: '"'; position: absolute; top: 12px; right: 28px;
  font-size: 5rem; line-height: 1; color: var(--primary-100);
  font-weight: 900; font-family: Georgia, serif;
}
.testimonial-stars { color: #f59e0b; font-size: 1.05rem; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-text {
  color: var(--gray-600); font-style: italic;
  margin-bottom: 24px; font-size: 1rem; line-height: 1.7;
  position: relative; z-index: 1;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.testimonial-name { font-weight: 700; color: var(--gray-800); font-size: .95rem; }
.testimonial-location { font-size: .82rem; color: var(--gray-400); }
.testi-controls { display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 28px; }
.testi-arrow {
  width: 44px; height: 44px; border-radius: 50%;
  border: 2px solid var(--gray-200); background: var(--white);
  font-size: 1.5rem; color: var(--primary); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all .25s; line-height: 1;
}
.testi-arrow:hover { background: var(--primary); color: var(--white); border-color: var(--primary); transform: scale(1.08); }
.testi-dots { display: flex; gap: 8px; }
.testi-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--gray-300); border: none; cursor: pointer;
  transition: all .35s; padding: 0;
}
.testi-dot.active { background: var(--primary); width: 28px; border-radius: 6px; }
.testi-dot:hover { background: var(--primary-300); }

/* ===== FAQ ===== */
#faq { background: var(--gray-50); }
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  border: 1px solid var(--gray-200); border-radius: 16px;
  overflow: hidden; transition: all .3s;
  background: var(--white);
}
.faq-item.active { border-color: var(--primary-300); box-shadow: 0 4px 20px rgba(37,99,235,.08); }
.faq-question {
  width: 100%; display: flex; justify-content: space-between;
  align-items: center; padding: 20px 26px; background: none;
  border: none; cursor: pointer; font-size: 1rem;
  font-weight: 600; color: var(--gray-700); text-align: left;
  transition: all .2s; gap: 20px;
}
.faq-question:hover { background: var(--gray-50); }
.faq-icon {
  flex-shrink: 0; width: 32px; height: 32px; border-radius: 10px;
  background: var(--primary-50); display: flex; align-items: center;
  justify-content: center; transition: all .3s;
  font-size: .85rem; color: var(--primary);
}
.faq-item.active .faq-icon { background: var(--primary); color: white; transform: rotate(45deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: all .4s cubic-bezier(.22,1,.36,1);
  padding: 0 26px; color: var(--gray-500); font-size: .95rem; line-height: 1.7;
}
.faq-item.active .faq-answer { max-height: 400px; padding: 0 26px 22px; }
.faq-hidden { display: none; }
.faq-show-btn {
  display: block; margin: 20px auto 0;
  padding: 14px 32px; border-radius: 12px;
  background: var(--primary-50); color: var(--primary);
  border: 2px solid var(--primary-200); cursor: pointer;
  font-weight: 600; font-size: .95rem;
  transition: all .25s;
}
.faq-show-btn:hover { background: var(--primary); color: var(--white); border-color: var(--primary); }

/* ===== APPOINTMENT ===== */
#appointment { background: linear-gradient(160deg, var(--white), var(--primary-50)); }
#appointment::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 300px;
  background: linear-gradient(to top, var(--primary-50), transparent);
  pointer-events: none;
}
.form-wrapper {
  max-width: 680px; margin: 0 auto;
  background: var(--white); padding: 44px; border-radius: 24px;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--gray-200);
  position: relative; z-index: 1;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 20px; position: relative; }
.form-group label { display: block; font-weight: 600; font-size: .85rem; color: var(--gray-700); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 14px 16px; border: 2px solid var(--gray-200);
  border-radius: 12px; font-size: .95rem; font-family: inherit;
  transition: all .25s; background: var(--gray-50); color: var(--gray-800);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--primary);
  background: var(--white); box-shadow: 0 0 0 4px var(--primary-100);
}
.form-group input:hover, .form-group select:hover, .form-group textarea:hover { border-color: var(--primary-300); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-submit {
  width: 100%; padding: 16px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--white); border: none; border-radius: 12px;
  font-size: 1rem; font-weight: 700; cursor: pointer;
  transition: all .3s; box-shadow: var(--shadow-blue); letter-spacing: .3px;
}
.form-submit:hover { transform: translateY(-3px); box-shadow: 0 8px 25px rgba(37,99,235,.4); }
.form-success {
  display: none; text-align: center; padding: 40px 24px;
  background: linear-gradient(135deg, #ecfdf5, #d1fae5);
  border: 1px solid #6ee7b7; border-radius: 16px; color: #065f46;
}
.form-success.show { display: block; }
.form-success-icon { font-size: 3rem; margin-bottom: 12px; }
.form-success h3 { font-size: 1.4rem; font-weight: 700; margin-bottom: 8px; }
.form-success p { font-size: .95rem; color: #047857; }

/* ===== FOOTER ===== */
footer {
  background: linear-gradient(160deg, var(--gray-900), #0c1b33);
  color: var(--gray-400); padding: 60px 0 0;
  position: relative;
}
footer::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent), var(--primary));
  background-size: 200% 100%;
  animation: shimmer 3s ease-in-out infinite;
}
@keyframes shimmer { 0%, 100% { background-position: 0% 0%; } 50% { background-position: 100% 0%; } }
footer .container { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; }
footer h3 { color: var(--white); font-size: 1.1rem; font-weight: 700; margin-bottom: 20px; letter-spacing: -.3px; }
footer p { font-size: .9rem; line-height: 1.8; }
footer ul { list-style: none; }
footer ul li { margin-bottom: 12px; }
footer ul li a {
  color: var(--gray-400); text-decoration: none; font-size: .9rem;
  transition: all .2s; display: flex; align-items: center; gap: 6px;
}
footer ul li a:hover { color: var(--primary-300); transform: translateX(4px); }
.footer-newsletter form { display: flex; gap: 8px; margin-top: 16px; }
.footer-newsletter input {
  flex: 1; padding: 12px 14px; border-radius: 10px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.06);
  color: var(--white); font-size: .9rem;
}
.footer-newsletter input::placeholder { color: var(--gray-500); }
.footer-newsletter button {
  padding: 12px 18px; border-radius: 10px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white; border: none; cursor: pointer; font-weight: 600;
  transition: all .3s; white-space: nowrap;
}
.footer-newsletter button:hover { transform: scale(1.05); }
.footer-bottom { text-align: center; padding: 28px 0; margin-top: 48px; border-top: 1px solid rgba(255,255,255,.06); font-size: .85rem; color: var(--gray-500); }

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed; bottom: 30px; right: 30px;
  width: 50px; height: 50px; border-radius: 14px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--white); border: none; font-size: 1.2rem; cursor: pointer;
  box-shadow: var(--shadow-blue);
  transition: all .35s cubic-bezier(.22,1,.36,1);
  opacity: 0; visibility: hidden; transform: translateY(20px);
  z-index: 999;
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { transform: translateY(-4px) scale(1.05); box-shadow: 0 8px 25px rgba(37,99,235,.4); }

/* ===== MOBILE STICKY CTA & CALL BUTTON ===== */
.mobile-sticky-cta {
  display: none;
}
.mobile-call-btn {
  display: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .hero .container { grid-template-columns: 1fr; text-align: center; padding-top: 120px; }
  .hero p { margin: 0 auto 36px; }
  .hero-buttons { justify-content: center; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .doctors-grid { grid-template-columns: repeat(2, 1fr); }
  footer .container { grid-template-columns: 1fr 1fr; }
  .hero-badge { display: none; }
}

@media (max-width: 768px) {
  /* NAV */
  .nav-links {
    display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100dvh;
    background: rgba(255,255,255,.98);
    backdrop-filter: blur(20px);
    flex-direction: column; align-items: center; justify-content: center;
    gap: 16px; z-index: 1000;
    opacity: 0; transform: scale(.96); transition: all .35s cubic-bezier(.22,1,.36,1);
  }
  .nav-links.open { display: flex; opacity: 1; transform: scale(1); }
  .nav-links a {
    font-size: 1.15rem; padding: 14px 36px;
    opacity: 0; transform: translateY(20px); transition: all .35s cubic-bezier(.22,1,.36,1);
  }
  .nav-links.open a { opacity: 1; transform: translateY(0); }
  .nav-links.open a:nth-child(1) { transition-delay: .05s; }
  .nav-links.open a:nth-child(2) { transition-delay: .1s; }
  .nav-links.open a:nth-child(3) { transition-delay: .15s; }
  .nav-links.open a:nth-child(4) { transition-delay: .2s; }
  .nav-links.open a:nth-child(5) { transition-delay: .25s; }
  .nav-links.open a:nth-child(6) { transition-delay: .3s; }
  .nav-cta { font-size: 1.15rem !important; padding: 16px 44px !important; border-radius: 14px !important; }
  .menu-toggle { display: flex; padding: 11px; min-width: 44px; min-height: 44px; align-items: center; justify-content: center; }
  .nav-overlay.active { display: block; }

  /* HERO */
  .hero { min-height: auto; padding-top: 72px; padding-bottom: 40px; }
  .hero .container { padding: 40px 20px 0; text-align: center; gap: 32px; }
  .hero h1 { font-size: 28px; margin-bottom: 16px; }
  .hero h1 .hero-emoji { display: none; }
  .hero p { font-size: 1rem; margin: 0 auto 24px; }
  .hero-buttons { flex-direction: column; gap: 12px; }
  .hero-buttons .btn { width: 100%; justify-content: center; }
  .hero-particles { display: none; }
  .hero-image-wrapper { display: none; }

  /* STATS */
  .stats { padding: 30px 20px; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .stat-number { font-size: 32px; }
  .stat-label { font-size: .85rem; }

  /* SECTIONS */
  section { padding: 40px 0; }
  .section-title { font-size: 1.5rem; }
  .section-subtitle { font-size: .9rem; margin-bottom: 32px; }
  .section-label { font-size: .75rem; }

  /* SERVICES - horizontal carousel */
  #services .section-title { font-size: 24px; }
  #services .section-subtitle { font-size: 14px; }
  #services .services-grid {
    display: flex; gap: 16px; overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 0 16px 8px;
    scrollbar-width: none;
    scroll-padding: 0 16px;
  }
  #services .services-grid::-webkit-scrollbar { display: none; }
  #services .service-card {
    width: 85vw; max-width: 320px; flex-shrink: 0;
    scroll-snap-align: center;
    padding: 24px 20px 20px;
    margin-bottom: 0;
    transform: none !important;
    box-shadow: 0 2px 12px rgba(0,0,0,.08);
    text-align: center;
  }
  #services .service-card:hover { transform: none !important; box-shadow: 0 2px 12px rgba(0,0,0,.08) !important; }
  #services .service-card::before { display: none; }
  #services .service-card .service-icon-wrapper { margin: 0 auto 14px; }
  #services .service-card h3 { text-align: center; }
  #services .service-card p {
    text-align: left; padding: 0 4px;
    overflow: visible; white-space: normal;
  }
  #services .service-card .service-link {
    opacity: 1; transform: none;
    margin-top: 12px; font-size: 14px;
    color: #2563eb;
  }
  .services-swipe-hint {
    text-align: center; color: var(--gray-400); font-size: .85rem;
    margin-top: 16px;
  }

  /* DOCTORS - horizontal compact */
  .doctors-grid { display: flex; flex-direction: column; gap: 14px; max-width: 100%; }
  .doctor-card {
    display: flex; flex-direction: row; align-items: center;
    padding: 16px; border-radius: 16px;
    transform: none !important;
  }
  .doctor-card:hover { transform: none !important; box-shadow: none !important; }
  .doctor-img-wrapper {
    width: 80px; height: 80px; min-width: 80px;
    border-radius: 50%; overflow: hidden;
    position: relative;
  }
  .doctor-img { border-radius: 50%; }
  .doctor-social { display: none; }
  .doctor-body {
    text-align: left; padding: 0 0 0 16px;
    display: flex; flex-direction: column;
  }
  .doctor-body h3 { font-size: 1rem; }
  .doctor-spec { margin: 2px 0 4px; font-size: .8rem; }
  .doctor-stars { margin-bottom: 0; font-size: .85rem; }
  .doctor-desc { display: none; }

  /* TESTIMONIALS */
  .testimonial-card { padding: 28px 20px 24px; }
  .testi-arrow { width: 44px; height: 44px; font-size: 1.4rem; min-width: 44px; }
  .testi-dot { min-width: 12px; min-height: 12px; width: 12px; height: 12px; }
  .testi-dot.active { min-width: 28px; }
  .testi-controls { gap: 16px; margin-top: 20px; }

  /* FAQ */
  .faq-question { padding: 16px 18px; font-size: .95rem; }
  .faq-answer { font-size: .9rem; }
  .faq-item.active .faq-answer { padding: 0 18px 18px; }

  /* BOOKING FORM */
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .form-group { margin-bottom: 16px; }
  .form-wrapper { padding: 24px 16px; border-radius: 18px; }
  .form-group input, .form-group select, .form-group textarea { padding: 13px 14px; font-size: 16px; }
  .form-submit { padding: 15px; }

  /* FOOTER */
  footer .container { grid-template-columns: 1fr; gap: 32px; }
  footer { padding: 40px 0 0; }
  .footer-hours-col { display: none; }

  /* STICKY CTA (mobile only) */
  .mobile-sticky-cta {
    display: flex; position: fixed; bottom: 0; left: 0; right: 0;
    background: #1a73e8; color: white;
    padding: 12px 20px; z-index: 998;
    align-items: center; justify-content: center;
    gap: 10px; font-weight: 700; font-size: 1rem;
    text-decoration: none; cursor: pointer;
    box-shadow: 0 -4px 20px rgba(26,115,232,.3);
    border: none;
  }
  .mobile-sticky-cta:hover { background: #1557b0; }
  body { padding-bottom: 60px; }

  /* FLOATING CALL BUTTON */
  .mobile-call-btn {
    display: flex; position: fixed; bottom: 80px; right: 16px;
    width: 56px; height: 56px; border-radius: 50%;
    background: var(--primary); color: white;
    align-items: center; justify-content: center;
    text-decoration: none; font-size: 1.5rem;
    box-shadow: 0 4px 16px rgba(37,99,235,.4);
    z-index: 997; border: none; cursor: pointer;
    transition: all .25s;
  }
  .mobile-call-btn:hover { transform: scale(1.1); }

  /* BACK TO TOP */
  .back-to-top { width: 44px; height: 44px; bottom: 76px; right: 16px; border-radius: 12px; }
}

@media (max-width: 480px) {
  .section-title { font-size: 1.3rem; }
  .section-subtitle { font-size: .85rem; margin-bottom: 28px; }
  .stats-grid { gap: 16px; }
  .stat-number { font-size: 28px; }
  .stat-label { font-size: .8rem; }
  .hero h1 { font-size: 24px; }
  .hero .container { padding: 32px 16px 0; }
  .logo { font-size: 1.2rem; }
  .logo svg { width: 24px; height: 24px; }
  .form-submit { padding: 14px; font-size: .95rem; }
  .footer-newsletter form { flex-direction: column; }
  #services .service-card { width: 82vw; max-width: 280px; }
  .doctor-img-wrapper { width: 64px; height: 64px; min-width: 64px; }
  .doctor-card { padding: 12px; }
  .doctor-body { padding-left: 12px; }
  .doctor-body h3 { font-size: .9rem; }
}