:root {
  --bg: #ffffff;
  --surface: #f8fafc;
  --surface-alt: #f1f5f9;
  --ink: #0f172a;
  --ink-light: #334155;
  --muted: #64748b;
  --accent: #053b3f;
  --accent-deep: #06282b;
  --accent-light: #0d5c62;
  --mint: #00d3be;
  --mint-soft: #e6fffa;
  --mint-hover: #00b8a5;
  --line: #e2e8f0;
  --container: 1240px;
  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.06);
  --shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 24px 60px rgba(15, 23, 42, 0.14);
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  padding: 0;
  width: 100%;
  font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button, input, select, textarea {
  font: inherit;
}

.container {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
}

.page-shell {
  width: 100%;
  overflow: visible;
  padding-top: 0;
}

section {
  scroll-margin-top: 80px;
}

.section {
  padding: 100px 0;
}

/* ==========================================================================
   HEADER & NAVBAR
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  transition: var(--transition);
}

.topbar {
  background: var(--accent-deep);
  color: #fff;
  overflow: hidden;
  transition: all 0.3s ease;
  max-height: 60px;
}

.topbar__inner {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 8px 0;
  font-size: 13px;
  color: #cbd5e1;
}

.topbar__meta,
.topbar__item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.topbar__meta {
  gap: 20px;
}

.topbar__link {
  color: inherit;
  transition: color 0.2s ease;
}

.topbar__link:hover {
  color: var(--mint);
}

.topbar__divider {
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.2);
}

.navbar__inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  gap: 36px;
  transition: min-height 0.25s ease;
}

/* Scrolled Header State */
.site-header--scrolled {
  box-shadow: var(--shadow);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
}

.site-header--scrolled .topbar {
  max-height: 0;
  opacity: 0;
  padding: 0;
}

.site-header--scrolled .navbar__inner {
  min-height: 68px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.brand__icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--mint-soft);
  color: var(--accent);
  display: grid;
  place-items: center;
}

.brand__strong {
  font-weight: 800;
  color: var(--accent);
}

.brand--footer {
  font-size: 24px;
}

.brand--footer .brand__icon {
  background: rgba(255, 255, 255, 0.1);
  color: var(--mint);
}

.brand--footer span:last-child {
  color: #fff;
}

.navbar__separator {
  width: 1px;
  height: 28px;
  background: var(--line);
  flex: 0 0 auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 1 1 auto;
  font-size: 15px;
  font-weight: 500;
}

.main-nav a {
  position: relative;
  color: var(--ink-light);
  padding: 6px 0;
  transition: color 0.2s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--accent);
  font-weight: 600;
}

.main-nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--mint);
  border-radius: 2px;
  transition: width 0.2s ease;
}

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

.navbar__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 10px;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
}

.menu-toggle span {
  width: 100%;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 16px 32px;
  background: var(--accent);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border-radius: var(--radius);
  border: 0;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 14px rgba(5, 59, 63, 0.25);
}

.button:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(5, 59, 63, 0.35);
}

.button:active {
  transform: translateY(0);
}

.button svg {
  transition: transform 0.2s ease;
}

.button:hover svg {
  transform: translateX(4px);
}

.button--secondary {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  box-shadow: none;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.button--secondary:hover {
  background: rgba(255, 255, 255, 0.22);
  box-shadow: none;
}

.button--header {
  min-height: 48px;
  padding: 12px 24px;
  font-size: 15px;
  background: var(--mint);
  color: var(--accent-deep);
  box-shadow: 0 4px 14px rgba(0, 211, 190, 0.3);
}

.button--header:hover {
  background: var(--mint-hover);
  color: #fff;
}

.button--small {
  min-height: 48px;
  padding: 12px 24px;
  font-size: 15px;
  width: fit-content;
}

.button--full {
  width: 100%;
}

/* ==========================================================================
   HERO SECTION (BALANCED FULL-HEIGHT LAYOUT)
   ========================================================================== */
.hero {
  position: relative;
  min-height: calc(100vh - 120px);
  padding: 60px 0;
  background:
    radial-gradient(ellipse 80% 50% at 70% 30%, rgba(0, 211, 190, 0.15) 0%, transparent 60%),
    radial-gradient(circle at 20% 80%, rgba(5, 59, 63, 0.4) 0%, transparent 50%),
    linear-gradient(135deg, #031c1e 0%, #06282b 60%, #0a363a 100%);
  color: #fff;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__inner {
  position: relative;
  z-index: 2;
}

.hero__grid-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.hero__copy {
  position: relative;
  z-index: 2;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(0, 211, 190, 0.12);
  border: 1px solid rgba(0, 211, 190, 0.3);
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  color: var(--mint);
  margin-bottom: 20px;
}

.badge__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 10px var(--mint);
}

.eyebrow {
  margin: 0 0 16px;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--mint);
}

