/* ============================================================
   ÉCLAT AESTHETICS — Complete Design System
   Ultra-luxury med spa CSS · Beverly Hills meets skincare couture
   ============================================================ */

/* ─────────────────────────────────────────────
   1. DESIGN TOKENS (CSS Custom Properties)
   ───────────────────────────────────────────── */
:root {
  /* ── Colors ── */
  --color-bg: #FAF8F5;
  --color-cream: #F0EBE3;
  --color-gold: #C9A96E;
  --color-gold-light: #D4B87A;
  --color-gold-dark: #A68B5B;
  --color-charcoal: #2C2C2C;
  --color-text: #3E3232;
  --color-text-light: #6B5E5E;
  --color-rose: #D4A9A9;
  --color-rose-light: #E8C8C8;
  --color-white: #FFFFFF;
  --color-overlay: rgba(44, 44, 44, 0.7);
  --color-glass: rgba(255, 255, 255, 0.08);
  --color-glass-border: rgba(201, 169, 110, 0.15);

  /* ── Typography ── */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* ── Shadows ── */
  --shadow-sm: 0 2px 8px rgba(62, 50, 50, 0.06);
  --shadow-md: 0 4px 20px rgba(62, 50, 50, 0.08);
  --shadow-lg: 0 8px 40px rgba(62, 50, 50, 0.12);
  --shadow-xl: 0 16px 60px rgba(62, 50, 50, 0.16);
  --shadow-gold: 0 4px 20px rgba(201, 169, 110, 0.25);

  /* ── Radii ── */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  /* ── Transitions ── */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-spring: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);

  /* ── Z-Index Scale ── */
  --z-nav: 1000;
  --z-sticky: 900;
  --z-modal: 1100;
  --z-chatbot: 1050;
  --z-glow: 1;
}


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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: var(--color-bg);
  overflow-x: hidden;
  line-height: 1.6;
  min-height: 100vh;
}

::selection {
  background-color: var(--color-gold);
  color: var(--color-white);
}

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

::-webkit-scrollbar-track {
  background: var(--color-cream);
}

::-webkit-scrollbar-thumb {
  background: var(--color-gold);
  border-radius: var(--radius-full);
}

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

/* Firefox scrollbar */
* {
  scrollbar-width: thin;
  scrollbar-color: var(--color-gold) var(--color-cream);
}

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

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

ul,
ol {
  list-style: none;
}

button {
  font-family: var(--font-body);
}

input,
select,
textarea {
  font-family: var(--font-body);
}


/* ─────────────────────────────────────────────
   3. TYPOGRAPHY
   ───────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-charcoal);
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  line-height: 1.3;
}

h4 {
  font-size: 1.3rem;
  line-height: 1.4;
}

h5 {
  font-size: 1.1rem;
  line-height: 1.4;
}

h6 {
  font-size: 0.95rem;
  line-height: 1.5;
  text-transform: uppercase;
  letter-spacing: 1px;
}

p {
  line-height: 1.7;
  font-size: 1.05rem;
}


/* ─────────────────────────────────────────────
   4. LAYOUT
   ───────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 8rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-label {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.8rem;
  color: var(--color-gold);
  font-weight: 600;
  font-family: var(--font-body);
  display: block;
  margin-bottom: 1rem;
}

.section-title {
  margin-bottom: 1.5rem;
}

.section-subtitle {
  color: var(--color-text-light);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
}

.section-divider {
  width: 60px;
  height: 2px;
  background: var(--color-gold);
  margin: 1.5rem auto 0;
  border: none;
}


/* ─────────────────────────────────────────────
   5. BUTTONS
   ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2.5rem;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  transition: all var(--transition-base);
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
  text-align: center;
  line-height: 1;
}

.btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.25),
    transparent
  );
  transition: left 0.5s ease;
  pointer-events: none;
}

.btn:hover::after {
  left: 100%;
}

/* Primary */
.btn-primary {
  background: var(--color-gold);
  color: var(--color-white);
}

