:root {
  --navy: #0a1628;
  --navy-mid: #112240;
  --navy-light: #1a3358;
  --white: #ffffff;
  --off-white: #f8f9fc;
  --silver: #c8d0e0;
  --silver-light: #e8ecf4;
  --teal: #2dd4bf;
  --teal-dark: #0d9488;
  --teal-glow: rgba(45, 212, 191, 0.15);
  --gold: #d4a843;
  --gold-light: #f0c96b;
  --text-primary: #0a1628;
  --text-secondary: #4a5568;
  --text-muted: #8896a8;
  --glass: rgba(255,255,255,0.06);
  --glass-border: rgba(255,255,255,0.12);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--text-primary);
  cursor: auto;
}

html, body {
  overflow-x: hidden !important;
  max-width: 100% !important;
}
/* CUSTOM CURSOR */
#cursor {
  width: 12px; height: 12px;
  background: var(--teal);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 99999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s, background 0.3s;
  mix-blend-mode: normal;
}
#cursor-ring {
  width: 40px; height: 40px;
  border: 1.5px solid rgba(45,212,191,0.5);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 99998;
  transform: translate(-50%, -50%);
  transition: transform 0.35s cubic-bezier(.17,.67,.41,.99), width 0.3s, height 0.3s, border-color 0.3s;
}
body:has(a:hover) #cursor-ring,
body:has(button:hover) #cursor-ring { width: 60px; height: 60px; border-color: var(--teal); }

/* LOADING SCREEN */
#loader {
  position: fixed; inset: 0;
  background: var(--navy);
  z-index: 99990;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 24px;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
#loader.hidden { opacity: 0; visibility: hidden; }
.loader-logo {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem; font-weight: 700;
  color: var(--white); letter-spacing: -0.02em;
}
.loader-logo span { color: var(--teal); }
.loader-bar {
  width: 200px; height: 2px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px; overflow: hidden;
}
.loader-progress {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  border-radius: 2px;
  animation: loadProgress 2s cubic-bezier(.4,0,.2,1) forwards;
}
@keyframes loadProgress { to { width: 100%; } }
.loader-text {
  font-size: 0.75rem; letter-spacing: 0.3em;
  color: rgba(255,255,255,0.4); text-transform: uppercase;
}

/* SCROLL PROGRESS */
#scroll-progress {
  position: fixed; top: 0; left: 0; right: 0;
  height: 2px; z-index: 9999;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  transform-origin: left; transform: scaleX(0);
  transition: transform 0.1s linear;
}

/* NAVBAR */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 24px 60px;
  display: flex; align-items: center; justify-content: space-between;
  transition: all 0.4s cubic-bezier(.4,0,.2,1);
}
nav.scrolled {
  padding: 16px 60px;
  background: rgba(10,22,40,0.92);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; font-weight: 700;
  color: var(--white); text-decoration: none;
  letter-spacing: -0.02em;
}
.nav-logo span { color: var(--teal); }
.nav-links {
  display: flex; gap: 36px; list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,0.75);
  text-decoration: none; font-size: 0.875rem;
  font-weight: 500; letter-spacing: 0.02em;
  position: relative; transition: color 0.3s;
}
.nav-links a::after {
  content: ''; position: absolute;
  bottom: -4px; left: 0; right: 100%;
  height: 1px; background: var(--teal);
  transition: right 0.35s cubic-bezier(.4,0,.2,1);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { right: 0; }
.nav-cta {
  background: var(--teal);
  color: var(--navy) !important;
  padding: 10px 24px; border-radius: 100px;
  font-weight: 600 !important; font-size: 0.85rem !important;
  transition: all 0.3s !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--teal-dark) !important; color: var(--white) !important; transform: translateY(-1px); }
.nav-right { display: flex; align-items: center; gap: 20px; }
.dark-toggle {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--glass); border: 1px solid var(--glass-border);
  color: var(--white); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; transition: all 0.3s;
}
.dark-toggle:hover { background: rgba(45,212,191,0.15); border-color: var(--teal); }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px;
}
.hamburger span {
  width: 24px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: all 0.3s;
}

