/* ============================================================
   0. RESET & BASE
   ============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

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

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

button {
  font: inherit;
  cursor: pointer;
  background: none;
  border: none;
  color: inherit;
}

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

ul {
  list-style: none;
}

/* ============================================================
   1. DESIGN TOKENS
   ============================================================ */
:root {
  --white: #FFFFFF;
  --bg: #F8FBFF;
  --ink: #0B1220;
  --blue: #0EA5E9;
  --blue-deep: #0369A1;
  --blue-soft: #E0F2FE;
  --emerald: #10B981;
  --emerald-soft: #D1FAE5;
  --gold: #D4A853;
  --gold-soft: #FEF3C7;
  --lavender: #8B5CF6;
  --border: rgba(226, 232, 240, 0.7);
  --muted: rgba(15, 23, 42, 0.65);
  --muted-2: rgba(15, 23, 42, 0.42);
  --amber: #F59E0B;
  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.04), 0 4px 20px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 8px 24px rgba(15, 23, 42, 0.06), 0 24px 56px rgba(15, 23, 42, 0.1);
  --shadow-blue: 0 8px 20px rgba(14, 165, 233, 0.18), 0 20px 44px rgba(14, 165, 233, 0.22);
  --shadow-card: 0 1px 3px rgba(15, 23, 42, 0.04), 0 6px 16px rgba(15, 23, 42, 0.06), 0 20px 44px rgba(15, 23, 42, 0.06);
  --radius-sm: 14px;
  --radius: 24px;
  --radius-lg: 32px;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --dur: .6s;
  --nav-h: 76px;
  --font-head: 'Sora', sans-serif;
  --font-body: 'Inter', sans-serif;
}

html[data-theme="dark"] {
  --white: #0F172A;
  --bg: #060B16;
  --ink: #F1F5F9;
  --blue: #38BDF8;
  --blue-deep: #0EA5E9;
  --blue-soft: #0F2942;
  --emerald: #34D399;
  --emerald-soft: #0D3326;
  --gold: #E2B65B;
  --gold-soft: #3D2E10;
  --lavender: #A78BFA;
  --border: rgba(241, 245, 249, 0.12);
  --muted: rgba(241, 245, 249, 0.68);
  --muted-2: rgba(241, 245, 249, 0.42);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3), 0 4px 20px rgba(0, 0, 0, 0.35);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.35), 0 24px 56px rgba(0, 0, 0, 0.45);
  --shadow-blue: 0 8px 20px rgba(56, 189, 248, 0.14), 0 20px 44px rgba(56, 189, 248, 0.18);
  --shadow-card: 0 1px 3px rgba(0, 0, 0, 0.2), 0 6px 16px rgba(0, 0, 0, 0.25), 0 20px 44px rgba(0, 0, 0, 0.2);
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.14;
  letter-spacing: -0.025em;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue-deep);
  font-weight: 700;
  margin-bottom: 18px;
  background: color-mix(in srgb, var(--blue-soft) 60%, transparent);
  padding: 6px 16px 6px 12px;
  border-radius: 100px;
  border: 1px solid color-mix(in srgb, var(--blue) 15%, transparent);
  backdrop-filter: blur(6px);
}

.eyebrow::before {
  content: '';
  width: 20px;
  height: 2.5px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--blue), var(--emerald));
  flex-shrink: 0;
}

.section-head {
  max-width: 700px;
  margin-bottom: 60px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head h2 {
  font-size: clamp(30px, 4vw, 48px);
  margin-bottom: 16px;
  position: relative;
}

.section-head p {
  color: var(--muted);
  font-size: 16.5px;
  max-width: 560px;
  line-height: 1.7;
}

.section-head.center p {
  margin: 0 auto;
}

section {
  padding: 110px 0;
  position: relative;
}

@media (max-width:820px) {
  section {
    padding: 76px 0;
  }
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
  border-radius: 6px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--blue);
  color: #fff;
  padding: 12px 20px;
  z-index: 5000;
  border-radius: 0 0 10px 0;
}

.skip-link:focus {
  left: 0;
}

/* ============================================================
   1B. TOP ANNOUNCEMENT BAR
   ============================================================ */
.top-bar {
  background: linear-gradient(90deg, #0284C7, #0EA5E9, #059669);
  color: #FFFFFF;
  font-size: 12.5px;
  font-weight: 500;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  position: relative;
  z-index: 1001;
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.top-bar-info {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.top-bar-info span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.top-bar-info svg {
  width: 14px;
  height: 14px;
  opacity: 0.9;
}

.top-bar-info .divider {
  opacity: 0.4;
}

.top-bar-cta {
  display: flex;
  align-items: center;
  gap: 18px;
}

.slot-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  padding: 3px 10px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 11.5px;
}

.pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22C55E;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
  animation: pulseGlow 1.8s infinite;
}

@keyframes pulseGlow {
  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 7px rgba(34, 197, 94, 0);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
  }
}

.emergency-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  color: #FFF;
  transition: opacity 0.2s;
}

.emergency-link:hover {
  opacity: 0.85;
  text-decoration: underline;
}

.emergency-link svg {
  width: 14px;
  height: 14px;
  color: #FCA5A5;
}

@media (max-width:860px) {

  .top-bar-info .divider,
  .top-bar-info span:nth-child(3) {
    display: none;
  }

  .top-bar-inner {
    justify-content: center;
    text-align: center;
  }
}

@media (max-width:540px) {
  .top-bar-info {
    display: none;
  }

  .top-bar-inner {
    justify-content: center;
  }
}

/* ============================================================
   2. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 32px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  letter-spacing: 0.01em;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), background .3s ease, color .3s ease, border-color .3s ease;
}

.btn:active {
  transform: scale(0.97) !important;
}

.btn svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.btn:hover svg {
  transform: translateX(3px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  color: #fff;
  box-shadow: var(--shadow-blue);
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 30%, rgba(255, 255, 255, 0.15) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.btn-primary:hover::after {
  transform: translateX(100%);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(14, 165, 233, 0.28), 0 24px 48px rgba(14, 165, 233, 0.18);
}

.btn-outline {
  background: color-mix(in srgb, var(--white) 80%, transparent);
  color: var(--ink);
  border: 1.5px solid var(--border);
  backdrop-filter: blur(6px);
}

.btn-outline:hover {
  border-color: var(--blue);
  background: var(--blue-soft);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(14, 165, 233, 0.1);
}

.btn-emerald {
  background: linear-gradient(135deg, var(--emerald), #059669);
  color: #fff;
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.2), 0 16px 36px rgba(16, 185, 129, 0.14);
}

.btn-emerald:hover {
  transform: translateY(-3px);
}

.btn-whatsapp {
  background: #25D366;
  color: #fff;
}

.btn-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.2), 0 16px 36px rgba(37, 211, 102, 0.15);
}

.btn-sm {
  padding: 11px 22px;
  font-size: 12.5px;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 15px;
}

.btn-block {
  width: 100%;
}

/* ============================================================
   3. PRELOADER / NAV PROGRESS
   ============================================================ */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .7s var(--ease), visibility .7s var(--ease);
}

.preloader.hide {
  opacity: 0;
  visibility: hidden;
}

.preloader-mark {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 22px;
  color: var(--blue-deep);
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: preFade 1.1s var(--ease) forwards;
}

.pl-tooth {
  color: var(--emerald);
  font-size: 10px;
  animation: plPulse 1s ease-in-out infinite;
}

@keyframes preFade {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes plPulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.6);
  }
}

.nav-progress {
  position: absolute;
  left: 0;
  bottom: -1px;
  height: 2.5px;
  width: 0%;
  background: linear-gradient(90deg, var(--blue), var(--emerald));
  transition: width .1s linear;
}

/* ============================================================
   4. PREMIUM FLOATING NAVIGATION WITH MEGA-DROPDOWN
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 20px 8px;
  transition: padding 0.4s var(--ease), background 0.4s var(--ease);
}

.nav.scrolled {
  padding: 10px 20px;
}

.nav-floating-container {
  max-width: 1320px;
  margin: 0 auto;
  background: color-mix(in srgb, var(--white) 80%, transparent);
  backdrop-filter: blur(24px) saturate(190%);
  -webkit-backdrop-filter: blur(24px) saturate(190%);
  border: 1px solid color-mix(in srgb, var(--border) 60%, rgba(14, 165, 233, 0.25));
  border-radius: 100px;
  padding: 8px 16px 8px 24px;
  box-shadow: 0 16px 36px -10px rgba(15, 23, 42, 0.08), 0 0 0 1px rgba(255, 255, 255, 0.6) inset;
  transition: all 0.4s var(--ease);
}

.nav.scrolled .nav-floating-container {
  border-radius: 50px;
  padding: 6px 14px 6px 20px;
  background: color-mix(in srgb, var(--white) 94%, transparent);
  box-shadow: 0 20px 45px -12px rgba(14, 165, 233, 0.15), 0 4px 12px rgba(0, 0, 0, 0.04);
}

html[data-theme="dark"] .nav-floating-container {
  background: color-mix(in srgb, var(--ink) 85%, transparent);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.08) inset;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

/* --- LOGO --- */
.logo {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: translateY(-1px);
}

.logo-mark {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--blue), #0284c7 60%, var(--emerald));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(14, 165, 233, 0.35);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.logo:hover .logo-mark {
  transform: rotate(-6deg) scale(1.05);
  box-shadow: 0 12px 24px rgba(14, 165, 233, 0.45);
}

