/* =========================================================================
   AURELIA DENTAL — Ultra-Luxury 7-Star Dental Practice Design System
   ========================================================================= */

:root {
  /* ---- Light Theme Tokens ---- */
  --bg-primary: #FFFFFF;
  --bg-secondary: #FAFAF7;
  --bg-surface: #F4F3ED;
  
  --navy-dark: #050B15;
  --navy: #0C1528;
  --navy-light: #162442;

  --gold: #C5A059;
  --gold-light: #F4E8D1;
  --gold-dim: #9E7D3A;
  --gold-bright: #D4AF37;

  --ink: #101623;
  --ink-soft: #475366;
  --ink-muted: #8A96A8;

  --line: rgba(16, 22, 35, 0.08);
  --line-gold: rgba(197, 160, 89, 0.28);
  --line-light: rgba(255, 255, 255, 0.15);

  --shadow-lg: 0 35px 80px -15px rgba(5, 11, 21, 0.14);
  --shadow-md: 0 18px 45px -12px rgba(5, 11, 21, 0.09);
  --shadow-sm: 0 8px 24px -8px rgba(5, 11, 21, 0.06);

  /* ---- Typography ---- */
  --f-display: 'Cormorant Garamond', Georgia, serif;
  --f-body: 'Outfit', 'Plus Jakarta Sans', -apple-system, sans-serif;

  --container: 1240px;
  --radius: 22px;
  --radius-sm: 14px;
  --ease: cubic-bezier(.16, .84, .32, 1);
}

/* ================= DARK MODE OVERRIDES ================= */
[data-theme="dark"] {
  --bg-primary: #040912;
  --bg-secondary: #08101F;
  --bg-surface: #0E182D;
  
  --navy-dark: #010408;
  --navy: #FFFFFF;
  --navy-light: #1C2B47;

  --gold: #D4AF37;
  --gold-light: #F4E8D1;
  --gold-dim: #C5A059;

  --ink: #F1F5F9;
  --ink-soft: #94A3B8;
  --ink-muted: #64748B;

  --line: rgba(255, 255, 255, 0.09);
  --line-gold: rgba(212, 175, 55, 0.38);

  --shadow-lg: 0 35px 80px -15px rgba(0, 0, 0, 0.75);
  --shadow-md: 0 18px 45px -12px rgba(0, 0, 0, 0.55);
  --shadow-sm: 0 8px 24px -8px rgba(0, 0, 0, 0.35);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--f-body);
  color: var(--ink);
  background: var(--bg-primary);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  transition: background-color 0.4s var(--ease), color 0.4s var(--ease);
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s var(--ease);
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

input,
select,
textarea {
  font-family: inherit;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

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

/* ---- Section Spacing ---- */
.pad {
  padding: 110px 0;
}

@media (max-width: 860px) {
  .pad {
    padding: 72px 0;
  }
}

.panel-white {
  background: var(--bg-primary);
  color: var(--ink);
  transition: background-color 0.4s var(--ease);
}

.panel-warm {
  background: var(--bg-secondary);
  color: var(--ink);
  transition: background-color 0.4s var(--ease);
}

.panel-navy {
  background: #08101F;
  color: #FFFFFF;
}

.panel-navy h2,
.panel-navy h3,
.panel-navy h4 {
  color: #FFFFFF;
}

.panel-navy p {
  color: rgba(255, 255, 255, 0.78);
}

/* ---- Typography Helpers ---- */
.eyebrow {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-dim);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.eyebrow::before {
  content: '';
  width: 22px;
  height: 1px;
  background: var(--gold);
}

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

.eyebrow-gold::before {
  background: var(--gold-light);
}

h1, h2, h3, h4 {
  font-family: var(--f-display);
  font-weight: 500;
  margin: 0;
  color: var(--navy);
  line-height: 1.1;
}

h1 {
  font-size: clamp(40px, 5.5vw, 72px);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(32px, 3.8vw, 48px);
  letter-spacing: -0.015em;
}

h3 {
  font-size: 24px;
  letter-spacing: -0.01em;
}

p {
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0;
  font-size: 16px;
}

.gold-serif {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}

.gold-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 18px 0 24px;
}

.section-head.center .gold-divider {
  margin-left: auto;
  margin-right: auto;
}

.section-head {
  max-width: 660px;
  margin-bottom: 56px;
}

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

.section-desc {
  font-size: 16px;
  color: var(--ink-soft);
  max-width: 540px;
  margin: 12px auto 0;
}

/* ================= 3D GLASSMORPHISM ICONS & UTILITIES ================= */
.glass-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(197, 160, 89, 0.14);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  border: 1px solid rgba(212, 175, 55, 0.38);
  box-shadow: inset 0 1.5px 2px rgba(255, 255, 255, 0.6), 0 10px 24px -6px rgba(197, 160, 89, 0.2);
  border-radius: 14px;
  padding: 10px;
  transition: all 0.35s var(--ease);
}

.glass-icon:hover {
  background: rgba(197, 160, 89, 0.25);
  border-color: var(--gold-bright);
  transform: translateY(-3px) scale(1.08) rotate(3deg);
  box-shadow: inset 0 1.5px 2px rgba(255, 255, 255, 0.8), 0 15px 30px -4px rgba(197, 160, 89, 0.35);
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 30px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: all 0.35s var(--ease);
  white-space: nowrap;
}

.btn-sm {
  padding: 10px 20px;
  font-size: 13px;
}

.btn-full {
  width: 100%;
}

.btn-gold {
  background: linear-gradient(135deg, #F3E5C8 0%, #D4AF37 50%, #C5A059 100%);
  color: #FFFFFF;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.6), 0 10px 28px -6px rgba(197, 160, 89, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-gold:hover {
  background: linear-gradient(135deg, #FFFFFF 0%, #E6CA65 50%, #D4AF37 100%);
  transform: translateY(-2px);
  box-shadow: inset 0 1.5px 2px rgba(255, 255, 255, 0.8), 0 14px 35px -6px rgba(197, 160, 89, 0.55);
}

.btn-outline-gold {
  border: 1px solid rgba(212, 175, 55, 0.4);
  color: var(--gold-dim);
  background: rgba(197, 160, 89, 0.08);
  backdrop-filter: blur(14px);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.3);
}

.btn-outline-gold:hover {
  border-color: var(--gold-bright);
  color: var(--gold);
  background: rgba(197, 160, 89, 0.2);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.5), 0 8px 20px rgba(197, 160, 89, 0.2);
}

.btn-outline-dark {
  border: 1px solid var(--line);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
}