/* HERO */
#hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #070f1e 0%, #0d1f3c 40%, #0f2847 70%, #0a1628 100%);
  position: relative; overflow: hidden;
  display: flex; align-items: center;
}
#particles-canvas {
  position: absolute; inset: 0; z-index: 0;
}
.hero-bg-mesh {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(45,212,191,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(212,168,67,0.05) 0%, transparent 50%);
}
.hero-grid {
  position: absolute; inset: 0; z-index: 1;
  background-image:
    linear-gradient(rgba(45,212,191,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45,212,191,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 80%);
}
.hero-inner {
  position: relative; z-index: 10;
  max-width: 1400px; margin: 0 auto;
  padding: 140px 60px 80px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center; width: 100%;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(45,212,191,0.1);
  border: 1px solid rgba(45,212,191,0.25);
  color: var(--teal); padding: 6px 16px;
  border-radius: 100px; font-size: 0.75rem;
  letter-spacing: 0.15em; text-transform: uppercase;
  font-weight: 600; margin-bottom: 24px;
  animation: fadeInUp 0.8s 0.3s both;
}
.hero-badge::before {
  content: ''; width: 6px; height: 6px;
  background: var(--teal); border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 700; line-height: 1.1;
  color: var(--white); margin-bottom: 24px;
  letter-spacing: -0.03em;
  animation: fadeInUp 0.8s 0.5s both;
}
.hero-title em {
  font-style: italic; color: var(--teal);
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300; font-size: 1.1em;
}
.hero-subtitle {
  font-size: 1.1rem; line-height: 1.7;
  color: rgba(255,255,255,0.6);
  max-width: 520px; margin-bottom: 40px;
  animation: fadeInUp 0.8s 0.7s both;
}
.hero-ctas {
  display: flex; gap: 16px; flex-wrap: wrap;
  animation: fadeInUp 0.8s 0.9s both;
}
.btn-primary {
  background: var(--teal);
  color: var(--navy);
  padding: 16px 36px; border-radius: 100px;
  font-weight: 700; font-size: 0.9rem;
  letter-spacing: 0.02em; text-decoration: none;
  border: none; cursor: pointer;
  transition: all 0.3s cubic-bezier(.4,0,.2,1);
  display: inline-flex; align-items: center; gap: 8px;
  box-shadow: 0 8px 32px rgba(45,212,191,0.3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 48px rgba(45,212,191,0.4); background: #25c5b0; }
.btn-secondary {
  background: transparent;
  color: var(--white);
  padding: 15px 36px; border-radius: 100px;
  font-weight: 600; font-size: 0.9rem;
  border: 1px solid rgba(255,255,255,0.2);
  cursor: pointer; text-decoration: none;
  transition: all 0.3s; display: inline-flex; align-items: center; gap: 8px;
}
.btn-secondary:hover { border-color: var(--teal); color: var(--teal); transform: translateY(-2px); }
.hero-stats {
  display: flex; gap: 40px; margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
  animation: fadeInUp 0.8s 1.1s both;
}
.hero-stat { text-align: left; }
.hero-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 700;
  color: var(--white); line-height: 1;
}
.hero-stat-num span { color: var(--teal); }
.hero-stat-label {
  font-size: 0.75rem; color: rgba(255,255,255,0.45);
  letter-spacing: 0.08em; text-transform: uppercase;
  margin-top: 4px;
}

/* 3D TOOTH CANVAS AREA */
.hero-visual {
  position: relative;
  animation: fadeInRight 1s 0.4s both;
}
#tooth-canvas {
  width: 100%; height: 520px;
  display: block;
}
.hero-floating-cards {
  position: absolute; inset: 0; pointer-events: none;
}
.float-card {
  position: absolute;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px; padding: 14px 18px;
  animation: floatCard 6s ease-in-out infinite;
}
.float-card:nth-child(1) { top: 10%; left: 0; animation-delay: 0s; }
.float-card:nth-child(2) { bottom: 20%; right: 0; animation-delay: 1s; }
.float-card:nth-child(3) { top: 50%; left: -20px; animation-delay: 2s; }
@keyframes floatCard {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}
.float-card-icon { font-size: 1.4rem; margin-bottom: 4px; }
.float-card-title { font-size: 0.7rem; font-weight: 700; color: var(--white); letter-spacing: 0.05em; }
.float-card-sub { font-size: 0.65rem; color: rgba(255,255,255,0.5); }

/* MARQUEE */
.marquee-section {
  background: var(--navy-mid);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding: 18px 0; overflow: hidden;
}
.marquee-track {
  display: flex; gap: 60px;
  animation: marquee 30s linear infinite; width: max-content;
}
.marquee-item {
  display: flex; align-items: center; gap: 12px;
  color: rgba(255,255,255,0.35); font-size: 0.8rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  font-weight: 500; white-space: nowrap;
}
.marquee-dot { width: 4px; height: 4px; background: var(--teal); border-radius: 50%; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* SECTION COMMONS */
section { padding: 120px 0; }
.container { max-width: 1320px; margin: 0 auto; padding: 0 60px; }
.section-eyebrow {
  font-size: 0.7rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--teal); font-weight: 700; margin-bottom: 12px;
  display: flex; align-items: center; gap: 10px;
}
.section-eyebrow::before {
  content: ''; width: 30px; height: 1px; background: var(--teal);
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700; line-height: 1.15;
  letter-spacing: -0.025em; color: var(--navy);
}
.section-title em { font-style: italic; color: var(--teal-dark); }
.section-subtitle {
  font-size: 1rem; line-height: 1.75; color: var(--text-secondary);
  max-width: 560px; margin-top: 16px;
}
.reveal { opacity: 0; transform: translateY(40px); transition: all 0.8s cubic-bezier(.4,0,.2,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: all 0.8s cubic-bezier(.4,0,.2,1); }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(40px); transition: all 0.8s cubic-bezier(.4,0,.2,1); }
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* ABOUT */
#about { background: var(--navy); position: relative; overflow: hidden; }
#about::before {
  content: ''; position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(45,212,191,0.06) 0%, transparent 70%);
}
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; }
.about-image-area { position: relative; }
.about-img-main {
  width: 100%; aspect-ratio: 4/5;
  background: linear-gradient(135deg, #1a3358, #0f2847);
  border-radius: 24px; overflow: hidden;
  position: relative; border: 1px solid rgba(255,255,255,0.08);
}
.about-img-main-inner {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 6rem;
  background: linear-gradient(135deg, rgba(45,212,191,0.05), transparent);
}
.about-img-accent {
  position: absolute; bottom: -30px; right: -30px;
  width: 200px; aspect-ratio: 1;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  border-radius: 20px; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem; border: 4px solid var(--navy);
}
.about-award {
  position: absolute; top: 30px; left: -20px;
  background: var(--glass); backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: 14px; padding: 12px 16px;
  display: flex; align-items: center; gap: 10px;
}
.about-award-icon { font-size: 1.5rem; }
.about-award-text { font-size: 0.7rem; line-height: 1.4; }
.about-award-title { font-weight: 700; color: var(--white); }
.about-award-sub { color: rgba(255,255,255,0.45); }
.about-content .section-eyebrow,
.about-content .section-title { color: var(--white); }
.about-content .section-title em { color: var(--teal); }
.about-content .section-subtitle { color: rgba(255,255,255,0.6); }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 36px; }
.about-feature {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px; padding: 20px;
  transition: all 0.3s;
}
.about-feature:hover { background: rgba(45,212,191,0.08); border-color: rgba(45,212,191,0.25); }
.about-feature-icon { font-size: 1.5rem; margin-bottom: 8px; }
.about-feature-title { font-size: 0.85rem; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.about-feature-text { font-size: 0.78rem; color: rgba(255,255,255,0.5); line-height: 1.6; }
.about-stats { display: flex; gap: 32px; margin-top: 40px; }
.about-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem; font-weight: 700; color: var(--teal);
  line-height: 1;
}
.about-stat-label { font-size: 0.75rem; color: rgba(255,255,255,0.5); margin-top: 4px; }