.eyebrow--light {
  color: var(--mint);
}

.eyebrow--muted {
  color: #94a3b8;
}

h1 {
  margin: 0;
  font-size: clamp(38px, 4.5vw, 60px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: #ffffff;
}

h2 {
  margin: 0;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.section-title-light {
  color: #ffffff;
}

.hero__text {
  font-size: 18px;
  line-height: 1.6;
  margin: 18px 0 32px;
  color: #e2e8f0;
  max-width: 540px;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__trust {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.trust-group {
  display: flex;
  align-items: center;
  gap: 16px;
}

.trust-avatars {
  display: flex;
  align-items: center;
}

.trust-avatars img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent-deep);
  margin-left: -12px;
  background: var(--accent);
}

.trust-avatars img:first-child {
  margin-left: 0;
}

.trust-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 13px;
  color: #cbd5e1;
}

.trust-stars {
  font-weight: 700;
  color: #f59e0b;
}

/* Hero Visual & Glass Cards */
.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero__image-wrapper {
  position: relative;
  width: 100%;
  max-width: 480px;
  background: rgba(6, 40, 43, 0.6);
  border-radius: var(--radius-lg);
}

.hero__main-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.15);
  background: var(--accent-deep);
}

.hero__card {
  position: absolute;
  background: rgba(6, 40, 43, 0.92);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(0, 211, 190, 0.35);
  border-radius: 16px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: #ffffff;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35);
  z-index: 5;
}

.hero__card strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
}

.hero__card span {
  display: block;
  font-size: 12px;
  color: #94a3b8;
  margin-top: 2px;
}

.hero__card-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--mint);
  color: var(--accent-deep);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.hero__card--badge {
  top: 24px;
  left: 0;
  animation: floatBadge 4s ease-in-out infinite;
}

.hero__card--rating {
  bottom: 24px;
  right: 0;
  animation: floatRating 4s ease-in-out infinite 2s;
}

.rating-number {
  font-size: 26px;
  font-weight: 800;
  color: var(--mint);
  flex-shrink: 0;
}

@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes floatRating {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* ==========================================================================
   PANELS & IMAGES
   ========================================================================== */
.about__layout,
.services__layout,
.testimonial__layout {
  display: grid;
  grid-template-columns: minmax(0, 480px) minmax(0, 1fr);
  gap: 80px;
  align-items: center;
}

.image-panel {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--surface-alt);
  display: flex;
  flex-direction: column;
}

.image-panel--tall {
  height: 480px;
}

.image-panel--wide {
  height: 380px;
  margin-top: 40px;
}

.image-panel--offset {
  transform: translateY(0);
}

.image-panel__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  flex: 1;
}

.corner-grid {
  position: absolute;
  display: grid;
  grid-template-columns: repeat(2, 40px);
  grid-template-rows: repeat(2, 40px);
  z-index: 2;
  pointer-events: none;
}

.corner-grid span:nth-child(1) { background: var(--mint); }
.corner-grid span:nth-child(2) { background: rgba(255, 255, 255, 0.4); }
.corner-grid span:nth-child(3) { background: rgba(255, 255, 255, 0.2); }
.corner-grid span:nth-child(4) { background: var(--accent); }

.corner-grid--left { left: 0; bottom: 0; }
.corner-grid--right { right: 0; top: 0; }

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #ffffff;
  color: var(--accent);
  border: 0;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 0 0 12px rgba(255, 255, 255, 0.3), var(--shadow-lg);
  transition: var(--transition);
}

.play-button:hover {
  transform: translate(-50%, -50%) scale(1.1);
  background: var(--mint);
  color: #ffffff;
  box-shadow: 0 0 0 18px rgba(0, 211, 190, 0.25), var(--shadow-lg);
}

.section-copy {
  font-size: 18px;
  line-height: 1.6;
  color: var(--muted);
  margin-top: 20px;
}