.logo-mark svg {
  width: 100%;
  height: 100%;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-text .name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.logo-text .tag {
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-deep);
  font-weight: 700;
  margin-top: 1px;
}

/* --- NAV MENU & SLIDING INDICATOR --- */
.nav-menu {
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(14, 165, 233, 0.04);
  padding: 4px;
  border-radius: 100px;
  border: 1px solid rgba(14, 165, 233, 0.08);
}

html[data-theme="dark"] .nav-menu {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.06);
}

/* Dynamic sliding indicator pill */
.nav-indicator-pill {
  position: absolute;
  top: 4px;
  bottom: 4px;
  left: 0;
  width: 0;
  background: linear-gradient(135deg, var(--white), rgba(255, 255, 255, 0.9));
  border-radius: 100px;
  box-shadow: 0 4px 14px rgba(14, 165, 233, 0.18), 0 0 0 1px rgba(14, 165, 233, 0.12);
  transition: transform 0.35s cubic-bezier(0.34, 1.4, 0.64, 1), width 0.35s cubic-bezier(0.34, 1.4, 0.64, 1), opacity 0.25s ease;
  pointer-events: none;
  opacity: 0;
  z-index: 1;
}

html[data-theme="dark"] .nav-indicator-pill {
  background: linear-gradient(135deg, var(--blue-deep), #0369a1);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.15);
}

.nav-link {
  position: relative;
  z-index: 2;
  font-size: 13.5px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 100px;
  color: var(--ink);
  opacity: 0.8;
  text-decoration: none;
  transition: color 0.3s ease, opacity 0.3s ease;
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
  opacity: 1;
  color: var(--blue-deep);
}

html[data-theme="dark"] .nav-link:hover,
html[data-theme="dark"] .nav-link.active {
  color: #fff;
}

/* --- RICH VISUAL MEGA-DROPDOWN --- */
.nav-dropdown {
  position: relative;
}

.dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}

.drop-arrow {
  width: 13px;
  height: 13px;
  transition: transform 0.35s var(--ease);
}

.nav-dropdown:hover .drop-arrow {
  transform: rotate(180deg);
}

.dropdown-mega-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(14px) scale(0.98);
  width: 760px;
  background: color-mix(in srgb, var(--white) 96%, transparent);
  backdrop-filter: blur(28px) saturate(190%);
  -webkit-backdrop-filter: blur(28px) saturate(190%);
  border: 1px solid color-mix(in srgb, var(--border) 70%, rgba(14, 165, 233, 0.3));
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 28px 60px -15px rgba(15, 23, 42, 0.16), 0 0 0 1px rgba(255, 255, 255, 0.8) inset;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 100;
}

html[data-theme="dark"] .dropdown-mega-menu {
  background: color-mix(in srgb, var(--ink) 95%, transparent);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.08) inset;
}

.nav-dropdown:hover .dropdown-mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0) scale(1);
}

.mega-menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 240px;
  gap: 20px;
}

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

.mega-heading {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
  padding-left: 8px;
}

.mega-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 14px;
  text-decoration: none;
  color: var(--ink);
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.mega-item:hover {
  background: var(--blue-soft);
  transform: translateX(4px);
  box-shadow: 0 4px 12px rgba(14, 165, 233, 0.08);
}

html[data-theme="dark"] .mega-item:hover {
  background: rgba(14, 165, 233, 0.15);
}

.mega-ic {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  background: rgba(14, 165, 233, 0.1);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.mega-item:hover .mega-ic {
  transform: scale(1.1) rotate(4deg);
}

.mega-ic.gold {
  background: rgba(245, 158, 11, 0.12);
}

.mega-ic.cyan {
  background: rgba(6, 182, 212, 0.12);
}

.mega-ic.purple {
  background: rgba(168, 85, 247, 0.12);
}

.mega-ic.blue {
  background: rgba(14, 165, 233, 0.12);
}

.mega-ic.green {
  background: rgba(16, 185, 129, 0.12);
}

.mega-ic.red {
  background: rgba(239, 68, 68, 0.12);
}

.mega-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mega-info b {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
}

.mega-info p {
  font-size: 11px;
  color: var(--muted);
  margin: 0;
  line-height: 1.2;
}

/* Feature Promo Card in Dropdown */
.mega-promo-card {
  background: linear-gradient(145deg, var(--blue-deep), #0284c7);
  border-radius: 18px;
  padding: 18px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 24px rgba(2, 132, 199, 0.3);
}

.mega-promo-card::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -30%;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.25), transparent 70%);
  pointer-events: none;
}

.promo-badge {
  align-self: flex-start;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  padding: 3px 10px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.promo-content {
  margin-top: 12px;
}

.promo-icon {
  font-size: 24px;
  display: block;
  margin-bottom: 6px;
}

.promo-content h4 {
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 4px;
  color: #fff;
}

.promo-content p {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 14px;
  line-height: 1.35;
}

.promo-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 8px 14px;
  background: #fff;
  color: var(--blue-deep);
  font-size: 12px;
  font-weight: 700;
  border-radius: 100px;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.promo-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

/* --- ACTIONS & BUTTONS --- */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid color-mix(in srgb, var(--border) 80%, rgba(14, 165, 233, 0.2));
  background: color-mix(in srgb, var(--white) 80%, transparent);
  color: var(--ink);
  transition: all 0.3s var(--ease);
  cursor: pointer;
  text-decoration: none;
}

.icon-btn:hover {
  border-color: var(--blue);
  background: var(--blue-soft);
  color: var(--blue-deep);
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 6px 16px rgba(14, 165, 233, 0.2);
}

.icon-btn svg {
  width: 18px;
  height: 18px;
}

.icon-sun {
  display: none;
}

html[data-theme="dark"] .icon-moon {
  display: none;
}

html[data-theme="dark"] .icon-sun {
  display: block;
}

/* Primary CTA Button with Live Pulse */
.nav-cta-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 13.5px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--blue), var(--emerald));
  color: #fff;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(14, 165, 233, 0.35);
  transition: all 0.35s var(--ease);
  overflow: hidden;
}

.nav-cta-btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 28px rgba(14, 165, 233, 0.45);
}

.nav-cta-btn svg {
  width: 15px;
  height: 15px;
  transition: transform 0.3s ease;
}

.nav-cta-btn:hover svg {
  transform: translateX(3px);
}

.cta-pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.8);
  animation: ctaPulse 1.8s infinite;
}

@keyframes ctaPulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.8);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 6px rgba(255, 255, 255, 0);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

/* Mobile Burger Toggle */
.burger {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: var(--white);
  cursor: pointer;
  transition: all 0.3s ease;
}

.burger-box {
  width: 18px;
  height: 14px;
  position: relative;
  display: flex;
  align-items: center;
}

.burger-inner,
.burger-inner::before,
.burger-inner::after {
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  position: absolute;
  transition: all 0.3s ease;
}

.burger-inner::before {
  content: '';
  top: -5px;
}

.burger-inner::after {
  content: '';
  top: 5px;
}

/* Mobile Menu Curtain */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: color-mix(in srgb, var(--ink) 97%, transparent);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  transform: translateY(-100%);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-menu.open {
  transform: translateY(0);
}

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  max-width: 500px;
  margin: 0 auto;
  width: 100%;
}

.mobile-menu-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-close-btn {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.mobile-close-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

.mobile-close-btn svg {
  width: 20px;
  height: 20px;
}

.mobile-links {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  padding: 16px 28px;
  overflow-y: auto;
}

.m-link {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 600;
  color: var(--bg);
  padding: 10px 0;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  opacity: 0;
  transform: translateY(16px);
  transition: color 0.3s ease;
}

.m-link:hover {
  color: var(--blue-soft);
}

.mobile-menu.open .m-link {
  animation: mLinkIn 0.5s var(--ease) forwards;
}

.mobile-menu.open .m-link:nth-child(1) {
  animation-delay: 0.1s;
}

.mobile-menu.open .m-link:nth-child(2) {
  animation-delay: 0.14s;
}

.mobile-menu.open .m-link:nth-child(3) {
  animation-delay: 0.18s;
}

.mobile-menu.open .m-link:nth-child(4) {
  animation-delay: 0.22s;
}

.mobile-menu.open .m-link:nth-child(5) {
  animation-delay: 0.26s;
}

.mobile-menu.open .m-link:nth-child(6) {
  animation-delay: 0.3s;
}

.mobile-menu.open .m-link:nth-child(7) {
  animation-delay: 0.34s;
}

.mobile-menu.open .m-link:nth-child(8) {
  animation-delay: 0.38s;
}

.mobile-menu.open .m-link:nth-child(9) {
  animation-delay: 0.42s;
}

@keyframes mLinkIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mobile-cta {
  padding: 20px 28px 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-call-btn {
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.2) !important;
}

@media (max-width: 1100px) {
  .dropdown-mega-menu {
    width: 640px;
    grid-template-columns: 1fr 1fr;
  }

  .mega-promo-card {
    display: none;
  }
}

@media (max-width: 980px) {
  .nav-menu {
    display: none;
  }

  .burger {
    display: flex;
  }

  #navBookBtn {
    display: none;
  }

  .logo-text .tag {
    display: none;
  }

  .nav {
    padding: 10px 12px;
  }

  .nav-floating-container {
    padding: 8px 16px;
    border-radius: 100px;
  }
}

