/* ==========================================================================
   BEAUTY LOUNGE ALL IN 1 - PREMIUM REDESIGN (2026 EDITION)
   Aesthetic Clinic Matte Soft White-Grey Styling System
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

:root {
  /* Color Palette - Soft Matte Feminine Luxury Aesthetic (Increased Contrast & Depth) */
  --bg-base: #FAF6F3;               /* Slightly lighter warm cream for wider canvas breathing room */
  --bg-base-alt: #F2E5D5;           /* Richer, warmer matte ivory for stronger section definitions */
  --bg-surface: rgba(249, 245, 242, 0.86); /* Tinted warm cream glass layers to stand out against background */
  --bg-surface-solid: #FCFAF7;      
  --bg-surface-dark: #4A302C;       /* Deeper rich brown for footer/dark zone contrast */
  
  --text-main: #4A302C;             /* Deeper warm brown for outstanding readability (25% Brown) */
  --text-secondary: #553C39;        /* Solid warm cocoa brown for sharp, readable body text */
  --text-muted: rgba(74, 48, 44, 0.7); /* Richer muted brown for icons/captions */
  --text-light: #FAF1E0;            /* Warm Ivory text for dark sections */
  
  --accent-gold: #EC9AA6;           /* Richer Blush Pink accent for buttons, active state highlights */
  --accent-gold-light: #F6D0B7;     /* Warm Nude accent for gradients, card highlights */
  --accent-gold-dark: #D37380;      /* Darker blush pink for links and control anchors */
  --accent-gold-hover: #E38390;     /* Richer Hover state for Blush Pink */
  
  --border-light: rgba(74, 48, 44, 0.12);   /* More defined soft borders */
  --border-medium: rgba(74, 48, 44, 0.22);
  --border-gold: rgba(236, 154, 166, 0.45); /* Defined Blush Pink border */
  --border-glow: rgba(74, 48, 44, 0.08);    /* Border for card elements, subtle warm shadow outline */
  
  /* Shadows & Elevations (Tinted with deeper brown for richer visual layering) */
  --shadow-sm: 0 4px 14px rgba(74, 48, 44, 0.03);
  --shadow-md: 0 12px 30px rgba(74, 48, 44, 0.06);
  --shadow-lg: 0 24px 55px rgba(74, 48, 44, 0.10);
  --shadow-inset: inset 0 2px 4px rgba(74, 48, 44, 0.02);
  
  /* Border Radii */
  --radius-xs: 8px;
  --radius-sm: 14px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-xl: 38px;
  --radius-round: 9999px;
  
  /* Transition Timing */
  --transition-smooth: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.25s ease;
  
  --container-width: 1560px; /* Overhauled for Ultrawide monitors */
  
  /* Fluid Spacing Scale System (clamp based) */
  --space-xs: clamp(6px, 4px + 0.5vw, 12px);
  --space-sm: clamp(12px, 8px + 1vw, 22px);
  --space-md: clamp(20px, 14px + 1.5vw, 36px);
  --space-lg: clamp(32px, 24px + 2vw, 60px);
  --space-xl: clamp(50px, 35px + 3vw, 95px);
  --space-xxl: clamp(80px, 50px + 5vw, 150px);
}

/* ==========================================================================
   RESET & BASICS
   ========================================================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: clamp(80px, 60px + 3vw, 130px);
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-base);
  background-image: 
    radial-gradient(circle at 15% 15%, rgba(246, 208, 183, 0.25) 0%, rgba(246, 208, 183, 0) 45%),
    radial-gradient(circle at 85% 75%, rgba(241, 175, 182, 0.2) 0%, rgba(241, 175, 182, 0) 55%);
  color: var(--text-main);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

img, video {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.hero-video-bg video {
  border-radius: 0 !important;
}

section {
  padding: clamp(55px, 35px + 5.5vw, 135px) 0; /* Fluid premium section paddings */
  position: relative;
  box-sizing: border-box;
}

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */

h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 500;
  color: var(--text-main);
  line-height: 1.25;
  letter-spacing: -0.01em;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

h1 {
  font-size: clamp(2.2rem, 1.8rem + 2.2vw, 5.2rem);
  font-weight: 400;
}

h2 {
  font-size: clamp(1.7rem, 1.4rem + 1.6vw, 3.6rem);
  font-weight: 400;
}

h3 {
  font-size: clamp(1.25rem, 1.1rem + 0.8vw, 2.0rem);
}

p {
  color: var(--text-secondary);
  font-size: clamp(0.95rem, 0.9rem + 0.25vw, 1.15rem);
  max-width: 75ch; /* Golden standard line-length for ultrawide screens */
  line-height: 1.8;
}

strong {
  color: var(--text-main);
}

.eyebrow {
  font-family: 'Inter', sans-serif;
  display: inline-block;
  padding: 8px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-gold-dark);
  background: var(--accent-gold-light);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-round);
  margin-bottom: var(--space-sm);
}

.section-heading {
  max-width: min(92%, 780px);
  margin: 0 auto var(--space-lg) auto;
  text-align: center;
}

.section-heading h2 {
  margin-bottom: var(--space-xs);
}

.section-heading p {
  font-size: clamp(1.0rem, 0.95rem + 0.3vw, 1.25rem);
  max-width: 65ch;
  margin: 0 auto;
}

/* ==========================================================================
   GLOBAL COMPONENTS & BUTTONS
   ========================================================================== */

.container {
  width: min(92%, var(--container-width));
  margin: 0 auto;
}

/* Luxury Matte Buttons */
.btn-primary, .btn-secondary, .btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(10px, 8px + 0.6vw, 16px) clamp(20px, 15px + 1.2vw, 36px);
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.85rem, 0.8rem + 0.2vw, 1.0rem);
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-round);
  transition: var(--transition-smooth);
  cursor: pointer;
  border: 1.5px solid transparent;
  outline: none;
  gap: 10px;
  box-sizing: border-box;
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background-clip: padding-box;
  -webkit-background-clip: padding-box;
}