.section-copy--light {
  color: #cbd5e1;
}

/* ==========================================================================
   FEATURES
   ========================================================================== */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  margin-top: 40px;
}

.feature-card {
  padding: 24px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(0, 211, 190, 0.3);
}

.feature-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: var(--accent-deep);
  color: var(--mint);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
}

.feature-card h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
}

.feature-card p {
  margin: 10px 0 0;
  font-size: 15px;
  color: var(--muted);
}

/* ==========================================================================
   STATISTICS BAND
   ========================================================================== */
.stats-band {
  padding: 88px 0;
  background: linear-gradient(135deg, var(--accent-deep) 0%, #041c1e 100%);
  color: #fff;
}

.stats-band__inner {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  align-items: flex-end;
}

.stats-band h2 {
  color: #fff;
}

.stats-band__copy {
  max-width: 540px;
  font-size: 17px;
  color: #cbd5e1;
  margin: 0;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  margin-top: 56px;
}

.stat-card {
  padding: 32px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  backdrop-filter: blur(8px);
}

.stat-card strong {
  display: block;
  font-size: 48px;
  font-weight: 800;
  color: var(--mint);
  line-height: 1.1;
}

.stat-card span {
  display: block;
  margin-top: 10px;
  font-size: 16px;
  color: #e2e8f0;
  font-weight: 500;
}

/* ==========================================================================
   SERVICES
   ========================================================================== */
.service-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.service-item {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: var(--transition);
}

.service-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: var(--mint);
}

.service-item__icon {
  width: 72px;
  height: 72px;
  border-radius: 14px;
  background: var(--accent);
  color: var(--mint);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.service-item h3 {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
}

.service-item p {
  margin: 8px 0 0;
  font-size: 15px;
  color: var(--muted);
}

/* ==========================================================================
   DOCTORS
   ========================================================================== */
.section--dark {
  position: relative;
  background: var(--accent-deep);
  color: #fff;
  overflow: hidden;
  padding: 120px 0;
}

.section--dark .container,
.process-section .container {
  position: relative;
  z-index: 10;
}

.doctor-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  margin-top: 60px;
}

.doctor-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.doctor-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.doctor-card__photo {
  position: relative;
  height: 320px;
  width: 100%;
  overflow: hidden;
  background: #f1f5f9;
  flex-shrink: 0;
}

.doctor-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.4s ease;
  display: block;
}

.doctor-card:hover .doctor-card__img {
  transform: scale(1.05);
}

.doctor-card__socials {
  position: absolute;
  bottom: 16px;
  left: 16px;
  display: flex;
  gap: 8px;
  z-index: 2;
}

.doctor-card__socials a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--accent-deep);
  color: #fff;
  display: grid;
  place-items: center;
  transition: var(--transition);
}

.doctor-card__socials a:hover {
  background: var(--mint);
  color: var(--accent-deep);
  transform: translateY(-2px);
}

.doctor-card__body {
  padding: 24px;
  color: var(--ink);
}

.doctor-card__body h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
}

.doctor-card__body p {
  margin: 6px 0 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.quote-mark {
  margin: 24px 0 12px;
}

.testimonial__person {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 36px;
}

.avatar-img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--mint);
  box-shadow: var(--shadow-sm);
  background: var(--accent);
}

.testimonial__person h3 {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
}

.testimonial__person p {
  margin: 4px 0 0;
  font-size: 14px;
  color: var(--muted);
}

/* ==========================================================================
   PROCESS
   ========================================================================== */
.process-section {
  background: var(--surface);
  position: relative;
  overflow: hidden;
}

.process-section__shape,
.section__shape {
  position: absolute;
  left: 0;
  width: 100%;
  height: 80px;
  background: var(--bg);
  z-index: 1;
  pointer-events: none;
}

.process-section__shape--top,
.section__shape--top {
  top: 0;
  clip-path: ellipse(60% 100% at 50% 0%);
}

.process-section__shape--bottom,
.section__shape--bottom {
  bottom: 0;
  clip-path: ellipse(60% 100% at 50% 100%);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  margin-top: 60px;
}

.process-card {
  padding: 36px 30px;
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.process-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--mint);
}

.process-card__icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: var(--mint-soft);
  color: var(--accent);
  display: grid;
  place-items: center;
}