/* ============================================================
   5. HERO
   ============================================================ */
.hero {
  position: relative;
  padding-top: 52px;
  padding-bottom: 88px;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 160px;
  background: linear-gradient(to top, var(--bg), transparent);
  pointer-events: none;
  z-index: 0;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.5;
  z-index: 0;
  pointer-events: none;
  animation: blobFloat 12s ease-in-out infinite alternate;
}

@keyframes blobFloat {
  0% {
    transform: translate(0, 0) scale(1);
  }

  100% {
    transform: translate(15px, -20px) scale(1.05);
  }
}

.blob-1 {
  top: -8%;
  right: -8%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.22), rgba(139, 92, 246, 0.08), transparent 70%);
}

.blob-2 {
  bottom: 5%;
  left: -12%;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.18), rgba(212, 168, 83, 0.06), transparent 70%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
  padding-bottom: 64px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue-deep);
  background: color-mix(in srgb, var(--blue-soft) 70%, transparent);
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 24px;
  border: 1px solid rgba(14, 165, 233, 0.18);
  backdrop-filter: blur(8px);
}

.pulse-ring {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--emerald);
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.6);
  animation: pulseRing 2s infinite;
}

@keyframes pulseRing {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.6);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 8px rgba(16, 185, 129, 0);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}

.hero h1 {
  font-size: clamp(38px, 5.2vw, 64px);
  letter-spacing: -0.03em;
  line-height: 1.08;
}

.hero h1 em {
  font-style: normal;
  background: linear-gradient(120deg, var(--blue-deep), var(--emerald), var(--blue));
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmerGrad 6s ease infinite;
}

@keyframes shimmerGrad {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.hero p {
  margin-top: 22px;
  font-size: 17.5px;
  color: var(--muted);
  max-width: 540px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 38px;
  flex-wrap: wrap;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  margin-top: 38px;
}

.trust-badges span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
}

.trust-badges svg {
  width: 16px;
  height: 16px;
  color: var(--emerald);
  flex-shrink: 0;
}

.hero-media {
  position: relative;
}

.hero-img-wrap {
  border-radius: 36px;
  overflow: hidden;
  box-shadow: var(--shadow-md), 0 0 0 1px rgba(14, 165, 233, 0.08);
  aspect-ratio: 4/4.5;
  border: 1.5px solid color-mix(in srgb, var(--border) 70%, rgba(14, 165, 233, 0.15));
  position: relative;
}

.hero-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 36px;
  background: linear-gradient(180deg, transparent 60%, rgba(11, 18, 32, 0.15) 100%);
  pointer-events: none;
}

.hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}

.hero-media:hover .hero-img-wrap img {
  transform: scale(1.04);
}

.hero-float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  background: color-mix(in srgb, var(--white) 85%, transparent);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid color-mix(in srgb, var(--border) 60%, rgba(14, 165, 233, 0.12));
  border-radius: 18px;
  padding: 16px 20px;
  box-shadow: var(--shadow-card);
  animation: floatCardIn 0.8s var(--ease) both;
}

@keyframes floatCardIn {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.95);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.hero-float-card b {
  display: block;
  font-size: 14.5px;
}

.hero-float-card span {
  font-size: 11.5px;
  color: var(--muted);
}

.fc-ic {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--blue-soft);
  color: var(--blue-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.fc-ic svg {
  width: 18px;
  height: 18px;
}

.fc-ic.emerald {
  background: var(--emerald-soft);
  color: var(--emerald);
}

.fc1 {
  top: -6%;
  left: -8%;
  animation-delay: 0.3s;
}

.fc2 {
  bottom: 8%;
  right: -8%;
  animation-delay: 0.6s;
}

@media (max-width:520px) {

  .fc1,
  .fc2 {
    display: none;
  }
}

.stats-strip {
  background: linear-gradient(135deg, var(--ink), color-mix(in srgb, var(--ink) 92%, var(--blue)));
  border-radius: 18px;
  margin-top: 16px;
  padding: 18px 0;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(14, 165, 233, 0.15);
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.06);
}

.stats-strip::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.12), transparent 70%);
  pointer-events: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.stat b {
  font-family: var(--font-head);
  font-size: clamp(19px, 2.1vw, 25px);
  color: #FFFFFF;
  display: block;
  font-weight: 800;
  line-height: 1.1;
}

.stat b .star {
  color: var(--gold);
  font-size: 0.7em;
  margin-left: 2px;
}

.stat span {
  font-size: 11px;
  color: rgba(248, 251, 255, 0.65);
  letter-spacing: 0.03em;
  font-weight: 500;
  margin-top: 2px;
  display: block;
}

@media (max-width:900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-media {
    order: -1;
    max-width: 420px;
    margin: 0 auto;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 24px;
  }
}

/* ============================================================
   6. REVEAL WITH STAGGER CASCADE
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger grid children for cascade effect */
.reveal.in>*:nth-child(1) {
  transition-delay: 0s;
}

.reveal.in>*:nth-child(2) {
  transition-delay: 0.06s;
}

.reveal.in>*:nth-child(3) {
  transition-delay: 0.12s;
}

.reveal.in>*:nth-child(4) {
  transition-delay: 0.18s;
}

/* ============================================================
   7. WHY CHOOSE US
   ============================================================ */
.why {
  background: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

@media (max-width:960px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width:560px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}

.why-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px 28px;
  position: relative;
  overflow: hidden;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s ease;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--emerald));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card);
  border-color: color-mix(in srgb, var(--blue) 30%, var(--border));
}

.why-card:hover::before {
  opacity: 1;
}

.why-ic {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(145deg, var(--blue-soft), color-mix(in srgb, var(--emerald-soft) 40%, var(--blue-soft)));
  color: var(--blue-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: transform 0.4s var(--ease), box-shadow 0.4s ease;
}

.why-card:hover .why-ic {
  transform: scale(1.08) rotate(3deg);
  box-shadow: 0 6px 18px rgba(14, 165, 233, 0.15);
}

.why-ic svg {
  width: 24px;
  height: 24px;
}

.why-card h3 {
  font-size: 16.5px;
  margin-bottom: 10px;
}

.why-card p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.65;
}

/* ============================================================
   8. ABOUT
   ============================================================ */
.about {
  background: var(--bg);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
  align-items: center;
}

.about-media {
  position: relative;
}

.about-media .frame-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.about-media .frame-main img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.about-media .frame-float {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 52%;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 6px solid var(--bg);
}

.about-media .frame-float img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.badge-cert {
  position: absolute;
  top: -24px;
  left: -24px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 6px;
  border: 1px solid var(--border);
}

.badge-cert svg {
  width: 24px;
  height: 24px;
  color: var(--emerald);
}

.badge-cert span {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--muted);
  line-height: 1.3;
}

.about-content h2 {
  font-size: clamp(28px, 3.6vw, 40px);
  margin-bottom: 20px;
}

.about-content p {
  color: var(--muted);
  font-size: 15.5px;
  margin-bottom: 14px;
  max-width: 540px;
}

.about-content .lead {
  font-size: 18px;
  color: var(--ink);
  font-family: var(--font-head);
  font-weight: 500;
}

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 26px;
}

.about-values div {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
}

.about-values b {
  display: block;
  font-size: 14px;
  color: var(--blue-deep);
  margin-bottom: 6px;
}

.about-values span {
  font-size: 13px;
  color: var(--muted);
}

.timeline-mini {
  display: flex;
  gap: 0;
  margin-top: 30px;
  border-top: 1px solid var(--border);
  padding-top: 24px;
  flex-wrap: wrap;
}

.timeline-mini div {
  flex: 1;
  min-width: 110px;
  padding-right: 16px;
  border-left: 2px solid var(--emerald);
  padding-left: 14px;
  margin-bottom: 14px;
}

.timeline-mini b {
  display: block;
  font-family: var(--font-head);
  color: var(--ink);
  font-size: 15px;
}

.timeline-mini span {
  font-size: 12px;
  color: var(--muted);
}

@media (max-width:900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 80px;
  }

  .about-media .frame-main img {
    height: 380px;
  }

  .about-values {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   9. TREATMENTS (services)
   ============================================================ */
.treatments {
  background: var(--white);
}

.tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.tab-btn {
  padding: 11px 24px;
  border-radius: 100px;
  border: 1.5px solid var(--border);
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  background: color-mix(in srgb, var(--white) 80%, transparent);
  backdrop-filter: blur(6px);
  transition: all .35s var(--ease);
}

.tab-btn.active,
.tab-btn:hover {
  background: linear-gradient(135deg, var(--blue-deep), var(--blue));
  color: #fff;
  border-color: var(--blue-deep);
  box-shadow: 0 6px 16px rgba(14, 165, 233, 0.18);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

@media (max-width:960px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width:640px) {
  .service-grid {
    grid-template-columns: 1fr;
  }
}

.service-card {
  background: var(--bg);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card);
  border-color: color-mix(in srgb, var(--blue) 30%, var(--border));
}

.service-card .thumb {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.service-card .thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 18, 32, 0.25), transparent 50%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.service-card:hover .thumb::after {
  opacity: 1;
}

.service-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}

.service-card:hover .thumb img {
  transform: scale(1.06);
}

.service-card .price-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(11, 18, 32, 0.65);
  backdrop-filter: blur(12px) saturate(160%);
  color: #fff;
  font-size: 11.5px;
  padding: 6px 14px;
  border-radius: 100px;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.service-card .body {
  padding: 26px;
}