.btn-primary:hover {
  background: var(--color-gold-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

/* Secondary */
.btn-secondary {
  background: transparent;
  border: 1.5px solid var(--color-gold);
  color: var(--color-gold);
}

.btn-secondary:hover {
  background: var(--color-gold);
  color: var(--color-white);
}

/* White */
.btn-white {
  background: var(--color-white);
  color: var(--color-charcoal);
}

.btn-white:hover {
  background: var(--color-cream);
}


/* ─────────────────────────────────────────────
   6. NAVIGATION
   ───────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: var(--z-nav);
  padding: 1.5rem 0;
  transition: all var(--transition-base);
  background: transparent;
}

.nav.scrolled {
  background: rgba(250, 248, 245, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-sm);
  padding: 1rem 0;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-charcoal);
}

.nav-logo span {
  color: var(--color-gold);
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  position: relative;
  padding: 0.5rem 0;
  transition: color var(--transition-fast);
  cursor: pointer;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: var(--color-gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition-base);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-gold);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-book-btn {
  padding: 0.65rem 1.5rem;
  font-size: 0.85rem;
}

/* Mobile Toggle */
.nav-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: calc(var(--z-nav) + 10);
}

.nav-mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-charcoal);
  transition: all var(--transition-base);
  border-radius: 2px;
}

.nav-mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

.nav-mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.nav-mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(250, 248, 245, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  z-index: var(--z-nav);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
  transition: all var(--transition-base);
}

.nav-mobile-menu.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-mobile-menu .nav-link {
  font-size: 1.5rem;
  letter-spacing: 2px;
}


/* ─────────────────────────────────────────────
   7. HERO SECTION
   ───────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(135deg, #2C2C2C, #4a3728, #3E3232, #2C2C2C);
  background-size: 400% 400%;
  animation: gradientShift 12s ease infinite;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(44, 44, 44, 0.85) 0%,
    rgba(44, 44, 44, 0.4) 40%,
    rgba(44, 44, 44, 0.2) 70%,
    transparent 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  color: var(--color-white);
  padding: 0 2rem;
}

.hero-badge {
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 0.75rem;
  margin-bottom: 2rem;
  display: inline-block;
  padding: 0.5rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-full);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.05);
  font-weight: 500;
}

.hero-title {
  font-size: clamp(2.8rem, 6vw, 5rem);
  color: var(--color-white);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
  margin-bottom: 1.5rem;
  line-height: 1.08;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-badges {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-top: 4rem;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.1);
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-weight: 400;
}

.trust-badge-icon {
  font-size: 1.1rem;
}

/* Hero Glow Orbs */
.hero-glow-1,
.hero-glow-2 {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
  pointer-events: none;
  z-index: 0;
}

.hero-glow-1 {
  width: 400px;
  height: 400px;
  background: var(--color-gold);
  top: 20%;
  right: 10%;
  animation: heroGlow1 8s ease-in-out infinite;
}

.hero-glow-2 {
  width: 300px;
  height: 300px;
  background: var(--color-rose);
  bottom: 20%;
  left: 15%;
  animation: heroGlow2 10s ease-in-out infinite;
}


/* ─────────────────────────────────────────────
   8. ABOUT SECTION
   ───────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
}

.about-image-inner {
  background: linear-gradient(135deg, #e8d5c0, #d4bfa8, #c9a96e20, #f0ebe3);
  width: 100%;
  height: 100%;
}

.about-image::after {
  content: '';
  position: absolute;
  inset: 10px;
  border: 1.5px solid var(--color-gold);
  border-radius: calc(var(--radius-lg) - 4px);
  pointer-events: none;
  opacity: 0.4;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-stats {
  display: flex;
  gap: 2rem;
  margin-top: 1rem;
}

.about-stat {
  text-align: center;
}

.about-stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--color-gold);
  display: block;
  line-height: 1.1;
}

.about-stat-label {
  font-size: 0.85rem;
  color: var(--color-text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 0.25rem;
}


/* ─────────────────────────────────────────────
   9. TREATMENT CARDS
   ───────────────────────────────────────────── */

/* Filter Tabs (shared with Before & After) */
.filter-tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.filter-tab {
  padding: 0.6rem 1.5rem;
  border: none;
  background: transparent;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.85rem;
  cursor: pointer;
  transition: all var(--transition-fast);
  color: var(--color-text-light);
  border: 1px solid transparent;
  font-weight: 500;
}

.filter-tab.active {
  background: var(--color-gold);
  color: var(--color-white);
  border-color: var(--color-gold);
}

.filter-tab:hover:not(.active) {
  border-color: var(--color-gold);
  color: var(--color-gold);
}

/* Treatments Grid */
.treatments-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.treatment-card {
  position: relative;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all var(--transition-slow);
  border: 1px solid rgba(201, 169, 110, 0.1);
  overflow: hidden;
}

.treatment-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(201, 169, 110, 0.06),
    transparent
  );
  transition: left 0.6s ease;
  pointer-events: none;
}

.treatment-card:hover::before {
  left: 100%;
}