.btn-primary {
  background: var(--bg-surface);
  color: var(--text-main);
  border: 1.5px solid var(--border-medium);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.btn-primary:hover {
  border-color: var(--accent-gold);
  background: var(--bg-surface-solid);
  color: var(--text-main);
}

.btn-secondary {
  background: rgba(74, 48, 44, 0.05);
  color: var(--text-main);
  border: 1.5px solid rgba(74, 48, 44, 0.05);
}

.btn-secondary:hover {
  background: rgba(74, 48, 44, 0.09);
  border-color: rgba(74, 48, 44, 0.08);
}

.btn-gold {
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-light) 100%);
  color: #ffffff;
  border: none;
  box-shadow: 0 6px 18px rgba(236, 154, 166, 0.22);
}

.btn-gold::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--accent-gold-dark) 0%, var(--accent-gold) 100%);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.btn-gold:hover::before {
  opacity: 1;
}

.btn-gold:hover {
  color: #ffffff;
}

/* Button arrow transitions */
.btn-primary svg, .btn-secondary svg, .btn-gold svg {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-primary:hover svg, .btn-secondary:hover svg, .btn-gold:hover svg {
  transform: translateX(4px);
}

/* Glass Card Global Base */
.glass-card {
  background: var(--bg-surface);
  backdrop-filter: blur(24px) saturate(110%);
  -webkit-backdrop-filter: blur(24px) saturate(110%);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: var(--transition-smooth);
  background-clip: padding-box;
  -webkit-background-clip: padding-box;
  isolation: isolate;
}

.glass-card:hover {
  border-color: var(--border-gold);
  box-shadow: var(--shadow-lg);
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--text-muted);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  transition: var(--transition-fast);
}

@media (max-width: 1024px), (pointer: coarse) {
  .scroll-indicator {
    display: none !important;
  }
}

.scroll-indicator:hover {
  color: var(--accent-gold);
}

.scroll-mouse {
  width: 24px;
  height: 40px;
  border: 1.5px solid var(--text-muted);
  border-radius: var(--radius-round);
  position: relative;
}

.scroll-wheel {
  width: 3px;
  height: 8px;
  background: var(--text-muted);
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: var(--radius-round);
  animation: scrollAnim 1.6s infinite ease-in-out;
}

@keyframes scrollAnim {
  0% { transform: translate(-50%, 0); opacity: 1; }
  50% { transform: translate(-50%, 8px); opacity: 0.3; }
  100% { transform: translate(-50%, 0); opacity: 1; }
}

/* ==========================================================================
   1. STICKY PREMIUM NAVBAR
   ========================================================================== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 100%;
  z-index: 1000;
  padding: 24px 0;
  transition: var(--transition-smooth);
  box-sizing: border-box;
}

.site-header.scrolled {
  padding: 14px 0;
}

.site-header.scrolled .nav-wrapper {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-light);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(8px, 6px + 0.6vw, 14px) clamp(12px, 8px + 1.8vw, 36px);
  border-radius: var(--radius-round);
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  background-clip: padding-box;
  -webkit-background-clip: padding-box;
}

.logo-wrap {
  display: flex;
  align-items: center;
}

.logo {
  height: clamp(34px, 22px + 2vw, 52px);
  width: auto;
  border-radius: 0;
  object-fit: contain;
  transition: var(--transition-smooth);
}

.nav-links {
  display: flex;
  gap: clamp(14px, 10px + 1.2vw, 38px);
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-secondary);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
  transition: var(--transition-fast);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 18px;
  height: 2px;
  background: var(--accent-gold);
  border-radius: var(--radius-round);
  transition: var(--transition-smooth);
}

.nav-links a:hover {
  color: var(--text-main);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: translateX(-50%) scaleX(1);
}

.nav-links a.active {
  color: var(--text-main);
  font-weight: 600;
}

/* Mobile Hamburger Menu */
.hamburger-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1002;
}

.hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-main);
  margin: 6px 0;
  transition: var(--transition-smooth);
  border-radius: var(--radius-round);
}

/* Mobile Drawer Overlay */
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 400px;
  height: 100vh;
  background: var(--bg-surface-solid);
  z-index: 1001;
  padding: 100px 40px 60px 40px;
  box-shadow: -10px 0 40px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition-smooth);
}

.mobile-nav-drawer.open {
  right: 0;
}

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.mobile-nav-links a {
  text-decoration: none;
  font-size: 1.6rem;
  font-family: 'Playfair Display', serif;
  color: var(--text-main);
  display: block;
  transition: var(--transition-fast);
}

.mobile-nav-links a:hover {
  color: var(--accent-gold);
  padding-left: 8px;
}

.drawer-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(36, 40, 48, 0.2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
}

.drawer-backdrop.active {
  opacity: 1;
  pointer-events: all;
}

/* Hamburger animations */
.hamburger-btn.open .hamburger-line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger-btn.open .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger-btn.open .hamburger-line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ==========================================================================
   2. LUXURY HERO VARIATIONS
   ========================================================================== */

.hero-section {
  position: relative;
  min-height: 100vh;
  padding-top: 140px; /* Compensation for fixed header height + safe spacing */
  padding-bottom: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-sizing: border-box;
}

.hero-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
  background: var(--bg-base-alt);
}

.hero-video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(247, 243, 240, 0.45) 0%,
    rgba(247, 243, 240, 0.2) 60%,
    rgba(247, 243, 240, 1) 100%
  );
  z-index: 2;
}

.hero-grid {
  position: relative;
  z-index: 3;
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
}

.hero-glass-card {
  width: 100%;
  max-width: clamp(300px, 280px + 28vw, 680px);
  padding: clamp(16px, 12px + 3vw, 60px);
  position: relative;
  margin-left: auto;
  margin-right: auto;
  animation: heroFadeIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  box-sizing: border-box;
}