.service-card .body h3 {
  font-size: 17.5px;
  margin-bottom: 10px;
}

.service-card .body p {
  color: var(--muted);
  font-size: 13.5px;
  margin-bottom: 16px;
  min-height: 38px;
  line-height: 1.65;
}

.service-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.service-meta .duration {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--muted-2);
}

.service-meta .duration svg {
  width: 14px;
  height: 14px;
}

.service-meta a {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--blue-deep);
  display: flex;
  align-items: center;
  gap: 5px;
}

.service-meta a svg {
  width: 12px;
  height: 12px;
  transition: transform .3s var(--ease);
}

.service-meta a:hover svg {
  transform: translateX(4px);
}

/* ============================================================
   10. TECHNOLOGY
   ============================================================ */
.technology {
  background: var(--bg);
}

.tech-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.tech-media img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  aspect-ratio: 4/3.2;
  object-fit: cover;
}

.tech-content h2 {
  font-size: clamp(26px, 3.4vw, 36px);
  margin-bottom: 14px;
}

.tech-content>p {
  color: var(--muted);
  margin-bottom: 28px;
  max-width: 480px;
}

.tech-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.tech-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px;
}

.tech-item .ic {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--blue-soft);
  color: var(--blue-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.tech-item .ic svg {
  width: 18px;
  height: 18px;
}

.tech-item b {
  display: block;
  font-size: 13.5px;
  margin-bottom: 2px;
}

.tech-item span {
  font-size: 12px;
  color: var(--muted);
}

@media (max-width:900px) {
  .tech-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .tech-list {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   11. PATIENT JOURNEY
   ============================================================ */
.journey {
  background: var(--white);
}

.journey-track {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  position: relative;
}

.journey-track::before {
  content: '';
  position: absolute;
  top: 26px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: var(--border);
  z-index: 0;
}

.j-step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 8px;
}

.j-step .j-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--blue);
  color: var(--blue-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 16px;
}

.j-step:nth-child(even) .j-num {
  border-color: var(--emerald);
  color: var(--emerald);
}

.j-step b {
  display: block;
  font-size: 13.5px;
  margin-bottom: 4px;
}

.j-step span {
  font-size: 11.5px;
  color: var(--muted);
}

@media (max-width:900px) {
  .journey-track {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 36px;
  }

  .journey-track::before {
    display: none;
  }
}

/* ============================================================
   12. BEFORE/AFTER GALLERY (COMPACT VIEW)
   ============================================================ */
.gallery {
  background: var(--bg);
  padding: 48px 0;
}

.gallery .section-head {
  margin-bottom: 24px;
}

.gallery-grid {
  columns: 3 220px;
  column-gap: 16px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
  break-inside: avoid;
  max-height: 220px;
}

.gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  margin: 0;
  transition: transform .7s var(--ease);
  cursor: pointer;
}

.gallery-item:hover img {
  transform: scale(1.09);
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(17, 24, 39, 0.65) 100%);
  opacity: 0;
  transition: opacity .4s ease;
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-item .zoom-ic {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(-6px);
  transition: all .35s var(--ease);
}

.gallery-item:hover .zoom-ic {
  opacity: 1;
  transform: translateY(0);
}

.gallery-item .zoom-ic svg {
  width: 14px;
  height: 14px;
  color: #fff;
}

.gallery-item .cap {
  position: absolute;
  left: 14px;
  bottom: 12px;
  color: #fff;
  font-size: 12px;
  opacity: 0;
  transform: translateY(6px);
  transition: all .4s ease .05s;
  font-weight: 500;
}

.gallery-item:hover .cap {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width:900px) {
  .gallery-grid {
    columns: 2 180px;
  }

  .gallery-item img {
    height: 180px;
  }
}

@media (max-width:520px) {
  .gallery-grid {
    columns: 1;
  }

  .gallery-item img {
    height: 200px;
  }
}

.ba-wrap {
  margin-top: 32px;
}

.ba-wrap .section-head {
  margin-bottom: 18px !important;
}

.ba-slider {
  position: relative;
  max-width: 620px;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 16/9;
  user-select: none;
}

.ba-slider img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.ba-after {
  z-index: 1;
}

.ba-before {
  z-index: 2;
  clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
  -webkit-clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
}

.ba-slider input[type=range] {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  z-index: 3;
  cursor: ew-resize;
}

.ba-slider input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.001);
}

.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: #fff;
  z-index: 2;
  pointer-events: none;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.15);
}

.ba-handle::after {
  content: '⇔';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 38px;
  height: 38px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  font-size: 14px;
  box-shadow: var(--shadow-md);
}

.ba-tag {
  position: absolute;
  top: 12px;
  padding: 4px 12px;
  border-radius: 100px;
  background: rgba(17, 24, 39, 0.68);
  color: #fff;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 3;
}

.ba-tag.before {
  left: 12px;
}

.ba-tag.after {
  right: 12px;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(8, 8, 12, 0.94);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .5s var(--ease), visibility .5s var(--ease);
}

.lightbox.open {
  opacity: 1;
  visibility: visible;
}

.lightbox img {
  max-width: 82vw;
  max-height: 82vh;
  border-radius: 6px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.5);
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all .3s ease;
}

.lightbox-close:hover,
.lightbox-nav:hover {
  border-color: var(--blue);
  background: rgba(14, 165, 233, 0.15);
}

.lightbox-close {
  top: 24px;
  right: 24px;
}

.lightbox-close svg {
  width: 16px;
  height: 16px;
}

.lightbox-nav svg {
  width: 18px;
  height: 18px;
}

.lightbox-nav.prev {
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-nav.next {
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
}

@media (max-width:640px) {

  .lightbox-nav,
  .lightbox-close {
    width: 36px;
    height: 36px;
  }

  .lightbox-nav.prev {
    left: 10px;
  }

  .lightbox-nav.next {
    right: 10px;
  }

  .lightbox-close {
    top: 14px;
    right: 14px;
  }
}

/* ============================================================
   13. DOCTORS
   ============================================================ */
.doctors {
  background: var(--white);
}

.doctor-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

@media (max-width:960px) {
  .doctor-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width:520px) {
  .doctor-grid {
    grid-template-columns: 1fr;
  }
}

.doctor-card {
  background: var(--bg);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s ease;
}

.doctor-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card);
  border-color: color-mix(in srgb, var(--blue) 25%, var(--border));
}

.doctor-card .photo {
  position: relative;
  height: 270px;
  overflow: hidden;
}

.doctor-card .photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 18, 32, 0.2), transparent 50%);
  pointer-events: none;
}

.doctor-card .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}

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

.doctor-card .info {
  padding: 22px;
}

.doctor-card .info h3 {
  font-size: 16.5px;
  margin-bottom: 4px;
}

.doctor-card .info .role {
  font-size: 12px;
  color: var(--blue-deep);
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}

.doctor-card .info .meta-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.doctor-card .info .meta-row span {
  font-size: 12px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.doctor-card .info .meta-row svg {
  width: 13px;
  height: 13px;
  color: var(--emerald);
  flex-shrink: 0;
}

.doctor-card .info a {
  font-size: 12px;
  font-weight: 700;
  color: var(--blue-deep);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.3s ease;
}

.doctor-card .info a:hover {
  gap: 8px;
}

/* ============================================================
   14. PRICING (COMPACT ULTRA-PREMIUM LUXURY CARDS)
   ============================================================ */
.pricing {
  background: var(--bg);
  padding: 52px 0;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  align-items: stretch;
}

@media (max-width:1100px) {
  .price-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width:600px) {
  .price-grid {
    grid-template-columns: 1fr;
  }
}

.price-card {
  background: linear-gradient(155deg, var(--white), color-mix(in srgb, var(--blue-soft) 22%, var(--white)));
  border: 1.5px solid color-mix(in srgb, var(--border) 80%, var(--blue));
  border-radius: 20px;
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
}

.price-card:hover {
  transform: translateY(-6px);
  border-color: var(--blue);
  box-shadow: 0 18px 42px rgba(14, 165, 233, 0.18), 0 0 0 1.5px var(--blue);
}

/* Featured Highlight Card (Laser Whitening) */
.price-card.featured {
  background: linear-gradient(155deg, var(--white), color-mix(in srgb, var(--blue-soft) 48%, var(--white)));
  border: 2px solid var(--blue);
  box-shadow: 0 12px 34px rgba(14, 165, 233, 0.2), 0 0 0 1px rgba(14, 165, 233, 0.3);
  transform: scale(1.02);
  z-index: 2;
}

.price-card.featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--emerald), var(--gold));
  opacity: 1;
}

.price-card.featured:hover {
  transform: scale(1.04) translateY(-6px);
  box-shadow: 0 22px 52px rgba(14, 165, 233, 0.28), 0 0 0 2px var(--blue);
}

.popular-glow-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: linear-gradient(135deg, var(--blue-deep), var(--blue));
  color: #FFFFFF;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 5px 14px;
  border-radius: 0 18px 0 12px;
  box-shadow: 0 4px 12px rgba(14, 165, 233, 0.35);
}

.pc-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}

.price-card.featured .pc-head {
  border-bottom-color: color-mix(in srgb, var(--blue) 30%, var(--border));
}

.pc-icon-box {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--blue-soft);
  color: var(--blue-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid color-mix(in srgb, var(--blue) 25%, transparent);
}

.pc-icon-box svg {
  width: 20px;
  height: 20px;
}