.treatment-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(201, 169, 110, 0.3);
}

.treatment-card-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, var(--color-gold), transparent 70%);
  opacity: 0;
  transition: opacity var(--transition-slow);
  pointer-events: none;
}

.treatment-card:hover .treatment-card-glow {
  opacity: 0.05;
}

.treatment-card-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: var(--color-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  transition: all var(--transition-base);
}

.treatment-card:hover .treatment-card-icon {
  background: var(--color-gold);
  transform: scale(1.1);
}

.treatment-card:hover .treatment-card-icon span {
  filter: brightness(0) invert(1);
}

.treatment-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  color: var(--color-charcoal);
}

.treatment-desc {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.treatment-btn {
  font-size: 0.85rem;
  color: var(--color-gold);
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: all var(--transition-fast);
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
}

.treatment-btn::after {
  content: '→';
  transition: transform var(--transition-fast);
}

.treatment-btn:hover {
  color: var(--color-gold-dark);
}

.treatment-btn:hover::after {
  transform: translateX(4px);
}

.treatment-card.hidden {
  display: none;
}


/* ─────────────────────────────────────────────
   10. BEFORE & AFTER GALLERY
   ───────────────────────────────────────────── */
#before-after {
  background: var(--color-cream);
}

.ba-filters {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.ba-filter-btn {
  padding: 0.6rem 1.5rem;
  border: 1px solid transparent;
  background: transparent;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.85rem;
  cursor: pointer;
  transition: all var(--transition-fast);
  color: var(--color-text-light);
  font-weight: 500;
}

.ba-filter-btn.active {
  background: var(--color-gold);
  color: var(--color-white);
  border-color: var(--color-gold);
}

.ba-filter-btn:hover:not(.active) {
  border-color: var(--color-gold);
  color: var(--color-gold);
}

.ba-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.ba-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

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

.ba-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  cursor: col-resize;
}

.ba-before,
.ba-after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ba-before {
  background: linear-gradient(135deg, #d4bfa8, #c9b89d, #bba88e);
  z-index: 1;
}

.ba-after {
  background: linear-gradient(135deg, #f0ebe3, #e8d5c0, #dcc8b0);
  z-index: 2;
  clip-path: inset(0 50% 0 0);
}

.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: var(--color-white);
  z-index: 3;
  transform: translateX(-50%);
  cursor: col-resize;
}

.ba-handle::before {
  content: '◂ ▸';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 36px;
  height: 36px;
  background: var(--color-white);
  border-radius: 50%;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  color: var(--color-charcoal);
  letter-spacing: 2px;
}

.ba-card-label {
  padding: 1rem 1.5rem;
  font-family: var(--font-heading);
  font-size: 1rem;
  text-align: center;
  color: var(--color-charcoal);
}

.ba-card.hidden {
  display: none;
}


/* ─────────────────────────────────────────────
   11. EXPERTS SECTION
   ───────────────────────────────────────────── */
.experts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.expert-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-slow);
  box-shadow: var(--shadow-sm);
}

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

.expert-photo-wrapper {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
}

.expert-photo {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, #e8ddd0, #d4c4b0, #c9b89d, #baa88e);
  transition: transform var(--transition-slow);
  object-fit: cover;
}

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

.expert-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
  opacity: 0;
  transition: opacity var(--transition-base);
  pointer-events: none;
}

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

.expert-info {
  padding: 2rem;
}

.expert-name {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--color-charcoal);
  margin-bottom: 0.3rem;
}

.expert-role {
  color: var(--color-gold);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.expert-quals {
  font-size: 0.85rem;
  color: var(--color-text-light);
  margin-bottom: 1rem;
  line-height: 1.5;
}

.expert-stats {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--color-cream);
}

.expert-stat-value {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--color-charcoal);
  display: block;
}

.expert-stat-label {
  font-size: 0.75rem;
  color: var(--color-text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.expert-social {
  display: flex;
  gap: 0.75rem;
}

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  color: var(--color-text);
}

.social-icon:hover {
  background: var(--color-gold);
  color: var(--color-white);
}


/* ─────────────────────────────────────────────
   12. TIMELINE / PROCESS
   ───────────────────────────────────────────── */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--color-cream);
  transform: translateX(-50%);
}

.timeline-step {
  display: flex;
  align-items: center;
  margin-bottom: 4rem;
  position: relative;
}

.timeline-step:last-child {
  margin-bottom: 0;
}