.process-card h3 {
  margin: 24px 0 12px;
  font-size: 22px;
  font-weight: 700;
}

.process-card p {
  margin: 0;
  font-size: 15px;
  color: var(--muted);
}

.process-section__cta {
  margin-top: 56px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: var(--accent-deep);
  color: #fff;
}

.site-footer__main {
  display: grid;
  grid-template-columns: minmax(0, 380px) minmax(0, 1fr);
  gap: 80px;
  padding: 80px 0 60px;
}

.site-footer__brand p {
  margin-top: 20px;
  color: #cbd5e1;
  font-size: 15px;
  line-height: 1.7;
}

.socials {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}

.socials a {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  display: grid;
  place-items: center;
  transition: var(--transition);
}

.socials a:hover {
  background: var(--mint);
  color: var(--accent-deep);
  transform: translateY(-2px);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}

.footer-links h3 {
  margin: 0 0 24px;
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
}

.footer-links a {
  display: block;
  margin-bottom: 14px;
  color: #94a3b8;
  font-size: 15px;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--mint);
}

.site-footer__copyright {
  background: #041a1c;
  color: #94a3b8;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  opacity: 1 !important;
  transform: none !important;
  position: relative;
  z-index: 10;
}

.site-footer__copyright-inner {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: 14px;
}

.copyright-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

.copyright-group a:hover {
  color: var(--mint);
}

.copyright-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #475569;
}

/* ==========================================================================
   MODALS & TOAST
   ========================================================================== */
.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: var(--transition);
}

.modal.modal--open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(8px);
}

.modal__content {
  position: relative;
  z-index: 2;
  width: min(600px, 100%);
  max-height: 90vh;
  overflow-y: auto;
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  transform: translateY(20px) scale(0.95);
  transition: var(--transition);
}

.modal.modal--open .modal__content {
  transform: translateY(0) scale(1);
}

.modal__content--video {
  width: min(900px, 100%);
  padding: 0;
  background: #000000;
  overflow: hidden;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--surface);
  border: 0;
  font-size: 24px;
  color: var(--ink);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: var(--transition);
  z-index: 10;
}

.modal__content--video .modal__close {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.modal__close:hover {
  background: var(--accent);
  color: #fff;
}

.modal__header h2 {
  font-size: 28px;
  margin-top: 4px;
}

.modal__subtitle {
  font-size: 15px;
  color: var(--muted);
  margin: 8px 0 24px;
}

.modal__form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

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

.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-light);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
  font-size: 15px;
  color: var(--ink);
  transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: 0;
  border-color: var(--mint);
  box-shadow: 0 0 0 3px rgba(0, 211, 190, 0.2);
}

/* Toast */
.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 2000;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  min-width: 320px;
  max-width: 420px;
  padding: 16px 20px;
  background: #ffffff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border-left: 4px solid var(--mint);
  transform: translateX(120%);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.toast.toast--visible {
  transform: translateX(0);
}

.toast__icon {
  color: var(--mint);
  flex-shrink: 0;
  margin-top: 2px;
}

.toast__title {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
}

.toast__message {
  margin: 4px 0 0;
  font-size: 13px;
  color: var(--muted);
}

.toast__close {
  background: none;
  border: 0;
  font-size: 20px;
  color: var(--muted);
  cursor: pointer;
  margin-left: auto;
}

/* ==========================================================================
   RESPONSIVE DESIGN BREAKPOINTS
   ========================================================================== */