.price-card.featured .pc-icon-box {
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(14, 165, 233, 0.3);
}

.pc-title-wrap h3 {
  font-size: 16.5px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 2px;
  color: var(--ink);
}

.pc-sub {
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
}

.price-card.featured .pc-sub {
  color: var(--blue-deep);
  font-weight: 600;
}

.pc-price-box {
  margin-bottom: 16px;
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.pc-amount {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.price-card.featured .pc-amount {
  color: var(--blue-deep);
  font-size: 30px;
}

.pc-period {
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
}

.pc-body {
  flex: 1;
  margin-bottom: 18px;
}

.pc-list {
  display: flex;
  flex-direction: column;
  gap: 9px;
  list-style: none;
}

.pc-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.45;
}

.pc-check-ic {
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: var(--emerald-soft);
  color: var(--emerald);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.pc-check-ic svg {
  width: 10px;
  height: 10px;
  stroke-width: 3;
}

.pc-foot {
  margin-top: auto;
}

.pc-cta {
  padding: 11px 16px;
  font-size: 13px;
  border-radius: 100px;
  font-weight: 700;
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}

/* ============================================================
   14. PRICING NOTE & BLOG (COMPACT VIEW)
   ============================================================ */
.pricing-note {
  text-align: center;
  margin-top: 24px;
  font-size: 12.5px;
  color: var(--muted);
}

.blog {
  background: var(--bg);
  padding: 48px 0;
}

.blog .section-head {
  margin-bottom: 20px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

@media (max-width: 900px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 580px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

.blog-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
  border-color: var(--blue);
}

.blog-card .thumb {
  position: relative;
  height: 150px;
  overflow: hidden;
}

.blog-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.blog-card:hover .thumb img {
  transform: scale(1.06);
}

.blog-card .body {
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-card .tag {
  font-size: 10.5px;
  font-weight: 700;
  color: var(--blue-deep);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}

.blog-card h3 {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
  line-height: 1.35;
}

.blog-card p {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.45;
  margin-bottom: 10px;
}

.blog-card a {
  margin-top: auto;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--blue-deep);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: gap 0.3s ease;
}

.blog-card a:hover {
  gap: 8px;
}

/* ============================================================
   15. GOOGLE REVIEWS (COMPACT VIEW)
   ============================================================ */
.reviews {
  background: var(--white);
  padding: 48px 0;
}

.reviews .section-head {
  margin-bottom: 20px;
}

.reviews-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.g-logo {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.reviews-summary-text {
  display: flex;
  align-items: center;
  gap: 12px;
}

.rs-score {
  font-family: var(--font-head);
  font-size: 32px;
  color: var(--ink);
  line-height: 1;
}

.rs-score span {
  font-size: 13px;
  color: var(--muted);
  font-family: var(--font-body);
  font-weight: 400;
}

.rs-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.rs-stars {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 2px;
}

.rs-meta span {
  font-size: 11.5px;
  color: var(--muted);
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

@media (max-width:900px) {
  .review-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width:640px) {
  .review-grid {
    grid-template-columns: 1fr;
  }
}

.review-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  position: relative;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s ease;
}

.review-card::before {
  content: '\201C';
  position: absolute;
  top: 10px;
  right: 16px;
  font-family: Georgia, serif;
  font-size: 36px;
  line-height: 1;
  color: color-mix(in srgb, var(--blue) 12%, transparent);
  pointer-events: none;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: color-mix(in srgb, var(--blue) 25%, var(--border));
}

.review-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.review-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 12px;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.review-who {
  flex: 1;
  min-width: 0;
}

.review-who b {
  display: block;
  font-size: 13px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.review-who .badge-local {
  font-size: 10px;
  color: var(--muted-2);
}

.review-g-ic {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

.review-stars {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}

.review-time {
  font-size: 10.5px;
  color: var(--muted-2);
  margin-left: 6px;
}

.review-text {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

/* ============================================================
   16. BOOKING
   ============================================================ */
/* ============================================================
   16. ULTRA-PREMIUM APPOINTMENT BOOKING PORTAL
   ============================================================ */
/* ============================================================
   16. ULTRA-PREMIUM APPOINTMENT BOOKING PORTAL (LIGHT PALETTE)
   ============================================================ */
.booking {
  background: linear-gradient(165deg, var(--white), color-mix(in srgb, var(--blue-soft) 40%, var(--white)));
  color: var(--ink);
  position: relative;
  overflow: hidden;
  padding: 64px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.booking::before {
  content: '';
  position: absolute;
  top: -140px;
  left: -140px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.15), transparent 70%);
  pointer-events: none;
}

.booking-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 36px;
  align-items: stretch;
  position: relative;
  z-index: 1;
}

.booking-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 4px 0;
}

.booking-info .eyebrow {
  color: var(--blue-deep);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 11px;
}

.booking-info .eyebrow::before {
  background: var(--blue-deep);
}

.booking-info h2 {
  font-size: clamp(24px, 2.6vw, 32px);
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
  font-weight: 800;
  line-height: 1.25;
}

.booking-info p {
  color: var(--muted);
  max-width: 420px;
  margin-bottom: 12px;
  font-size: 13px;
  line-height: 1.45;
}

.slot-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 800;
  color: var(--emerald);
  background: var(--emerald-soft);
  border: 1.5px solid color-mix(in srgb, var(--emerald) 35%, transparent);
  padding: 4.5px 12px;
  border-radius: 100px;
  margin-bottom: 14px;
  backdrop-filter: blur(8px);
  width: fit-content;
}

.booking-points {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 14px;
}

.booking-points li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.booking-points .bp-ic {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: var(--blue-soft);
  color: var(--blue-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid color-mix(in srgb, var(--blue) 25%, transparent);
}

.booking-points .bp-ic svg {
  width: 16px;
  height: 16px;
}

.booking-points .bp-ic.emerald {
  background: var(--emerald-soft);
  color: var(--emerald);
  border-color: color-mix(in srgb, var(--emerald) 25%, transparent);
}

.booking-points .bp-ic.gold {
  background: color-mix(in srgb, var(--gold) 15%, var(--white));
  color: var(--gold);
  border-color: color-mix(in srgb, var(--gold) 30%, transparent);
}

.booking-points b {
  display: block;
  font-size: 13px;
  color: var(--ink);
  margin-bottom: 1px;
  font-weight: 700;
}

.booking-points span {
  font-size: 11.5px;
  color: var(--muted);
  line-height: 1.35;
}

.emergency-card {
  display: flex;
  gap: 10px;
  align-items: center;
  background: #FEF3C7;
  border: 1.5px solid #FCD34D;
  border-radius: 12px;
  padding: 10px 14px;
  margin-top: auto;
}

.emergency-card svg {
  width: 20px;
  height: 20px;
  color: #D97706;
  flex-shrink: 0;
}

.emergency-card b {
  display: block;
  font-size: 12.5px;
  margin-bottom: 1px;
  color: #92400E;
  font-weight: 700;
}

.emergency-card span {
  font-size: 11.5px;
  color: #78350F;
}

.emergency-card a {
  color: #92400E;
  font-weight: 800;
  text-decoration: underline;
}

/* --- BOOKING FORM & HIGH-VISIBILITY COMPACT LAYOUT --- */
.booking-form {
  background: #FFFFFF;
  color: #0F172A;
  border-radius: 20px;
  padding: 24px 26px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
}

.form-step-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--blue-deep);
  margin-top: 10px;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-step-title:first-child {
  margin-top: 0;
}

.step-num-pill {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--blue-deep);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 800;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

@media (max-width: 580px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .booking-form {
    padding: 20px 18px;
  }
}

.bk-submit-btn {
  background: linear-gradient(135deg, var(--blue-deep), var(--emerald));
  color: #ffffff;
  font-size: 13.5px;
  font-weight: 700;
  padding: 12px 20px;
  border-radius: 100px;
  box-shadow: 0 6px 20px rgba(14, 165, 233, 0.35);
  transition: all 0.35s var(--ease);
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.bk-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(14, 165, 233, 0.45);
}

.field {
  margin-bottom: 10px;
}

.field label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 700;
  color: #475569;
  margin-bottom: 4px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 9px 12px;
  border-radius: 10px;
  border: 1.5px solid #CBD5E1;
  background: #FFFFFF;
  font-size: 13px;
  color: #0F172A;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3.5px rgba(14, 165, 233, 0.2);
  outline: none;
}

.field textarea {
  resize: vertical;
  min-height: 52px;
  height: 52px;
}

.checkbox-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #334155;
  margin-top: 4px;
  margin-bottom: 12px;
  cursor: pointer;
}

.form-note {
  font-size: 11px;
  color: #64748B;
  text-align: center;
  margin-top: 8px;
}

/* Luxury AM / PM Time Picker */
.time-picker-wrapper {
  background: color-mix(in srgb, var(--white) 90%, var(--blue-soft));
  border: 1.5px solid color-mix(in srgb, var(--border) 80%, rgba(14, 165, 233, 0.25));
  border-radius: 18px;
  padding: 20px;
  margin-bottom: 18px;
}

.time-picker-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.time-picker-header label {
  font-size: 11.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--muted);
}

.ampm-segment-toggle {
  display: inline-flex;
  background: rgba(14, 165, 233, 0.08);
  padding: 3px;
  border-radius: 100px;
  border: 1px solid rgba(14, 165, 233, 0.15);
}

