/* ═══════════════════════════════════════════════════════
   ASUR dent — Vibrant Premium Theme
   Dental Clinic, Bishkek
   ═══════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

/* ── Tokens ── */
:root {
  --bg: #fafafa;
  --surface: #f0f0f0;
  --accent: #7c3aed;
  --accent-hover: #9333ea;
  --text: #18181b;
  --text-muted: #71717a;
  --border: #e4e4e7;
  --gradient: linear-gradient(135deg, #7c3aed, #ec4899);
  --gradient-soft: linear-gradient(135deg, rgba(124,58,237,.08), rgba(236,72,153,.08));
  --gradient-vivid: linear-gradient(135deg, #7c3aed 0%, #a855f7 40%, #ec4899 100%);
  --white: #ffffff;
  --shadow-sm: 0 1px 3px rgba(24,24,27,.06);
  --shadow-md: 0 4px 16px rgba(124,58,237,.10);
  --shadow-lg: 0 12px 40px rgba(124,58,237,.14);
  --shadow-card: 0 2px 12px rgba(24,24,27,.06);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --header-h: 72px;
}

/* ── Reset ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }

/* ── Typography ── */
h1, h2, h3, h4, h5 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--text);
}

h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.1rem; }

p { max-width: 640px; }

.text-gradient {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-label::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--gradient);
  border-radius: 2px;
}

/* ── Layout ── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: 80px 0;
}

/* ═══════════════════════════════════════
   HEADER
   ═══════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-h);
  z-index: 1000;
  background: rgba(250,250,250,.82);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s, background .3s;
}

.site-header.scrolled {
  box-shadow: 0 2px 24px rgba(124,58,237,.08);
  background: rgba(250,250,250,.95);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-img {
  height: 48px;
  width: 48px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  border: 2px solid transparent;
  background-image: var(--gradient);
  background-origin: border-box;
  background-clip: content-box, border-box;
  box-shadow: var(--shadow-sm);
}

.logo-text {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
  color: var(--text);
}

.logo-text span {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Desktop Nav */
.nav-desktop {
  display: none;
}

.nav-desktop a {
  font-family: 'Inter', sans-serif;
  font-size: .9rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition: color .2s, background .2s;
  position: relative;
}

.nav-desktop a:hover,
.nav-desktop a.active {
  color: var(--accent);
  background: rgba(124,58,237,.06);
}

.nav-desktop a.active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--gradient);
  border-radius: 2px;
}

.header-cta {
  display: none;
  font-family: 'Poppins', sans-serif;
  font-size: .85rem;
  font-weight: 600;
  color: var(--white);
  background: var(--gradient);
  padding: 10px 22px;
  border-radius: 50px;
  transition: transform .2s, box-shadow .2s;
  white-space: nowrap;
}

.header-cta:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* Burger */
.burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
  cursor: pointer;
  z-index: 1010;
}

.burger i {
  display: block;
  height: 2.5px;
  background: var(--text);
  border-radius: 4px;
  transition: transform .3s, opacity .3s;
}

.burger.open i:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.burger.open i:nth-child(2) { opacity: 0; }
.burger.open i:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Mobile Nav */
.nav-mobile {
  position: fixed;
  inset: 0;
  background: rgba(250,250,250,.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 1005;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s;
}

.nav-mobile.open {
  opacity: 1;
  pointer-events: auto;
}

.nav-mobile a {
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text);
  padding: 14px 24px;
  border-radius: var(--radius-md);
  transition: color .2s, background .2s;
}

.nav-mobile a:hover,
.nav-mobile a.active {
  color: var(--accent);
  background: rgba(124,58,237,.06);
}

.nav-mobile .mob-cta {
  margin-top: 20px;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  background: var(--gradient);
  padding: 14px 36px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* ═══════════════════════════════════════
   HERO — split-half
   ═══════════════════════════════════════ */
.hero {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--header-h);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(124,58,237,.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 20% 80%, rgba(236,72,153,.09) 0%, transparent 50%),
    var(--bg);
}