@media (max-width: 1024px) {
  .hero {
    min-height: auto;
    padding: 80px 0;
  }

  .hero__grid-container {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .hero__copy {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero__text {
    max-width: 600px;
  }

  .hero__actions {
    justify-content: center;
  }

  .about__layout,
  .services__layout,
  .testimonial__layout,
  .site-footer__main {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .stats-band__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .doctor-grid,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .navbar__inner {
    justify-content: space-between;
    width: 100%;
  }

  .navbar__actions {
    margin-left: auto;
  }

  .topbar {
    display: none;
  }

  .navbar__separator {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: 84px;
    left: 0;
    width: 100%;
    height: calc(100vh - 84px);
    background: #ffffff;
    flex-direction: column;
    align-items: flex-start;
    padding: 32px 24px;
    gap: 20px;
    box-shadow: var(--shadow-lg);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 90;
  }

  .main-nav.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .main-nav a {
    font-size: 20px;
    width: 100%;
  }

  .button--header {
    display: none;
  }

  .feature-grid,
  .stat-grid,
  .doctor-grid,
  .process-grid,
  .footer-links {
    grid-template-columns: 1fr;
  }

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

  .hero__card--badge {
    left: -10px;
  }

  .hero__card--rating {
    right: -10px;
  }
}

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

  h1 {
    font-size: 34px;
  }

  h2 {
    font-size: 26px;
  }

  .hero__main-img {
    height: 380px;
  }

  .hero__card {
    padding: 10px 14px;
  }

  .hero__card strong {
    font-size: 13px;
  }

  .hero__card span {
    font-size: 11px;
  }

  .hero__actions {
    flex-direction: column;
    width: 100%;
  }

  .hero__actions .button {
    width: 100%;
  }

  .site-footer__copyright-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .modal__content {
    padding: 24px;
  }
}

/* ==========================================================================
   PREMIUM EXTENSIONS: BEFORE & AFTER SLIDER
   ========================================================================== */
.ba-section {
  background: var(--surface);
  position: relative;
  overflow: hidden;
}

.ba-wrapper {
  max-width: 960px;
  margin: 40px auto 0;
  position: relative;
}

.ba-slider {
  position: relative;
  width: 100%;
  height: 480px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  user-select: none;
  border: 2px solid rgba(0, 211, 190, 0.25);
  background: #03191b;
}

.ba-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.ba-image--before {
  z-index: 1;
  width: 50%;
  overflow: hidden;
  border-right: 2px solid var(--mint);
}

.ba-image--before img,
.ba-image--after img {
  width: 960px;
  height: 480px;
  object-fit: cover;
  max-width: none;
}

.ba-image--before img {
  position: absolute;
  top: 0;
  left: 0;
}

.ba-badge {
  position: absolute;
  top: 20px;
  z-index: 3;
  padding: 8px 18px;
  background: rgba(3, 25, 27, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 211, 190, 0.3);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 20px;
}

.ba-badge--before { left: 20px; }
.ba-badge--after { right: 20px; color: var(--mint); }

.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background: var(--mint);
  z-index: 4;
  cursor: ew-resize;
  transform: translateX(-50%);
  box-shadow: 0 0 16px rgba(0, 211, 190, 0.8);
}

.ba-handle__button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--mint);
  color: var(--accent-deep);
  display: grid;
  place-items: center;
  box-shadow: 0 0 24px rgba(0, 211, 190, 0.6), var(--shadow);
  border: 3px solid #ffffff;
}

.ba-range {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 5;
  cursor: ew-resize;
  margin: 0;
}

/* ==========================================================================
   PREMIUM EXTENSIONS: TREATMENT COST & INSTALLMENT CALCULATOR
   ========================================================================== */
.calc-card {
  background: linear-gradient(135deg, rgba(6, 40, 43, 0.95) 0%, rgba(3, 25, 27, 0.98) 100%);
  border: 1px solid rgba(0, 211, 190, 0.3);
  border-radius: var(--radius-lg);
  padding: 40px;
  color: #fff;
  box-shadow: var(--shadow-lg);
  margin-top: 40px;
}

.calc-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

.calc-title {
  color: var(--mint);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
}

.calc-services-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.calc-chip {
  padding: 10px 18px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #e2e8f0;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.calc-chip:hover,
.calc-chip.active {
  background: var(--mint);
  color: var(--accent-deep);
  border-color: var(--mint);
  box-shadow: 0 4px 14px rgba(0, 211, 190, 0.4);
}

.calc-slider-group {
  margin-bottom: 24px;
}

.calc-slider-header {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: #cbd5e1;
  margin-bottom: 10px;
}

.calc-slider-header strong {
  color: var(--mint);
  font-size: 16px;
}

.calc-slider {
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.15);
  accent-color: var(--mint);
  cursor: pointer;
}

.calc-summary-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(0, 211, 190, 0.25);
  border-radius: var(--radius);
  padding: 30px;
  text-align: center;
}

.calc-price-display {
  font-size: 42px;
  font-weight: 800;
  color: var(--mint);
  line-height: 1.1;
  margin: 12px 0 6px;
}

.calc-installment-text {
  font-size: 14px;
  color: #94a3b8;
  margin-bottom: 20px;
}