.ampm-btn {
  padding: 5px 14px;
  border-radius: 100px;
  border: none;
  background: transparent;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.3s ease;
}

.ampm-btn.active {
  background: linear-gradient(135deg, var(--blue-deep), #0284c7);
  color: #fff;
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.25);
}

.time-period-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.period-tab {
  flex: 1;
  min-width: 110px;
  padding: 7px 10px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--white);
  font-size: 11.5px;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  text-align: center;
  transition: all 0.3s ease;
}

.period-tab:hover {
  border-color: var(--blue);
  color: var(--blue-deep);
}

.period-tab.active {
  background: var(--blue-soft);
  border-color: var(--blue);
  color: var(--blue-deep);
  font-weight: 700;
}

.time-slots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(105px, 1fr));
  gap: 10px;
}

.time-chip {
  padding: 9px 12px;
  border-radius: 12px;
  border: 1.5px solid var(--border);
  background: var(--white);
  font-size: 12.5px;
  font-weight: 700;
  color: var(--ink);
  text-align: center;
  cursor: pointer;
  transition: all 0.3s var(--ease);

}

.time-chip:hover {
  border-color: var(--blue);
  color: var(--blue-deep);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(14, 165, 233, 0.12);
}

.time-chip.active {
  background: linear-gradient(135deg, var(--blue-deep), #0284c7);
  color: #fff;
  border-color: var(--blue-deep);
  box-shadow: 0 6px 16px rgba(2, 132, 199, 0.3);
  transform: scale(1.04);
}

.checkbox-row {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 18px;
}

.checkbox-row input {
  width: 16px;
  height: 16px;
  accent-color: var(--blue);
}

.form-note {
  font-size: 11.5px;
  color: var(--muted-2);
  margin-top: 12px;
  text-align: center;
}

.form-success {
  display: none;
  text-align: center;
  padding: 26px 10px;
}

.form-success.show {
  display: block;
  animation: fadeIn 0.4s ease;
}

.form-success .ic {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--emerald-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.form-success .ic svg {
  width: 28px;
  height: 28px;
  color: var(--emerald);
}

.form-success h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.form-success p {
  color: var(--muted);
  font-size: 14.5px;
  margin-bottom: 20px;
}

.booking-receipt-summary {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px 20px;
  text-align: left;
  font-size: 13px;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.booking-receipt-summary b {
  color: var(--ink);
}

@media (max-width: 900px) {
  .booking-grid {
    grid-template-columns: 1fr;
  }

  .booking-form {
    padding: 26px 20px;
    border-radius: 20px;
  }

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

/* ============================================================
   17. BLOG
   ============================================================ */
.blog {
  background: var(--bg);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width:900px) {
  .blog-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width:600px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.blog-card .thumb {
  height: 170px;
  overflow: hidden;
}

.blog-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease);
}

.blog-card:hover .thumb img {
  transform: scale(1.07);
}

.blog-card .body {
  padding: 22px;
}

.blog-card .tag {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--emerald);
  margin-bottom: 10px;
  display: block;
}

.blog-card h3 {
  font-size: 16px;
  margin-bottom: 10px;
  line-height: 1.4;
}

.blog-card p {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 14px;
}

.blog-card a {
  font-size: 12px;
  font-weight: 700;
  color: var(--blue-deep);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

/* ============================================================
   18. 2-COLUMN SPLIT FAQ & INTERACTIVE ACCORDION
   ============================================================ */
.faq {
  background: var(--bg);
  padding: 56px 0;
}

.faq .section-subtitle {
  text-align: center;
  color: var(--muted);
  font-size: 14.5px;
  max-width: 580px;
  margin: 8px auto 32px;
}

.faq-split-container {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
  align-items: flex-start;
}

@media (max-width: 900px) {
  .faq-split-container {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.faq-sidebar {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.faq-cat-nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 12px;
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.04);
}

@media (max-width: 900px) {
  .faq-cat-nav {
    flex-direction: row;
    overflow-x: auto;
    white-space: nowrap;
    padding: 10px;
  }
}

.faq-cat-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 10px 14px;
  border-radius: 12px;
  border: none;
  background: transparent;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  text-align: left;
}

.faq-cat-btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.faq-cat-btn:hover {
  background: var(--blue-soft);
  color: var(--blue-deep);
}

.faq-cat-btn.active {
  background: linear-gradient(135deg, var(--blue-deep), var(--blue));
  color: #FFFFFF;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(14, 165, 233, 0.3);
}

.faq-cat-btn.active svg {
  color: #FFFFFF;
}

.faq-sidebar-box {
  background: color-mix(in srgb, var(--blue-soft) 40%, var(--white));
  border: 1.5px solid color-mix(in srgb, var(--blue) 30%, var(--border));
  border-radius: 18px;
  padding: 16px;
}

.faq-sidebar-box .fsb-ic {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--blue-deep);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.faq-sidebar-box .fsb-ic svg {
  width: 18px;
  height: 18px;
}

.faq-sidebar-box b {
  display: block;
  font-size: 13px;
  color: var(--ink);
  margin-bottom: 2px;
}

.faq-sidebar-box span {
  font-size: 11.5px;
  color: var(--muted);
  display: block;
}

/* Right Column: Accordion */
.faq-accordion-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.35s var(--ease);
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.03);
}

.faq-item:hover {
  border-color: color-mix(in srgb, var(--blue) 40%, var(--border));
  box-shadow: 0 6px 20px rgba(14, 165, 233, 0.08);
}

.faq-item.active {
  border-color: var(--blue);
  box-shadow: 0 8px 24px rgba(14, 165, 233, 0.12);
}

.faq-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
  cursor: pointer;
  user-select: none;
}

.faq-head-left {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}

.faq-badge {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 3px 10px;
  border-radius: 100px;
  background: var(--blue-soft);
  color: var(--blue-deep);
  flex-shrink: 0;
}

.faq-head h3 {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--ink);
  margin: 0;
  line-height: 1.35;
}

.faq-toggle-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--bg);
  color: var(--blue-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 0;
  transition: transform 0.35s var(--ease), background 0.35s ease, color 0.35s ease;
}

.faq-item.active .faq-toggle-icon {
  transform: rotate(45deg);
  background: var(--blue-deep);
  color: #FFFFFF;
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease), padding 0.4s var(--ease);
  padding: 0 20px;
}

.faq-item.active .faq-body {
  max-height: 400px;
  padding: 0 20px 18px 20px;
}

.faq-body p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 12px;
}

.faq-pro-tip {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: color-mix(in srgb, var(--emerald-soft) 60%, var(--white));
  border: 1px solid color-mix(in srgb, var(--emerald) 30%, transparent);
  border-radius: 12px;
  padding: 10px 14px;
  font-size: 12px;
  color: var(--emerald-dark);
  font-weight: 600;
}

.faq-pro-tip svg {
  width: 16px;
  height: 16px;
  color: var(--emerald);
  flex-shrink: 0;
  margin-top: 1px;
}

.search-clear-btn:hover {
  background: var(--blue-deep);
  color: #fff;
  transform: translateY(-50%) scale(1.1);
}

/* --- FAQ CATEGORY FILTERS --- */
.faq-categories {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.faq-cat-btn {
  padding: 10px 20px;
  border-radius: 100px;
  border: 1px solid var(--border);
  background: var(--white);
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.35s var(--ease);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.faq-cat-btn:hover {
  border-color: var(--blue);
  color: var(--blue-deep);
  transform: translateY(-2px);
}

.faq-cat-btn.active {
  background: linear-gradient(135deg, var(--blue-deep), #0284c7);
  color: #fff;
  border-color: var(--blue-deep);
  box-shadow: 0 8px 20px rgba(2, 132, 199, 0.3);
}

/* --- FAQ CARDS GRID --- */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  align-items: start;
}

@media (max-width: 900px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

.faq-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 20px 24px;
  transition: all 0.35s var(--ease);
  box-shadow: 0 4px 16px -4px rgba(15, 23, 42, 0.04);
}

.faq-card:hover {
  border-color: color-mix(in srgb, var(--blue) 50%, var(--border));
  box-shadow: 0 12px 28px -8px rgba(14, 165, 233, 0.12);
  transform: translateY(-2px);
}

.faq-card.open {
  border-color: var(--blue);
  background: color-mix(in srgb, var(--white) 94%, var(--blue-soft));
  box-shadow: 0 16px 36px -10px rgba(14, 165, 233, 0.18), 0 0 0 1px rgba(14, 165, 233, 0.2);
}

html[data-theme="dark"] .faq-card {
  background: var(--white);
}

html[data-theme="dark"] .faq-card.open {
  background: rgba(14, 165, 233, 0.08);
}

.faq-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.faq-badge {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
  background: rgba(14, 165, 233, 0.1);
  color: var(--blue-deep);
}

.faq-badge.treatments {
  background: rgba(14, 165, 233, 0.12);
  color: var(--blue-deep);
}

.faq-badge.costs {
  background: rgba(16, 185, 129, 0.12);
  color: var(--emerald);
}

.faq-badge.implants {
  background: rgba(168, 85, 247, 0.12);
  color: #9333ea;
}

.faq-badge.kids {
  background: rgba(245, 158, 11, 0.12);
  color: #d97706;
}

.faq-badge.emergency {
  background: rgba(239, 68, 68, 0.12);
  color: #dc2626;
}

.faq-q-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  background: none;
  border: none;
  padding: 4px 0;
  text-align: left;
  cursor: pointer;
  color: var(--ink);
}

.faq-q-btn h4 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15.5px;
  line-height: 1.4;
  margin: 0;
  flex: 1;
}