/* SERVICES */
#services { background: var(--off-white); }
.services-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 64px; }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.service-card {
  background: var(--white);
  border-radius: 24px; padding: 36px 28px;
  border: 1px solid rgba(0,0,0,0.06);
  transition: all 0.4s cubic-bezier(.4,0,.2,1);
  cursor: pointer; position: relative; overflow: hidden;
  group: true;
}
.service-card::before {
  content: ''; position: absolute;
  bottom: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--teal-dark));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s cubic-bezier(.4,0,.2,1);
}
.service-card:hover { transform: translateY(-8px); box-shadow: 0 24px 64px rgba(10,22,40,0.12); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 60px; height: 60px; border-radius: 16px;
  background: linear-gradient(135deg, rgba(45,212,191,0.1), rgba(45,212,191,0.05));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; margin-bottom: 20px;
  transition: all 0.3s;
}
.service-card:hover .service-icon { background: linear-gradient(135deg, var(--teal), var(--teal-dark)); }
.service-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem; font-weight: 700;
  color: var(--navy); margin-bottom: 10px;
}
.service-desc { font-size: 0.82rem; line-height: 1.7; color: var(--text-secondary); }
.service-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--teal); font-size: 0.8rem; font-weight: 600;
  margin-top: 20px; text-decoration: none;
  transition: gap 0.3s;
}
.service-card:hover .service-link { gap: 10px; }