.timeline-step:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-number {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  background: var(--color-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 1.2rem;
  z-index: 2;
  box-shadow: var(--shadow-gold);
  font-weight: 700;
}

.timeline-content {
  width: 45%;
  background: var(--color-white);
  padding: 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.timeline-step:nth-child(odd) .timeline-content {
  margin-right: auto;
}

.timeline-step:nth-child(even) .timeline-content {
  margin-left: auto;
}

.timeline-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.timeline-content h3 {
  font-family: var(--font-heading);
  margin-bottom: 0.5rem;
}

.timeline-content p {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.6;
}


/* ─────────────────────────────────────────────
   13. TESTIMONIALS
   ───────────────────────────────────────────── */
.testimonial-carousel {
  position: relative;
  overflow: hidden;
  padding: 0 3rem;
}

.testimonial-track {
  display: flex;
  transition: transform var(--transition-slow);
}

.testimonial-card {
  min-width: calc(33.333% - 1.5rem);
  margin: 0 0.75rem;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  white-space: normal;
}

.testimonial-rating {
  color: var(--color-gold);
  font-size: 1.1rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--color-text);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-rose-light), var(--color-cream));
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-charcoal);
}

.testimonial-treatment {
  font-size: 0.8rem;
  color: var(--color-text-light);
}

/* Carousel Controls */
.carousel-prev,
.carousel-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-white);
  border: 1px solid var(--color-cream);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  z-index: 5;
  transition: all var(--transition-fast);
  color: var(--color-charcoal);
}

.carousel-prev {
  left: 0;
}

.carousel-next {
  right: 0;
}

.carousel-prev:hover,
.carousel-next:hover {
  background: var(--color-gold);
  color: var(--color-white);
  border-color: var(--color-gold);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-cream);
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
  padding: 0;
}

.carousel-dot.active {
  background: var(--color-gold);
  width: 30px;
  border-radius: var(--radius-full);
}


/* ─────────────────────────────────────────────
   14. AWARDS
   ───────────────────────────────────────────── */
#awards {
  background: var(--color-charcoal);
  color: var(--color-white);
}

#awards .section-title {
  color: var(--color-white);
}

#awards .section-subtitle {
  color: rgba(255, 255, 255, 0.7);
}

#awards .section-label {
  color: var(--color-gold);
}

.awards-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2rem;
  align-items: center;
}

.award-item {
  text-align: center;
  padding: 2rem 1rem;
  transition: all var(--transition-base);
}

.award-item:hover {
  transform: translateY(-4px);
}

.award-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  filter: grayscale(1);
  opacity: 0.7;
  transition: all var(--transition-base);
}

.award-item:hover .award-icon {
  filter: grayscale(0);
  opacity: 1;
}

.award-name {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

.award-year {
  font-size: 0.75rem;
  color: var(--color-gold);
  margin-top: 0.3rem;
}


/* ─────────────────────────────────────────────
   15. MEMBERSHIP / PRICING
   ───────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: start;
}

.pricing-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  text-align: center;
  position: relative;
  transition: all var(--transition-slow);
  border: 1px solid var(--color-cream);
  overflow: hidden;
}

.pricing-card.featured {
  border-color: var(--color-gold);
  transform: scale(1.05);
  box-shadow: var(--shadow-gold);
}

.pricing-card.featured::before {
  content: 'MOST POPULAR';
  position: absolute;
  top: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-gold);
  color: var(--color-white);
  padding: 0.3rem 1.25rem;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
  border-radius: var(--radius-full);
}

.pricing-card:hover {
  transform: translateY(-4px);
}

.pricing-card.featured:hover {
  transform: scale(1.08);
}

.pricing-badge {
  position: absolute;
  top: 1rem;
  right: -2rem;
  background: var(--color-gold);
  color: var(--color-white);
  padding: 0.3rem 2.5rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transform: rotate(45deg);
  font-weight: 600;
}

.pricing-card-header {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--color-cream);
}

.pricing-card.featured .pricing-card-header {
  padding-top: 1.5rem;
}

.pricing-name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--color-charcoal);
}

.pricing-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.25rem;
}

.price-amount {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--color-gold);
  line-height: 1;
}

.price-period {
  font-size: 0.9rem;
  color: var(--color-text-light);
}

.pricing-features {
  list-style: none;
  text-align: left;
  margin-bottom: 2rem;
}

.pricing-features li {
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(240, 235, 227, 0.5);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--color-text);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.feature-check {
  color: var(--color-gold);
  flex-shrink: 0;
}

.pricing-btn {
  width: 100%;
  justify-content: center;
}


/* ─────────────────────────────────────────────
   16. SUCCESS STORIES
   ───────────────────────────────────────────── */
#success-stories {
  background: var(--color-cream);
}