@keyframes heroFadeIn {
  0% { transform: translateY(40px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

.hero-glass-card h1 {
  margin-bottom: var(--space-sm);
}

.hero-glass-card p {
  font-size: clamp(0.95rem, 0.9rem + 0.25vw, 1.15rem);
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: var(--space-md);
  max-width: 65ch;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 992px) {
  .hero-glass-card {
    margin-left: 2%;
    margin-right: auto;
  }
  .hero-glass-card p {
    margin-left: 0;
    margin-right: auto;
  }
}

@media (min-width: 1920px) {
  .hero-glass-card {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-glass-card p {
    margin-left: auto;
    margin-right: auto;
  }
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

/* Video Play/Pause button on hero */
.hero-controls {
  position: absolute;
  bottom: 40px;
  right: 5%;
  z-index: 5;
}

.video-toggle-btn {
  background: var(--bg-surface);
  border: 1px solid var(--border-glow);
  width: 50px;
  height: 50px;
  border-radius: var(--radius-round);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  color: var(--text-main);
  transition: var(--transition-smooth);
}

.video-toggle-btn:hover {
  transform: scale(1.08);
  border-color: var(--accent-gold);
  box-shadow: var(--shadow-md);
}

/* ==========================================================================
   3. SCROLLING MARQUEE (TRUST BADGES)
   ========================================================================== */

.marquee-section {
  padding: 40px 0;
  background: var(--bg-base-alt);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  overflow: hidden;
}

.marquee-wrapper {
  display: flex;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.marquee-track {
  display: flex;
  gap: 80px;
  white-space: nowrap;
  animation: marqueeRun 28s linear infinite;
  padding: 10px 0;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
  text-transform: uppercase;
}

.marquee-item svg {
  width: 22px;
  height: 22px;
  fill: var(--accent-gold);
}

@keyframes marqueeRun {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}

/* ==========================================================================
   4. CLINIC SPOTLIGHT (FOUNDER CARDS)
   ========================================================================== */

.spotlight-section {
  background: var(--bg-base);
}

.spotlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(clamp(280px, 240px + 12vw, 480px), 1fr));
  gap: clamp(30px, 20px + 3vw, 80px);
  align-items: center;
}

.spotlight-image-wrap {
  position: relative;
  overflow: visible;
}

.spotlight-img-inner {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  aspect-ratio: 1/1.1;
  width: 100%;
}

.spotlight-img-inner img {
  border-radius: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.spotlight-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--bg-surface-solid);
  border: 1px solid var(--border-gold);
  padding: 24px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 180px;
}

.spotlight-badge h4 {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--accent-gold);
}

.spotlight-badge p {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}

.spotlight-content h2 {
  margin-bottom: 24px;
}

.spotlight-content p {
  margin-bottom: 30px;
  font-size: 1.1rem;
}

.spotlight-credentials {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 40px;
  margin-bottom: 45px;
}

.cred-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.cred-item svg {
  width: 20px;
  height: 20px;
  margin-top: 4px;
  color: var(--accent-gold);
  flex-shrink: 0;
}

.cred-item span {
  font-weight: 500;
  color: var(--text-main);
  font-size: 0.98rem;
}

/* ==========================================================================
   5. PREMIUM STATISTICS SECTION (COUNTERS)
   ========================================================================== */

.stats-section {
  padding: 100px 0;
  background: var(--bg-base-alt);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(clamp(180px, 140px + 8vw, 260px), 1fr));
  gap: clamp(16px, 10px + 1vw, 30px);
}

.stat-card {
  padding: 50px 40px;
  text-align: center;
  transition: var(--transition-smooth);
}

.stat-card:hover {
  transform: translateY(-8px);
}

.stat-number {
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-family: 'Playfair Display', serif;
  color: var(--accent-gold);
  line-height: 1;
  margin-bottom: 12px;
}

.stat-label {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ==========================================================================
   6. FEATURED TREATMENTS & CATEGORY TABS
   ========================================================================== */

.treatments-section {
  background: var(--bg-base);
}

.category-tabs {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.tab-btn {
  background: var(--bg-surface);
  border: 1px solid var(--border-glow);
  padding: 14px 28px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius-round);
  cursor: pointer;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-sm);
}

.tab-btn:hover {
  border-color: var(--accent-gold);
  color: var(--text-main);
}

.tab-btn.active {
  background: var(--accent-gold);
  color: var(--text-main);
  border-color: var(--accent-gold);
  box-shadow: var(--shadow-md);
}

.treatments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(clamp(280px, 240px + 10vw, 360px), 1fr));
  gap: clamp(16px, 12px + 1.5vw, 36px);
}

/* Treatment Card Styling */
.treatment-card {
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.treatment-img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  aspect-ratio: 1.25/1;
}

.treatment-img-wrap img {
  border-radius: 0;
  transition: var(--transition-smooth);
  height: 100%;
}

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

.treatment-price-tag {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--bg-surface-solid);
  border: 1px solid var(--border-light);
  padding: 8px 18px;
  border-radius: var(--radius-round);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--accent-gold-dark);
  box-shadow: var(--shadow-sm);
}

.treatment-body {
  padding: 36px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.treatment-body h3 {
  margin-bottom: 12px;
  font-weight: 500;
}

.treatment-body p {
  font-size: 0.98rem;
  margin-bottom: 24px;
  flex-grow: 1;
}

.treatment-meta {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--border-light);
  padding-top: 20px;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

.treatment-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.treatment-meta svg {
  width: 16px;
  height: 16px;
  color: var(--accent-gold);
}

/* ==========================================================================
   7. BEFORE/AFTER SHOWCASE
   ========================================================================== */

.transformation-section {
  background: var(--bg-base-alt);
}

.transformation-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(clamp(280px, 240px + 12vw, 480px), 1fr));
  gap: clamp(30px, 20px + 3vw, 70px);
  align-items: center;
}

.comparison-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 1.15/1;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  user-select: none;
}

.comparison-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.comparison-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}

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

.img-before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  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%);
}

.img-before img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}

/* Before/After tags */
.comparison-tag {
  position: absolute;
  bottom: 24px;
  background: rgba(36, 40, 48, 0.7);
  backdrop-filter: blur(8px);
  color: var(--text-light);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 14px;
  border-radius: var(--radius-xs);
  z-index: 4;
}

.tag-before {
  left: 24px;
}

.tag-after {
  right: 24px;
}