/* DOCTORS */
#doctors { background: var(--navy); overflow: hidden; }
#doctors .section-eyebrow { color: var(--teal); }
#doctors .section-title { color: var(--white); }
#doctors .section-title em { color: var(--teal); }
.doctors-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 60px; }
.doctor-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px; overflow: hidden;
  transition: all 0.4s cubic-bezier(.4,0,.2,1);
}
.doctor-card:hover { transform: translateY(-8px); background: rgba(255,255,255,0.07); border-color: rgba(45,212,191,0.25); box-shadow: 0 24px 64px rgba(0,0,0,0.4); }
.doctor-img {
  height: 260px; display: flex; align-items: center;
  justify-content: center; font-size: 5rem;
  background: linear-gradient(135deg, #1a3358, #0f2847);
  position: relative; overflow: hidden;
}
.doctor-img::after {
  content: ''; position: absolute;
  bottom: 0; left: 0; right: 0; height: 60px;
  background: linear-gradient(transparent, rgba(10,22,40,0.4));
}
.doctor-info { padding: 24px; }
.doctor-badge {
  font-size: 0.65rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--teal);
  font-weight: 700; margin-bottom: 6px;
}
.doctor-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; font-weight: 700;
  color: var(--white); margin-bottom: 4px;
}
.doctor-spec { font-size: 0.8rem; color: rgba(255,255,255,0.5); margin-bottom: 16px; }
.doctor-stats { display: flex; gap: 20px; margin-bottom: 20px; }
.doctor-stat-val { font-size: 1rem; font-weight: 700; color: var(--white); }
.doctor-stat-lbl { font-size: 0.65rem; color: rgba(255,255,255,0.4); letter-spacing: 0.06em; }
.doctor-actions { display: flex; gap: 10px; }
.doctor-btn {
  flex: 1; padding: 10px;
  border-radius: 100px; font-size: 0.78rem; font-weight: 600;
  cursor: pointer; transition: all 0.3s;
  text-align: center; text-decoration: none;
}
.doctor-btn-primary { background: var(--teal); color: var(--navy); border: none; }
.doctor-btn-primary:hover { background: var(--teal-dark); color: var(--white); }
.doctor-btn-ghost { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.2); }
.doctor-btn-ghost:hover { border-color: var(--teal); color: var(--teal); }

/* TESTIMONIALS */
#testimonials { background: var(--off-white); overflow: hidden; }
.testimonials-inner { position: relative; }
.testimonials-track-wrap { overflow: hidden; margin: 0 -60px; padding: 40px 60px; }
.testimonials-track {
  display: flex; gap: 24px;
  animation: scrollTestimonials 40s linear infinite;
  width: max-content;
}
.testimonials-track:hover { animation-play-state: paused; }
@keyframes scrollTestimonials { to { transform: translateX(-50%); } }
.testimonial-card {
  width: 380px; flex-shrink: 0;
  background: var(--white);
  border-radius: 24px; padding: 32px;
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 4px 24px rgba(10,22,40,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(10,22,40,0.12); }
.testimonial-stars { color: var(--gold); font-size: 0.9rem; letter-spacing: 2px; margin-bottom: 16px; }
.testimonial-text { font-size: 0.9rem; line-height: 1.8; color: var(--text-secondary); margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--navy));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
}
.testimonial-name { font-weight: 700; font-size: 0.875rem; color: var(--navy); }
.testimonial-treatment { font-size: 0.75rem; color: var(--text-muted); }