/* Decorative geometric shapes */
.hero-bg::before {
  content: '';
  position: absolute;
  top: 8%;
  right: -2%;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(124,58,237,.07), rgba(236,72,153,.05));
  filter: blur(2px);
}

.hero-bg::after {
  content: '';
  position: absolute;
  bottom: 5%;
  left: -5%;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(236,72,153,.06), rgba(124,58,237,.04));
  filter: blur(2px);
}

.hero-deco-ring {
  position: absolute;
  width: 600px;
  height: 600px;
  border: 1px solid rgba(124,58,237,.08);
  border-radius: 50%;
  top: -10%;
  right: -10%;
  z-index: 0;
  animation: hero-ring-pulse 8s ease-in-out infinite;
}

@keyframes hero-ring-pulse {
  0%, 100% { transform: scale(1); opacity: .5; }
  50% { transform: scale(1.05); opacity: .8; }
}

.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 40px;
}

.hero-content { max-width: 540px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 6px 16px 6px 8px;
  font-size: .8rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34,197,94,.5); }
  50% { box-shadow: 0 0 0 6px rgba(34,197,94,0); }
}

.hero h1 {
  margin-bottom: 20px;
  font-weight: 800;
  font-size: clamp(2.1rem, 5.5vw, 3.4rem);
}

.hero-text {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 460px;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 40px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: .95rem;
  color: var(--white);
  background: var(--gradient);
  padding: 14px 30px;
  border-radius: 50px;
  transition: transform .22s, box-shadow .22s;
  min-height: 48px;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: .95rem;
  color: var(--accent);
  background: var(--white);
  border: 2px solid var(--border);
  padding: 12px 28px;
  border-radius: 50px;
  transition: border-color .2s, background .2s, transform .2s;
  min-height: 48px;
}

.btn-outline:hover {
  border-color: var(--accent);
  background: rgba(124,58,237,.04);
  transform: translateY(-1px);
}

.hero-stats {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.hero-stat {
  text-align: left;
}

.hero-stat .num {
  font-family: 'Poppins', sans-serif;
  font-size: 1.65rem;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-stat .label {
  font-size: .8rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Hero visual side */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-img-wrap {
  position: relative;
  width: 100%;
  max-width: 420px;
}

.hero-img-main {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 2;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.hero-img-accent {
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 140px;
  height: 140px;
  border-radius: var(--radius-lg);
  object-fit: cover;
  border: 4px solid var(--white);
  box-shadow: var(--shadow-md);
  z-index: 3;
}

.hero-float-card {
  position: absolute;
  top: 20%;
  left: -20px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  box-shadow: var(--shadow-md);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .85rem;
  font-weight: 500;
  animation: float-card 4s ease-in-out infinite;
}

.hero-float-card .icon-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gradient-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

@keyframes float-card {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ═══════════════════════════════════════
   SERVICES PREVIEW (homepage)
   ═══════════════════════════════════════ */
.services-preview {
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 40px;
}

.service-card {
  display: flex;
  flex-direction: column;
  background: var(--bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform .25s, box-shadow .25s;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.service-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.service-card p {
  color: var(--text-muted);
  font-size: .9rem;
  line-height: 1.6;
  flex: 1;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-weight: 600;
  font-size: .85rem;
  color: var(--accent);
  transition: gap .2s;
}

.service-card-link:hover {
  gap: 10px;
}

/* ── photo-left service cards (services page) ── */
.service-full {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform .25s, box-shadow .25s;
}

.service-full:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.service-full-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.service-full-body {
  padding: 28px 24px;
  flex: 1;
}

.service-full-body h3 {
  margin-bottom: 10px;
}

.service-full-body p {
  color: var(--text-muted);
  font-size: .93rem;
  line-height: 1.65;
  margin-bottom: 16px;
}

.service-full-body ul {
  list-style: none;
  padding: 0;
  margin-bottom: 18px;
}

.service-full-body ul li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 8px;
  font-size: .9rem;
  color: var(--text);
}

.service-full-body ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gradient);
}

.btn-service {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: .85rem;
  color: var(--accent);
  background: rgba(124,58,237,.06);
  padding: 10px 22px;
  border-radius: 50px;
  transition: background .2s, color .2s;
  min-height: 44px;
}

.btn-service:hover {
  background: var(--accent);
  color: var(--white);
}

/* ═══════════════════════════════════════
   WHY US / USP
   ═══════════════════════════════════════ */
.usp-section {
  background: var(--bg);
}

.usp-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 40px;
}

.usp-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  border: 1px solid var(--border);
  transition: transform .2s, box-shadow .2s;
}

.usp-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.usp-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--gradient-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 1.4rem;
}

.usp-card h4 {
  margin-bottom: 8px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
}

.usp-card p {
  color: var(--text-muted);
  font-size: .9rem;
  line-height: 1.6;
}

/* ═══════════════════════════════════════
   DOCTOR / TEAM
   ═══════════════════════════════════════ */
.doctor-section {
  background: var(--white);
}

.doctor-card {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 40px;
  align-items: center;
}

.doctor-photo {
  width: 100%;
  max-width: 360px;
  border-radius: var(--radius-xl);
  aspect-ratio: 3 / 4;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

.doctor-info {
  max-width: 500px;
}

.doctor-info h3 {
  font-size: 1.5rem;
  margin-bottom: 6px;
}

.doctor-info .role {
  color: var(--accent);
  font-weight: 600;
  font-size: .9rem;
  margin-bottom: 16px;
  display: block;
}

.doctor-info p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.doctor-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.doc-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gradient-soft);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 500;
  color: var(--accent);
}