/* Slider Handle styling */
.comparison-slider-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%; /* JS will mutate this */
  width: 3px;
  background: #ffffff;
  z-index: 3;
  cursor: ew-resize;
  transform: translateX(-50%);
}

.slider-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  border-radius: var(--radius-round);
  background: #ffffff;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 8px;
  color: var(--text-main);
}

.slider-button::before, .slider-button::after {
  content: '';
  border: solid var(--text-main);
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 3px;
}

.slider-button::before {
  transform: rotate(135deg);
}

.slider-button::after {
  transform: rotate(-45deg);
}

.transformation-info h2 {
  margin-bottom: 24px;
}

.transformation-info p {
  margin-bottom: 35px;
  font-size: 1.1rem;
}

.results-bullets {
  list-style: none;
}

.results-bullets li {
  margin-bottom: 16px;
  font-weight: 500;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 12px;
}

.results-bullets svg {
  width: 20px;
  height: 20px;
  color: var(--accent-gold);
  flex-shrink: 0;
}

/* ==========================================================================
   8. SERVICE PROCESS SECTION (APPOINTMENT TIMELINE)
   ========================================================================== */

.process-section {
  background: var(--bg-base);
}

.timeline-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(clamp(200px, 160px + 8vw, 280px), 1fr));
  gap: clamp(20px, 14px + 1vw, 30px);
  position: relative;
}

.timeline-grid::after {
  content: '';
  position: absolute;
  top: 100px;
  left: 5%;
  right: 5%;
  height: 1px;
  background: var(--border-medium);
  z-index: 1;
}

.timeline-step {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 10px;
}

.step-number {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-round);
  background: var(--bg-surface-solid);
  border: 1px solid var(--border-medium);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--accent-gold);
  margin: 0 auto 30px auto;
  transition: var(--transition-smooth);
}

.timeline-step:hover .step-number {
  background: var(--accent-gold-light);
  border-color: var(--accent-gold);
  transform: scale(1.08);
}

.timeline-step h3 {
  font-size: 1.25rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  margin-bottom: 14px;
}

.timeline-step p {
  font-size: 0.95rem;
}

/* ==========================================================================
   9. TESTIMONIALS CAROUSEL
   ========================================================================== */

.reviews-section {
  background: var(--bg-base-alt);
  overflow: hidden;
}

.carousel-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  padding: 0 40px;
}

.carousel-viewport {
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  width: 100%;
}

.carousel-slide {
  flex: 0 0 100%;
  width: 100%;
  padding: 50px 60px;
  text-align: center;
}

.review-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  font-style: italic;
  line-height: 1.5;
  color: var(--text-main);
  margin-bottom: 30px;
  position: relative;
}

.review-quote::before {
  content: '“';
  font-size: 5rem;
  position: absolute;
  top: -45px;
  left: -20px;
  color: rgba(241, 175, 182, 0.25);
  font-family: Georgia, serif;
}

.review-author {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--accent-gold-dark);
}

.review-stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 20px;
}

.review-stars svg {
  width: 18px;
  height: 18px;
  fill: var(--accent-gold);
}

/* Carousel Control Arrows */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--bg-surface-solid);
  border: 1px solid var(--border-light);
  width: 50px;
  height: 50px;
  border-radius: var(--radius-round);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  color: var(--text-main);
  transition: var(--transition-smooth);
  z-index: 10;
}

.carousel-btn:hover {
  border-color: var(--accent-gold);
  transform: translateY(-50%) scale(1.08);
  box-shadow: var(--shadow-md);
}

.carousel-btn-prev {
  left: -20px;
}

.carousel-btn-next {
  right: -20px;
}

/* Dots Indicators */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-round);
  background: var(--text-muted);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.dot.active {
  background: var(--accent-gold);
  width: 24px;
}

/* ==========================================================================
   10. INTERACTIVE FAQ ACCORDION
   ========================================================================== */

.faq-section {
  background: var(--bg-base);
}

.faq-wrapper {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* FAQ Details/Summary design pattern */
.faq-item {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-surface-solid);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.faq-item[open] {
  border-color: var(--accent-gold);
  box-shadow: var(--shadow-md);
}

.faq-summary {
  list-style: none;
  padding: 24px 30px;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--text-main);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  position: relative;
}

.faq-summary::-webkit-details-marker {
  display: none;
}

.faq-icon-arrow {
  width: 14px;
  height: 14px;
  border-right: 2px solid var(--text-secondary);
  border-bottom: 2px solid var(--text-secondary);
  transform: rotate(45deg);
  transition: var(--transition-smooth);
  transform-origin: center;
}

.faq-item[open] .faq-icon-arrow {
  transform: rotate(-135deg);
  border-color: var(--accent-gold);
}

.faq-content {
  padding: 0 30px 24px 30px;
  border-top: 1px solid transparent;
  color: var(--text-secondary);
  line-height: 1.7;
}

.faq-item[open] .faq-content {
  border-color: var(--border-light);
}

/* ==========================================================================
   11. INSTAGRAM/SOCIAL SHOWCASE
   ========================================================================== */

.social-section {
  background: var(--bg-base-alt);
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(clamp(140px, 120px + 8vw, 240px), 1fr));
  gap: clamp(16px, 12px + 1vw, 24px);
  margin-top: var(--space-md);
}

.social-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1/1;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.social-card img {
  border-radius: 0;
  width: 100%;
  height: 100%;
  transition: var(--transition-smooth);
}

.social-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(19, 20, 23, 0.45);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition-smooth);
  z-index: 2;
}

.social-card:hover img {
  transform: scale(1.08);
}

.social-card:hover .social-overlay {
  opacity: 1;
}

.social-overlay svg {
  width: 32px;
  height: 32px;
  fill: #ffffff;
  transform: translateY(15px);
  transition: var(--transition-smooth);
  transition-delay: 0.1s;
}

.social-card:hover .social-overlay svg {
  transform: translateY(0);
}

/* ==========================================================================
   12. BOOKING FORM & MAP
   ========================================================================== */

.booking-section {
  background: var(--bg-base);
}