.btn-outline-dark:hover {
  border-color: var(--gold);
  background: var(--gold);
  color: #FFFFFF;
}

.btn-glass {
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: inset 0 1.5px 2px rgba(255, 255, 255, 0.4);
  color: #FFFFFF;
}

[data-theme="dark"] .btn-glass {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.28);
  border-color: rgba(255, 255, 255, 0.6);
  box-shadow: inset 0 1.5px 2px rgba(255, 255, 255, 0.6), 0 12px 28px rgba(0, 0, 0, 0.25);
}

/* ================= LOADER ================= */
.loader {
  position: fixed;
  inset: 0;
  background: var(--navy-dark);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s var(--ease), visibility 0.6s;
}

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

.loader-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.loader-mark {
  width: 60px;
  height: 60px;
  color: var(--gold);
  margin-bottom: 16px;
  animation: pulseLogo 1.6s infinite ease-in-out;
}

@keyframes pulseLogo {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.08); opacity: 1; }
}

.loader-logo {
  font-family: var(--f-display);
  font-size: 26px;
  color: #FFFFFF;
  letter-spacing: 0.08em;
}

.loader-sub {
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-top: 4px;
}

/* ================= SCROLL PROGRESS & ANNOUNCEMENT BAR ================= */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright));
  z-index: 1000;
  width: 0%;
  transition: width 0.1s linear;
}

.top-announcement-bar {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.82);
  font-size: 12.5px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.announcement-flex {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.announcement-divider {
  color: var(--gold);
  opacity: 0.6;
}

.announcement-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.location-icon,
.phone-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
}

.location-icon svg,
.phone-icon svg {
  width: 13px;
  height: 13px;
}

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

.pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.6);
  animation: pulseGreen 2s infinite;
}

@keyframes pulseGreen {
  0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.6); }
  70% { box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
  100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.6); }
}

.star-rating {
  color: var(--gold-bright);
  font-weight: 600;
}

.announcement-phone {
  color: var(--gold-light);
  font-weight: 600;
}

@media (max-width: 768px) {
  .announcement-divider,
  .announcement-flex .announcement-item:not(.phone-item) {
    display: none;
  }
}

/* ================= ARCHITECTURAL FLOATING GLASS DOCK HEADER ================= */
.site-header {
  position: sticky;
  top: 18px;
  margin: 18px auto 0;
  max-width: 1260px;
  width: calc(100% - 24px);
  z-index: 950;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(30px) saturate(210%);
  -webkit-backdrop-filter: blur(30px) saturate(210%);
  border: 1px solid rgba(212, 175, 55, 0.38);
  border-radius: 999px;
  box-shadow: inset 0 1.5px 2px 0 rgba(255, 255, 255, 0.8), 0 20px 50px -10px rgba(197, 160, 89, 0.2);
  transition: all 0.35s var(--ease);
}

[data-theme="dark"] .site-header {
  background: rgba(8, 16, 32, 0.72);
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: inset 0 1.5px 2px 0 rgba(255, 255, 255, 0.18), 0 20px 50px -5px rgba(0, 0, 0, 0.7);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: inset 0 1.5px 2px 0 rgba(255, 255, 255, 0.9), 0 22px 55px -10px rgba(7, 13, 24, 0.22);
}

[data-theme="dark"] .site-header.scrolled {
  background: rgba(4, 9, 18, 0.94);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 66px;
  padding: 0 14px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-mark-wrap {
  width: 38px;
  height: 38px;
  color: var(--navy);
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.85), rgba(197,160,89,0.25));
  backdrop-filter: blur(14px);
  border: 1px solid rgba(212, 175, 55, 0.45);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 1.5px 2px rgba(255, 255, 255, 0.9), 0 6px 18px -4px rgba(197, 160, 89, 0.3);
}

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

.logo-word {
  font-family: var(--f-display);
  font-size: 19px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.06em;
  line-height: 1;
}

.logo-subtext {
  font-size: 8px;
  letter-spacing: 0.2em;
  color: var(--gold-dim);
  font-weight: 600;
  margin-top: 2px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  padding: 7px 14px;
  border-radius: 999px;
  transition: all 0.3s var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 3px;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright));
  border-radius: 2px;
  transition: all 0.3s var(--ease);
  transform: translateX(-50%);
  opacity: 0;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 20px;
  opacity: 1;
}

.nav-link:hover {
  color: var(--gold-dim);
  background: rgba(197, 160, 89, 0.14);
  backdrop-filter: blur(14px);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.4), 0 4px 15px rgba(197, 160, 89, 0.15);
  transform: translateY(-1px);
}

.admin-nav-badge {
  background: rgba(212, 175, 55, 0.14);
  border: 1px solid rgba(212, 175, 55, 0.45);
  color: var(--gold-bright, #D4AF37) !important;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s var(--ease);
}

.admin-nav-badge:hover {
  background: linear-gradient(135deg, #F3E5C8 0%, #D4AF37 50%, #C5A059 100%);
  color: #050B15 !important;
  border-color: var(--gold-bright);
  box-shadow: 0 4px 16px rgba(212, 175, 55, 0.4);
  transform: translateY(-1px);
}

.nav-item-dropdown {
  position: relative;
}

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

.chevron {
  transition: transform 0.25s var(--ease);
}

.nav-item-dropdown:hover .chevron {
  transform: rotate(180deg);
}

/* Glassmorphism Mega Menu Dropdowns */
.mega-menu {
  position: absolute;
  top: 100%;
  left: -20px;
  padding-top: 14px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px) scale(0.98);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1000;
  pointer-events: none;
}

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

.mega-menu-inner {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(32px) saturate(210%);
  -webkit-backdrop-filter: blur(32px) saturate(210%);
  border-radius: var(--radius);
  border: 1px solid rgba(212, 175, 55, 0.42);
  box-shadow: inset 0 1.5px 2px rgba(255, 255, 255, 0.8), 0 35px 80px -15px rgba(7, 13, 24, 0.3);
  padding: 22px;
  width: 560px;
}

[data-theme="dark"] .mega-menu-inner {
  background: rgba(8, 16, 32, 0.94);
  border-color: rgba(212, 175, 55, 0.42);
  box-shadow: inset 0 1.5px 2px rgba(255, 255, 255, 0.18), 0 35px 80px -15px rgba(0, 0, 0, 0.72);
}

.mega-menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.mega-item {
  display: flex;
  gap: 12px;
  padding: 10px;
  border-radius: var(--radius-sm);
  transition: background 0.25s var(--ease);
}

.mega-item:hover {
  background: rgba(197, 160, 89, 0.14);
}

.mega-thumb {
  width: 54px;
  height: 54px;
  border-radius: 10px;
  overflow: hidden;
  flex: none;
  border: 1px solid rgba(197, 160, 89, 0.25);
}

.mega-thumb img {
  width: 100%;
  height: 100%;
}

.mega-info h5 {
  font-size: 14.5px;
  margin-bottom: 2px;
  color: var(--navy);
}

.mega-info p {
  font-size: 12px;
  line-height: 1.35;
  color: var(--ink-soft);
}

.mega-menu-doctors-grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mega-doctor-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: background 0.25s;
}