/* GALLERY */
#gallery { background: var(--navy); }
#gallery .section-title { color: var(--white); }
#gallery .section-eyebrow { color: var(--teal); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: auto; gap: 16px; margin-top: 60px; }
.gallery-item {
  border-radius: 16px; overflow: hidden;
  background: linear-gradient(135deg, #1a3358, #0f2847);
  position: relative; cursor: pointer;
  aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
  transition: transform 0.4s cubic-bezier(.4,0,.2,1);
  border: 1px solid rgba(255,255,255,0.06);
}
.gallery-item:nth-child(1) { grid-column: span 2; aspect-ratio: 16/9; font-size: 5rem; }
.gallery-item:hover { transform: scale(1.02); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(transparent 40%, rgba(10,22,40,0.85));
  opacity: 0; transition: opacity 0.3s;
  display: flex; align-items: flex-end; padding: 24px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-label { font-size: 0.85rem; font-weight: 600; color: var(--white); }
.gallery-tag { font-size: 0.7rem; color: var(--teal); }
.before-after-section { margin-top: 60px; }
.ba-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 32px; }
.ba-card {
  border-radius: 20px; overflow: hidden;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}
.ba-compare {
  position: relative; height: 220px;
  display: flex; overflow: hidden;
}
.ba-before, .ba-after {
  flex: 1; display: flex; align-items: center;
  justify-content: center; font-size: 2.5rem;
  position: relative;
}
.ba-before { background: linear-gradient(135deg, #2a1f1f, #3d2a2a); }
.ba-after { background: linear-gradient(135deg, #1a3358, #0f4035); }
.ba-divider {
  position: absolute; left: 50%; top: 0; bottom: 0;
  width: 2px; background: var(--white);
  transform: translateX(-50%); z-index: 2;
}
.ba-divider::after {
  content: '↔'; position: absolute;
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  background: var(--white); width: 32px; height: 32px;
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; font-size: 0.8rem; color: var(--navy);
}
.ba-label {
  position: absolute; top: 10px; font-size: 0.65rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.7); font-weight: 600;
  background: rgba(0,0,0,0.3); padding: 3px 8px; border-radius: 4px;
}
.ba-before .ba-label { left: 10px; }
.ba-after .ba-label { right: 10px; }
.ba-info { padding: 18px; }
.ba-treatment { font-size: 0.875rem; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.ba-duration { font-size: 0.75rem; color: rgba(255,255,255,0.45); }

/* BOOKING */
#booking { background: linear-gradient(135deg, var(--teal-dark) 0%, var(--navy) 60%); position: relative; overflow: hidden; }
#booking::before {
  content: ''; position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(45,212,191,0.15) 0%, transparent 70%);
}
.booking-inner { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: start; position: relative; z-index: 1; }
.booking-info .section-title,
.booking-info .section-eyebrow { color: var(--white); }
.booking-info .section-eyebrow::before { background: var(--white); }
.booking-info .section-subtitle { color: rgba(255,255,255,0.7); }
.booking-perks { margin-top: 36px; display: flex; flex-direction: column; gap: 16px; }
.booking-perk { display: flex; align-items: center; gap: 14px; }
.booking-perk-icon {
  width: 40px; height: 40px; border-radius: 12px;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0;
}
.booking-perk-text { font-size: 0.875rem; color: rgba(255,255,255,0.8); }
.booking-form {
  background: rgba(255,255,255,0.95);
  border-radius: 28px; padding: 48px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.3);
}
.form-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; font-weight: 700;
  color: var(--navy); margin-bottom: 32px;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: span 2; }
.form-label { font-size: 0.75rem; font-weight: 700; color: var(--navy); letter-spacing: 0.05em; text-transform: uppercase; }
.form-input, .form-select, .form-textarea {
  padding: 14px 16px; border-radius: 12px;
  border: 1.5px solid #e2e8f0;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem; color: var(--navy);
  transition: all 0.3s; background: var(--white);
  outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--teal); box-shadow: 0 0 0 3px rgba(45,212,191,0.15);
}
.form-textarea { resize: vertical; min-height: 100px; }
.form-submit {
  width: 100%; padding: 16px;
  background: var(--navy); color: var(--white);
  border: none; border-radius: 100px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem; font-weight: 700;
  cursor: pointer; margin-top: 8px;
  letter-spacing: 0.05em;
  transition: all 0.3s;
}
.form-submit:hover { background: var(--teal); color: var(--navy); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(45,212,191,0.35); }
#success-msg {
  display: none; text-align: center; padding: 32px;
}
#success-msg.show { display: block; }
.success-icon { font-size: 3rem; margin-bottom: 16px; }
.success-title { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--navy); font-weight: 700; margin-bottom: 8px; }
.success-text { font-size: 0.9rem; color: var(--text-secondary); }