.calc-installment-highlight {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(0, 211, 190, 0.15);
  border-radius: 20px;
  color: var(--mint);
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 20px;
}

/* ==========================================================================
   PREMIUM EXTENSIONS: HIGH-TECH CLINIC SHOWCASE TABS
   ========================================================================== */
.tech-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.tech-tab-btn {
  padding: 12px 24px;
  border-radius: 30px;
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--ink-light);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: var(--transition);
}

.tech-tab-btn:hover,
.tech-tab-btn.active {
  background: var(--accent);
  color: #ffffff;
  border-color: var(--accent);
  box-shadow: 0 4px 14px rgba(5, 59, 63, 0.25);
}

.tech-content-panel {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
}

.tech-content-panel.active {
  display: grid;
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.tech-specs-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 24px;
}

.tech-spec-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--ink);
  font-weight: 600;
}

.tech-spec-item svg {
  color: var(--mint);
  flex-shrink: 0;
}

/* ==========================================================================
   PREMIUM EXTENSIONS: FAQ ACCORDION WITH FILTER
   ========================================================================== */
.faq-filter-bar {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.faq-filter-btn {
  padding: 8px 20px;
  border-radius: 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  transition: var(--transition);
}

.faq-filter-btn:hover,
.faq-filter-btn.active {
  background: var(--mint-soft);
  color: var(--accent);
  border-color: var(--mint);
}

.faq-accordion {
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: var(--mint);
}

.faq-trigger {
  width: 100%;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: 0;
  text-align: left;
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--surface);
  color: var(--accent);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  background: var(--mint);
  color: var(--accent-deep);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 28px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.faq-item.active .faq-body {
  max-height: 300px;
  padding: 0 28px 22px;
}

/* ==========================================================================
   PREMIUM EXTENSIONS: MULTI-STEP BOOKING WIZARD MODAL
   ========================================================================== */
.wizard-progress {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin: 24px 0 32px;
}

.wizard-progress::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 30px;
  right: 30px;
  height: 2px;
  background: var(--line);
  z-index: 1;
}

.wizard-progress-bar {
  position: absolute;
  top: 18px;
  left: 30px;
  height: 2px;
  background: var(--mint);
  z-index: 1;
  transition: width 0.3s ease;
  width: 0%;
}

.wizard-step-node {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.node-circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid var(--line);
  color: var(--muted);
  font-weight: 700;
  font-size: 14px;
  display: grid;
  place-items: center;
  transition: var(--transition);
}

.wizard-step-node.active .node-circle {
  background: var(--accent);
  border-color: var(--mint);
  color: var(--mint);
  box-shadow: 0 0 12px rgba(0, 211, 190, 0.4);
}

.wizard-step-node.completed .node-circle {
  background: var(--mint);
  border-color: var(--mint);
  color: var(--accent-deep);
}

.node-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
}

.wizard-step-node.active .node-label {
  color: var(--accent);
  font-weight: 700;
}

.wizard-step-panel {
  display: none;
}

.wizard-step-panel.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

.service-select-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.service-select-card {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 12px;
}

.service-select-card:hover,
.service-select-card.selected {
  border-color: var(--mint);
  background: var(--mint-soft);
}

.doctor-select-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 24px;
}

.doctor-select-card {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
}

.doctor-select-card img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 8px;
}

.doctor-select-card:hover,
.doctor-select-card.selected {
  border-color: var(--mint);
  background: var(--mint-soft);
}

.time-slots-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.time-chip {
  padding: 10px;
  text-align: center;
  border-radius: var(--radius-sm);
  background: var(--surface);
  border: 1px solid var(--line);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.time-chip:hover,
.time-chip.selected {
  background: var(--accent);
  color: var(--mint);
  border-color: var(--accent);
}

.wizard-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

/* ==========================================================================
   PREMIUM EXTENSIONS: FLOATING EMERGENCY ACTION WIDGET
   ========================================================================== */
.floating-emergency {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 99;
}

.floating-emergency__btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  background: var(--accent-deep);
  color: #fff;
  border-radius: 40px;
  border: 1px solid rgba(0, 211, 190, 0.4);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: var(--transition);
  font-size: 14px;
  font-weight: 700;
}

.floating-emergency__btn:hover {
  transform: translateY(-4px) scale(1.04);
  background: var(--accent);
  box-shadow: 0 12px 32px rgba(0, 211, 190, 0.4);
}