.mega-doctor-item:hover {
  background: rgba(197, 160, 89, 0.14);
}

.mega-doctor-item img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(197, 160, 89, 0.35);
}

.mega-doctor-item h5 {
  font-size: 14.5px;
  margin-bottom: 2px;
}

.mega-doctor-item span {
  font-size: 11.5px;
  color: var(--gold-dim);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-phone-btn {
  display: none;
}

/* Liquid Glass Theme Toggle Button */
.theme-toggle-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(197, 160, 89, 0.15);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(212, 175, 55, 0.4);
  box-shadow: inset 0 1.5px 2px rgba(255, 255, 255, 0.5), 0 8px 20px -4px rgba(197, 160, 89, 0.25);
  color: var(--ink);
  transition: all 0.35s var(--ease);
}

.theme-toggle-btn:hover {
  transform: scale(1.12) rotate(15deg);
  background: rgba(197, 160, 89, 0.28);
  border-color: var(--gold-bright);
  box-shadow: inset 0 1.5px 2px rgba(255, 255, 255, 0.7), 0 12px 28px -4px rgba(197, 160, 89, 0.45);
}

/* Header Contact Glass Option Button */
.header-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(197, 160, 89, 0.14);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(212, 175, 55, 0.4);
  box-shadow: inset 0 1.5px 2px rgba(255, 255, 255, 0.5), 0 8px 20px -4px rgba(197, 160, 89, 0.22);
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.35s var(--ease);
  white-space: nowrap;
}

.header-contact-btn svg {
  color: var(--gold-bright);
  transition: transform 0.35s var(--ease);
}

.header-contact-btn:hover {
  transform: translateY(-1px) scale(1.05);
  background: rgba(197, 160, 89, 0.28);
  border-color: var(--gold-bright);
  color: var(--gold-dim);
  box-shadow: inset 0 1.5px 2px rgba(255, 255, 255, 0.7), 0 12px 28px -4px rgba(197, 160, 89, 0.4);
}

.header-contact-btn:hover svg {
  transform: scale(1.15) rotate(-12deg);
}

[data-theme="light"] .header-contact-btn {
  background: rgba(197, 160, 89, 0.14);
  color: #0F172A;
  border-color: rgba(184, 142, 49, 0.45);
}

@media (max-width: 580px) {
  .header-contact-btn {
    padding: 8px;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    justify-content: center;
  }
  .header-contact-btn span {
    display: none;
  }
}

.theme-icon {
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.theme-icon svg {
  width: 17px;
  height: 17px;
  transition: transform 0.4s var(--ease);
}

.sun-icon { display: none; }
.moon-icon { display: flex; }

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

.theme-toggle-btn:hover .theme-icon svg { transform: rotate(-14deg) scale(1.08); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.hamburger-line {
  width: 20px;
  height: 2px;
  background: var(--ink);
  transition: all 0.3s;
}

@media (max-width: 1024px) {
  .main-nav,
  .header-phone-btn {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }
}

@media (max-width: 860px) {
  .site-header {
    top: 10px;
    margin: 10px auto 0;
    width: calc(100% - 16px);
  }
  .header-container {
    padding: 0 10px;
  }
  .header-cta .btn-gold {
    display: none;
  }
}

@media (max-width: 520px) {
  .logo-word {
    font-size: 16px;
  }
  .logo-subtext {
    font-size: 7.5px;
    letter-spacing: 0.12em;
  }
  .header-contact-btn {
    padding: 8px;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    justify-content: center;
  }
  .header-contact-btn span {
    display: none;
  }
}

/* Glass Mobile Nav Drawer */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 2000;
  visibility: hidden;
  opacity: 0;
  transition: all 0.4s var(--ease);
}

.mobile-nav.open {
  visibility: visible;
  opacity: 1;
}

.mobile-nav-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 9, 18, 0.75);
  backdrop-filter: blur(14px);
}

.mobile-nav-panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 85%;
  max-width: 360px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  color: var(--ink);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
  box-shadow: -10px 0 45px rgba(0, 0, 0, 0.45);
  border-left: 1px solid rgba(212, 175, 55, 0.4);
}

[data-theme="dark"] .mobile-nav-panel {
  background: rgba(8, 16, 32, 0.92);
}

.mobile-nav.open .mobile-nav-panel {
  transform: translateX(0);
}

.mobile-nav-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

.mobile-nav-top .logo-word {
  color: var(--navy);
}

.mobile-close-btn {
  color: var(--ink);
}

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

.mobile-link {
  font-family: var(--f-display);
  font-size: 20px;
  color: var(--ink);
}

.mobile-link:hover {
  color: var(--gold-dim);
}

.mobile-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}

.mobile-theme-btn {
  width: 100%;
  height: 44px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(197, 160, 89, 0.14);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(212, 175, 55, 0.35);
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
}

/* ================= HERO SECTION ================= */
.hero {
  position: relative;
  padding: 70px 0 90px;
  background: radial-gradient(circle at 70% 30%, rgba(197, 160, 89, 0.1) 0%, rgba(255, 255, 255, 0) 65%), var(--bg-primary);
  overflow: hidden;
  transition: background-color 0.4s var(--ease);
}

@media (max-width: 860px) {
  .hero {
    padding: 40px 0 60px;
  }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

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

.eyebrow-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 999px;
  background: rgba(197, 160, 89, 0.14);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(212, 175, 55, 0.35);
  color: var(--gold-dim);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  margin-bottom: 24px;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.hero-title {
  margin-bottom: 24px;
}

.hero-sub {
  font-size: 17.5px;
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 520px;
}

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

.btn-hero {
  padding: 15px 32px;
  font-size: 14.5px;
}

/* Hero Showcase Card */
.hero-showcase-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  transform-style: preserve-3d;
  transition: transform 0.6s var(--ease);
  will-change: transform;
}

.hero-img-wrap {
  position: relative;
  height: 460px;
  overflow: hidden;
}