.booking-layout-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(clamp(280px, 240px + 14vw, 540px), 1fr));
  gap: clamp(30px, 20px + 4vw, 80px);
  align-items: stretch;
}

.booking-form-wrap {
  padding: 60px;
  border-radius: var(--radius-xl);
}

.booking-form-wrap h2 {
  margin-bottom: 12px;
}

.booking-form-wrap p {
  margin-bottom: 35px;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

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

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  padding: 16px 22px;
  background: var(--bg-base);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--text-main);
  outline: none;
  transition: var(--transition-fast);
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  border-color: var(--accent-gold);
  background: var(--bg-surface-solid);
  box-shadow: 0 0 0 4px rgba(195, 162, 122, 0.12);
}

.booking-form textarea {
  min-height: 130px;
  resize: vertical;
}

/* Info card beside booking */
.location-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.map-wrapper {
  width: 100%;
  flex-grow: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: 40px;
  border: 1px solid var(--border-light);
  min-height: 300px;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.contact-card-item {
  padding: 24px;
  border-radius: var(--radius-md);
}

.contact-card-item svg {
  width: 24px;
  height: 24px;
  color: var(--accent-gold);
  margin-bottom: 12px;
}

.contact-card-item h4 {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.contact-card-item p {
  font-size: 0.88rem;
}

.contact-card-item a {
  color: var(--text-main);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition-fast);
}

.contact-card-item a:hover {
  color: var(--accent-gold);
}

/* Success Modal Overlay */
.success-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(36, 40, 48, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
}

.success-modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.success-modal {
  background: var(--bg-surface-solid);
  padding: 50px 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  max-width: 480px;
  width: 90%;
  text-align: center;
  border: 1px solid var(--border-gold);
  transform: scale(0.9);
  transition: var(--transition-smooth);
}

.success-modal-overlay.active .success-modal {
  transform: scale(1);
}

.success-icon-wrap {
  width: 70px;
  height: 70px;
  border-radius: var(--radius-round);
  background: rgba(195, 162, 122, 0.1);
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px auto;
}

.success-icon-wrap svg {
  width: 32px;
  height: 32px;
}

.success-modal h3 {
  margin-bottom: 12px;
  font-weight: 600;
}

.success-modal p {
  font-size: 0.95rem;
  margin-bottom: 28px;
}

/* ==========================================================================
   13. FLOATING ACTION WIDGET
   ========================================================================== */

.floating-action-widget {
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 990;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.float-trigger {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-round);
  background: var(--text-main);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  border: 1.5px solid var(--border-glow);
  transition: var(--transition-smooth);
  position: relative;
}

.float-trigger svg {
  width: 24px;
  height: 24px;
  fill: #ffffff;
}

.float-trigger:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 16px 36px rgba(0,0,0,0.15);
  background: var(--accent-gold-dark);
}

.float-trigger::after {
  content: 'Book Consultation';
  position: absolute;
  right: 80px;
  top: 50%;
  transform: translateY(-50%) translateX(10px);
  background: var(--bg-surface-solid);
  color: var(--text-main);
  padding: 8px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
  border-radius: var(--radius-xs);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
}

.float-trigger:hover::after {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

/* ==========================================================================
   14. MODERN FOOTER
   ========================================================================== */

.site-footer {
  background: var(--bg-surface-dark);
  color: rgba(250, 241, 224, 0.7);
  padding: 100px 0 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  gap: 60px;
  margin-bottom: 70px;
}

.footer-brand p {
  color: rgba(250, 241, 224, 0.75);
  margin: 20px 0 24px 0;
  font-size: 0.95rem;
  line-height: 1.8;
  max-width: 320px;
}

.footer-social-links {
  display: flex;
  gap: 14px;
}

.social-circle {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-round);
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  text-decoration: none;
}

.social-circle svg {
  width: 18px;
  height: 18px;
  fill: #ffffff;
}

.social-circle:hover {
  background: var(--accent-gold);
  transform: translateY(-3px);
}

.footer-column h4 {
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 28px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links a {
  color: rgba(250, 241, 224, 0.7);
  text-decoration: none;
  font-size: 0.92rem;
  transition: var(--transition-fast);
}

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

.footer-hours-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.92rem;
}

.footer-hours-list li {
  display: flex;
  justify-content: space-between;
}

.footer-hours-list span:first-child {
  font-weight: 500;
  color: var(--text-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 35px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: rgba(250, 241, 224, 0.45);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  color: rgba(250, 241, 224, 0.45);
  text-decoration: none;
  transition: var(--transition-fast);
}

.footer-bottom-links a:hover {
  color: var(--accent-gold);
}

/* ==========================================================================
   ANIMATIONS, PRELOADER, CUSTOM CURSOR & SCROLL REVEALS
   ========================================================================== */

/* Premium Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg-base);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--bg-base-alt) 0%, var(--accent-gold) 100%);
  border-radius: var(--radius-round);
  border: 2px solid var(--bg-base);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent-gold-dark);
}

/* Cinematic Page Preloader */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--bg-base);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s cubic-bezier(0.85, 0, 0.15, 1),
              visibility 0.8s cubic-bezier(0.85, 0, 0.15, 1);
  will-change: opacity, visibility;
}

#preloader.fade-out {
  opacity: 0;
  visibility: hidden;
}

.preloader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  position: relative;
}

.preloader-logo-wrap {
  position: relative;
  width: 110px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.preloader-logo-wrap img {
  width: 80px;
  height: auto;
  z-index: 2;
  animation: preloaderPulse 2.2s infinite ease-in-out;
}

.preloader-circle-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-round);
  border: 1.5px solid var(--accent-gold);
  opacity: 0.35;
  animation: preloaderCirclePulse 2.2s infinite cubic-bezier(0.25, 0, 0, 1);
  z-index: 1;
}

.preloader-line-loader {
  width: 180px;
  height: 2px;
  background: rgba(74, 48, 44, 0.08);
  border-radius: var(--radius-round);
  overflow: hidden;
  position: relative;
}