/* COST ESTIMATOR */
#estimator { background: var(--off-white); }
.estimator-card {
  background: var(--white);
  border-radius: 28px; padding: 48px;
  border: 1px solid rgba(0,0,0,0.06);
  max-width: 800px; margin: 60px auto 0;
  box-shadow: 0 8px 48px rgba(10,22,40,0.08);
}
.estimator-title { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: var(--navy); text-align: center; margin-bottom: 8px; }
.estimator-sub { text-align: center; color: var(--text-secondary); margin-bottom: 36px; font-size: 0.9rem; }
.treatment-options { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-bottom: 28px; }
.treatment-opt {
  border: 1.5px solid #e2e8f0;
  border-radius: 14px; padding: 16px 12px;
  text-align: center; cursor: pointer;
  transition: all 0.3s;
}
.treatment-opt:hover { border-color: var(--teal); background: rgba(45,212,191,0.05); }
.treatment-opt.active { border-color: var(--teal); background: rgba(45,212,191,0.1); }
.treatment-opt-icon { font-size: 1.5rem; margin-bottom: 6px; }
.treatment-opt-name { font-size: 0.72rem; font-weight: 700; color: var(--navy); }
.treatment-opt-price { font-size: 0.65rem; color: var(--teal); font-weight: 600; }
.estimator-result {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border-radius: 16px; padding: 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.result-label { font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 4px; }
.result-price { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: var(--teal); }
.result-note { font-size: 0.75rem; color: rgba(255,255,255,0.4); margin-top: 4px; }

/* FAQ */
#faq { background: var(--white); }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 60px; }
.faq-item {
  background: var(--off-white);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 16px; overflow: hidden;
  transition: all 0.3s;
}
.faq-item.open { box-shadow: 0 4px 24px rgba(10,22,40,0.08); }
.faq-question {
  padding: 20px 24px;
  display: flex; align-items: center; justify-content: space-between;
  cursor: pointer; font-weight: 600; font-size: 0.9rem; color: var(--navy);
  gap: 12px;
}
.faq-toggle {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--white); border: 1px solid rgba(0,0,0,0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0; transition: all 0.3s; color: var(--teal);
}
.faq-item.open .faq-toggle { background: var(--teal); color: var(--white); transform: rotate(45deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s cubic-bezier(.4,0,.2,1), padding 0.3s;
  font-size: 0.85rem; line-height: 1.75; color: var(--text-secondary);
  padding: 0 24px;
}
.faq-item.open .faq-answer { max-height: 200px; padding: 0 24px 20px; }

/* BLOG */
#blog { background: var(--navy); }
#blog .section-title { color: var(--white); }
#blog .section-eyebrow { color: var(--teal); }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 60px; }
.blog-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px; overflow: hidden;
  transition: all 0.4s cubic-bezier(.4,0,.2,1);
}
.blog-card:hover { transform: translateY(-6px); background: rgba(255,255,255,0.07); border-color: rgba(45,212,191,0.2); }
.blog-thumb {
  height: 200px; display: flex; align-items: center;
  justify-content: center; font-size: 4rem;
  background: linear-gradient(135deg, #1a3358, #0f2847);
}
.blog-body { padding: 24px; }
.blog-category { font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--teal); font-weight: 700; margin-bottom: 10px; }
.blog-title { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 700; color: var(--white); line-height: 1.4; margin-bottom: 10px; }
.blog-excerpt { font-size: 0.8rem; color: rgba(255,255,255,0.5); line-height: 1.7; margin-bottom: 16px; }
.blog-meta { display: flex; align-items: center; justify-content: space-between; }
.blog-author { font-size: 0.75rem; color: rgba(255,255,255,0.4); }
.blog-readmore { font-size: 0.75rem; color: var(--teal); font-weight: 600; text-decoration: none; }

/* CONTACT */
#contact { background: var(--off-white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 80px; align-items: start; margin-top: 60px; }
.contact-info { display: flex; flex-direction: column; gap: 32px; }
.contact-card {
  background: var(--white);
  border-radius: 20px; padding: 24px;
  border: 1px solid rgba(0,0,0,0.06);
  display: flex; gap: 16px; align-items: flex-start;
  transition: all 0.3s;
}
.contact-card:hover { box-shadow: 0 8px 32px rgba(10,22,40,0.1); transform: translateY(-2px); }
.contact-icon {
  width: 48px; height: 48px; border-radius: 14px;
  background: linear-gradient(135deg, rgba(45,212,191,0.1), rgba(45,212,191,0.05));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; flex-shrink: 0;
}
.contact-card-title { font-weight: 700; font-size: 0.875rem; color: var(--navy); margin-bottom: 4px; }
.contact-card-text { font-size: 0.82rem; color: var(--text-secondary); line-height: 1.6; }
.map-placeholder {
  background: linear-gradient(135deg, var(--navy), #1a3358);
  border-radius: 24px; height: 320px;
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem; margin-bottom: 24px;
  position: relative; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
}
.map-placeholder::after {
  content: ''; position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(0deg, rgba(45,212,191,0.04) 0px, transparent 1px, transparent 40px, rgba(45,212,191,0.04) 41px),
    repeating-linear-gradient(90deg, rgba(45,212,191,0.04) 0px, transparent 1px, transparent 40px, rgba(45,212,191,0.04) 41px);
}
.map-pin { position: relative; z-index: 1; }
.contact-form-card {
  background: var(--white); border-radius: 24px;
  padding: 40px; border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 8px 48px rgba(10,22,40,0.08);
}
.hours-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 16px; }
.hours-item {
  display: flex; justify-content: space-between;
  font-size: 0.8rem; padding: 8px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  color: var(--text-secondary);
}
.hours-item .day { font-weight: 600; color: var(--navy); }

/* NEWSLETTER */
.newsletter-section {
  background: linear-gradient(90deg, var(--navy-mid), var(--navy));
  padding: 80px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.newsletter-inner {
  display: flex; align-items: center;
  justify-content: space-between; gap: 60px;
  max-width: 1320px; margin: 0 auto; padding: 0 60px;
}
.newsletter-text h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; font-weight: 700;
  color: var(--white); margin-bottom: 6px;
}
.newsletter-text p { font-size: 0.875rem; color: rgba(255,255,255,0.5); }
.newsletter-form { display: flex; gap: 12px; flex: 1; max-width: 480px; }
.newsletter-input {
  flex: 1; padding: 14px 20px;
  border-radius: 100px; border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.06); color: var(--white);
  font-family: 'DM Sans', sans-serif; font-size: 0.875rem;
  outline: none; transition: border-color 0.3s;
}
.newsletter-input::placeholder { color: rgba(255,255,255,0.35); }
.newsletter-input:focus { border-color: var(--teal); }
.newsletter-btn {
  background: var(--teal); color: var(--navy);
  border: none; padding: 14px 28px; border-radius: 100px;
  font-weight: 700; font-size: 0.875rem; cursor: pointer;
  transition: all 0.3s; white-space: nowrap;
}
.newsletter-btn:hover { background: var(--teal-dark); color: var(--white); }