.stories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.story-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: 2.5rem;
  transition: all var(--transition-base);
}

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

.story-image {
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, #e8d5c0, #d4c4b0, #c9b89d);
}

.story-content {
  padding: 2rem;
}

.story-quote {
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  position: relative;
  padding-left: 1.5rem;
  border-left: 3px solid var(--color-gold);
  color: var(--color-text);
}

.story-author {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-charcoal);
}

.story-treatment-tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: var(--color-cream);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  color: var(--color-gold);
  margin-top: 0.5rem;
  font-weight: 500;
}


/* ─────────────────────────────────────────────
   17. SHOP / PRODUCTS
   ───────────────────────────────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.product-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-base);
  border: 1px solid var(--color-cream);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(201, 169, 110, 0.2);
}

.product-image-wrapper {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.product-image {
  width: 100%;
  height: 100%;
  background: linear-gradient(155deg, #f5f0ea, #e8ddd0, #dccebe);
  transition: transform var(--transition-slow);
  object-fit: cover;
}

.product-card:hover .product-image {
  transform: scale(1.05);
}

.product-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--color-gold);
  color: var(--color-white);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.product-info {
  padding: 1.5rem;
}

.product-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--color-charcoal);
}

.product-rating {
  color: var(--color-gold);
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
}

.product-price {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-charcoal);
  margin-bottom: 1rem;
}

.product-btn {
  width: 100%;
  justify-content: center;
  padding: 0.75rem;
}


/* ─────────────────────────────────────────────
   18. BLOG
   ───────────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.blog-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-sm);
}

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

.blog-image-wrapper {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.blog-image {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #e8d5c0, #d4bfa8, #c9b89d);
  transition: transform var(--transition-slow);
  object-fit: cover;
}

.blog-card:hover .blog-image {
  transform: scale(1.05);
}

.blog-category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--color-white);
  color: var(--color-gold);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.blog-content {
  padding: 1.5rem;
}

.blog-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  color: var(--color-charcoal);
  line-height: 1.4;
}

.blog-excerpt {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.blog-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--color-text-light);
}


/* ─────────────────────────────────────────────
   19. SOCIAL FEED
   ───────────────────────────────────────────── */
#social-feed {
  background: var(--color-cream);
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.5rem;
}

.social-item {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.social-item-image {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #e8d5c0, #d4c4b0);
  transition: transform var(--transition-slow);
  object-fit: cover;
}

.social-item:hover .social-item-image {
  transform: scale(1.1);
}

.social-overlay {
  position: absolute;
  inset: 0;
  background: rgba(201, 169, 110, 0.8);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  opacity: 0;
  transition: opacity var(--transition-base);
}

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

.social-overlay-icon {
  font-size: 1.5rem;
  color: var(--color-white);
}

.social-likes {
  color: var(--color-white);
  font-size: 0.85rem;
  font-weight: 500;
}


/* ─────────────────────────────────────────────
   20. GIFT CARDS
   ───────────────────────────────────────────── */
.gift-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.gift-content {
  padding: 2rem 0;
}

.gift-visual {
  position: relative;
}

.gift-card-display {
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light), var(--color-gold-dark));
  border-radius: var(--radius-lg);
  padding: 3rem;
  aspect-ratio: 16 / 10;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.gift-card-display::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 20px,
    rgba(255, 255, 255, 0.03) 20px,
    rgba(255, 255, 255, 0.03) 40px
  );
  pointer-events: none;
}

.gift-card-brand {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-white);
  position: relative;
  z-index: 1;
}

.gift-card-amount {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--color-white);
  position: relative;
  z-index: 1;
}

.promo-banner {
  margin-top: 4rem;
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  text-align: center;
  color: var(--color-white);
}

.promo-banner h3 {
  color: var(--color-white);
  margin-bottom: 0.5rem;
}

.promo-banner p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
}


/* ─────────────────────────────────────────────
   21. FINANCING
   ───────────────────────────────────────────── */
.financing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.financing-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  text-align: center;
  border: 1px solid var(--color-cream);
  transition: all var(--transition-base);
}

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

.financing-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.financing-card h3 {
  font-family: var(--font-heading);
  margin-bottom: 0.5rem;
}

.financing-card p {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.6;
}


/* ─────────────────────────────────────────────
   22. FAQ
   ───────────────────────────────────────────── */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--color-cream);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--color-charcoal);
  text-align: left;
  transition: color var(--transition-fast);
  gap: 1rem;
}