.preloader-line-progress {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 40%;
  background: linear-gradient(90deg, var(--accent-gold) 0%, var(--accent-gold-light) 100%);
  border-radius: var(--radius-round);
  animation: preloaderLineAnim 1.8s infinite ease-in-out;
}

@keyframes preloaderPulse {
  0%, 100% { transform: scale(1); filter: drop-shadow(0 0 0px transparent); }
  50% { transform: scale(1.05); filter: drop-shadow(0 4px 12px rgba(236, 154, 166, 0.15)); }
}

@keyframes preloaderCirclePulse {
  0% { transform: scale(0.8); opacity: 0.8; }
  100% { transform: scale(1.3); opacity: 0; }
}

@keyframes preloaderLineAnim {
  0% { left: -40%; width: 30%; }
  50% { width: 50%; }
  100% { left: 110%; width: 30%; }
}

@keyframes rotateSpinner {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Floating Organic Background Blobs */
.floating-blobs-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
  contain: paint;
}

.floating-blob {
  position: absolute;
  border-radius: var(--radius-round);
  filter: blur(140px);
  opacity: 0.18;
  mix-blend-mode: multiply;
  animation: blobFloat 22s infinite alternate ease-in-out;
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.blob-pink {
  top: -10%;
  left: -5%;
  width: 45vw;
  height: 45vw;
  background: radial-gradient(circle, var(--accent-gold) 0%, rgba(236, 154, 166, 0) 80%);
}

.blob-gold {
  bottom: 10%;
  right: -5%;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, var(--accent-gold-light) 0%, rgba(246, 208, 183, 0) 85%);
  animation-duration: 28s;
  animation-delay: -5s;
}

.blob-nude {
  top: 40%;
  left: 30%;
  width: 35vw;
  height: 35vw;
  background: radial-gradient(circle, #F6D0B7 0%, rgba(246, 208, 183, 0) 80%);
  animation-duration: 25s;
  animation-delay: -2s;
  opacity: 0.14;
}

@keyframes blobFloat {
  0% { transform: translate(0, 0) scale(1) rotate(0deg); }
  50% { transform: translate(60px, 40px) scale(1.1) rotate(120deg); }
  100% { transform: translate(-40px, 80px) scale(0.9) rotate(240deg); }
}

/* Advanced Desktop Custom Cursor Glow */
#custom-cursor {
  width: 38px;
  height: 38px;
  border: 1.5px solid rgba(236, 154, 166, 0.4);
  background: rgba(236, 154, 166, 0.02);
  border-radius: var(--radius-round);
  position: fixed;
  top: 0;
  left: 0;
  transform: translate3d(var(--cursor-x, -100px), var(--cursor-y, -100px), 0) translate(-50%, -50%);
  pointer-events: none !important;
  z-index: 999999 !important;
  transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              height 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              background-color 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 0.2s ease;
  will-change: transform;
}

#custom-cursor-dot {
  width: 6px;
  height: 6px;
  background-color: var(--accent-gold-dark);
  border-radius: var(--radius-round);
  position: fixed;
  top: 0;
  left: 0;
  transform: translate3d(var(--cursor-dot-x, -100px), var(--cursor-dot-y, -100px), 0) translate(-50%, -50%) scale(var(--cursor-dot-scale, 1));
  pointer-events: none !important;
  z-index: 999999 !important;
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1),
              background-color 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 0.2s ease;
  will-change: transform;
}

@media (pointer: fine) {
  * {
    cursor: none !important;
  }
}

/* Morph Text Cursor States */
#custom-cursor.cursor-text {
  width: 2px !important;
  height: 22px !important;
  border-radius: 0 !important;
  border-color: var(--accent-gold-dark) !important;
  background-color: var(--accent-gold-dark) !important;
  border-width: 1px !important;
}

#custom-cursor-dot.cursor-text {
  opacity: 0 !important;
}

/* Prevent double cursors on touch screens */
@media (max-width: 991px) {
  #custom-cursor, #custom-cursor-dot {
    display: none !important;
  }
}

/* Cursor states on hover */
#custom-cursor.cursor-hover {
  width: 55px;
  height: 55px;
  border-color: var(--accent-gold-dark);
  background: rgba(236, 154, 166, 0.08);
}

#custom-cursor-dot.cursor-hover {
  --cursor-dot-scale: 1.8;
}

/* Fluid Viewport Scroll Reveals */
[data-reveal] {
  opacity: 0;
  transform: translateY(35px);
  filter: blur(8px);
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1),
              transform 1.2s cubic-bezier(0.16, 1, 0.3, 1),
              filter 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform, filter;
}

[data-reveal].reveal-active {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* Scroll Direction Variations */
[data-reveal="left"] {
  transform: translateX(-40px);
}

[data-reveal="right"] {
  transform: translateX(40px);
}

[data-reveal="zoom"] {
  transform: scale(0.92);
}

[data-reveal="left"].reveal-active,
[data-reveal="right"].reveal-active {
  transform: translateX(0);
}

[data-reveal="zoom"].reveal-active {
  transform: scale(1);
}

/* Stagger reveals */
[data-stagger-container] [data-reveal-item] {
  opacity: 0;
  transform: translateY(35px);
  filter: blur(8px);
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1),
              transform 1.2s cubic-bezier(0.16, 1, 0.3, 1),
              filter 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform, filter;
}

[data-stagger-container] [data-reveal-item].reveal-active {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* Animated Section Dividers */
.section-divider {
  position: absolute;
  left: 0;
  width: 100%;
  height: 60px;
  overflow: hidden;
  line-height: 0;
  z-index: 4;
}

.divider-top {
  top: -1px;
}

.divider-bottom {
  bottom: -1px;
}

.section-divider svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 60px;
  fill: var(--bg-base);
}

.divider-alt svg {
  fill: var(--bg-base-alt);
}

/* Elegant Underlines on Link Hovers */
.animated-underline-link {
  position: relative;
  text-decoration: none;
}