@media (max-width: 640px) {
  .hero-img-wrap {
    height: 320px;
  }
}

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

.hero-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 13, 24, 0) 40%, rgba(7, 13, 24, 0.45) 100%);
}

.floating-glass-card {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: inset 0 1.5px 2px rgba(255, 255, 255, 0.6), var(--shadow-md);
  z-index: 10;
}

[data-theme="dark"] .floating-glass-card {
  background: rgba(8, 16, 32, 0.82);
  border-color: rgba(255, 255, 255, 0.18);
}

.fg-stars {
  color: var(--gold-bright);
  font-size: 16px;
}

.fg-text b {
  display: block;
  font-size: 15px;
  color: var(--navy);
}

.fg-text span {
  font-size: 12px;
  color: var(--ink-soft);
}

.floating-location-tag {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(7, 13, 24, 0.78);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #FFFFFF;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 11.5px;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 10;
}

/* ================= TRUST STRIP & METRICS ================= */
.trust-strip {
  background: var(--bg-surface);
  border-y: 1px solid var(--line);
  padding: 24px 0;
  transition: background-color 0.4s var(--ease);
}

.trust-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.trust-item {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  gap: 8px;
}

.trust-mark {
  color: var(--gold);
  font-size: 10px;
}

.stats-section {
  padding: 64px 0;
  background: var(--bg-primary);
  border-bottom: 1px solid var(--line);
  transition: background-color 0.4s var(--ease);
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

@media (max-width: 768px) {
  .stat-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

.stat-number {
  font-family: var(--f-display);
  font-size: clamp(36px, 4vw, 54px);
  color: var(--navy);
  font-weight: 500;
  display: block;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 13.5px;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ================= AI SMILE VISUALIZER ================= */
.visualizer-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  padding: 40px;
}

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

.vis-pills {
  display: flex;
  gap: 12px;
  margin-bottom: 36px;
  overflow-x: auto;
  padding-bottom: 8px;
}

.vis-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  color: rgba(255, 255, 255, 0.85);
  font-size: 13.5px;
  white-space: nowrap;
  transition: all 0.3s;
}

.vis-pill svg {
  width: 15px;
  height: 15px;
  flex: none;
  transition: transform 0.35s var(--ease);
}

.vis-pill.active,
.vis-pill:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #FFFFFF;
  box-shadow: 0 8px 20px -4px rgba(197, 160, 89, 0.45);
}

.vis-pill.active svg { transform: scale(1.12) rotate(-6deg); }

.vis-display-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

@media (max-width: 860px) {
  .vis-display-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.vis-badge {
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--gold-light);
  font-weight: 600;
  display: inline-block;
  margin-bottom: 12px;
}

.vis-details h3 {
  font-size: 32px;
  color: #FFFFFF;
  margin-bottom: 14px;
}

.vis-details p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 15.5px;
  margin-bottom: 28px;
}

.vis-meta-list {
  display: flex;
  gap: 32px;
  margin-bottom: 32px;
}

.vis-meta-item b {
  display: block;
  font-family: var(--f-display);
  font-size: 22px;
  color: var(--gold-light);
}

.vis-meta-item span {
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.6);
}

/* Before / After Slider */
.ba-slider {
  position: relative;
  height: 340px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  user-select: none;
  touch-action: pan-y;
}

.ba-slider img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.28s ease;
}

.ba-slider.swapping img {
  opacity: 0;
}

.ba-slider .after-img {
  -webkit-clip-path: inset(0 0 0 50%);
  clip-path: inset(0 0 0 50%);
}

.ba-tag {
  position: absolute;
  top: 14px;
  background: rgba(7, 13, 24, 0.78);
  backdrop-filter: blur(12px);
  color: #FFFFFF;
  font-size: 10px;
  letter-spacing: 0.15em;
  padding: 4px 10px;
  border-radius: 4px;
  z-index: 10;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.ba-tag.before { left: 14px; }
.ba-tag.after { right: 14px; }

.handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: #FFFFFF;
  z-index: 20;
  cursor: ew-resize;
}

.handle-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border: 2px solid var(--gold);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.handle-icon::before {
  content: '↔';
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-size: 14px;
  color: var(--navy-dark);
  font-weight: bold;
}

/* ================= ABOUT SECTION ================= */
.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 64px;
  align-items: center;
}

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

.about-media {
  position: relative;
}

.about-main-frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  height: 460px;
}

.about-main-frame img {
  width: 100%;
  height: 100%;
}

.about-secondary-frame {
  position: absolute;
  top: -30px;
  right: -30px;
  width: 220px;
  height: 160px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 4px solid var(--bg-primary);
  box-shadow: var(--shadow-md);
}

@media (max-width: 640px) {
  .about-secondary-frame {
    display: none;
  }
}

.about-secondary-frame img {
  width: 100%;
  height: 100%;
}

.about-badge-card {
  position: absolute;
  bottom: -24px;
  left: -20px;
  background: rgba(8, 16, 32, 0.88);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(212, 175, 55, 0.4);
  color: #FFFFFF;
  padding: 20px 24px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
}

.about-doctor-name {
  display: block;
  font-family: var(--f-display);
  font-size: 22px;
  color: var(--gold-light);
}

.about-doctor-title {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
}

.about-timeline {
  margin: 36px 0;
  display: flex;
  flex-direction: column;
}

.timeline-row {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 20px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.timeline-tag {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dim);
}

.timeline-info h4 {
  font-size: 16px;
  margin-bottom: 4px;
}

.timeline-info p {
  font-size: 14px;
}

/* ================= AMENITIES GRID ================= */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

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

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

.amenity-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: all 0.35s var(--ease);
}

.amenity-card:hover {
  background: rgba(197, 160, 89, 0.14);
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: inset 0 1.5px 2px rgba(255, 255, 255, 0.3), 0 16px 38px -10px rgba(0, 0, 0, 0.35);
}

.amenity-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(197, 160, 89, 0.15);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(212, 175, 55, 0.35);
  box-shadow: inset 0 1.5px 2px rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  margin-bottom: 20px;
  transition: transform 0.35s var(--ease);
}

.amenity-card:hover .amenity-icon-wrap {
  transform: scale(1.12) rotate(4deg);
  background: rgba(197, 160, 89, 0.28);
  border-color: var(--gold-bright);
}

.amenity-icon-wrap svg {
  width: 26px;
  height: 26px;
}

.amenity-card h4 {
  color: #FFFFFF;
  font-size: 19px;
  margin-bottom: 10px;
}