.floating-pulse {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 10px #22c55e;
  animation: pulseGreen 1.8s infinite;
}

@keyframes pulseGreen {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(34, 197, 94, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

@media (max-width: 768px) {
  .ba-slider { height: 340px; }
  .ba-image--before img, .ba-image--after img { height: 340px; }
  .calc-grid { grid-template-columns: 1fr; gap: 24px; }
  .tech-content-panel { grid-template-columns: 1fr; gap: 24px; }
  .doctor-select-grid { grid-template-columns: 1fr; }
  .service-select-grid { grid-template-columns: 1fr; }
  .time-slots-grid { grid-template-columns: repeat(2, 1fr); }
  .floating-emergency { bottom: 16px; left: 16px; }
}

/* ==========================================================================
   SMOOTH SCROLL PROGRESS BAR
   ========================================================================== */
.scroll-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--mint) 0%, #38bdf8 50%, #f59e0b 100%);
  z-index: 1001;
  width: 0%;
  transition: width 0.08s linear;
  box-shadow: 0 0 10px rgba(0, 211, 190, 0.8);
}

/* ==========================================================================
   MOTION & SCROLL-BASED SMOOTH ENTRANCE ANIMATIONS (SLOW & EXTRA SMOOTH)
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.93);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal.active,
.reveal-left.active,
.reveal-right.active,
.reveal-scale.active {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1);
}

/* Ensure Button and Doctor Cards sit above background wave shapes */
.process-section {
  position: relative;
  z-index: 2;
  padding-bottom: 110px !important;
}

.process-section__cta {
  position: relative;
  z-index: 20 !important;
  margin-top: 40px;
}

.doctors {
  position: relative;
  z-index: 5;
  overflow: visible !important;
}

.doctor-grid {
  position: relative;
  z-index: 15 !important;
}

.doctor-card {
  position: relative;
  z-index: 20 !important;
}

.stagger-1 { transition-delay: 0.08s; }
.stagger-2 { transition-delay: 0.16s; }
.stagger-3 { transition-delay: 0.24s; }
.stagger-4 { transition-delay: 0.32s; }

/* Interactive Hover Depth Effects */
.feature-card:hover,
.process-card:hover,
.service-item:hover,
.doctor-card:hover,
.stat-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

/* Glassmorphism Shine Effect on Hover */
.feature-card,
.process-card,
.doctor-card,
.stat-card,
.calc-card {
  position: relative;
  overflow: hidden;
}

.feature-card::before,
.process-card::before,
.doctor-card::before,
.stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
  transform: skewX(-20deg);
  transition: left 0.75s ease;
  pointer-events: none;
}

/* Live Clinic Status Badge */
.clinic-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 12px;
  background: rgba(0, 211, 190, 0.12);
  border: 1px solid rgba(0, 211, 190, 0.3);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  color: var(--mint);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 10px #10b981;
  animation: statusPulse 2s infinite;
}