.animated-underline-link::after {
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 1.5px;
  bottom: -4px;
  left: 0;
  background: linear-gradient(90deg, var(--accent-gold-dark) 0%, var(--accent-gold) 100%);
  transform-origin: bottom right;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.animated-underline-link:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

/* Image depth micro zoom */
.spotlight-img-inner img {
  transition: var(--transition-smooth);
}

.spotlight-image-wrap:hover .spotlight-img-inner img {
  transform: scale(1.04);
}

.social-card {
  overflow: hidden;
}

.social-card img {
  transition: var(--transition-smooth);
}

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

/* Floating animation details */
.floating-element {
  animation: floatAnim 6s ease-in-out infinite alternate;
}

@keyframes floatAnim {
  0% { transform: translateY(0); }
  100% { transform: translateY(-10px); }
}

/* Soft hover scale for all primary CTAs */
.btn-primary, .btn-secondary, .btn-gold {
  will-change: transform, box-shadow;
}

.btn-primary:hover, .btn-secondary:hover, .btn-gold:hover {
  transform: translateY(-5px) scale(1.025);
}

.btn-primary:hover {
  box-shadow: 0 16px 36px rgba(74, 48, 44, 0.08), 0 0 12px rgba(74, 48, 44, 0.04) !important;
}

.btn-secondary:hover {
  box-shadow: 0 12px 28px rgba(74, 48, 44, 0.06) !important;
}

.btn-gold:hover {
  box-shadow: 0 16px 36px rgba(236, 154, 166, 0.35), 0 0 18px rgba(246, 208, 183, 0.22) !important;
}

/* 3D Dynamic tilt details */
.treatment-card, .stat-card, .contact-card-item {
  transform-style: preserve-3d;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, box-shadow;
}

.treatment-card:hover, .stat-card:hover, .contact-card-item:hover {
  border-color: var(--accent-gold);
  box-shadow: 0 20px 45px rgba(74, 48, 44, 0.12),
              0 0 20px rgba(236, 154, 166, 0.08);
}



/* ==========================================================================
   15. RESPONSIVE DESIGN & MEDIA QUERIES
   ========================================================================== */

@media (max-width: 1200px) {
  .timeline-grid::after {
    display: none !important;
  }
}

@media (max-width: 991px) {
  .nav-links, .nav-wrapper .btn-primary {
    display: none !important;
  }
  
  .hamburger-btn {
    display: block;
  }
  
  .hero-section {
    height: auto;
    min-height: auto;
    padding-top: clamp(90px, 70px + 6vw, 130px);
    padding-bottom: clamp(40px, 25px + 4vw, 75px);
  }
  
  .hero-glass-card {
    margin-left: 0 !important;
    max-width: 100% !important;
  }
  
  .spotlight-image-wrap {
    max-width: 500px;
    margin: 0 auto;
    overflow: visible;
  }
  
  .spotlight-badge {
    bottom: -10px;
    right: 10px;
    padding: clamp(10px, 8px + 1vw, 18px) clamp(16px, 12px + 2vw, 24px);
    min-width: clamp(120px, 100px + 5vw, 160px);
    z-index: 10;
  }
  
  .footer-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
  }
  
  .floating-action-widget {
    bottom: 24px;
    right: 24px;
  }
}

@media (max-width: 768px) {
  .hero-buttons {
    flex-direction: column;
    gap: 12px;
  }
  
  .hero-buttons .btn-primary,
  .hero-buttons .btn-secondary {
    width: 100%;
  }
  
  .floating-blob {
    filter: blur(65px) !important;
    opacity: 0.12 !important;
  }
  
  .form-group-row {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  
  .footer-column h4 {
    margin-bottom: 18px;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  
  .carousel-slide {
    padding: 30px 10px;
  }
  
  .carousel-btn {
    width: 40px;
    height: 40px;
  }
  
  .carousel-btn-prev { left: -10px; }
  .carousel-btn-next { right: -10px; }
  
  .comparison-wrapper {
    aspect-ratio: 1/1;
  }
}

/* Wearables & Extremely Narrow Viewports (120px to 320px) */
@media (max-width: 320px) {
  .nav-wrapper {
    padding: 6px 12px !important;
  }
  
  .success-modal {
    padding: 24px 16px !important;
  }
  
  .preloader-logo-wrap {
    width: 80px;
    height: 80px;
  }
  
  .preloader-logo-wrap img {
    width: 60px;
  }
  
  .preloader-line-loader {
    width: 120px;
  }
}

/* Reduced Motion Preference Accessibility Overrides */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-delay: 0s !important;
    animation-duration: 0s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0s !important;
    scroll-behavior: auto !important;
  }
  .floating-blob {
    animation: none !important;
  }
}

/* ==========================================================================
   16. CONTENT PROTECTION LAYER
   Elegant, non-intrusive selection & interaction guards.
   ========================================================================== */

/* ── Global selection disable ─────────────────────────────────────────────── */
html, body,
h1, h2, h3, h4, h5, h6,
p, span, li, a, label,
img, video, figure, figcaption,
section, article, header, footer, main, nav,
.glass-card, .treatment-card, .stat-card,
.hero-glass-card, .spotlight-image-wrap,
.marquee-track, .social-card, .review-card,
.timeline-item, .result-item, .faq-item {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
}

/* ── Preserve full usability of all form controls ─────────────────────────── */
input, textarea, select,
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="password"],
input[type="search"] {
  -webkit-user-select: text !important;
  -moz-user-select: text !important;
  -ms-user-select: text !important;
  user-select: text !important;
  -webkit-touch-callout: default !important;
  cursor: text !important;
}

/* ── Prevent ghost image drag ─────────────────────────────────────────────── */
img {
  -webkit-user-drag: none;
  user-drag: none;
  pointer-events: none; /* images cannot be clicked/dragged for saving */
}

/* Re-enable pointer events on interactive images inside carousels/before-after */
.comparison-before img,
.comparison-after img,
.before-after-wrap img {
  pointer-events: auto;
}

/* ── Highlight/selection colour → invisible ───────────────────────────────── */
::selection      { background: transparent; color: inherit; }
::-moz-selection { background: transparent; color: inherit; }