.faq-question:hover {
  color: var(--color-gold);
}

.faq-icon {
  font-size: 1.2rem;
  color: var(--color-gold);
  transition: transform var(--transition-base);
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow);
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding-bottom: 1.5rem;
  color: var(--color-text-light);
  line-height: 1.7;
  font-size: 0.95rem;
}


/* ─────────────────────────────────────────────
   23. BOOKING CTA
   ───────────────────────────────────────────── */
.booking-cta-section {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
}

.booking-cta-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #2C2C2C, #3a3028, #2C2C2C);
  z-index: 0;
}

.booking-cta-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 30px,
    rgba(201, 169, 110, 0.03) 30px,
    rgba(201, 169, 110, 0.03) 60px
  );
  pointer-events: none;
}

.booking-cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--color-white);
  max-width: 700px;
  margin: 0 auto;
}

.booking-cta-content h2 {
  color: var(--color-white);
  margin-bottom: 1rem;
}

.booking-cta-content p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.booking-cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}


/* ─────────────────────────────────────────────
   24. FOOTER
   ───────────────────────────────────────────── */
.footer {
  background: var(--color-charcoal);
  color: rgba(255, 255, 255, 0.8);
  padding-top: 5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col h4 {
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--color-white);
  margin-bottom: 1rem;
  display: block;
  font-weight: 700;
}

.footer-logo span {
  color: var(--color-gold);
}

.footer-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  border: none;
  cursor: pointer;
}

.footer-social-link:hover {
  background: var(--color-gold);
  color: var(--color-white);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  font-size: 0.9rem;
  transition: color var(--transition-fast);
  color: rgba(255, 255, 255, 0.6);
}

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

/* Newsletter */
.footer-newsletter {
  display: flex;
  gap: 0;
  margin-top: 1rem;
}

.footer-newsletter input {
  flex: 1;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-full) 0 0 var(--radius-full);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--transition-fast);
}

.footer-newsletter input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.footer-newsletter input:focus {
  border-color: var(--color-gold);
}

.footer-newsletter button {
  padding: 0.75rem 1.5rem;
  background: var(--color-gold);
  color: var(--color-white);
  border: none;
  border-radius: 0 var(--radius-full) var(--radius-full) 0;
  cursor: pointer;
  transition: background var(--transition-fast);
  font-family: var(--font-body);
  font-weight: 500;
}

.footer-newsletter button:hover {
  background: var(--color-gold-dark);
}

/* Footer Bottom */
.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.copyright {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
  transition: color var(--transition-fast);
}

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


/* ─────────────────────────────────────────────
   25. STICKY BOOK BUTTON
   ───────────────────────────────────────────── */
.sticky-book-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: var(--z-sticky);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition-base);
}

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

.sticky-book-btn .btn {
  box-shadow: var(--shadow-lg);
  padding: 1rem 2rem;
}


/* ─────────────────────────────────────────────
   26. CHATBOT
   ───────────────────────────────────────────── */
.chatbot {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  z-index: var(--z-chatbot);
}

.chatbot-bubble {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--color-gold);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-gold);
  font-size: 1.5rem;
  transition: all var(--transition-spring);
  border: none;
}

.chatbot-bubble:hover {
  transform: scale(1.1);
}

.chatbot-tooltip {
  position: absolute;
  left: calc(100% + 15px);
  top: 50%;
  transform: translateY(-50%);
  background: var(--color-white);
  color: var(--color-charcoal);
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  font-weight: 500;
  box-shadow: var(--shadow-md);
  white-space: nowrap;
  pointer-events: none;
  opacity: 1;
  transition: opacity var(--transition-base), transform var(--transition-base);
  animation: floatTooltip 3s ease-in-out infinite;
  border: 1px solid var(--color-cream);
}

.chatbot-tooltip::after {
  content: '';
  position: absolute;
  top: 50%;
  left: -6px;
  transform: translateY(-50%);
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-right: 6px solid var(--color-white);
}

.chatbot.open .chatbot-tooltip {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-50%) scale(0.9);
}

@keyframes floatTooltip {
  0%, 100% { transform: translateY(-50%); }
  50% { transform: translateY(-55%); }
}

.chatbot-window {
  position: absolute;
  bottom: 80px;
  left: 0;
  width: 360px;
  height: 480px;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.9);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
}

.chatbot.open .chatbot-window {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.chatbot-header {
  background: var(--color-gold);
  color: var(--color-white);
  padding: 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;
}

.chatbot-header h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--color-white);
}