@keyframes statusPulse {
  0% { transform: scale(1); opacity: 1; box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { transform: scale(1.25); opacity: 0.8; box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
  100% { transform: scale(1); opacity: 1; box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

/* Before & After Makeover Case Switcher Chips */
.ba-case-chips {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 24px 0 32px;
  flex-wrap: wrap;
}

.ba-case-chip {
  padding: 10px 20px;
  border-radius: 30px;
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
}

.ba-case-chip:hover,
.ba-case-chip.active {
  background: var(--accent);
  color: #ffffff;
  border-color: var(--accent);
  box-shadow: 0 4px 14px rgba(5, 59, 63, 0.25);
  transform: translateY(-2px);
}

.doctor-book-btn {
  margin-top: 16px;
  background: var(--accent);
  color: #fff;
  border-radius: 10px;
  transition: var(--transition);
}

.doctor-book-btn:hover {
  background: var(--mint);
  color: var(--accent-deep);
}

/* ==========================================================================
   FULL RESPONSIVENESS (PERFECT BREAKPOINTS FOR MOBILE & TABLETS)
   ========================================================================== */
@media (max-width: 1024px) {
  .hero__grid-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero__copy {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero__actions {
    justify-content: center;
  }

  .doctor-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }

  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

  .hero {
    padding: 36px 0 44px;
    min-height: auto;
  }

  .hero__text {
    font-size: 15px;
    line-height: 1.5;
    margin: 12px 0 20px;
    color: #e2e8f0;
  }

  .hero__actions {
    gap: 10px;
    width: 100%;
  }

  .hero__actions .button {
    min-height: 48px;
    padding: 12px 20px;
    font-size: 14px;
  }

  .hero__trust {
    margin-top: 20px;
    padding-top: 14px;
  }

  .hero__main-img {
    height: 260px;
    border-radius: 16px;
  }

  .hero__card {
    padding: 8px 12px;
    gap: 10px;
    border-radius: 12px;
  }

  .hero__card--badge {
    top: 12px;
    left: 12px;
  }

  .hero__card--rating {
    bottom: 12px;
    right: 12px;
  }

  .ba-slider {
    height: 240px;
    border-radius: 14px;
  }

  .ba-image--before img,
  .ba-image--after img {
    height: 240px !important;
    object-fit: cover !important;
    object-position: center center !important;
  }

  /* Prevent curved background shapes from cutting off section headings */
  .doctors,
  .process-section {
    padding-top: 84px !important;
    padding-bottom: 90px !important;
    position: relative;
    z-index: 2;
  }

  .doctors .container,
  .process-section .container {
    position: relative;
    z-index: 20 !important;
  }

  .section__shape--top,
  .process-section__shape--top {
    height: 60px !important;
    z-index: 1 !important;
  }

  /* Footer Internal Padding for Mobile Floating Emergency Bar */
  .site-footer {
    padding-bottom: 0 !important;
  }

  .site-footer__copyright {
    padding-top: 16px !important;
    padding-bottom: 90px !important;
    margin-bottom: 0 !important;
    background: #041a1c;
  }

  .site-footer__copyright-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 8px 0;
  }

  .ba-handle__button {
    width: 40px;
    height: 40px;
  }

  .tech-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
    gap: 8px;
  }

  .tech-tab-btn {
    white-space: nowrap;
    flex-shrink: 0;
    padding: 8px 16px;
    font-size: 13px;
  }

  .faq-filter-bar {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
    gap: 8px;
  }

  .faq-filter-btn {
    white-space: nowrap;
    flex-shrink: 0;
    padding: 6px 14px;
    font-size: 13px;
  }

  .wizard-progress {
    margin: 16px 0 24px;
  }

  .node-label {
    font-size: 10px;
  }

  .node-circle {
    width: 32px;
    height: 32px;
    font-size: 12px;
  }

  .doctor-select-grid {
    grid-template-columns: 1fr;
  }

  .service-select-grid {
    grid-template-columns: 1fr;
  }

  .time-slots-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .calc-card {
    padding: 24px 16px;
    border-radius: 16px;
  }

  .calc-title {
    font-size: 17px;
    margin-bottom: 14px;
  }

  .calc-price-display {
    font-size: 32px;
  }

  .floating-emergency {
    bottom: 16px;
    right: 16px;
    left: auto;
  }

  .floating-emergency__btn {
    padding: 10px 18px;
    font-size: 13px;
    border-radius: 30px;
  }
}

@media (max-width: 480px) {
  .container {
    width: calc(100% - 32px);
  }

  h1 {
    font-size: 26px;
    line-height: 1.2;
  }

  h2 {
    font-size: 21px;
    line-height: 1.25;
  }

  .section-copy {
    font-size: 14px;
    line-height: 1.5;
    margin-top: 12px;
  }

  .hero__main-img {
    height: 230px;
  }

  .hero__card strong {
    font-size: 11px;
  }

  .hero__card span {
    font-size: 9px;
  }

  .ba-slider {
    height: 240px;
  }

  .ba-badge {
    font-size: 10px;
    padding: 4px 10px;
  }

  .modal__content {
    padding: 20px 16px;
    border-radius: 16px;
  }

  .stat-card strong {
    font-size: 32px;
  }

  .stat-card {
    padding: 20px 16px;
  }

  .doctor-grid,
  .process-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* ==========================================================================
   CODE & CONTENT PROTECTION (ANTI-COPY, ANTI-DRAG, SECURITY STYLES)
   ========================================================================== */
body {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

input, textarea, select {
  -webkit-user-select: text !important;
  -moz-user-select: text !important;
  -ms-user-select: text !important;
  user-select: text !important;
}

img {
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-drag: none;
  pointer-events: auto;
}