/* ═══════════════════════════════════════
   GALLERY — before-after
   ═══════════════════════════════════════ */
.gallery-section {
  background: var(--bg);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 40px;
}

.ba-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform .25s, box-shadow .25s;
}

.ba-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.ba-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
}

.ba-images img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.ba-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: var(--gradient);
  transform: translateX(-50%);
  z-index: 2;
}

.ba-divider::before,
.ba-divider::after {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Poppins', sans-serif;
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 4px 10px;
  border-radius: 50px;
  white-space: nowrap;
}

.ba-divider::before {
  content: 'До';
  top: 10px;
  background: var(--white);
  color: var(--text-muted);
  box-shadow: var(--shadow-sm);
}

.ba-divider::after {
  content: 'После';
  bottom: 10px;
  background: var(--gradient);
  color: var(--white);
}

.ba-caption {
  padding: 16px 20px;
  font-size: .9rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ba-caption strong {
  color: var(--text);
  font-weight: 600;
}

/* Full gallery grid (gallery page) */
.gallery-full-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 40px;
}

.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform .4s;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(24,24,27,.6) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity .3s;
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item-overlay span {
  color: var(--white);
  font-weight: 600;
  font-size: .9rem;
}

/* ═══════════════════════════════════════
   CTA BAND
   ═══════════════════════════════════════ */
.cta-band {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

.cta-band-bg {
  position: absolute;
  inset: 0;
  background: var(--gradient-vivid);
  z-index: 0;
}

.cta-band-bg::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
}

.cta-band-bg::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
}

.cta-band .container {
  position: relative;
  z-index: 1;
  text-align: center;
}

.cta-band h2 {
  color: var(--white);
  margin-bottom: 14px;
}

.cta-band p {
  color: rgba(255,255,255,.85);
  max-width: 500px;
  margin: 0 auto 32px;
  font-size: 1.05rem;
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: .95rem;
  color: var(--accent);
  background: var(--white);
  padding: 14px 32px;
  border-radius: 50px;
  transition: transform .2s, box-shadow .2s;
  min-height: 48px;
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,.15);
}

/* ═══════════════════════════════════════
   CONTACTS
   ═══════════════════════════════════════ */
.contacts-section {
  background: var(--white);
}

.contacts-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 40px;
}

.contact-card {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  border: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: transform .2s, box-shadow .2s;
}