.amenity-card p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14.5px;
}

/* ================= SERVICES SECTION ================= */
.treatment-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 22px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink-soft);
  background: var(--bg-primary);
  backdrop-filter: blur(12px);
  transition: all 0.3s;
}

.filter-btn.active,
.filter-btn:hover {
  border-color: var(--gold);
  background: var(--gold);
  color: #FFFFFF;
  box-shadow: 0 8px 20px -4px rgba(197, 160, 89, 0.4);
}

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

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

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

.service-card {
  background: var(--bg-primary);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: all 0.4s var(--ease);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: var(--line-gold);
}

.service-card-img-wrap {
  height: 220px;
  overflow: hidden;
}

.service-card-img-wrap img {
  width: 100%;
  height: 100%;
  transition: transform 0.6s var(--ease);
}

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

.service-card-body {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-cat {
  font-size: 10.5px;
  letter-spacing: 0.15em;
  color: var(--gold-dim);
  font-weight: 600;
  margin-bottom: 8px;
}

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

.service-card-body p {
  font-size: 14.5px;
  margin-bottom: 24px;
  flex: 1;
}

.service-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--navy);
}

.service-link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.25s;
}

.service-card:hover .service-link svg {
  transform: translateX(4px);
}

/* ================= COMPARISON SECTION ================= */
.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
}

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

.compare-col {
  padding: 44px 36px;
}

.compare-col.trad {
  background: var(--bg-surface);
}

.compare-col.us {
  background: #08101F;
  color: #FFFFFF;
  position: relative;
}

.us-badge {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--gold-light);
  font-weight: 600;
  margin-bottom: 8px;
}

.compare-col h4 {
  font-size: 18px;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}

.compare-col.us h4 {
  color: #FFFFFF;
}

.compare-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  font-size: 15px;
}

.compare-col.us .compare-row {
  border-top-color: rgba(255, 255, 255, 0.12);
}

.cross-icon,
.check-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  flex: none;
}

.cross-icon svg,
.check-icon svg {
  width: 11px;
  height: 11px;
}

.cross-icon {
  color: #EF4444;
  background: rgba(239, 68, 68, 0.12);
}

.check-icon {
  color: var(--navy-dark);
  background: var(--gold);
}

[data-theme="dark"] .check-icon { color: #0B1017; }

/* ================= DOCTORS SECTION ================= */
.doctors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

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

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

.doctor-card {
  background: var(--bg-primary);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.doctor-img-wrap {
  height: 280px;
}

.doctor-img-wrap img {
  width: 100%;
  height: 100%;
}

.doctor-info {
  padding: 24px;
  text-align: center;
}

.doctor-role {
  font-size: 10.5px;
  letter-spacing: 0.15em;
  color: var(--gold-dim);
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
}

.doctor-info h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.doctor-info p {
  font-size: 14px;
  margin-bottom: 20px;
}

/* ================= TECH GRID ================= */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

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

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

.tech-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: all 0.35s;
}

.tech-card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
  background: rgba(197, 160, 89, 0.1);
  box-shadow: inset 0 1.5px 2px rgba(255, 255, 255, 0.3);
}

.tech-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 6px;
}

.tech-icon-wrap {
  margin-bottom: 0;
}

.tech-card:hover .tech-icon-wrap {
  transform: scale(1.12) rotate(4deg);
  background: rgba(197, 160, 89, 0.28);
  border-color: var(--gold-bright);
}

.tech-num {
  font-family: var(--f-display);
  font-size: 22px;
  color: var(--gold-light);
  opacity: 0.55;
  display: block;
}

.tech-card h4 {
  font-size: 19px;
  color: #FFFFFF;
  margin-bottom: 10px;
}

/* ================= SMILE GALLERY ================= */
.gallery-filters {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 44px;
  flex-wrap: wrap;
}

.gallery-filter-btn {
  padding: 10px 24px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink-soft);
  background: var(--bg-primary);
  backdrop-filter: blur(12px);
  transition: all 0.3s var(--ease);
  cursor: pointer;
}

.gallery-filter-btn.active,
.gallery-filter-btn:hover {
  border-color: var(--gold);
  background: var(--gold);
  color: #FFFFFF;
  box-shadow: 0 8px 22px -4px rgba(197, 160, 89, 0.45);
}

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

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

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

.gallery-card {
  background: var(--bg-primary);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  padding: 14px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s var(--ease);
}

.gallery-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--line-gold);
}

.gallery-card-info {
  padding: 18px 10px 8px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.gallery-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.gallery-cat-badge {
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--gold-dim);
  font-weight: 700;
  text-transform: uppercase;
}

.gallery-spec-pill {
  font-size: 10.5px;
  padding: 3px 10px;
  border-radius: 999px;
  background: rgba(197, 160, 89, 0.12);
  color: var(--gold-dim);
  border: 1px solid rgba(212, 175, 55, 0.25);
  font-weight: 600;
}

.gallery-card-info h4 {
  font-size: 20px;
  margin-bottom: 6px;
  color: var(--navy);
}

.gallery-card-info p {
  font-size: 14px;
  color: var(--ink-soft);
  margin-bottom: 20px;
  flex: 1;
}

.gallery-card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 11px 18px;
  border-radius: var(--radius-sm);
  background: rgba(197, 160, 89, 0.08);
  border: 1px solid rgba(197, 160, 89, 0.3);
  color: var(--navy);
  font-size: 13px;
  font-weight: 600;
  transition: all 0.3s;
  text-decoration: none;
}

.gallery-card-btn svg {
  width: 16px;
  height: 16px;
  transition: transform 0.25s;
}

.gallery-card:hover .gallery-card-btn {
  background: var(--gold);
  color: #FFFFFF;
  border-color: var(--gold);
}

.gallery-card:hover .gallery-card-btn svg {
  transform: translateX(4px);
}

.ba-drag-hint {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(7, 13, 24, 0.82);
  backdrop-filter: blur(12px);
  color: var(--gold-light);
  font-size: 10px;
  letter-spacing: 0.12em;
  padding: 4px 12px;
  border-radius: 999px;
  z-index: 12;
  border: 1px solid rgba(212, 175, 55, 0.35);
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.ba-slider:hover .ba-drag-hint {
  opacity: 0.25;
}

/* ================= TESTIMONIALS ================= */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

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

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

.testi-card {
  background: var(--bg-primary);
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testi-stars {
  color: var(--gold-bright);
  font-size: 16px;
  margin-bottom: 16px;
}

.testi-card p {
  font-size: 15.5px;
  font-style: italic;
  margin-bottom: 24px;
  line-height: 1.6;
}

.testi-who {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-who img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line-gold);
}

.testi-who b {
  display: block;
  font-size: 15px;
  color: var(--navy);
}

.testi-who span {
  font-size: 12px;
  color: var(--ink-soft);
}

/* ================= PRICING ================= */
.pricing-tiers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

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

.price-card {
  background: var(--bg-primary);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-sm);
  transition: all 0.35s var(--ease);
}

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