.faq-icon-toggle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.35s var(--ease);
}

.faq-icon-toggle svg {
  width: 14px;
  height: 14px;
  color: var(--ink);
  transition: transform 0.35s var(--ease);
}

.faq-card.open .faq-icon-toggle {
  background: var(--blue-deep);
  border-color: var(--blue-deep);
}

.faq-card.open .faq-icon-toggle svg {
  color: #fff;
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease;
  opacity: 0;
}

.faq-card.open .faq-answer {
  opacity: 1;
}

.faq-answer-inner {
  padding-top: 14px;
  border-top: 1px dashed rgba(14, 165, 233, 0.2);
  margin-top: 12px;
  font-size: 13.8px;
  line-height: 1.65;
  color: var(--muted);
}

.faq-highlight-tip {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  padding: 8px 14px;
  background: rgba(16, 185, 129, 0.08);
  border-radius: 10px;
  font-size: 12px;
  font-weight: 600;
  color: var(--emerald);
}

/* --- NO SEARCH RESULTS FOUND --- */
.faq-no-results {
  text-align: center;
  padding: 48px 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  max-width: 500px;
  margin: 0 auto;
}

.no-res-ic {
  font-size: 42px;
  margin-bottom: 12px;
}

.faq-no-results h3 {
  font-size: 18px;
  margin-bottom: 6px;
}

.faq-no-results p {
  color: var(--muted);
  font-size: 13.5px;
  margin-bottom: 18px;
}

/* --- STILL HAVE QUESTIONS SUPPORT CARD --- */
.faq-support-card {
  margin-top: 48px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--blue-soft) 40%, var(--white)), var(--white));
  border: 1.5px solid color-mix(in srgb, var(--blue) 40%, var(--border));
  border-radius: 24px;
  padding: 32px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: 0 16px 36px -12px rgba(14, 165, 233, 0.12);
}

.support-card-info {
  display: flex;
  align-items: center;
  gap: 18px;
}

.support-icon {
  font-size: 38px;
  flex-shrink: 0;
}

.support-card-info h3 {
  font-size: 20px;
  margin-bottom: 4px;
}

.support-card-info p {
  font-size: 13.5px;
  color: var(--muted);
  margin: 0;
}

.support-card-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* --- FAQ MODAL TRIGGER & DRAWER --- */
.faq-modal-trigger-wrap {
  text-align: center;
  margin-top: 32px;
}

.faq-open-modal-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 100px;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--blue-deep);
  border: 1.5px solid color-mix(in srgb, var(--blue) 40%, var(--border));
  background: var(--white);
  box-shadow: 0 8px 24px -6px rgba(14, 165, 233, 0.12);
  transition: all 0.35s var(--ease);
  cursor: pointer;
}

.faq-open-modal-btn:hover {
  background: var(--blue-deep);
  color: #fff;
  border-color: var(--blue-deep);
  box-shadow: 0 12px 28px rgba(2, 132, 199, 0.3);
  transform: translateY(-2px);
}

.faq-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2500;
  background: rgba(11, 18, 32, 0.72);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease), visibility 0.4s var(--ease);
}

.faq-modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.faq-modal-content {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 28px;
  width: 100%;
  max-width: 920px;
  max-height: 85vh;
  overflow-y: auto;
  padding: 40px;
  box-shadow: 0 32px 80px -15px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.6) inset;
  transform: translateY(30px) scale(0.97);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

html[data-theme="dark"] .faq-modal-content {
  background: var(--ink);
  border-color: rgba(255, 255, 255, 0.12);
}

.faq-modal-overlay.open .faq-modal-content {
  transform: translateY(0) scale(1);
}

.faq-modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}

.faq-modal-header h2 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 4px;
}

.faq-modal-header p {
  font-size: 13.5px;
  color: var(--muted);
  margin: 0;
}

.faq-modal-close {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.faq-modal-close:hover {
  background: #ef4444;
  color: #fff;
  border-color: #ef4444;
  transform: rotate(90deg);
}

.faq-modal-close svg {
  width: 20px;
  height: 20px;
}

@media (max-width: 640px) {
  .faq-modal-content {
    padding: 24px 18px;
    border-radius: 20px;
  }
}

/* ============================================================
   19. CONTACT
   ============================================================ */
.contact {
  background: var(--bg);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
}

.contact-map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  min-height: 420px;
  border: 1px solid var(--border);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 26px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: border-color .3s ease, transform .4s var(--ease);
}

.contact-card:hover {
  border-color: var(--blue);
  transform: translateY(-3px);
}

.contact-card .ic {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--blue-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-card .ic svg {
  width: 18px;
  height: 18px;
  color: var(--blue-deep);
}

.contact-card h4 {
  font-family: var(--font-head);
  font-size: 15.5px;
  margin-bottom: 4px;
}

.contact-card p {
  font-size: 13.5px;
  color: var(--muted);
}

.contact-card .sub {
  font-size: 11.5px;
  color: var(--muted-2);
}

.contact-hours {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  padding: 4px 0;
  color: var(--muted);
}

.contact-hours b {
  color: var(--ink);
  font-weight: 500;
}

@media (max-width:860px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   20. FOOTER
   ============================================================ */
footer {
  background: #0B1220;
  color: rgba(234, 242, 251, 0.72);
  padding-top: 80px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 46px;
  padding-bottom: 54px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .logo-text .name {
  color: #EAF2FB;
}

.footer-brand p {
  font-size: 13.5px;
  margin: 16px 0 20px;
  max-width: 280px;
  color: rgba(234, 242, 251, 0.55);
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s ease;
}

.footer-socials a:hover {
  border-color: var(--blue);
  background: rgba(14, 165, 233, 0.1);
}

.footer-socials svg {
  width: 14px;
  height: 14px;
}

.footer h5 {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 22px;
  font-weight: 700;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 13.5px;
  color: rgba(234, 242, 251, 0.6);
  transition: color .3s ease, padding .3s ease;
}

.footer-links a:hover {
  color: var(--blue);
  padding-left: 4px;
}

.newsletter p {
  font-size: 13.5px;
  color: rgba(234, 242, 251, 0.55);
  margin-bottom: 16px;
}

.newsletter-form {
  display: flex;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  padding-bottom: 10px;
}

.newsletter-form input {
  flex: 1;
  background: transparent;
  border: none;
  color: #EAF2FB;
  font-size: 13.5px;
}

.newsletter-form input::placeholder {
  color: rgba(234, 242, 251, 0.4);
}

.newsletter-form button {
  color: var(--blue);
  font-size: 11.5px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 700;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 12px;
  color: rgba(234, 242, 251, 0.4);
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom .legal {
  display: flex;
  gap: 20px;
}

.footer-bottom .legal a {
  color: rgba(234, 242, 251, 0.4);
  transition: color .3s ease;
}

.footer-bottom .legal a:hover {
  color: var(--blue);
}

@media (max-width:900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    row-gap: 40px;
  }
}

@media (max-width:560px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* ============================================================
   21. FLOATING BUTTONS
   ============================================================ */
.wa-float {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 900;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.4);
  transition: transform .4s var(--ease);
}

.wa-float:hover {
  transform: scale(1.08) translateY(-3px);
}

.wa-float svg {
  width: 26px;
  height: 26px;
  color: #fff;
}

.wa-float::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  opacity: .5;
  animation: waPulse 2.4s ease-out infinite;
}

@keyframes waPulse {
  0% {
    transform: scale(1);
    opacity: .5;
  }

  100% {
    transform: scale(1.9);
    opacity: 0;
  }
}

@media (max-width:820px) {
  .wa-float {
    display: none;
  }
}

.top-btn {
  position: fixed;
  bottom: 26px;
  left: 26px;
  z-index: 900;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all .4s var(--ease);
  box-shadow: var(--shadow-sm);
}

.top-btn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.top-btn svg {
  width: 16px;
  height: 16px;
}

@media (max-width:820px) {
  .top-btn {
    bottom: 86px;
  }
}

.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 950;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 10px 14px;
  gap: 8px;
  box-shadow: 0 -8px 24px rgba(17, 24, 39, 0.08);
}

.msb-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 8px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 700;
}

.msb-btn.call {
  background: var(--blue-soft);
  color: var(--blue-deep);
}

.msb-btn.primary {
  background: var(--blue-deep);
  color: #fff;
}

.msb-btn.whatsapp {
  background: #25D366;
  color: #fff;
}

.msb-btn svg {
  width: 15px;
  height: 15px;
}

@media (max-width:820px) {
  .mobile-sticky-bar {
    display: flex;
  }

  body {
    padding-bottom: 74px;
  }
}

/* utility */
.tc {
  text-align: center;
}

.mono-num {
  font-variant-numeric: tabular-nums;
}

/* ============================================================
   22. INTERACTIVE SMILE CALCULATOR
   ============================================================ */
.calculator-section {
  background: linear-gradient(180deg, var(--bg), color-mix(in srgb, var(--blue-soft) 30%, var(--bg)));
  padding: 90px 0;
}

.calc-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.calc-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--amber), var(--emerald));
}

.calc-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 40px;
}

.calc-header h2 {
  font-size: clamp(26px, 3.5vw, 38px);
  margin-bottom: 12px;
}