.chatbot-close {
  background: transparent;
  border: none;
  color: var(--color-white);
  font-size: 1.2rem;
  cursor: pointer;
  padding: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chatbot-messages {
  flex: 1;
  padding: 1rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.chatbot-message {
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  max-width: 85%;
  font-size: 0.9rem;
  line-height: 1.5;
  animation: chatMessage 0.3s ease;
}

.chatbot-message.bot {
  background: var(--color-cream);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
  color: var(--color-text);
}

.chatbot-message.user {
  background: var(--color-gold);
  color: var(--color-white);
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

.chatbot-input-area {
  display: flex;
  padding: 1rem;
  border-top: 1px solid var(--color-cream);
  gap: 0.5rem;
  flex-shrink: 0;
}

.chatbot-input {
  flex: 1;
  padding: 0.6rem 1rem;
  border: 1px solid var(--color-cream);
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--transition-fast);
}

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

.chatbot-send {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-gold);
  color: var(--color-white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  flex-shrink: 0;
}

.chatbot-send:hover {
  background: var(--color-gold-dark);
}


/* ─────────────────────────────────────────────
   27. BOOKING MODAL
   ───────────────────────────────────────────── */
.booking-modal {
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}

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

.booking-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(44, 44, 44, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.booking-modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--color-white);
  border-radius: var(--radius-lg);
  width: 90%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-xl);
  animation: modalSlideIn 0.4s ease;
}

.booking-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 2rem 1rem;
  border-bottom: 1px solid var(--color-cream);
}

.booking-modal-header h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
}

.booking-modal-close {
  background: transparent;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--color-text-light);
  transition: color var(--transition-fast);
  padding: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.booking-modal-close:hover {
  color: var(--color-charcoal);
}

/* Step Indicator */
.step-indicator {
  display: flex;
  justify-content: center;
  gap: 1rem;
  padding: 1.5rem 2rem;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  position: relative;
}

.step-number {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all var(--transition-base);
  color: var(--color-text-light);
}

.step.active .step-number {
  background: var(--color-gold);
  color: var(--color-white);
}

.step.completed .step-number {
  background: var(--color-gold);
  color: var(--color-white);
}

.step-label {
  font-size: 0.7rem;
  color: var(--color-text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.step-connector {
  position: absolute;
  top: 18px;
  left: 100%;
  width: 2rem;
  height: 2px;
  background: var(--color-cream);
}

.step.completed .step-connector {
  background: var(--color-gold);
}

/* Booking Steps */
.booking-steps {
  padding: 2rem;
}

.booking-step {
  display: none;
}

.booking-step.active {
  display: block;
  animation: stepFadeIn 0.3s ease;
}

.booking-step label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: var(--color-text);
}

.booking-step input,
.booking-step select,
.booking-step textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--color-cream);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color var(--transition-fast);
  outline: none;
  margin-bottom: 1.25rem;
  color: var(--color-text);
  background: var(--color-white);
}

.booking-step input:focus,
.booking-step select:focus,
.booking-step textarea:focus {
  border-color: var(--color-gold);
}

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

/* Booking Navigation */
.booking-nav {
  display: flex;
  justify-content: space-between;
  padding: 1rem 2rem 2rem;
  gap: 1rem;
}

.booking-prev {
  background: transparent;
  border: 1.5px solid var(--color-gold);
  color: var(--color-gold);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9rem;
  transition: all var(--transition-base);
}

.booking-prev:hover {
  background: var(--color-gold);
  color: var(--color-white);
}

.booking-next {
  background: var(--color-gold);
  color: var(--color-white);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9rem;
  transition: all var(--transition-base);
}

.booking-next:hover {
  background: var(--color-gold-dark);
  transform: translateY(-1px);
}


/* ─────────────────────────────────────────────
   28. SCROLL REVEAL ANIMATIONS
   ───────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-up {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.revealed {
  opacity: 1;
  transform: translate(0, 0);
}


/* ─────────────────────────────────────────────
   29. KEYFRAME ANIMATIONS
   ───────────────────────────────────────────── */
@keyframes heroGlow1 {
  0%, 100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(30px, -30px);
  }
}

@keyframes heroGlow2 {
  0%, 100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-20px, 20px);
  }
}

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