.contact-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.contact-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: var(--radius-md);
  background: var(--gradient-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.contact-card h4 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  margin-bottom: 6px;
}

.contact-card p,
.contact-card a {
  color: var(--text-muted);
  font-size: .9rem;
  line-height: 1.6;
}

.contact-card a:hover {
  color: var(--accent);
}

.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 40px;
  border: 1px solid var(--border);
  height: 320px;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */
.site-footer {
  background: var(--text);
  color: rgba(255,255,255,.6);
  padding: 48px 0 32px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: center;
  text-align: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo img {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.footer-logo span {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: var(--white);
  font-size: 1.05rem;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.footer-nav a {
  font-size: .88rem;
  color: rgba(255,255,255,.55);
  transition: color .2s;
}

.footer-nav a:hover { color: var(--white); }

.footer-copy {
  font-size: .78rem;
  color: rgba(255,255,255,.35);
}

.footer-social {
  display: flex;
  gap: 14px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
  transition: background .2s, color .2s;
}

.footer-social a:hover {
  background: var(--accent);
  color: var(--white);
}

/* ═══════════════════════════════════════
   FLOATING WHATSAPP
   ═══════════════════════════════════════ */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: transform .25s, box-shadow .25s;
  animation: wa-pulse 3s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(37,211,102,.5);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: #fff;
}

@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,.4); }
  50% { box-shadow: 0 4px 20px rgba(37,211,102,.4), 0 0 0 12px rgba(37,211,102,.1); }
}

/* ═══════════════════════════════════════
   PAGE HERO (inner pages)
   ═══════════════════════════════════════ */
.page-hero {
  padding: calc(var(--header-h) + 48px) 0 48px;
  position: relative;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(124,58,237,.10) 0%, transparent 60%),
    var(--bg);
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  margin-bottom: 12px;
}

.page-hero p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 540px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.breadcrumb a {
  color: var(--accent);
  font-weight: 500;
}

.breadcrumb .sep { opacity: .4; }

/* ═══════════════════════════════════════
   SCROLL REVEAL
   ═══════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* stagger children */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .5s cubic-bezier(.22,1,.36,1), transform .5s cubic-bezier(.22,1,.36,1);
}

.reveal-stagger.visible > *:nth-child(1) { transition-delay: .05s; }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: .12s; }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: .19s; }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: .26s; }
.reveal-stagger.visible > *:nth-child(5) { transition-delay: .33s; }
.reveal-stagger.visible > *:nth-child(6) { transition-delay: .40s; }
.reveal-stagger.visible > *:nth-child(7) { transition-delay: .47s; }
.reveal-stagger.visible > *:nth-child(8) { transition-delay: .54s; }

.reveal-stagger.visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════ */

/* Tablet */
@media (min-width: 640px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .usp-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-full-grid { grid-template-columns: repeat(2, 1fr); }
  .contacts-grid { grid-template-columns: repeat(2, 1fr); }

  .service-full {
    flex-direction: row;
  }
  .service-full-img {
    width: 280px;
    min-width: 280px;
    height: auto;
    min-height: 260px;
  }

  .doctor-card {
    flex-direction: row;
    align-items: flex-start;
  }
  .doctor-photo {
    max-width: 280px;
  }
}

/* Desktop */
@media (min-width: 1024px) {
  .container { padding: 0 40px; }
  section { padding: 100px 0; }

  .burger { display: none; }
  .nav-desktop {
    display: flex;
    align-items: center;
    gap: 4px;
  }
  .header-cta { display: inline-flex; }

  .hero .container {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding-top: 0;
    padding-bottom: 0;
  }

  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .usp-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-full-grid { grid-template-columns: repeat(3, 1fr); }

  .service-full-img {
    width: 340px;
    min-width: 340px;
  }

  .doctor-photo {
    max-width: 340px;
  }
}

/* Large */
@media (min-width: 1280px) {
  .gallery-full-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ═══════════════════════════════════════
   SCHEMA / SEO HELPERS
   ═══════════════════════════════════════ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border-width: 0;
}