.calc-header p {
  color: var(--muted);
  font-size: 15.5px;
}

.calc-steps {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 36px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 20px;
  flex-wrap: wrap;
}

.calc-step {
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0.45;
  transition: opacity 0.3s ease;
}

.calc-step.active {
  opacity: 1;
}

.calc-step .step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--blue-soft);
  color: var(--blue-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 12.5px;
}

.calc-step.active .step-num {
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  color: #FFF;
}

.calc-step .step-title {
  font-size: 13.5px;
  font-weight: 600;
}

.calc-panel {
  display: none;
}

.calc-panel.active {
  display: block;
  animation: fadeInPanel 0.4s var(--ease);
}

@keyframes fadeInPanel {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.calc-panel h3 {
  font-size: 18px;
  text-align: center;
  margin-bottom: 24px;
}

.calc-options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-bottom: 32px;
}

.calc-opt-btn,
.calc-speed-btn {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 18px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  transition: all 0.35s var(--ease);
}

.calc-opt-btn:hover,
.calc-speed-btn:hover {
  border-color: var(--blue);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.calc-opt-btn.active,
.calc-speed-btn.active {
  border-color: var(--blue);
  background: var(--blue-soft);
  box-shadow: 0 0 0 2px var(--blue);
}

.opt-icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: var(--blue-soft);
  color: var(--blue-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  transition: transform 0.35s var(--ease), background 0.35s ease;
}

.opt-icon svg {
  width: 20px;
  height: 20px;
}

.calc-opt-btn:hover .opt-icon,
.calc-speed-btn:hover .opt-icon {
  transform: scale(1.1) rotate(4deg);
  background: var(--blue);
  color: #fff;
}

.calc-opt-btn b,
.calc-speed-btn b {
  font-size: 15px;
  color: var(--ink);
}

.calc-opt-btn span,
.calc-speed-btn span {
  font-size: 12px;
  color: var(--muted);
}

.calc-next-btn {
  display: block;
  margin: 0 auto;
  padding: 14px 36px;
}

.calc-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
}

.calc-result-box {
  background: linear-gradient(145deg, var(--white), var(--blue-soft));
  border: 1.5px solid var(--blue);
  border-radius: var(--radius);
  padding: 36px;
  text-align: center;
  max-width: 520px;
  margin: 0 auto;
  box-shadow: var(--shadow-md);
}

.result-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--blue-deep);
  color: #FFF;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 14px;
}

.calc-result-box h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.result-price {
  font-family: var(--font-head);
  font-size: 42px;
  font-weight: 800;
  color: var(--blue-deep);
  margin-bottom: 16px;
}

.result-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13.5px;
  color: var(--muted);
  margin-bottom: 24px;
  padding: 14px;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--border);
}

.calc-result-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (max-width:640px) {
  .calc-card {
    padding: 28px 18px;
  }

  .calc-options-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   23. INTERACTIVE TOOTH MAP & CARE SELECTOR (COMPACT VIEW)
   ============================================================ */
.tooth-map-section {
  background: linear-gradient(180deg, color-mix(in srgb, var(--blue-soft) 25%, var(--bg)), var(--bg));
  padding: 48px 0;
}

.tooth-map-section .section-head {
  margin-bottom: 24px;
}

.tooth-map-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 28px;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.tm-quick-concerns {
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.tm-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.tm-tags-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tm-tag-btn {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
  transition: all 0.3s var(--ease);
  cursor: pointer;
}

.tm-tag-btn:hover {
  border-color: var(--blue);
  color: var(--blue-deep);
  transform: translateY(-1px);
}

.tm-tag-btn.active {
  background: linear-gradient(135deg, var(--blue-deep), var(--blue));
  color: #FFFFFF;
  border-color: transparent;
  box-shadow: 0 3px 10px rgba(14, 165, 233, 0.25);
}

.tm-workspace {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: center;
}

@media (max-width:980px) {
  .tm-workspace {
    grid-template-columns: 1fr;
  }
}

.tm-arcade-visual {
  background: linear-gradient(145deg, color-mix(in srgb, var(--blue-soft) 40%, var(--bg)), var(--white));
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.tm-arch-label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 2px 0;
}

.tm-arch-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 8px 0;
  position: relative;
}

.tm-arch-divider::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background: dashed var(--border);
  z-index: 1;
}

.tm-arch-divider span {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 1px 10px;
  border-radius: 100px;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-deep);
  z-index: 2;
  position: relative;
}

.tm-teeth-row {
  display: flex;
  justify-content: center;
  gap: 5px;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding: 4px 2px;
}

.tm-tooth-node {
  flex: 0 0 auto;
  width: 31px;
  height: 42px;
  border-radius: 8px;
  background: var(--white);
  border: 1.5px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s var(--ease);
  position: relative;
}

.tm-tooth-node:hover {
  border-color: var(--blue);
  transform: scale(1.12) translateY(-2px);
  z-index: 10;
  box-shadow: 0 4px 12px rgba(14, 165, 233, 0.2);
}

.tm-tooth-node.active {
  border-color: var(--blue);
  background: linear-gradient(135deg, var(--blue-soft), var(--white));
  transform: scale(1.14) translateY(-2px);
  z-index: 11;
  box-shadow: 0 0 0 2px var(--blue), 0 6px 16px rgba(14, 165, 233, 0.25);
}

.tm-tooth-node .tooth-ic {
  width: 14px;
  height: 14px;
  color: var(--blue-deep);
  transition: transform 0.25s ease;
}

.tm-tooth-node.active .tooth-ic {
  transform: scale(1.15);
  color: var(--blue);
}

.tm-tooth-node .tooth-num {
  font-size: 8.5px;
  font-weight: 700;
  color: var(--muted);
  margin-top: 1px;
}

.tm-detail-panel {
  background: linear-gradient(145deg, var(--white), color-mix(in srgb, var(--blue-soft) 25%, var(--white)));
  border: 1.5px solid var(--blue);
  border-radius: var(--radius-sm);
  padding: 20px 22px;
  box-shadow: var(--shadow-md);
  position: relative;
  animation: fadeInPanel 0.35s var(--ease);
}

.tm-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--blue-soft);
  color: var(--blue-deep);
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 8px;
}

.tm-detail-panel h3 {
  font-size: 18px;
  margin-bottom: 4px;
  color: var(--ink);
}

.tm-detail-panel p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.45;
  margin-bottom: 14px;
}

.tm-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.spec-item {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 8px 10px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.spec-lbl {
  font-size: 10px;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
}

.spec-item b {
  font-size: 12.5px;
  color: var(--ink);
}

.spec-item b.highlight {
  color: var(--blue-deep);
  font-size: 13.5px;
  font-weight: 800;
}

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

  .tooth-map-card {
    padding: 18px 14px;
  }

  .tm-specs {
    grid-template-columns: 1fr;
  }

  .tm-tooth-node {
    width: 27px;
    height: 38px;
  }

  .tm-tooth-node .tooth-ic {
    width: 12px;
    height: 12px;
  }
}

/* ============================================================
   19. CONTACT / VISIT THE HOSPITAL (COMPACT VIEW)
   ============================================================ */
.contact {
  background: var(--bg);
  padding: 48px 0;
}

.contact .section-head {
  margin-bottom: 20px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.contact-map {
  border-radius: 20px;
  overflow: hidden;
  border: 1.5px solid var(--border);
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.04);
  height: 100%;
  min-height: 280px;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  min-height: 280px;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: all 0.3s var(--ease);
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.03);
}

.contact-card:hover {
  border-color: var(--blue);
  box-shadow: 0 8px 24px rgba(14, 165, 233, 0.1);
  transform: translateY(-2px);
}

.contact-card .ic {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--blue-soft);
  color: var(--blue-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid color-mix(in srgb, var(--blue) 25%, transparent);
}

.contact-card .ic svg {
  width: 18px;
  height: 18px;
}

.contact-card h4 {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 2px;
}

.contact-card p {
  font-size: 12.5px;
  color: var(--muted);
  margin-bottom: 1px;
}

.contact-card .sub {
  font-size: 11px;
  color: var(--muted-2);
  font-weight: 500;
}

.contact-hours {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 0;
  border-bottom: 1px solid var(--border);
  font-size: 12px;
}

.contact-hours:last-child {
  border-bottom: none;
}

.contact-hours span {
  color: var(--muted);
}

.contact-hours b {
  color: var(--ink);
  font-weight: 700;
}

/* ============================================================
   20. MOBILE STICKY QUICK ACTION BAR (1-TAP BOOKING ON MOBILE)
   ============================================================ */
.mobile-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(15, 23, 42, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 8px 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  gap: 8px;
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.25);
}

@media (max-width: 768px) {
  .mobile-bottom-bar {
    display: flex;
  }

  body {
    padding-bottom: 64px;
    /* Prevents content overlap on mobile phones */
  }

  /* Touch target optimizations for mobile booking */
  .field input,
  .field select,
  .field textarea {
    min-height: 44px;
    font-size: 14px;
  }

  .btn {
    min-height: 44px;
  }
}

.mb-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 8px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.mb-btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.mb-btn-call {
  background: rgba(255, 255, 255, 0.12);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.mb-btn-wa {
  background: #25D366;
  color: #FFFFFF;
}

.mb-btn-book {
  background: linear-gradient(135deg, var(--blue-deep), var(--blue));
  color: #FFFFFF;
  flex: 1.3;
}