@keyframes shimmer {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

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

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translate(-50%, -48%);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

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

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


/* ─────────────────────────────────────────────
   30. RESPONSIVE DESIGN
   ───────────────────────────────────────────── */

/* ── 1200px ── */
@media (max-width: 1200px) {
  .treatments-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .social-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ── 1024px ── */
@media (max-width: 1024px) {
  .treatments-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
  }

  .pricing-card.featured {
    order: -1;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  /* Timeline collapse to left */
  .timeline::before {
    left: 25px;
  }

  .timeline-step {
    flex-direction: column !important;
    align-items: flex-start;
    padding-left: 70px;
  }

  .timeline-number {
    left: 0;
    transform: none;
  }

  .timeline-content {
    width: 100%;
    margin: 0 !important;
  }

  .awards-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ── 768px ── */
@media (max-width: 768px) {
  .section {
    padding: 5rem 0;
  }

  /* Navigation */
  .nav-links {
    display: none;
  }

  .nav-mobile-toggle {
    display: flex;
  }

  .nav-actions .nav-book-btn {
    display: none;
  }

  /* About */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-image {
    max-width: 400px;
    margin: 0 auto;
  }

  /* Before & After */
  .ba-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Blog */
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Products */
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Stories */
  .stories-grid {
    grid-template-columns: 1fr;
  }

  /* Gift Cards */
  .gift-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  /* Financing */
  .financing-grid {
    grid-template-columns: 1fr;
  }

  /* Testimonial Carousel — 1 card */
  .testimonial-card {
    min-width: calc(100% - 1.5rem);
    white-space: normal;
    padding: 1.5rem;
  }

  .testimonial-carousel {
    padding: 0 2.5rem;
  }

  /* Hero badges */
  .hero-badges {
    gap: 1rem;
  }

  /* Social grid */
  .social-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Footer */
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  /* Chatbot */
  .chatbot-window {
    width: 300px;
    height: 420px;
  }

  /* Booking Modal */
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* ── 480px ── */
@media (max-width: 480px) {
  .section {
    padding: 4rem 0;
  }

  .container {
    padding: 0 1.25rem;
  }

  .treatments-grid {
    grid-template-columns: 1fr;
  }

  .ba-gallery {
    grid-template-columns: 1fr;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .social-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .experts-grid {
    grid-template-columns: 1fr;
  }

  /* Hero */
  .hero-title {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }

  .hero-badges {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }

  /* Section header */
  .section-header {
    margin-bottom: 2.5rem;
  }

  /* Buttons */
  .btn {
    padding: 0.85rem 2rem;
    font-size: 0.9rem;
  }

  /* About Stats */
  .about-stats {
    flex-wrap: wrap;
    justify-content: center;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  /* Chatbot */
  .chatbot {
    bottom: 1rem;
    left: 1rem;
  }

  .chatbot-window {
    width: calc(100vw - 2rem);
    left: 0;
  }

  .sticky-book-btn {
    bottom: 1rem;
    right: 1rem;
  }

  /* Pricing */
  .pricing-card.featured {
    transform: none;
  }

  .pricing-card.featured:hover {
    transform: translateY(-4px);
  }

  /* Gift card */
  .gift-card-display {
    padding: 2rem;
  }

  .gift-card-amount {
    font-size: 2.2rem;
  }
}


/* ─────────────────────────────────────────────
   31. REDUCED MOTION
   ───────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  html {
    scroll-behavior: auto;
  }

  .reveal,
  .reveal-left,
  .reveal-right,
  .reveal-up {
    opacity: 1;
    transform: none;
  }
}


/* ─────────────────────────────────────────────
   32. FOCUS STATES (Accessibility)
   ───────────────────────────────────────────── */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
.btn:focus-visible,
.nav-link:focus-visible,
.filter-tab:focus-visible,
.ba-filter-btn:focus-visible,
.faq-question:focus-visible,
.social-icon:focus-visible,
.carousel-prev:focus-visible,
.carousel-next:focus-visible,
.carousel-dot:focus-visible,
.chatbot-bubble:focus-visible,
.chatbot-close:focus-visible,
.chatbot-send:focus-visible,
.booking-modal-close:focus-visible,
.booking-prev:focus-visible,
.booking-next:focus-visible,
.treatment-btn:focus-visible,
.footer-social-link:focus-visible,
.nav-mobile-toggle:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 2px;
}

/* Remove default outline for non-keyboard focus */
a:focus:not(:focus-visible),
button:focus:not(:focus-visible),
input:focus:not(:focus-visible),
select:focus:not(:focus-visible),
textarea:focus:not(:focus-visible) {
  outline: none;
}


/* ─────────────────────────────────────────────
   END — ÉCLAT AESTHETICS DESIGN SYSTEM
   ───────────────────────────────────────────── */