/* FOOTER */
footer {
  background: #060e1d;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 80px 0 40px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; margin-bottom: 60px; }
.footer-brand {}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; font-weight: 700;
  color: var(--white); text-decoration: none;
  display: inline-block; margin-bottom: 16px;
}
.footer-logo span { color: var(--teal); }
.footer-tagline { font-size: 0.85rem; color: rgba(255,255,255,0.45); line-height: 1.75; max-width: 280px; margin-bottom: 24px; }
.footer-socials { display: flex; gap: 10px; }
.social-btn {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; cursor: pointer; transition: all 0.3s;
  text-decoration: none; color: rgba(255,255,255,0.6);
}
.social-btn:hover { background: var(--teal); border-color: var(--teal); color: var(--navy); }
.footer-col-title { font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.35); font-weight: 700; margin-bottom: 20px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.85rem; color: rgba(255,255,255,0.55); text-decoration: none; transition: color 0.3s; }
.footer-links a:hover { color: var(--teal); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 32px;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-copy { font-size: 0.8rem; color: rgba(255,255,255,0.3); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 0.8rem; color: rgba(255,255,255,0.3); text-decoration: none; transition: color 0.3s; }
.footer-legal a:hover { color: var(--teal); }

/* FLOATING BUTTONS */
.floating-btns {
  position: fixed; bottom: 70px !important; right: 32px;
  display: flex; flex-direction: column; gap: 12px;
  z-index: 900;
}
.float-btn {
  width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; cursor: pointer; border: none;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  transition: all 0.3s; text-decoration: none;
}
.float-whatsapp { background: #25D366; color: var(--white); }
.float-whatsapp:hover { transform: scale(1.1); box-shadow: 0 12px 32px rgba(37,211,102,0.4); }
.float-emergency { background: #e53e3e; color: var(--white); }
.float-emergency:hover { transform: scale(1.1); box-shadow: 0 12px 32px rgba(229,62,62,0.4); }


.VfChat, [id*="voiceflow"], iframe[src*="voiceflow"] {
  left: 20px !important;
  right: auto !important;
}
/* DARK MODE */
body.dark {
  --off-white: #0e1a2e;
  --white: #112240;
  --text-primary: #f0f4f8;
  --text-secondary: #8fa3b8;
  --silver-light: #1a3358;
}
body.dark #services { background: #0a1628; }
body.dark .service-card { background: #112240; border-color: rgba(255,255,255,0.05); }
body.dark .service-name { color: var(--white); }
body.dark .service-desc { color: rgba(255,255,255,0.5); }
body.dark #testimonials { background: #0a1628; }
body.dark .testimonial-card { background: #112240; border-color: rgba(255,255,255,0.05); }
body.dark .testimonial-text { color: rgba(255,255,255,0.6); }
body.dark .testimonial-name { color: var(--white); }
body.dark #faq { background: #0a1628; }
body.dark .faq-item { background: #112240; border-color: rgba(255,255,255,0.05); }
body.dark .faq-question { color: var(--white); }
body.dark #estimator { background: #0a1628; }
body.dark .estimator-card { background: #112240; }
body.dark .estimator-title { color: var(--white); }
body.dark .treatment-opt { border-color: rgba(255,255,255,0.08); }
body.dark .treatment-opt-name { color: var(--white); }
body.dark #contact { background: #0a1628; }
body.dark .contact-card { background: #112240; }
body.dark .contact-card-title { color: var(--white); }
body.dark .contact-form-card { background: #112240; }
body.dark .form-input, body.dark .form-select, body.dark .form-textarea {
  background: #0a1628; border-color: rgba(255,255,255,0.1); color: var(--white);
}
body.dark .booking-form { background: rgba(17,34,64,0.95); }
body.dark .form-title { color: var(--white); }
body.dark .form-label { color: rgba(255,255,255,0.7); }

/* ANIMATIONS */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

/* MOBILE NAV */
.mobile-menu {
  position: fixed; inset: 0; z-index: 999;
  background: rgba(10,22,40,0.97);
  backdrop-filter: blur(24px);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 32px;
  transform: translateX(100%); transition: transform 0.4s cubic-bezier(.4,0,.2,1);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 700; color: var(--white);
  text-decoration: none; transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--teal); }
.mobile-close {
  position: absolute; top: 24px; right: 24px;
  font-size: 2rem; color: var(--white); cursor: pointer;
  background: none; border: none;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .doctors-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  nav { padding: 20px 24px; }
  nav.scrolled { padding: 14px 24px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-inner { grid-template-columns: 1fr; padding: 120px 24px 60px; gap: 40px; }
  .hero-visual { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-image-area { display: none; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .doctors-grid { grid-template-columns: 1fr 1fr; }
  .booking-inner { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item:nth-child(1) { grid-column: span 2; }
  .ba-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .newsletter-inner { flex-direction: column; padding: 0 24px; }
  .container { padding: 0 24px; }
  section { padding: 80px 0; }
  .faq-grid { grid-template-columns: 1fr; }
  .treatment-options { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
}
@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .doctors-grid { grid-template-columns: 1fr; }
  .ba-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:nth-child(1) { grid-column: span 1; }
  .form-grid { grid-template-columns: 1fr; }
  .form-group.full { grid-column: span 1; }
  .footer-grid { grid-template-columns: 1fr; }
  .hours-grid { grid-template-columns: 1fr; }
  .services-header { flex-direction: column; align-items: flex-start; gap: 16px; }
   #cursor, #cursor-ring { display: none !important; }
}

/* ========================================
   MOBILE FIXES FOR SMILECRAFT DENTAL
   Add this at the END of your existing CSS
   ======================================== */

/* Hide custom cursor on touch devices */
@media (hover: none) and (pointer: coarse) {
  #cursor, #cursor-ring { display: none !important; }
  body { cursor: auto !important; }
}

/* Fix floating buttons overlapping Voiceflow */
@media (max-width: 900px) {
  .floating-btns {
    bottom: 100px !important;
    right: 16px !important;
  }
  .float-btn {
    width: 44px !important;
    height: 44px !important;
    font-size: 1.1rem !important;
  }

   #cursor, #cursor-ring { display: none !important; }

}

/* Fix navbar on mobile */
@media (max-width: 900px) {
  nav { padding: 16px 20px !important; }
  nav.scrolled { padding: 12px 20px !important; }
  .nav-logo { font-size: 1.1rem !important; }
}

/* Hero section mobile */
@media (max-width: 600px) {
  .hero-inner {
    padding: 100px 20px 60px !important;
    gap: 32px !important;
  }

 #cursor, #cursor-ring { display: none !important; }

  .hero-title {
    font-size: 2.2rem !important;
    line-height: 1.15 !important;
  }
  .hero-subtitle {
    font-size: 0.95rem !important;
  }
  .hero-ctas {
    flex-direction: column !important;
    gap: 12px !important;
  }
  .btn-primary, .btn-secondary {
    width: 100% !important;
    justify-content: center !important;
    padding: 14px 24px !important;
  }
  .hero-stats {
    gap: 16px !important;
    flex-wrap: wrap !important;
  }
  .hero-stat-num {
    font-size: 1.5rem !important;
  }
}

/* About section mobile */
@media (max-width: 600px) {
  .about-features {
    grid-template-columns: 1fr !important;
  }
  .about-stats {
    gap: 20px !important;
    flex-wrap: wrap !important;
  }
  .about-stat-num {
    font-size: 1.8rem !important;
  }
}

/* Services mobile */
@media (max-width: 600px) {
  .service-card {
    padding: 24px 20px !important;
  }
 #cursor, #cursor-ring { display: none !important; }

}

/* Doctors mobile */
@media (max-width: 600px) {
  .doctor-img {
    height: 200px !important;
  }

   #cursor, #cursor-ring { display: none !important; }
}

/* Booking form mobile */
@media (max-width: 600px) {
  .booking-form {
    padding: 28px 20px !important;
    border-radius: 20px !important;
  }
  .booking-inner {
    gap: 40px !important;
  }

   #cursor, #cursor-ring { display: none !important; }
}

/* Cost estimator mobile */
@media (max-width: 600px) {
  .estimator-card {
    padding: 28px 20px !important;
  }

   #cursor, #cursor-ring { display: none !important; }

  .treatment-options {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .estimator-result {
    flex-direction: column !important;
    gap: 16px !important;
    text-align: center !important;
  }
  .result-price {
    font-size: 1.6rem !important;
  }
}

/* Contact section mobile */
@media (max-width: 600px) {
  .contact-form-card {
    padding: 24px 20px !important;
  }

   #cursor, #cursor-ring { display: none !important; }

  .map-placeholder {
    height: 220px !important;
  }
}

/* Gallery mobile */
@media (max-width: 600px) {
  .ba-compare { height: 160px !important; }
}

/* Footer mobile */
@media (max-width: 600px) {
  footer { padding: 60px 0 40px !important; }
  .footer-bottom {
    flex-direction: column !important;
    gap: 16px !important;
    text-align: center !important;
  }
  .footer-legal {
    gap: 16px !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
  }
}

/* Newsletter mobile */
@media (max-width: 600px) {
  .newsletter-form {
    flex-direction: column !important;
    width: 100% !important;
  }
  .newsletter-btn {
    width: 100% !important;
  }
  .newsletter-text h3 {
    font-size: 1.2rem !important;
  }
}

/* Section padding mobile */
@media (max-width: 600px) {
  section { padding: 60px 0 !important; }
  .container { padding: 0 20px !important; }
  .section-title { font-size: 1.8rem !important; }
}

/* Mobile menu links size */
@media (max-width: 600px) {
  .mobile-menu a {
    font-size: 1.6rem !important;
  }
}