.price-card.popular {
  border: 2px solid var(--gold);
  background: var(--bg-secondary);
}

.popular-badge {
  position: absolute;
  top: -14px;
  right: 32px;
  background: var(--gold);
  color: #FFFFFF;
  font-size: 10px;
  letter-spacing: 0.1em;
  padding: 4px 14px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(197, 160, 89, 0.4);
}

.price-num {
  font-family: var(--f-display);
  font-size: 44px;
  color: var(--navy);
  margin: 20px 0 24px;
}

.price-num span {
  font-size: 14px;
  font-family: var(--f-body);
  color: var(--ink-soft);
}

.price-features {
  margin-bottom: 32px;
}

.price-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14.5px;
  color: var(--ink-soft);
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}

.price-features svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
  flex: none;
}

/* ================= BOOKING SECTION ================= */
.book-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  background: var(--bg-primary);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

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

.book-info {
  background: #08101F;
  color: #FFFFFF;
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.book-info h3 {
  color: #FFFFFF;
  font-size: 28px;
  margin-bottom: 14px;
}

.book-info p {
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 36px;
}

.b-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.b-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(197, 160, 89, 0.15);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(212, 175, 55, 0.35);
  box-shadow: inset 0 1.5px 2px rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  flex: none;
}

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

.b-item b {
  display: block;
  font-size: 15px;
}

.b-item span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
}

.book-form {
  padding: 48px 40px;
}

@media (max-width: 640px) {
  .book-form {
    padding: 32px 20px;
  }
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 24px;
}

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

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

.field.full {
  grid-column: span 2;
}

@media (max-width: 600px) {
  .field.full {
    grid-column: span 1;
  }
}

.field label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ink-soft);
}

.field input,
.field select,
.field textarea {
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: var(--bg-surface);
  color: var(--ink);
  font-size: 14.5px;
  outline: none;
  transition: border-color 0.3s;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--gold);
  background: var(--bg-primary);
  box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.15);
}

.field textarea {
  height: 90px;
  resize: vertical;
}

.form-success {
  display: none;
  align-items: center;
  gap: 10px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid #10B981;
  color: #10B981;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  margin-top: 16px;
}

.form-success.show {
  display: flex;
}

.form-success svg {
  width: 20px;
  height: 20px;
  flex: none;
}

/* ================= FAQ ACCORDION ================= */
.faq-search-box {
  max-width: 580px;
  margin: 0 auto 40px;
  position: relative;
}

.faq-search-box svg {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  color: var(--gold-dim);
}

.faq-search-box input {
  width: 100%;
  padding: 16px 20px 16px 54px;
  border-radius: 999px;
  border: 1px solid var(--line-gold);
  background: var(--bg-secondary);
  backdrop-filter: blur(14px);
  color: var(--ink);
  font-size: 15px;
  outline: none;
  transition: all 0.3s;
}

.faq-search-box input:focus {
  border-color: var(--gold);
  background: var(--bg-primary);
  box-shadow: var(--shadow-sm);
}

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

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--bg-secondary);
  overflow: hidden;
  transition: border-color 0.3s;
}

.faq-item.open {
  border-color: var(--line-gold);
  background: var(--bg-primary);
}

.faq-q {
  width: 100%;
  padding: 20px 24px;
  text-align: left;
  font-family: var(--f-display);
  font-size: 19px;
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.faq-icon {
  transition: transform 0.3s;
  flex: none;
}

.faq-item.open .faq-icon {
  transform: rotate(180deg);
}

.faq-a {
  padding: 0 24px 20px;
  font-size: 15px;
  display: none;
}

.faq-item.open .faq-a {
  display: block;
}

/* ================= LOCATION & CONTACT ================= */
.location-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
}

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

.map-frame {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 380px;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

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

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

.c-info-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 22px;
  background: var(--bg-primary);
}

.c-info-card h4 {
  font-size: 16px;
  margin-bottom: 8px;
}

.c-info-card p {
  font-size: 14px;
}

/* ================= FOOTER ================= */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.75);
  padding: 80px 0 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}

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

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

.footer-brand .logo-word {
  color: #FFFFFF;
}

.footer-brand p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 14px;
}

.footer-socials {
  margin-top: 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.35);
  color: #F8FAFC;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.3s var(--ease);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.3);
}

.social-btn svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s var(--ease);
}

.social-btn:hover {
  background: linear-gradient(135deg, #F3E5C8 0%, #D4AF37 50%, #C5A059 100%);
  color: #050B15;
  border-color: var(--gold-bright);
  transform: translateY(-3px) scale(1.1);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.8), 0 10px 22px rgba(212, 175, 55, 0.45);
}

.social-btn:hover svg {
  transform: scale(1.12);
}

.footer-nav-col h5 {
  color: #FFFFFF;
  font-size: 12px;
  letter-spacing: 0.15em;
  margin-bottom: 20px;
}

.footer-nav-col a,
.footer-nav-col p {
  display: block;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 10px;
}

.footer-nav-col a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 13px;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-rating {
  color: var(--gold-light);
}

/* ================= MOBILE FLOATING STICKY ACTION BAR ================= */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(7, 13, 24, 0.94);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-top: 1px solid rgba(212, 175, 55, 0.4);
  padding: 10px 16px;
  gap: 12px;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.25), 0 -10px 30px rgba(0, 0, 0, 0.35);
}

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

.mobile-bar-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 600;
}