/* ==========================================================================
   PREMIUM CONTENT-SHIELD NOTIFICATION
   Cinematic, glassmorphism-first floating alert — no native alert() ever.
   ========================================================================== */

/* Keyframes ----------------------------------------------------------------- */
@keyframes shieldNotifEnter {
  0% {
    opacity: 0;
    transform: translateX(-50%) translateY(22px) scale(0.94);
    filter: blur(6px);
  }
  60% {
    opacity: 1;
    filter: blur(0px);
  }
  100% {
    opacity: 1;
    transform: translateX(-50%) translateY(0px) scale(1);
    filter: blur(0px);
  }
}

@keyframes shieldNotifExit {
  0% {
    opacity: 1;
    transform: translateX(-50%) translateY(0px) scale(1);
    filter: blur(0px);
  }
  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(-14px) scale(0.96);
    filter: blur(4px);
  }
}

@keyframes shieldIconPulse {
  0%   { transform: scale(1);    opacity: 1;    }
  40%  { transform: scale(1.18); opacity: 0.85; }
  70%  { transform: scale(0.96); opacity: 1;    }
  100% { transform: scale(1);    opacity: 1;    }
}

@keyframes shieldGlowRing {
  0%   { box-shadow: 0 0 0   0px rgba(236, 154, 166, 0);
                     inset 0 0 0 0px rgba(236, 154, 166, 0); }
  50%  { box-shadow: 0 0 28px 8px rgba(236, 154, 166, 0.18),
                     inset 0 0 0 0px rgba(236, 154, 166, 0); }
  100% { box-shadow: 0 0 0   0px rgba(236, 154, 166, 0),
                     inset 0 0 0 0px rgba(236, 154, 166, 0); }
}

@keyframes shimmerLine {
  0%   { transform: translateX(-110%); }
  100% { transform: translateX(110%);  }
}

/* Notification container ---------------------------------------------------- */
#content-shield-notif {
  /* Layout */
  position: fixed;
  bottom: 42px;
  left: 50%;
  transform: translateX(-50%) translateY(22px) scale(0.94);
  z-index: 99999;

  /* Glassmorphism base */
  background: rgba(252, 250, 247, 0.76);
  backdrop-filter: blur(28px) saturate(130%);
  -webkit-backdrop-filter: blur(28px) saturate(130%);

  /* Border & shape */
  border: 1px solid rgba(236, 154, 166, 0.38);
  border-radius: 22px;
  overflow: hidden;

  /* Sizing */
  min-width: 300px;
  max-width: min(88vw, 420px);
  padding: 22px 28px 20px 24px;

  /* Shadow & glow */
  box-shadow:
    0 8px  32px rgba(74, 48, 44, 0.08),
    0 2px  10px rgba(74, 48, 44, 0.04),
    0 0   0px rgba(236, 154, 166, 0);

  /* State */
  opacity: 0;
  pointer-events: none;
  will-change: transform, opacity, filter;
}

#content-shield-notif.notif-enter {
  animation: shieldNotifEnter 0.55s cubic-bezier(0.16, 1, 0.3, 1) forwards,
             shieldGlowRing    1.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
  pointer-events: auto;
}

#content-shield-notif.notif-exit {
  animation: shieldNotifExit 0.42s cubic-bezier(0.4, 0, 1, 1) forwards;
  pointer-events: none;
}

/* Shimmer highlight sweep */
#content-shield-notif::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent 0%,
    rgba(246, 208, 183, 0.28) 40%,
    rgba(252, 250, 247, 0.55) 50%,
    rgba(246, 208, 183, 0.18) 60%,
    transparent 100%
  );
  animation: shimmerLine 1.8s cubic-bezier(0.4, 0, 0.6, 1) 0.1s 1 forwards;
  pointer-events: none;
  z-index: 1;
}

/* Top accent line */
#content-shield-notif::after {
  content: '';
  position: absolute;
  top: 0;
  left: 18px;
  right: 18px;
  height: 1.5px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(236, 154, 166, 0.7) 30%,
    rgba(246, 208, 183, 0.9) 50%,
    rgba(236, 154, 166, 0.7) 70%,
    transparent 100%
  );
  border-radius: 0 0 4px 4px;
}

/* Inner layout */
.shield-notif-inner {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  position: relative;
  z-index: 2;
}

/* Icon wrap */
.shield-notif-icon-wrap {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(
    135deg,
    rgba(246, 208, 183, 0.55) 0%,
    rgba(236, 154, 166, 0.35) 100%
  );
  border: 1px solid rgba(236, 154, 166, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: shieldIconPulse 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.2s 1 both;
}

.shield-notif-icon-wrap svg {
  width: 20px;
  height: 20px;
  color: var(--accent-gold-dark);
  display: block;
}

/* Text content */
.shield-notif-text {
  flex: 1;
  min-width: 0;
  padding-top: 1px;
}

.shield-notif-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-main);
  line-height: 1.3;
  margin-bottom: 5px;
  letter-spacing: 0.01em;
}

.shield-notif-body {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
  letter-spacing: 0.01em;
}

/* Progress drain bar */
.shield-notif-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: rgba(236, 154, 166, 0.12);
  overflow: hidden;
}

.shield-notif-progress-fill {
  height: 100%;
  width: 100%;
  background: linear-gradient(
    90deg,
    var(--accent-gold-light) 0%,
    var(--accent-gold)       50%,
    var(--accent-gold-dark)  100%
  );
  transform-origin: left center;
  transform: scaleX(1);
  transition: transform linear;
}

/* Mobile adjustments */
@media (max-width: 480px) {
  #content-shield-notif {
    bottom: 24px;
    min-width: 0;
    max-width: calc(100vw - 32px);
    padding: 18px 20px 18px 18px;
    border-radius: 18px;
  }

  .shield-notif-icon-wrap {
    width: 34px;
    height: 34px;
    border-radius: 10px;
  }

  .shield-notif-icon-wrap svg {
    width: 17px;
    height: 17px;
  }

  .shield-notif-title {
    font-size: 0.92rem;
  }

  .shield-notif-body {
    font-size: 0.76rem;
  }
}