.call-btn {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.book-btn {
  background: var(--gold);
  color: #FFFFFF;
  box-shadow: 0 4px 15px rgba(197, 160, 89, 0.45);
}

/* Scroll Reveal Animations */
.reveal {
  opacity: 0;
  transform: translateY(34px) scale(0.985);
  filter: blur(6px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease), filter 0.9s var(--ease);
  will-change: transform, opacity, filter;
}

.reveal.reveal-in {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

/* Staggered reveal for grids (service cards, doctors, amenities, stats, etc.) */
.reveal-stagger {
  opacity: 1;
}

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(26px) scale(0.97);
  filter: blur(5px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease), filter 0.75s var(--ease);
  will-change: transform, opacity, filter;
}

.reveal-stagger.reveal-in > * {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.reveal-stagger.reveal-in > *:nth-child(1) { transition-delay: 0.03s; }
.reveal-stagger.reveal-in > *:nth-child(2) { transition-delay: 0.10s; }
.reveal-stagger.reveal-in > *:nth-child(3) { transition-delay: 0.17s; }
.reveal-stagger.reveal-in > *:nth-child(4) { transition-delay: 0.24s; }
.reveal-stagger.reveal-in > *:nth-child(5) { transition-delay: 0.31s; }
.reveal-stagger.reveal-in > *:nth-child(6) { transition-delay: 0.38s; }
.reveal-stagger.reveal-in > *:nth-child(n+7) { transition-delay: 0.44s; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-stagger > * {
    transition-duration: 0.001ms !important;
    filter: none !important;
  }
}

/* ================= CURSOR GLOW (desktop only, subtle ambient light) ================= */
.cursor-glow {
  position: fixed;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 2;
  background: radial-gradient(circle, rgba(197, 160, 89, 0.10), transparent 70%);
  transform: translate(-50%, -50%);
  left: 0;
  top: 0;
  opacity: 0;
  transition: opacity 0.5s var(--ease);
}

@media (max-width: 900px), (hover: none) {
  .cursor-glow { display: none; }
}

/* ================= AMBIENT FILM-GRAIN TEXTURE ================= */
body::after {
  content: '';
  position: fixed;
  inset: -200px;
  z-index: 3000;
  pointer-events: none;
  opacity: 0.025;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grainDrift 9s steps(6) infinite;
}

@keyframes grainDrift {
  0% { transform: translate(0, 0); }
  20% { transform: translate(-2%, -3%); }
  40% { transform: translate(-4%, 2%); }
  60% { transform: translate(2%, 4%); }
  80% { transform: translate(4%, -2%); }
  100% { transform: translate(0, 0); }
}

/* ================= 3D TILT MICRO-INTERACTION (JS-driven, cards opt in) ================= */
.tilt-ready {
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.35s, background 0.35s;
  transform-style: preserve-3d;
  will-change: transform;
}

/* ================= INSTANT CONFIRMATION & MEMBERSHIP MODALS ================= */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(4, 9, 18, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 20000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

.modal-card {
  background: #0E182D;
  color: #F1F5F9;
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 20px;
  padding: 36px 32px;
  width: 100%;
  max-width: 540px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.7), 0 0 40px rgba(212, 175, 55, 0.2);
  position: relative;
  transform: translateY(20px) scale(0.95);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-theme="light"] .modal-card {
  background: #FFFFFF;
  color: #101623;
  border-color: rgba(197, 160, 89, 0.5);
  box-shadow: 0 30px 60px rgba(5, 11, 21, 0.2), 0 0 30px rgba(197, 160, 89, 0.2);
}

.modal-overlay.show .modal-card {
  transform: translateY(0) scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  color: #94A3B8;
  font-size: 28px;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s ease;
}

.modal-close-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #FFFFFF;
}

[data-theme="light"] .modal-close-btn:hover {
  background: rgba(0, 0, 0, 0.08);
  color: #101623;
}

.ticket-header {
  text-align: center;
  margin-bottom: 24px;
}

.ticket-icon {
  width: 60px;
  height: 60px;
  background: rgba(52, 211, 153, 0.15);
  border: 1px solid rgba(52, 211, 153, 0.5);
  color: #34D399;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.ticket-title {
  font-family: var(--f-display);
  font-size: 26px;
  color: var(--gold-light, #F4E8D1);
  margin-bottom: 4px;
  font-weight: 600;
}

[data-theme="light"] .ticket-title {
  color: #C5A059;
}

.ticket-subtitle {
  font-size: 13px;
  color: #94A3B8;
}

[data-theme="light"] .ticket-subtitle {
  color: #64748B;
}

.ticket-body {
  background: rgba(5, 11, 21, 0.4);
  border: 1px dashed rgba(212, 175, 55, 0.35);
  border-radius: 14px;
  padding: 20px 24px;
  margin-bottom: 24px;
}

[data-theme="light"] .ticket-body {
  background: #F8F9FA;
  border-color: rgba(197, 160, 89, 0.4);
}

.ticket-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 14px;
  gap: 16px;
}

[data-theme="light"] .ticket-row {
  border-bottom-color: rgba(0, 0, 0, 0.08);
}

.ticket-row:last-child {
  border-bottom: none;
}

.ticket-label {
  color: #94A3B8;
  font-size: 13px;
  white-space: nowrap;
}

[data-theme="light"] .ticket-label {
  color: #64748B;
}

.ticket-val {
  font-weight: 600;
  color: #F8FAFC;
  text-align: right;
  word-break: break-word;
}

[data-theme="light"] .ticket-val {
  color: #0F172A;
}

.ticket-val.gold {
  color: #D4AF37;
  font-family: monospace;
  font-size: 16px;
  letter-spacing: 0.5px;
}

.modal-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.btn-wa-direct {
  background: #25D366;
  color: #FFFFFF;
  text-decoration: none;
  font-weight: 600;
  padding: 14px 20px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 14px;
  transition: all 0.2s ease;
}

.btn-wa-direct:hover {
  background: #20BA5A;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.4);
}

.btn-email-direct {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #F8FAFC;
  text-decoration: none;
  font-weight: 600;
  padding: 14px 20px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 14px;
  transition: all 0.2s ease;
}

[data-theme="light"] .btn-email-direct {
  background: #F1F5F9;
  border-color: #CBD5E1;
  color: #0F172A;
}

.btn-email-direct:hover {
  border-color: #D4AF37;
  color: #D4AF37;
}

.btn-demo-fill {
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid var(--gold);
  color: var(--gold-light, #F4E8D1);
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 13px;
  cursor: pointer;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  transition: all 0.2s ease;
}

[data-theme="light"] .btn-demo-fill {
  background: rgba(197, 160, 89, 0.16);
  color: #856404;
  border-color: rgba(184, 142, 49, 0.6);
}

.btn-demo-fill:hover {
  background: var(--gold);
  color: #000000;
}

[data-theme="light"] .btn-demo-fill:hover {
  background: #B8860B;
  color: #FFFFFF;
}

.form-theme-toggle-btn {
  background: rgba(197, 160, 89, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.38);
}

/* Light Theme Overrides for Components */
[data-theme="light"] .loader {
  background: var(--bg-primary);
}

[data-theme="light"] .loader-logo {
  color: var(--navy);
}

[data-theme="light"] .mobile-sticky-bar {
  background: rgba(255, 255, 255, 0.94);
  border-top-color: rgba(197, 160, 89, 0.35);
  box-shadow: 0 -10px 30px rgba(5, 11, 21, 0.12);
}

[data-theme="light"] .mobile-sticky-bar .call-btn {
  background: #F1F5F9;
  color: #0F172A;
  border-color: #CBD5E1;
}

[data-theme="light"] .mobile-sticky-bar .book-btn {
  background: linear-gradient(135deg, #F3E5C8 0%, #D4AF37 50%, #C5A059 100%);
  color: #050B15;
}

.modal-field-input {
  width: 100%;
  padding: 12px 14px;
  background: var(--bg-surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  outline: none;
  font-size: 14px;
  transition: border-color 0.25s ease;
}

.modal-field-input:focus {
  border-color: var(--gold);
}

/* Mobile Safari Input Auto-Zoom Prevention & Touch Optimizations */
@media (max-width: 768px) {
  input, select, textarea, .field input, .field select, .field textarea, .modal-field-input {
    font-size: 16px !important;
  }
  .mobile-bar-btn {
    min-height: 44px;
  }
}

/* ================= BESPOKE CARE & CASE STUDY SHOWCASE BANNERS ================= */
.bespoke-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.bespoke-text-card {
  padding: 48px 40px;
  background: rgba(8, 16, 32, 0.94);
  color: #FFFFFF;
}

.bespoke-img-card {
  height: 380px;
  position: relative;
  overflow: hidden;
}

.bespoke-img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bespoke-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 16, 32, 0.6) 0%, transparent 60%);
}

.case-study-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
}

.case-study-img-wrap {
  height: 360px;
  position: relative;
  overflow: hidden;
}

.case-study-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-study-content {
  padding: 40px;
}

@media (max-width: 860px) {
  .bespoke-grid,
  .case-study-grid {
    grid-template-columns: 1fr;
  }
  .bespoke-img-card,
  .case-study-img-wrap {
    height: 280px;
  }
  .bespoke-text-card,
  .case-study-content {
    padding: 28px 20px;
  }
}

/* =========================================================================
   MASTER MOBILE COMPATIBILITY & LUXURY TOUCH UX ENHANCEMENTS
   ========================================================================= */

/* 1. Global Touch & Overflow Containment */
html, body {
  overflow-x: hidden !important;
  max-width: 100vw;
  -webkit-tap-highlight-color: transparent;
}

@media (max-width: 768px) {
  body {
    padding-bottom: 74px; /* Room for sticky mobile bottom dock */
  }

  /* Prevent iOS input focus auto-zoom */
  input, select, textarea, .field input, .field select, .field textarea, .modal-field-input {
    font-size: 16px !important;
  }

  /* Hide stand-alone floating WhatsApp bubble on mobile so it doesn't overlap sticky bottom dock */
  .whatsapp-float, .floating-wa-btn {
    display: none !important;
  }
}

/* 2. Enhanced Sticky Mobile Bottom Dock */
.mobile-sticky-bar {
  display: none;
}

@media (max-width: 768px) {
  .mobile-sticky-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1500;
    background: rgba(8, 16, 32, 0.92);
    backdrop-filter: blur(24px) saturate(190%);
    -webkit-backdrop-filter: blur(24px) saturate(190%);
    border-top: 1px solid rgba(212, 175, 55, 0.38);
    padding: 8px 12px max(10px, env(safe-area-inset-bottom));
    gap: 8px;
    align-items: center;
    justify-content: space-around;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.45), inset 0 1px 1px rgba(255, 255, 255, 0.15);
  }

  .mobile-bar-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 6px 4px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    min-height: 48px;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 1px solid transparent;
  }

  .mobile-bar-btn.call-btn {
    background: rgba(255, 255, 255, 0.08);
    color: #F8FAFC;
    border-color: rgba(255, 255, 255, 0.15);
  }

  .mobile-bar-btn.wa-btn {
    background: rgba(37, 211, 102, 0.2);
    color: #25D366;
    border-color: rgba(37, 211, 102, 0.4);
  }

  .mobile-bar-btn.book-btn {
    background: linear-gradient(135deg, #F3E5C8 0%, #D4AF37 50%, #C5A059 100%);
    color: #050B15;
    box-shadow: 0 4px 14px rgba(212, 175, 55, 0.35);
  }

  .mobile-bar-btn:active {
    transform: scale(0.95);
  }
}

/* 3. Horizontal Touch Swipe Carousels for Mobile */
@media (max-width: 768px) {
  .services-grid,
  .doctors-grid,
  .pricing-grid,
  .testi-grid,
  .tech-grid {
    display: flex !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 16px !important;
    padding-left: 18px !important;
    padding-right: 18px !important;
    padding-bottom: 16px !important;
    margin-left: -18px;
    margin-right: -18px;
    scrollbar-width: none; /* Hide scrollbar for clean aesthetic */
  }

  .services-grid::-webkit-scrollbar,
  .doctors-grid::-webkit-scrollbar,
  .pricing-grid::-webkit-scrollbar,
  .testi-grid::-webkit-scrollbar,
  .tech-grid::-webkit-scrollbar {
    display: none;
  }

  .service-card,
  .doctor-card,
  .price-card,
  .testi-card,
  .tech-card {
    flex: 0 0 85% !important;
    max-width: 330px !important;
    scroll-snap-align: center;
    margin-bottom: 0 !important;
  }

  /* Hero Section Mobile Enhancements */
  .hero-grid {
    gap: 32px !important;
  }

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

  .hero-actions .btn {
    width: 100%;
  }

  /* Stats Counter Grid on Mobile */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px !important;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr !important;
  }
  
  .service-card,
  .doctor-card,
  .price-card,
  .testi-card,
  .tech-card {
    flex: 0 0 88% !important;
  }
}

/* 4. Modal Luxury Bottom Sheet Layout for Mobile */
@media (max-width: 640px) {
  .modal-overlay {
    align-items: flex-end !important;
    padding: 0 !important;
  }

  .modal-card {
    border-radius: 26px 26px 0 0 !important;
    max-height: 90vh !important;
    overflow-y: auto !important;
    transform: translateY(100%) !important;
    padding: 32px 20px 28px !important;
  }

  .modal-card::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 42px;
    height: 5px;
    border-radius: 99px;
    background: rgba(255, 255, 255, 0.25);
  }

  .modal-overlay.show .modal-card {
    transform: translateY(0) !important;
  }
}